From b47decd71acb53329cc4369cfef3062b18cb7f53 Mon Sep 17 00:00:00 2001 From: emilylange Date: Fri, 28 Nov 2025 21:53:20 +0100 Subject: [PATCH] docs: update roundcube example to use implicit TLS instead of explicit TLS (STARTTLS). We disabled STARTTLS for IMAP by default in 54f37811dd45075c285b8ddc3034f8061ea83f6c and we will likely do the same for (client) SMTP in the future. --- docs/add-roundcube.rst | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/add-roundcube.rst b/docs/add-roundcube.rst index 6b10d5b..06c7b2f 100644 --- a/docs/add-roundcube.rst +++ b/docs/add-roundcube.rst @@ -18,9 +18,8 @@ servers may require more work. # the mailserver hostName = "webmail.example.com"; extraConfig = '' - # starttls needed for authentication, so the fqdn required to match - # the certificate - $config['smtp_host'] = "tls://${config.mailserver.fqdn}"; + $config['imap_host'] = "ssl://${config.mailserver.fqdn}"; + $config['smtp_host'] = "ssl://${config.mailserver.fqdn}"; $config['smtp_user'] = "%u"; $config['smtp_pass'] = "%p"; '';