From c3a8b55a58d640da6617daa4c4d0081e62fe2acb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 9 Nov 2025 03:33:20 +0100 Subject: [PATCH] fix: set SMTP_NO_MX_LOOKUPS to false MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Email delivery still failing with true, trying false. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- asciinema/compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asciinema/compose.yaml b/asciinema/compose.yaml index faa9d71..2f767fc 100644 --- a/asciinema/compose.yaml +++ b/asciinema/compose.yaml @@ -21,7 +21,7 @@ services: SMTP_SSL: true SMTP_AUTH: always SMTP_RETRIES: 1 - SMTP_NO_MX_LOOKUPS: true + SMTP_NO_MX_LOOKUPS: false MAIL_FROM_ADDRESS: ${EMAIL_FROM} MAIL_REPLY_TO_ADDRESS: ${ASCIINEMA_MAIL_REPLY_TO} SIGN_UP_DISABLED: ${ASCIINEMA_SIGN_UP_DISABLED:-false}