diff options
Diffstat (limited to 'config/main.inc.php.dist')
-rw-r--r-- | config/main.inc.php.dist | 6 |
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', |