mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2025-07-27 22:25:03 +02:00
lint: Fix bash operator
This commit is contained in:
parent
b8b2ab61a2
commit
ffab7afac4
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue