summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2011-09-20 08:09:52 +0000
committeralecpl <alec@alec.pl>2011-09-20 08:09:52 +0000
commitf763fbd56c1fc7db8a41692431057f7d72882025 (patch)
tree0a497813de19f2a3504623494593420f2be2f1d4 /config
parentd96a15e24feb649b8d56746e36c2e9ea7772599c (diff)
- Make group's "member" attibute name configurable
Diffstat (limited to 'config')
-rw-r--r--config/main.inc.php.dist4
1 files changed, 3 insertions, 1 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist
index 85bb33265..941795f68 100644
--- a/config/main.inc.php.dist
+++ b/config/main.inc.php.dist
@@ -588,9 +588,11 @@ $rcmail_config['ldap_public']['Verisign'] = array(
// 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',
),
);
*/