[imp] latest CVS preferances
Aaron Weeks
aweeks@tacosalad.lssu.edu
Thu, 5 Jul 2001 11:54:54 -0400 (EDT)
> Though i can log into IMP, but have not yet discovered
> where should i configure db related stuff, so it would
> hold on to Preferances i try to set.
If you're using horde 1.3.5, look in
/horde/config/horde.php for the prefs:driver settings to
set up how horde/imp will interact with the database.
My example uses mysql for the db server:
$conf['prefs']['driver'] = 'sql';
$conf['prefs']['params'] = array();
$conf['prefs']['params']['phptype'] = 'mysql';
$conf['prefs']['params']['hostspec'] = 'localhost';
$conf['prefs']['params']['protocol'] = 'unix';
$conf['prefs']['params']['username'] = 'hordemgr';
$conf['prefs']['params']['password'] = ****;
$conf['prefs']['params']['database'] = 'horde';
$conf['prefs']['params']['table'] = 'horde_prefs';
Aaron