[turba] question about Turba CVS version
Max Kalika
max@the-triumvirate.net
Sun, 11 Mar 2001 15:26:41 -0800
Quoting Ronald Bootsman <Ronald@bootsman.net>:
> Am I missing some configuration in turba/horde or do I need to make some
> extra tables for turba for authentication?
You're probably using the sql driver. You will need to configure Horde Auth
for Turba to work. Take a look at that section in the horde/config/horde.php
file. If you have IMP installed and working you can use the same server
settings for the IMAP driver for Horde Auth. i.e.
$conf['auth']['driver'] = 'imap';
$conf['auth']['params'] = array();
the following are optional if a server is running with default settings on
localhost
$conf['auth']['params']['server'] = 'imap.server.com';
$conf['auth']['params']['port'] = '143';
$conf['auth']['params']['protocol'] = 'imap';
$conf['auth']['params']['folder'] = 'INBOX';
--mk23