Ignore admin user in external LDAP

as it's already excluded in Zimbra
This commit is contained in:
Daniel Berteaud 2019-07-17 12:23:05 +02:00
parent 74462e1c01
commit 57a6ff5e38
1 changed files with 6 additions and 1 deletions

View File

@ -314,6 +314,11 @@ DOMAIN: foreach my $domain ( keys $conf->{domains} ) {
# or which exist in both but need to be updated
foreach my $user ( keys $ext_users ) {
my $attrs = '';
# Ignore admin
if ( $user eq 'admin' ) {
log_verbose( "Skiping admin user");
next;
}
if ( defined $zim_users->{$user} ) {
# User exists in Zimbra, lets check its attribute are up to date