[horde] How can I make Kronolith and IMP recognize two different
address books?
nappy_d
nappy_d at rogers.com
Tue Jun 17 11:07:33 PDT 2003
Hi all,
I am now attempting to make IMP/Kronolith recognize two different address books; a pubic(read only) addressbook and a personal addressbook. When I edit the /kronolith/../sources.php and duplicate the following lines and created a custom sql db that only contained in the array
'map' => array(
'__key' => 'object_id',
'__owner' => 'owner_id',
'__type' => 'object_type',
'__members' => 'object_members',
'name' => 'object_name',
'email' => 'object_email',
Doing this cause only the "public address book" to appear. Is this at all possible to do?
Below here is original config I duplicated from...
$cfgSources['localsql'] = array(
'title' => 'My Addressbook',
'type' => 'sql',
'params' => array(
'phptype' => 'mysql',
'hostspec' => 'localhost',
'username' => 'horde',
'password' => 'I6jhhia3',
'database' => 'horde',
'table' => 'turba_objects'
),
'map' => array(
'__key' => 'object_id',
'__owner' => 'owner_id',
'__type' => 'object_type',
'__members' => 'object_members',
'name' => 'object_name',
'email' => 'object_email',
'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'
),
'search' => array(
'name',
'email'
),
'strict' => array(
'object_id'
),
'public' => false,
'readonly' => false,
'admin' => array(),
'export' => true
);
More information about the horde
mailing list