From 64f22a28227ba6eff7fc5123374a4cfe03fde421 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 9 Nov 2025 02:59:45 +0100 Subject: [PATCH] fix: add SMTP SSL verification and MX lookup settings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- asciinema/compose.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/asciinema/compose.yaml b/asciinema/compose.yaml index 22490a9..808e071 100644 --- a/asciinema/compose.yaml +++ b/asciinema/compose.yaml @@ -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}