diff options
author | Tobias Perschon <tobias@perschon.at> | 2019-08-13 23:35:34 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2020-08-07 23:30:44 +0200 |
commit | 551d904bb077df9cbc6871e54a0445b06484debb (patch) | |
tree | 8262eceb40a003e1302d9264e618265ca777e68f /apps/user_ldap/lib/Wizard.php | |
parent | d12dd3370eff809c729e8fd9548ab63161971731 (diff) | |
download | nextcloud-server-551d904bb077df9cbc6871e54a0445b06484debb.tar.gz nextcloud-server-551d904bb077df9cbc6871e54a0445b06484debb.zip |
added "zimbraMailForwardingAddress" as a Group-Member association attribute to enable the use of Zimbra Distribution Lists as groups in nextcloud when connecting to a zimbra LDAP
Signed-off-by: Tobias Perschon <tobias@perschon.at>
fix cs:check
Signed-off-by: Tobias Perschon <tobias@perschon.at>
Update apps/user_ldap/lib/Group_LDAP.php
Co-authored-by: blizzz <blizzz@arthur-schiwon.de>
Signed-off-by: Tobias Perschon <tobias@perschon.at>
Diffstat (limited to 'apps/user_ldap/lib/Wizard.php')
-rw-r--r-- | apps/user_ldap/lib/Wizard.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/Wizard.php b/apps/user_ldap/lib/Wizard.php index 73032bfd7f2..32ad19efa5b 100644 --- a/apps/user_ldap/lib/Wizard.php +++ b/apps/user_ldap/lib/Wizard.php @@ -794,7 +794,7 @@ class Wizard extends LDAPUtility { * @throws \Exception */ private function detectGroupMemberAssoc() { - $possibleAttrs = ['uniqueMember', 'memberUid', 'member', 'gidNumber']; + $possibleAttrs = ['uniqueMember', 'memberUid', 'member', 'gidNumber', 'zimbraMailForwardingAddress']; $filter = $this->configuration->ldapGroupFilter; if (empty($filter)) { return false; |