diff --git a/target/scripts/startup/variables-stack.sh b/target/scripts/startup/variables-stack.sh index dc7fb450..d2842302 100644 --- a/target/scripts/startup/variables-stack.sh +++ b/target/scripts/startup/variables-stack.sh @@ -116,7 +116,7 @@ function __environment_variables_general_setup() { # 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} -neq 1 ]]; then + if [[ ${ACCOUNT_PROVISIONER} != 'FILE' ]] || [[ ${SMTP_ONLY} -eq 1 ]] || [[ ${ENABLE_QUOTAS} -ne 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