fix: add SMTP SSL verification and MX lookup settings

Added SMTP_NO_MX_LOOKUPS, SMTP_TLS_VERIFY_HOST, and
SMTP_TLS_VERIFY_CERT settings to fix SSL connection issues
with IONOS SMTP on port 465.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-09 02:59:45 +01:00
parent bb3bab937b
commit 64f22a2822

View File

@@ -21,6 +21,9 @@ services:
SMTP_TLS: never
SMTP_SSL: true
SMTP_AUTH: always
SMTP_NO_MX_LOOKUPS: true
SMTP_TLS_VERIFY_HOST: false
SMTP_TLS_VERIFY_CERT: false
MAIL_FROM_ADDRESS: ${EMAIL_FROM}
MAIL_REPLY_TO_ADDRESS: ${ASCIINEMA_MAIL_REPLY_TO}
SIGN_UP_DISABLED: ${ASCIINEMA_SIGN_UP_DISABLED:-false}