Merge branch 'docs-roundcube' into 'master'

docs: update roundcube example to use implicit TLS

Closes #336

See merge request simple-nixos-mailserver/nixos-mailserver!470
This commit is contained in:
Martin Weinelt
2025-11-29 01:31:35 +00:00
+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";
''; '';