You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ability to configure SMTP config via Environment variables
Pitch
It would be nice to be able to set the SMTP configuration from environment variables
Something like the below
Variable
Description
SMTP_HOST
Mailserver Host
SMTP_PORT
Port of the SMTP mail server
SMTP_USER
Username of the SMTP account you wish to send emails as
SMTP_PASSWORD
Password of the SMTP user you wish to send emails as
SMTP_TLS
Should SMTP use TLS
SMTP_SKIP_CERT_VALIDATION
Should validation on the SMTP certificate be validated
My use case comes as I am running this in Kubernetes, and I'd like to get as much config out the way in code as possible before logging in for the first time etc, also allows me to seamlessly rotate secrets in my secret manager of choice when it just restarts the pod when a k8s secret changes
The text was updated successfully, but these errors were encountered:
I believe it’s more logical to allow all “Application Settings” to be defined via environment variables, rather than limiting this flexibility solely to SMTP configuration.
Feature description
Ability to configure SMTP config via Environment variables
Pitch
It would be nice to be able to set the SMTP configuration from environment variables
Something like the below
SMTP_HOST
SMTP_PORT
SMTP_USER
SMTP_PASSWORD
SMTP_TLS
SMTP_SKIP_CERT_VALIDATION
My use case comes as I am running this in Kubernetes, and I'd like to get as much config out the way in code as possible before logging in for the first time etc, also allows me to seamlessly rotate secrets in my secret manager of choice when it just restarts the pod when a k8s secret changes
The text was updated successfully, but these errors were encountered: