diff options
author | thomascube <thomas@roundcube.net> | 2012-05-02 20:56:29 +0000 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-05-08 12:12:13 +0200 |
commit | e44e5cc79bea2c776d6869b767245df1413cce15 (patch) | |
tree | d8c126237c01c7fb0b17568dd93fcf2e3bccc7ec /config | |
parent | 89fc59d1710d1dfec5925c136dd2c8316323d91e (diff) |
- Allow to configure the number of values allowed for each LDAP attribute
- Support for serialized LDAP address values (usually delimited with a $)
Conflicts:
config/main.inc.php.dist
Diffstat (limited to 'config')
-rw-r--r-- | config/main.inc.php.dist | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist index 3f6b040c2..2ee78c29d 100644 --- a/config/main.inc.php.dist +++ b/config/main.inc.php.dist @@ -580,16 +580,16 @@ $rcmail_config['ldap_public']['Verisign'] = array( // the object classes (can include additional fields not required by the object classes). 'required_fields' => array('cn', 'sn', 'mail'), 'search_fields' => array('mail', 'cn'), // fields to search in - // Map of contact sub-objects (attribute name => objectClass(es)), e.g. 'c' => 'country' - 'sub_fields' => array(), // mapping of contact fields to directory attributes + // for every attribute one can specify the number of values (limit) allowed. + // default is 1, a wildcard * means unlimited 'fieldmap' => array( - // Roundcube => LDAP + // Roundcube => LDAP:limit 'name' => 'cn', 'surname' => 'sn', 'firstname' => 'givenName', 'title' => 'title', - 'email' => 'mail', + 'email' => 'mail:*', 'phone:home' => 'homePhone', 'phone:work' => 'telephoneNumber', 'phone:mobile' => 'mobile', @@ -609,6 +609,8 @@ $rcmail_config['ldap_public']['Verisign'] = array( // 'manager' => 'manager', // 'assistant' => 'secretary', ), + // Map of contact sub-objects (attribute name => objectClass(es)), e.g. 'c' => 'country' + 'sub_fields' => array(), 'sort' => 'cn', // The field to sort the listing by. '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 |