From 9d4849ee3873143a25626301105475b678880aad Mon Sep 17 00:00:00 2001 From: Andreas Dueren Date: Wed, 22 Oct 2025 09:18:02 -0600 Subject: [PATCH] Add back SMTP authentication for port 2525 Restore SMTP username and password for authenticated relay on port 2525. According to Cloudron docs, this port should work with plain SMTP and authentication without STARTTLS. --- CloudronManifest.json | 2 +- start.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CloudronManifest.json b/CloudronManifest.json index 031a534..94f5bff 100644 --- a/CloudronManifest.json +++ b/CloudronManifest.json @@ -7,7 +7,7 @@ "contactEmail": "contact@ente.io", "website": "https://ente.io", "tagline": "Open source, end-to-end encrypted photo backup", - "version": "0.3.9", + "version": "0.4.0", "upstreamVersion": "git-main", "healthCheckPath": "/health", "httpPort": 3080, diff --git a/start.sh b/start.sh index bb21c17..f6926c7 100755 --- a/start.sh +++ b/start.sh @@ -125,8 +125,8 @@ SESSION_SECRET_FILE="$SECRETS_DIR/session_secret" SMTP_HOST="${CLOUDRON_MAIL_SMTP_SERVER:-mail}" SMTP_PORT="${CLOUDRON_MAIL_SMTP_PORT:-2525}" SMTP_ENCRYPTION="" -SMTP_USERNAME="" -SMTP_PASSWORD="" +SMTP_USERNAME="${CLOUDRON_MAIL_SMTP_USERNAME:-}" +SMTP_PASSWORD="${CLOUDRON_MAIL_SMTP_PASSWORD:-}" SMTP_EMAIL="${CLOUDRON_MAIL_FROM:-no-reply@$RP_ID}" SMTP_SENDER_NAME="${CLOUDRON_MAIL_FROM_DISPLAY_NAME:-Ente}"