From bb3bab937be3b15e6a69ec7fbc0c0f90bec7a8a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 9 Nov 2025 02:57:29 +0100 Subject: [PATCH] fix: remove colon from SMTP_TLS value MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Environment variables are strings. Use 'never' not ':never' so the Elixir code can convert it to an atom properly. 🤖 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 9e2135f..22490a9 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: :never + SMTP_TLS: never SMTP_SSL: true SMTP_AUTH: always MAIL_FROM_ADDRESS: ${EMAIL_FROM}