Roundcube Community Forum

 

OpenLDAP with dynamic config

Started by I3ilbo, April 16, 2013, 03:50:52 AM

Previous topic - Next topic

I3ilbo

Hi everybody,

i just found this how-to for using ldap afressbooks with roundcube: http://trac.roundcube.net/wiki/Howto_Ldap
Now i wanted to ask if there is any tutorial to get roundcube working with ldap using the dynamic configuration instead of the sldap.conf

bye
Jonas

I3ilbo

Hi,

i finally got it working.
Roundcube reads the ldap entries and writes name, mail, phone numbers and notes.
But it can't save the postal adress. My field map is the following:

'fieldmap'            => array(
// Roundcube  => LDAP:limit
'name'        => 'cn',
'surname'     => 'sn',
'firstname'   => 'givenName',
'title'       => 'title',
'email'       => 'mail:*',
'phone:home'  => 'homePhone',
'phone:work'  => 'telephoneNumber',
'phone:mobile' => 'mobile',
'phone:pager' => 'pager',
'street'      => 'street',
'zipcode'     => 'postalCode',
'region'      => 'st',
'locality'    => 'l',
//'country'     => 'c',
'department'  => 'departmentNumber',
'notes'       => 'description',
// these currently don't work:
//    'phone:workfax' => 'facsimileTelephoneNumber',
//    'photo'        => 'jpegPhoto',
//    'organization' => 'o',
//    'manager'      => 'manager',
//    'assistant'    => 'secretary',
),


What do i have to do to get street, zipcode, region, ... working?

Bye