mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2025-07-24 20:54:43 +02:00
fix: move ENV setup to location where other variables are already set
Signed-off-by: Georg Lauterbach <44545919+georglauterbach@users.noreply.github.com>
This commit is contained in:
parent
168856d6c9
commit
a871a58d2d
1 changed files with 13 additions and 10 deletions
|
@ -62,7 +62,7 @@ function __environment_variables_general_setup() {
|
|||
VARS[DMS_VMAIL_UID]="${DMS_VMAIL_UID:=5000}"
|
||||
VARS[DMS_VMAIL_GID]="${DMS_VMAIL_GID:=5000}"
|
||||
|
||||
# user-customizable are last
|
||||
# user-customizable are next
|
||||
|
||||
_log 'trace' 'Setting anti-spam & anti-virus environment variables'
|
||||
|
||||
|
@ -114,15 +114,6 @@ function __environment_variables_general_setup() {
|
|||
VARS[ENABLE_SRS]="${ENABLE_SRS:=0}"
|
||||
VARS[ENABLE_UPDATE_CHECK]="${ENABLE_UPDATE_CHECK:=1}"
|
||||
|
||||
# The Dovecot Quotas feature is presently only supported with the default FILE account provisioner,
|
||||
# Enforce disabling the feature, unless it's been explicitly set via ENV (to avoid mismatch between explicit ENV and sourcing from /etc/dms-settings)
|
||||
if [[ ${ACCOUNT_PROVISIONER} != 'FILE' || ${SMTP_ONLY} -eq 1 ]] && [[ ${ENABLE_QUOTAS:-1} -eq 1 ]]; then
|
||||
_log 'debug' "The 'ENABLE_QUOTAS' feature is enabled (by default) but is not compatible with your config. Disabling"
|
||||
VARS[ENABLE_QUOTAS]="${ENABLE_QUOTAS:=0}"
|
||||
else
|
||||
VARS[ENABLE_QUOTAS]="${ENABLE_QUOTAS:=1}"
|
||||
fi
|
||||
|
||||
_log 'trace' 'Setting IP, DNS and SSL environment variables'
|
||||
|
||||
VARS[DEFAULT_RELAY_HOST]="${DEFAULT_RELAY_HOST:=}"
|
||||
|
@ -175,6 +166,18 @@ function __environment_variables_general_setup() {
|
|||
VARS[SUPERVISOR_LOGLEVEL]="${SUPERVISOR_LOGLEVEL:=warn}"
|
||||
VARS[TZ]="${TZ:=}"
|
||||
VARS[UPDATE_CHECK_INTERVAL]="${UPDATE_CHECK_INTERVAL:=1d}"
|
||||
|
||||
_log 'trace' 'Setting environment variables that require other variables to be set first'
|
||||
|
||||
# The Dovecot Quotas feature is presently only supported with the default FILE account provisioner,
|
||||
# Enforce disabling the feature, unless it's been explicitly set via ENV (to avoid mismatch between
|
||||
# explicit ENV and sourcing from /etc/dms-settings)
|
||||
if [[ ${ACCOUNT_PROVISIONER} != 'FILE' || ${SMTP_ONLY} -eq 1 ]] && [[ ${ENABLE_QUOTAS:-1} -eq 1 ]]; then
|
||||
_log 'debug' "The 'ENABLE_QUOTAS' feature is enabled (by default) but is not compatible with your config. Disabling"
|
||||
VARS[ENABLE_QUOTAS]="${ENABLE_QUOTAS:=0}"
|
||||
else
|
||||
VARS[ENABLE_QUOTAS]="${ENABLE_QUOTAS:=1}"
|
||||
fi
|
||||
}
|
||||
|
||||
function __environment_variables_log_level() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue