Commit f4291a8b authored by Vladimir Bashkirtsev's avatar Vladimir Bashkirtsev

We should use hostname instead of localhost as IMAP host - makes box identity look good

parent e08a4f1f
...@@ -39,7 +39,7 @@ $config['log_driver'] = 'syslog'; ...@@ -39,7 +39,7 @@ $config['log_driver'] = 'syslog';
// For example %n = mail.domain.tld, %t = domain.tld // For example %n = mail.domain.tld, %t = domain.tld
// WARNING: After hostname change update of mail_host column in users table is // WARNING: After hostname change update of mail_host column in users table is
// required to match old user data records with the new host. // required to match old user data records with the new host.
$config['default_host'] = 'localhost'; $config['default_host'] = trim(`hostname`);
// provide an URL where a user can get support for this Roundcube installation // provide an URL where a user can get support for this Roundcube installation
// PLEASE DO NOT LINK TO THE ROUNDCUBE.NET WEBSITE HERE! // PLEASE DO NOT LINK TO THE ROUNDCUBE.NET WEBSITE HERE!
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment