diff options
author | thomascube <thomas@roundcube.net> | 2011-09-21 11:17:46 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-09-21 11:17:46 +0000 |
commit | 2d3e2bc56108fc014edfaa154237b551daea4cc0 (patch) | |
tree | 26430c969e5879944c3fc92609cd6d0ff3e41174 /config/main.inc.php.dist | |
parent | c054ec5c7a859aa15243f0b1cbd3e84239ed4023 (diff) |
Add option 'searchonly' for address books; currently used by LDAP directories
Diffstat (limited to 'config/main.inc.php.dist')
-rw-r--r-- | config/main.inc.php.dist | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index 941795f68..466c2bd47 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -540,9 +540,11 @@ $rcmail_config['ldap_public']['Verisign'] = array( 'auth_cid' => '', // SASL authentication method (for proxy auth), e.g. DIGEST-MD5 'auth_method' => '', - // Indicates if the addressbook shall be displayed on the list. + // Indicates if the addressbook shall be hidden from the list. // With this option enabled you can still search/view contacts. 'hidden' => false, + // Indicates if the addressbook shall not list contacts but only allows searching. + 'searchonly' => false, // Indicates if we can write to the LDAP directory or not. // If writable is true then these fields need to be populated: // LDAP_Object_Classes, required_fields, LDAP_rdn |