summaryrefslogtreecommitdiff
path: root/roundcubemail/config
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-01-29 11:31:23 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-01-29 11:31:23 +0000
commit8167bf21ec421056bebe5c1958dc742d309c25a4 (patch)
tree3cd70ed4fa1fe5291b5a3ce1dcbbd0564aea4b62 /roundcubemail/config
parente80ab69507e07470d1b983630dbc05416a8f98ee (diff)
Add groups support for LDAP address books, contributed by Andreas Dick
git-svn-id: https://svn.roundcube.net/trunk@4467 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/config')
-rw-r--r--roundcubemail/config/main.inc.php.dist9
1 files changed, 7 insertions, 2 deletions
diff --git a/roundcubemail/config/main.inc.php.dist b/roundcubemail/config/main.inc.php.dist
index cf111dbcc..7dfca7afb 100644
--- a/roundcubemail/config/main.inc.php.dist
+++ b/roundcubemail/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)',
+ ),
);
*/