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:
@@ -7,7 +7,7 @@
|
|||||||
"contactEmail": "contact@ente.io",
|
"contactEmail": "contact@ente.io",
|
||||||
"website": "https://ente.io",
|
"website": "https://ente.io",
|
||||||
"tagline": "Open source, end-to-end encrypted photo backup",
|
"tagline": "Open source, end-to-end encrypted photo backup",
|
||||||
"version": "0.3.5",
|
"version": "0.3.6",
|
||||||
"upstreamVersion": "git-main",
|
"upstreamVersion": "git-main",
|
||||||
"healthCheckPath": "/health",
|
"healthCheckPath": "/health",
|
||||||
"httpPort": 3080,
|
"httpPort": 3080,
|
||||||
|
|||||||
2
start.sh
2
start.sh
@@ -122,7 +122,7 @@ HASH_KEY_FILE="$SECRETS_DIR/hash_key"
|
|||||||
JWT_SECRET_FILE="$SECRETS_DIR/jwt_secret"
|
JWT_SECRET_FILE="$SECRETS_DIR/jwt_secret"
|
||||||
SESSION_SECRET_FILE="$SECRETS_DIR/session_secret"
|
SESSION_SECRET_FILE="$SECRETS_DIR/session_secret"
|
||||||
|
|
||||||
SMTP_HOST="localhost"
|
SMTP_HOST="mail"
|
||||||
SMTP_PORT="2525"
|
SMTP_PORT="2525"
|
||||||
SMTP_ENCRYPTION=""
|
SMTP_ENCRYPTION=""
|
||||||
SMTP_USERNAME=""
|
SMTP_USERNAME=""
|
||||||
|
|||||||
Reference in New Issue
Block a user