From 212da52a7ad82b2f36865325dbf8f81b463a2d04 Mon Sep 17 00:00:00 2001 From: Andreas Dueren Date: Wed, 22 Oct 2025 08:47:18 -0600 Subject: [PATCH] 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. --- CloudronManifest.json | 2 +- start.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CloudronManifest.json b/CloudronManifest.json index 6b00e42..91c0dc9 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.5", + "version": "0.3.6", "upstreamVersion": "git-main", "healthCheckPath": "/health", "httpPort": 3080, diff --git a/start.sh b/start.sh index e019cb8..a9fabb7 100755 --- a/start.sh +++ b/start.sh @@ -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=""