diff options
author | thomascube <thomas@roundcube.net> | 2011-06-09 19:43:22 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-06-09 19:43:22 +0000 |
commit | 69ea3a342999b27a8cffb93b640390c09cb647bf (patch) | |
tree | 88b34ab649d5286abaa672fd7692f890b04fbed0 /config | |
parent | 9f38ad95def4f04b6cbd6f48231a72bf0c3ac335 (diff) |
Implement LDAPv3 Virtual List View (VLV) for paged results listing
Diffstat (limited to 'config')
-rw-r--r-- | config/main.inc.php.dist | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index bcbd98c95..44e80c023 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -534,6 +534,7 @@ $rcmail_config['ldap_public']['Verisign'] = array( 'scope' => 'sub', // search mode: sub|base|list 'filter' => '(objectClass=inetOrgPerson)', // used for basic listing (if not empty) and will be &'d with search queries. example: status=act 'fuzzy_search' => true, // server allows wildcard search + 'vlv' => false, // Enable Virtual List View to mor efficiently fetch paginated data (if server supports it) '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. |