Fix SMTP configuration to use Cloudron sendmail hostname

Change SMTP host from localhost/127.0.0.1 to 'mail' as per Cloudron
sendmail addon documentation. The sendmail addon provides a local SMTP
relay accessible via hostname 'mail' on port 2525.
This commit is contained in:
2025-10-22 08:47:18 -06:00
parent 50cc98abb2
commit 212da52a7a
2 changed files with 2 additions and 2 deletions

View File

@@ -122,7 +122,7 @@ HASH_KEY_FILE="$SECRETS_DIR/hash_key"
JWT_SECRET_FILE="$SECRETS_DIR/jwt_secret"
SESSION_SECRET_FILE="$SECRETS_DIR/session_secret"
SMTP_HOST="localhost"
SMTP_HOST="mail"
SMTP_PORT="2525"
SMTP_ENCRYPTION=""
SMTP_USERNAME=""