summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2011-01-29 11:31:23 +0000
committerthomascube <thomas@roundcube.net>2011-01-29 11:31:23 +0000
commit6039aae3878aa5880415290cbc41af4bac4fdcb5 (patch)
treeaf67fca02fb859cb6863127d97c0a71680f69bb6 /config
parentcf2da2f9aacd1b13ad9019f44a3f1edd824cd015 (diff)
Add groups support for LDAP address books, contributed by Andreas Dick
Diffstat (limited to 'config')
-rw-r--r--config/main.inc.php.dist9
1 files changed, 7 insertions, 2 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist
index cf111dbcc..7dfca7afb 100644
--- a/config/main.inc.php.dist
+++ b/config/main.inc.php.dist
@@ -501,8 +501,13 @@ $rcmail_config['ldap_public']['Verisign'] = array(
'scope' => 'sub', // search mode: sub|base|list
'filter' => '', // used for basic listing (if not empty) and will be &'d with search queries. example: status=act
'fuzzy_search' => true, // server allows wildcard search
- 'sizelimit' => '0', // Enables you to limit the count of entries fetched. Setting this to 0 means no limit.
- 'timelimit' => '0', // Sets the number of seconds how long is spend on the search. Setting this to 0 means no limit.
+ 'sizelimit' => '0', // Enables you to limit the count of entries fetched. Setting this to 0 means no limit.
+ 'timelimit' => '0', // Sets the number of seconds how long is spend on the search. Setting this to 0 means no limit.
+ // definition for groups, set to false if no groups are supported
+ 'groups' => array(
+ 'base_dn' => 'ou=groups,ou=rcabook,dc=localhost',
+ 'filter' => '(objectClass=groupOfNames)',
+ ),
);
*/