diff --git a/apps/user_ldap/lib/Connection.php b/apps/user_ldap/lib/Connection.php index 35770f082f..db4362a9eb 100644 --- a/apps/user_ldap/lib/Connection.php +++ b/apps/user_ldap/lib/Connection.php @@ -675,7 +675,8 @@ class Connection extends LDAPUtility { ILogger::WARN); // Set to failure mode, if LDAP error code is not LDAP_SUCCESS or LDAP_INVALID_CREDENTIALS - if($errno !== 0x00 && $errno !== 0x31) { + // or (needed for Apple Open Directory:) LDAP_INSUFFICIENT_ACCESS + if($errno !== 0 && $errno !== 49 && $errno !== 50) { $this->ldapConnectionRes = null; }