Merge pull request #1547 from MrFreezeex/master

Fix dovecot variable with whitespace
This commit is contained in:
Erik Wramner 2020-06-28 11:02:58 +02:00 committed by GitHub
commit df4e04f033
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -786,7 +786,7 @@ function _setup_ldap() {
# _dovecot_ldap_mapping["DOVECOT_USER_FILTER"]="${DOVECOT_USER_FILTER:="${LDAP_QUERY_FILTER_USER}"}"
for var in ${!_dovecot_ldap_mapping[@]}; do
export $var=${_dovecot_ldap_mapping[$var]}
export $var="${_dovecot_ldap_mapping[$var]}"
done
configomat.sh "DOVECOT_" "/etc/dovecot/dovecot-ldap.conf.ext"