[Tickets #4915] Re: Adding entry from no-export addressbook to contact list

bugs at bugs.horde.org bugs at bugs.horde.org
Wed Jun 13 10:18:45 UTC 2007


DO NOT REPLY TO THIS MESSAGE. THIS EMAIL ADDRESS IS NOT MONITORED.

Ticket URL: http://bugs.horde.org/ticket/?id=4915
-----------------------------------------------------------------------
 Ticket             | 4915
 Updated By         | Otto.Stolz at uni-konstanz.de
 Summary            | Adding entry from no-export addressbook to contact list
 Queue              | Turba
 Version            | 2.1.3
 Type               | Bug
 State              | No Feedback
 Priority           | 1. Low
 Owners             | 
-----------------------------------------------------------------------


Otto.Stolz at uni-konstanz.de (2007-06-13 03:18) wrote:

> Any chance that your name field is a composite field?

No. Excerpt from sources.php:

$cfgSources['localsql'] = array(
    'title' => _("My Address Book"),
...
    'map' => array(
        '__key' => 'object_id',
        '__owner' => 'owner_id',
        '__type' => 'object_type',
        '__members' => 'object_members',
        '__uid' => 'object_uid',
        'name' => 'object_name',
        'email' => 'object_email',
        'alias' => 'object_alias',
        'homeAddress' => 'object_homeaddress',
        'workAddress' => 'object_workaddress',
        'homePhone' => 'object_homephone',
        'workPhone' => 'object_workphone',
        'cellPhone' => 'object_cellphone',
        'fax' => 'object_fax',
        'title' => 'object_title',
        'company' => 'object_company',
        'notes' => 'object_notes',
        'pgpPublicKey' => 'object_pgppublickey',
        'smimePublicKey' => 'object_smimepublickey',
        'freebusyUrl' => 'object_freebusyurl'
    ),
    'search' => array(
        'name',
        'email',
        'alias'
    ),
    'strict' => array(
        'object_id',
        'owner_id',
        'object_type',
    ),
    'export' => true,
    'browse' => true,
    'use_shares' => false,
);

$cfgSources['localldap'] = array(
    'title' => _("E-Mail directory Uni Konstanz"),
...
    'map' => array(
        '__key'     => 'dn',
        'name'      => 'cn',
        'email'     => 'mail',
    ),
    'search' => array(
        'name',
        'email',
    ),
    'strict' => array(
        'dn'
    ),
...





More information about the bugs mailing list