From c4a1a44bae5710affaeed79a2ca9e31795ee181b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 9 Nov 2025 02:55:54 +0100 Subject: [PATCH] fix: set SMTP_TLS to :never for Elixir atom MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit SMTP_TLS must be an Elixir atom (:never, :always, or :if_available). Using :never for implicit SSL on port 465. 🤖 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 997b504..9e2135f 100644 --- a/asciinema/compose.yaml +++ b/asciinema/compose.yaml @@ -18,7 +18,7 @@ services: SMTP_PORT: ${EMAIL_SMTP_PORT} SMTP_USERNAME: ${EMAIL_SMTP_USER} SMTP_PASSWORD: ${EMAIL_SMTP_PASSWORD} - SMTP_TLS: false + SMTP_TLS: :never SMTP_SSL: true SMTP_AUTH: always MAIL_FROM_ADDRESS: ${EMAIL_FROM}