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:
emilylange
2025-11-28 21:53:20 +01:00
parent 0696fcbe9b
commit b47decd71a
+2 -3
View File
@@ -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";
''; '';