diff options
author | thomascube <thomas@roundcube.net> | 2007-04-28 18:07:12 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2007-04-28 18:07:12 +0000 |
commit | f1154163b0a9efb21d722bc658352739040ffd61 (patch) | |
tree | 28ccaa50bc27fa2c3d10eb8650a9862710668494 /config | |
parent | 9e5d051e97441794d765b094ed46d8cc732c3944 (diff) |
Merged branch devel-addressbook from r443 back to trunk
Diffstat (limited to 'config')
-rw-r--r-- | config/main.inc.php.dist | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index c2c9d3947..894dfa4d8 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -190,16 +190,18 @@ $rcmail_config['mail_header_delimiter'] = NULL; // like the Verisign example below. if you would like to test, // simply uncomment the Verisign example. /** - * example config for Verisign directory + * example config for Verisign directory * - * $rcmail_config['ldap_public']['Verisign'] = array('hosts' => array('directory.verisign.com'), - * 'port' => 389, - * 'base_dn' => '', - * 'search_fields' => array('Email' => 'mail', 'Name' => 'cn'), - * 'name_field' => 'cn', - * 'mail_field' => 'mail', - * 'scope' => 'sub', - * 'fuzzy_search' => 0); + * $rcmail_config['ldap_public']['Verisign'] = array( + * 'name' => 'Verisign.com', + * 'hosts' => array('directory.verisign.com'), + * 'port' => 389, + * 'base_dn' => '', + * 'search_fields' => array('mail', 'cn'), // fields to search in + * 'name_field' => 'cn', // this field represents the contact's name + * 'email_field' => 'mail', // this field represents the contact's e-mail + * 'scope' => 'sub', // search mode: sub|base|list + * 'fuzzy_search' => true); // server allows wildcard search */ // don't allow these settings to be overriden by the user |