diff options
author | thomascube <thomas@roundcube.net> | 2011-01-29 11:31:23 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-01-29 11:31:23 +0000 |
commit | 6039aae3878aa5880415290cbc41af4bac4fdcb5 (patch) | |
tree | af67fca02fb859cb6863127d97c0a71680f69bb6 /config | |
parent | cf2da2f9aacd1b13ad9019f44a3f1edd824cd015 (diff) |
Add groups support for LDAP address books, contributed by Andreas Dick
Diffstat (limited to 'config')
-rw-r--r-- | config/main.inc.php.dist | 9 |
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)', + ), ); */ |