--- /var/www/roundcubemail/config/main.inc.php.orig Fri May 6 02:39:07 2011 +++ /var/www/roundcubemail/config/main.inc.php Fri May 6 03:45:25 2011 @@ -65,10 +65,10 @@ $rcmail_config['smtp_debug'] = false; // %n - http hostname ($_SERVER['SERVER_NAME']) // %d - domain (http hostname without the first part) // For example %n = mail.domain.tld, %d = domain.tld -$rcmail_config['default_host'] = ''; +$rcmail_config['default_host'] = 'localhost'; // TCP port used for IMAP connections -$rcmail_config['default_port'] = 143; +$rcmail_config['default_port'] = [MY CUSTOM IMAP PORT]; // IMAP AUTH type (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or empty to use // best server supported one) @@ -121,7 +121,7 @@ $rcmail_config['imap_auth_pw'] = null; // %d - domain (http hostname without the first part) // %z - IMAP domain (IMAP hostname without the first part) // For example %n = mail.domain.tld, %d = domain.tld -$rcmail_config['smtp_server'] = ''; +$rcmail_config['smtp_server'] = 'localhost'; // SMTP port (default is 25; 465 for SSL) $rcmail_config['smtp_port'] = 25; @@ -159,8 +159,7 @@ $rcmail_config['smtp_timeout'] = 0; // THIS OPTION WILL ALLOW THE INSTALLER TO RUN AND CAN EXPOSE SENSITIVE CONFIG DATA. // ONLY ENABLE IT IF YOU'RE REALLY SURE WHAT YOU'RE DOING! -//$rcmail_config['enable_installer'] = false; -$rcmail_config['enable_installer'] = true; +$rcmail_config['enable_installer'] = false; // use this folder to store log files (must be writeable for apache user) // This is used by the 'file' log driver. @@ -180,12 +179,14 @@ $rcmail_config['message_cache_lifetime'] = '10d'; // enforce connections over https // with this option enabled, all non-secure connections will be redirected. // set the port for the ssl connection as value of this option if it differs from the default 443 -$rcmail_config['force_https'] = false; +//$rcmail_config['force_https'] = false; +$rcmail_config['force_https'] = true; // tell PHP that it should work as under secure connection // even if it doesn't recognize it as secure ($_SERVER['HTTPS'] is not set) // e.g. when you're running Roundcube behind a https proxy -$rcmail_config['use_https'] = false; +//$rcmail_config['use_https'] = false; +$rcmail_config['use_https'] = true; // Allow browser-autocompletion on login form. // 0 - disabled, 1 - username and host only, 2 - username, host, password @@ -243,7 +244,8 @@ $rcmail_config['mail_domain'] = ''; // Password charset. // Use it if your authentication backend doesn't support UTF-8. // Defaults to ISO-8859-1 for backward compatibility -$rcmail_config['password_charset'] = 'ISO-8859-1'; +//$rcmail_config['password_charset'] = 'ISO-8859-1'; +$rcmail_config['password_charset'] = 'UTF-8'; // How many seconds must pass between emails sent by a user $rcmail_config['sendmail_delay'] = 0; @@ -551,7 +553,7 @@ $rcmail_config['inline_images'] = true; // 0 - Full RFC 2231 compatible // 1 - RFC 2047 for 'name' and RFC 2231 for 'filename' parameter (Thunderbird's default) // 2 - Full 2047 compatible -$rcmail_config['mime_param_folding'] = 1; +$rcmail_config['mime_param_folding'] = 0; // Set true if deleted messages should not be displayed // This will make the application run slower