From 14e01eb51258216f7b4040aa7796e8995263b9ef Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Fri, 19 Jul 2019 19:44:42 +0200 Subject: [PATCH] Fix spacing when using muiltiple LDAP servers --- zmldapsync/zmldapsync.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zmldapsync/zmldapsync.pl b/zmldapsync/zmldapsync.pl index 0afb5c3..080461e 100644 --- a/zmldapsync/zmldapsync.pl +++ b/zmldapsync/zmldapsync.pl @@ -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";