dont set smtp variable if smpt_host is empty
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
146ab4fbc3
commit
29f35e0759
@ -64,6 +64,7 @@ AUTHENTICATOR_DISABLE_TIME_DRIFT={{ getenv "BITWARDENRS_AUTHENTICATOR_DISABLE_TI
|
|||||||
ROCKET_ADDRESS=0.0.0.0
|
ROCKET_ADDRESS=0.0.0.0
|
||||||
ROCKET_PORT=8080
|
ROCKET_PORT=8080
|
||||||
|
|
||||||
|
{{ if (getenv "BITWARDENRS_SMTP_HOST") -}}
|
||||||
SMTP_HOST={{ getenv "BITWARDENRS_SMTP_HOST" }}
|
SMTP_HOST={{ getenv "BITWARDENRS_SMTP_HOST" }}
|
||||||
SMTP_FROM={{ getenv "BITWARDENRS_SMTP_FROM" }}
|
SMTP_FROM={{ getenv "BITWARDENRS_SMTP_FROM" }}
|
||||||
SMTP_FROM_NAME={{ getenv "BITWARDENRS_SMTP_FROM_NAME" "Bitwarden_RS" }}
|
SMTP_FROM_NAME={{ getenv "BITWARDENRS_SMTP_FROM_NAME" "Bitwarden_RS" }}
|
||||||
@ -75,3 +76,4 @@ SMTP_PASSWORD={{ getenv "BITWARDENRS_SMTP_PASSWORD" }}
|
|||||||
{{ end -}}
|
{{ end -}}
|
||||||
SMTP_AUTH_MECHANISM={{ getenv "BITWARDENRS_SMTP_AUTH_MECHANISM" "Plain" }}
|
SMTP_AUTH_MECHANISM={{ getenv "BITWARDENRS_SMTP_AUTH_MECHANISM" "Plain" }}
|
||||||
SMTP_TIMEOUT={{ getenv "BITWARDENRS_SMTP_TIMEOUT" "15" }}
|
SMTP_TIMEOUT={{ getenv "BITWARDENRS_SMTP_TIMEOUT" "15" }}
|
||||||
|
{{ end -}}
|
||||||
|
Loading…
Reference in New Issue
Block a user