From f25e191a461d652d73ec0bd5f9be31c2dee4b67c Mon Sep 17 00:00:00 2001 From: Ralf Haferkamp Date: Thu, 3 Apr 2025 14:02:23 +0200 Subject: [PATCH] fix(opencloud_full): add missing SMTP env vars The compose example lacked support for setting various SMTP related config vars. Even though some of them where present in the '.env' file. Closes: #511 --- deployments/examples/opencloud_full/.env | 2 ++ deployments/examples/opencloud_full/opencloud.yml | 3 +++ 2 files changed, 5 insertions(+) diff --git a/deployments/examples/opencloud_full/.env b/deployments/examples/opencloud_full/.env index dc1ca373f5..a437d30a77 100644 --- a/deployments/examples/opencloud_full/.env +++ b/deployments/examples/opencloud_full/.env @@ -116,6 +116,8 @@ SMTP_USERNAME= SMTP_PASSWORD= # Authentication method for the SMTP communication. SMTP_AUTHENTICATION= +# Encryption method for the SMTP communication. Possible values are 'starttls', 'ssltls' and 'none' +SMTP_TRANSPORT_ENCRYPTION= # Allow insecure connections to the SMTP server. Defaults to false. SMTP_INSECURE= diff --git a/deployments/examples/opencloud_full/opencloud.yml b/deployments/examples/opencloud_full/opencloud.yml index 51799dea2f..f747fbc477 100644 --- a/deployments/examples/opencloud_full/opencloud.yml +++ b/deployments/examples/opencloud_full/opencloud.yml @@ -41,7 +41,10 @@ services: NOTIFICATIONS_SMTP_PORT: "${SMTP_PORT}" NOTIFICATIONS_SMTP_SENDER: "${SMTP_SENDER:-OpenCloud notifications }" NOTIFICATIONS_SMTP_USERNAME: "${SMTP_USERNAME}" + NOTIFICATIONS_SMTP_PASSWORD: "${SMTP_PASSWORD}" NOTIFICATIONS_SMTP_INSECURE: "${SMTP_INSECURE}" + NOTIFICATIONS_SMTP_AUTHENTICATION: "${SMTP_AUTHENTICATION}" + NOTIFICATIONS_SMTP_ENCRYPTION: "${SMTP_TRANSPORT_ENCRYPTION}" # make the registry available to the app provider containers MICRO_REGISTRY_ADDRESS: 127.0.0.1:9233 NATS_NATS_HOST: 0.0.0.0