Changes between Version 4 and Version 5 of Howto_Config_LDAP
- Timestamp:
- Dec 1, 2011 3:29:24 PM (18 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Howto_Config_LDAP
v4 v5 1 = LDAP Addressbook Fieldmapping = 1 = LDAP Addressbook Field Mapping = 2 (this page is still under construction!) 2 3 3 4 This howto describes the mapping of the contact fields of Roundcubes LDAP addressbook. If you are looking for a description how to setup a simple LDAP server as functional backend of RC, see [wiki:Howto_Ldap]. … … 13 14 In situation 2, the question is how to find a set of fields that are supported on both sides, server and all the clients planed to use with it. If only RC is planed as frontend client, the possbility is to create LDAP schematas such that all the RC fields are supported. On the other hand, if other clients must be supported, the possibilities of them must be considered as well. 14 15 16 == LDAP Schemas == 17 === The Default OpenLDAP Schema === 18 === Exsample of an Extended Schema === 15 19 16 20 21 == Roundcube Fieldmap Configurations == 22 === Supported Fields === 23 program/steps/addressbook/func.inc 17 24 25 === The Default Configuration === 26 {{{ 27 'fieldmap' => array( 28 // Roundcube => LDAP 29 'name' => 'cn', 30 'surname' => 'sn', 31 'firstname' => 'givenName', 32 'email' => 'mail', 33 'phone:home' => 'homePhone', 34 'phone:work' => 'telephoneNumber', 35 'phone:mobile' => 'mobile', 36 'street' => 'street', 37 'zipcode' => 'postalCode', 38 'locality' => 'l', 39 'country' => 'c', 40 'organization' => 'o', 41 ), 42 }}} 43 44 === Exsample of an Extended Configuration === 45
