Hi,
if you have aliases in your LDAP databases it may happen that a user has only one alias (not multiple). In this case the OXLDAPsync will fail.
Here is a patch for Decorator.pm, around line 95
---
----
Best regards, Eike
if you have aliases in your LDAP databases it may happen that a user has only one alias (not multiple). In this case the OXLDAPsync will fail.
Here is a patch for Decorator.pm, around line 95
---
PHP Code:
if ($self->{_mapping}->{'aliases'})
{
my $aliases = $self->{_entry}->get_value($self->{_mapping}->{aliases}, asref => 1)
;
if (ref($aliases) eq 'ARRAY'){
$aliasstr = join(',',@$aliases);
} else { $aliasstr = $aliases;
}
}
Best regards, Eike
Comment