From 490ebe9533be43e8f6de881559382e610457aa0e Mon Sep 17 00:00:00 2001 From: Ammar Hussein Date: Mon, 1 Dec 2025 15:40:52 -0800 Subject: [PATCH] add smtp_debug env var --- .env.sample | 3 +++ compose.smtp.yml | 1 + 2 files changed, 4 insertions(+) diff --git a/.env.sample b/.env.sample index 16dde98..7be4e13 100644 --- a/.env.sample +++ b/.env.sample @@ -31,3 +31,6 @@ TX="Europe/Berlin" #SMTP_HOST=mail.example.com #SMTP_PORT=587 #SMTP_SECURITY=starttls +# If SMTP isn't working, enable this line to debug +# remember to disable it after debugging +#SMTP_DEBUG=true diff --git a/compose.smtp.yml b/compose.smtp.yml index 849812c..9516883 100644 --- a/compose.smtp.yml +++ b/compose.smtp.yml @@ -13,6 +13,7 @@ services: - "SMTP_HOST" - "SMTP_PORT" - "SMTP_SECURITY" + - "SMTP_DEBUG" secrets: smtp_password: -- 2.49.0