From 7799bb2a82de80901e8e561d7a5c7c9a92746300 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 9 Nov 2025 03:06:26 +0100 Subject: [PATCH] fix: use SMTP_SSL without SMTP_TLS for port 465 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit For implicit SSL on port 465, we need SMTP_SSL: true and should NOT set SMTP_TLS (which is for STARTTLS on port 587). Added SMTP_NO_MX_LOOKUPS to skip MX record lookups. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- asciinema/compose.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/asciinema/compose.yaml b/asciinema/compose.yaml index 6f7acc2..72a5df1 100644 --- a/asciinema/compose.yaml +++ b/asciinema/compose.yaml @@ -20,6 +20,7 @@ services: SMTP_PASSWORD: ${EMAIL_SMTP_PASSWORD} SMTP_SSL: true SMTP_RETRIES: 2 + SMTP_NO_MX_LOOKUPS: true MAIL_FROM_ADDRESS: ${EMAIL_FROM} MAIL_REPLY_TO_ADDRESS: ${ASCIINEMA_MAIL_REPLY_TO} SIGN_UP_DISABLED: ${ASCIINEMA_SIGN_UP_DISABLED:-false}