docs: update roundcube example to use implicit TLS
instead of explicit TLS (STARTTLS).
We disabled STARTTLS for IMAP by default in 54f37811dd
and we will likely do the same for (client) SMTP in the future.
This commit is contained in:
@@ -18,9 +18,8 @@ servers may require more work.
|
|||||||
# the mailserver
|
# the mailserver
|
||||||
hostName = "webmail.example.com";
|
hostName = "webmail.example.com";
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
# starttls needed for authentication, so the fqdn required to match
|
$config['imap_host'] = "ssl://${config.mailserver.fqdn}";
|
||||||
# the certificate
|
$config['smtp_host'] = "ssl://${config.mailserver.fqdn}";
|
||||||
$config['smtp_host'] = "tls://${config.mailserver.fqdn}";
|
|
||||||
$config['smtp_user'] = "%u";
|
$config['smtp_user'] = "%u";
|
||||||
$config['smtp_pass'] = "%p";
|
$config['smtp_pass'] = "%p";
|
||||||
'';
|
'';
|
||||||
|
|||||||
Reference in New Issue
Block a user