From 042fd5ccd8674402383e7760f0d9641663f9fc5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 9 Nov 2025 03:01:35 +0100 Subject: [PATCH] fix: switch to port 587 with STARTTLS for IONOS SMTP MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Port 465 with implicit SSL is not working. Switching to port 587 with STARTTLS (SMTP_TLS: always) which is more compatible with Swoosh SMTP adapter. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- asciinema/compose.yaml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/asciinema/compose.yaml b/asciinema/compose.yaml index 808e071..c7e5624 100644 --- a/asciinema/compose.yaml +++ b/asciinema/compose.yaml @@ -15,15 +15,12 @@ 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: ${EMAIL_SMTP_PORT} + SMTP_PORT: 587 SMTP_USERNAME: ${EMAIL_SMTP_USER} SMTP_PASSWORD: ${EMAIL_SMTP_PASSWORD} - SMTP_TLS: never - SMTP_SSL: true + SMTP_TLS: always SMTP_AUTH: always - SMTP_NO_MX_LOOKUPS: true - SMTP_TLS_VERIFY_HOST: false - SMTP_TLS_VERIFY_CERT: false + SMTP_RETRIES: 2 MAIL_FROM_ADDRESS: ${EMAIL_FROM} MAIL_REPLY_TO_ADDRESS: ${ASCIINEMA_MAIL_REPLY_TO} SIGN_UP_DISABLED: ${ASCIINEMA_SIGN_UP_DISABLED:-false}