Fix spacing when using muiltiple LDAP servers

This commit is contained in:
Daniel Berteaud 2019-07-19 19:44:42 +02:00
parent d25568e2de
commit 14e01eb512
1 changed files with 1 additions and 1 deletions

View File

@ -798,7 +798,7 @@ sub build_domain_attrs {
# $attrs = " zimbraAuthLdapSearchFilter " . zim_attr_value( "(&(|(" . $domain_conf->{users}->{key} . "=%u)(" . $domain_conf->{users}->{key} . "=%n))(" . $domain_conf->{users}->{filter} . ")" );
# }
$attrs .= " zimbraAuthLdapURL " .
join( ' +zimbraAuthLdapURL', @{ $domain_conf->{ldap}->{servers} } );
join( ' +zimbraAuthLdapURL ', @{ $domain_conf->{ldap}->{servers} } );
if ( defined $domain_conf->{ldap}->{start_tls} and
yaml_bool( $domain_conf->{ldap}->{start_tls} ) ) {
$attrs .= " zimbraAuthLdapStartTlsEnabled TRUE";