[imp] preferences?

Max Kalika max@the-triumvirate.net
Thu, 09 Nov 2000 14:59:39 -0800 (PST)


Quoting Ranger Fox <rangerfox@rangerfox.net>:

> What are possible settings for conf.php on the lastest cvs for preference..

The individual drivers in horde/lib/Prefs/ have all the information that you 
need with regards to settings.  Here is what is necessary for the mysql driver 
though:

$conf['prefs'] = array();
$conf['prefs']['driver'] = 'mysql';
$conf['prefs']['params'] = array();
$conf['prefs']['params']['hostspec'] = 'localhost';
$conf['prefs']['params']['username'] = 'horde_mgr';
$conf['prefs']['params']['password'] = '*****';
$conf['prefs']['params']['database'] = 'horde';
$conf['prefs']['params']['table'] = 'user_webmail_prefs';


--mk23