Compare commits

..

2 commits

Author SHA1 Message Date
f6a76ad5e5 fix(mx): use SSL/TLS on port 465 for Roundcube SMTP
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-24 12:36:40 +01:00
9a926472f9 feat(mx): configure Roundcube SMTP to use STARTTLS on port 587
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-24 12:34:03 +01:00

View file

@ -244,7 +244,7 @@
extraConfig = '' extraConfig = ''
# starttls needed for authentication, so the fqdn required to match # starttls needed for authentication, so the fqdn required to match
# the certificate # the certificate
$config['smtp_server'] = "tls://${config.mailserver.fqdn}"; $config['smtp_server'] = "ssl://${config.mailserver.fqdn}:465";
$config['smtp_user'] = "%u"; $config['smtp_user'] = "%u";
$config['smtp_pass'] = "%p"; $config['smtp_pass'] = "%p";
$config['imap_host'] = "ssl://${config.mailserver.fqdn}"; $config['imap_host'] = "ssl://${config.mailserver.fqdn}";