fix: set SMTP_TLS to :never for Elixir atom

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 <noreply@anthropic.com>
This commit is contained in:
2025-11-09 02:55:54 +01:00
parent 20458cda6a
commit c4a1a44bae

View File

@@ -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}