From 8ece868a45bdcd877859c4e4f9c066f17056de1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 9 Nov 2025 03:10:43 +0100 Subject: [PATCH] fix: add SMTP_AUTH and SMTP_ALLOWED_TLS_VERSIONS MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added SMTP_AUTH: login and SMTP_ALLOWED_TLS_VERSIONS to help with SSL handshake on port 465. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- asciinema/compose.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/asciinema/compose.yaml b/asciinema/compose.yaml index 72a5df1..b1de282 100644 --- a/asciinema/compose.yaml +++ b/asciinema/compose.yaml @@ -19,8 +19,10 @@ services: SMTP_USERNAME: ${EMAIL_SMTP_USER} SMTP_PASSWORD: ${EMAIL_SMTP_PASSWORD} SMTP_SSL: true - SMTP_RETRIES: 2 + SMTP_AUTH: login + 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}