From 958891d4beb72d283d7278d0cefff4e7f703dc51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 9 Nov 2025 03:04:09 +0100 Subject: [PATCH] fix: revert to use EMAIL_SMTP_PORT from .env MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reverted to use ${EMAIL_SMTP_PORT} from .env (port 465) since this configuration works for other services. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- asciinema/compose.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/asciinema/compose.yaml b/asciinema/compose.yaml index c7e5624..6f7acc2 100644 --- a/asciinema/compose.yaml +++ b/asciinema/compose.yaml @@ -15,11 +15,10 @@ services: URL_SCHEME: https DATABASE_URL: postgresql://${DB_USER}:${DB_PASSWORD}@${CORE_DB_HOST}/${ASCIINEMA_DB_NAME}?pool_size=10 SMTP_HOST: ${EMAIL_SMTP_HOST} - SMTP_PORT: 587 + SMTP_PORT: ${EMAIL_SMTP_PORT} SMTP_USERNAME: ${EMAIL_SMTP_USER} SMTP_PASSWORD: ${EMAIL_SMTP_PASSWORD} - SMTP_TLS: always - SMTP_AUTH: always + SMTP_SSL: true SMTP_RETRIES: 2 MAIL_FROM_ADDRESS: ${EMAIL_FROM} MAIL_REPLY_TO_ADDRESS: ${ASCIINEMA_MAIL_REPLY_TO}