From a9327650b3e165ab61b7b6480732614ad73564e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 9 Nov 2025 03:23:11 +0100 Subject: [PATCH] fix: remove extra SMTP settings from asciinema config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed SMTP_NO_MX_LOOKUPS and SMTP_ALLOWED_TLS_VERSIONS settings that were added during troubleshooting. Using only basic SMTP configuration that works for other services (mattermost, tandoor). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- asciinema/compose.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/asciinema/compose.yaml b/asciinema/compose.yaml index 7b312e5..dab621c 100644 --- a/asciinema/compose.yaml +++ b/asciinema/compose.yaml @@ -21,8 +21,6 @@ services: SMTP_SSL: true SMTP_AUTH: always SMTP_RETRIES: 1 - SMTP_NO_MX_LOOKUPS: true - SMTP_ALLOWED_TLS_VERSIONS: tlsv1.2,tlsv1.3 MAIL_FROM_ADDRESS: ${EMAIL_FROM} MAIL_REPLY_TO_ADDRESS: ${ASCIINEMA_MAIL_REPLY_TO} SIGN_UP_DISABLED: ${ASCIINEMA_SIGN_UP_DISABLED:-false}