From 98db62b07b9fcc2430e2c9110bed6ae9055aa5ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 9 Nov 2025 03:12:50 +0100 Subject: [PATCH] fix: change SMTP_AUTH from login to always MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit SMTP_AUTH must be 'always', 'never', or 'if_available', not 'login'. 🤖 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 b1de282..7b312e5 100644 --- a/asciinema/compose.yaml +++ b/asciinema/compose.yaml @@ -19,7 +19,7 @@ services: SMTP_USERNAME: ${EMAIL_SMTP_USER} SMTP_PASSWORD: ${EMAIL_SMTP_PASSWORD} SMTP_SSL: true - SMTP_AUTH: login + SMTP_AUTH: always SMTP_RETRIES: 1 SMTP_NO_MX_LOOKUPS: true SMTP_ALLOWED_TLS_VERSIONS: tlsv1.2,tlsv1.3