From 5d56c2cb04f7fc00bdfb69b507e0bc08112b97d5 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 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- 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}"