summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorThomas Bruederli <bruederli@kolabsys.com>2012-08-09 21:24:49 +0200
committerThomas Bruederli <bruederli@kolabsys.com>2012-08-09 21:24:49 +0200
commit4e6e3b64c0502e0c78a8a437ccea70324155afa9 (patch)
tree8370d773c8f5b17db4db4a4b39cb527827ef244d /config
parent2c89ca7298ea693facc0f72c32c71f2bdcaff329 (diff)
Backported some recent improvements to LDAP addressbook
Diffstat (limited to 'config')
-rw-r--r--config/main.inc.php.dist6
1 files changed, 4 insertions, 2 deletions
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist
index e4de49f3f..1837a6390 100644
--- a/config/main.inc.php.dist
+++ b/config/main.inc.php.dist
@@ -572,12 +572,14 @@ $rcmail_config['ldap_public']['Verisign'] = array(
'required_fields' => array('cn', 'sn', 'mail'),
'search_fields' => array('mail', 'cn'), // fields to search in
// 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',
- 'email' => 'mail',
+ 'email' => 'mail:*',
'phone:home' => 'homePhone',
'phone:work' => 'telephoneNumber',
'phone:mobile' => 'mobile',