From f763fbd56c1fc7db8a41692431057f7d72882025 Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Tue, 20 Sep 2011 04:09:52 -0400 Subject: [PATCH] - Make group's "member" attibute name configurable --- config/main.inc.php.dist | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index 85bb332..941795f 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -588,9 +588,11 @@ // if the groups base_dn is empty, the contact base_dn is used for the groups as well // -> in this case, assure that groups and contacts are separated due to the concernig filters! 'groups' => array( - 'base_dn' => '', + 'base_dn' => '', 'filter' => '(objectClass=groupOfNames)', 'object_classes' => array("top", "groupOfNames"), + // name of the member attribute, e.g. uniqueMember + 'member_attr' => 'member', ), ); */ -- Gitblit v1.9.1