[turba] None

FrédéricTHIEL fthiel at lynx-technologies.com
Tue Dec 17 09:41:36 PST 2002



Hi Travis,

This is not really hard, it was more confusing than complicated. Well, I did 
not a "smooth" configuration, I made a working configuration, that is secure 
enough for my purpose. The contacts are displayed through a special entry in 
Turba.

== 1 == IMP Configuration
$servers['imap'] = array(
        'name' => 'MYDOMAIN',
        'server' => '1.2.3.143',
        'protocol' => 'imap',
        'port' => 143,
        'folders' => '',
        'namespace' => '',
        'maildomain' => 'mydomain.com',
        'smtphost' => '1.2.3.25',
        'realm' => 'mydomain.com',
        'preferred' => ''
);

As you can see, this is not complicated !

== 2 == Turba Configuration
$cfgSources['myexchange'] = array(
        'title' => 'MYDOMAIN Contacts',
        'type' => 'ldap',
        'params' => array(
                'server' => '1.2.3.4',
                'port' => 389,
                'bind_dn' => 'cn=Guest User for 
LDAP,cn=Users,dc=mydomain,dc=com',
                'bind_password' => 'userpass',
                'root' => 'cn=Users,dc=mydomain,dc=com',
                'filter' => ''
        ),
        'map' => array(
                '__key' => 'dn',
                'name' => 'cn',
                'email' => 'mail'
        ),
        'search' => array(
                'name',
                'email'
        ),
        'public' => true,
        'readonly' => true,
        'export' => false
);

Here I create an entry called "MYDOMAIN Contacts" displayed in Turba, that 
connects to Active Directory (in the Users OU) and can list users within this 
OU. The "Guest User for LDAP" has to be created because of Active Directory 
integrated security : an anonymous user is not able to list entries in the AD 
tree.

Well, hope it helps,

Frederic



Quoting taz <taz@weldre5j.k12.co.us>:

> I would like to know how hard this was to setup?  I really just want the
> contacts to be
> able to be displayed in Turba via the shared-address book.  I am running
> redhat 7.3 and currently have horde, imp and turba working without exchange
> 2000.
> 
> Any examples and/or suggestions would be helpful
> 
> 
> Travis


More information about the turba mailing list