feat(Nextcloud): SMTP configuration should not be empty
This commit is contained in:
parent
f78676d3ee
commit
0af258dcae
|
@ -3,11 +3,11 @@ version: "3.8"
|
||||||
services:
|
services:
|
||||||
nextcloud-fpm:
|
nextcloud-fpm:
|
||||||
environment:
|
environment:
|
||||||
SMTP_HOST: ${SMTP_HOST?err} # The hostname of the SMTP server.
|
SMTP_HOST: ${SMTP_HOST:?err} # The hostname of the SMTP server.
|
||||||
SMTP_SECURE: ${SMTP_SECURE:-ssl} # Set to ssl to use SSL, or tls to use STARTTLS.
|
SMTP_SECURE: ${SMTP_SECURE:-ssl} # Set to ssl to use SSL, or tls to use STARTTLS.
|
||||||
SMTP_PORT: ${SMTP_PORT:-465}
|
SMTP_PORT: ${SMTP_PORT:-465}
|
||||||
SMTP_AUTHTYPE: ${SMTP_AUTHTYPE:-LOGIN}
|
SMTP_AUTHTYPE: ${SMTP_AUTHTYPE:-LOGIN}
|
||||||
SMTP_NAME: ${SMTP_NAME?err}
|
SMTP_NAME: ${SMTP_NAME:?err}
|
||||||
SMTP_PASSWORD: ${SMTP_PASSWORD?err}
|
SMTP_PASSWORD: ${SMTP_PASSWORD:?err}
|
||||||
MAIL_FROM_ADDRESS: ${MAIL_FROM_ADDRESS}
|
MAIL_FROM_ADDRESS: ${MAIL_FROM_ADDRESS:?err}
|
||||||
MAIL_DOMAIN: ${MAIL_DOMAIN}
|
MAIL_DOMAIN: ${MAIL_DOMAIN:?err}
|
||||||
|
|
Loading…
Reference in New Issue