how to configure preferences in imp?

bhansson@netera.se bhansson@netera.se
Sat, 21 Jul 2001 11:35:43 +0200


Hi!

I have problems getting imp to read/set the preferences for users. I have these 
settings in horde/config/horde.php - is these wrong? Can someone please paste 
their horde.php settings? Or am I totally wrong here?


Best regards,
Björn


/**
 ** Preference System Settings
 **/

// What preferences driver should we use? Valid values are 'none'
// (meaning use system defaults and don't save any user preferences),
// 'session' (preferences only persist during the login), 'ldap',
// and 'sql'.
$conf['prefs']['driver'] = 'sql';

// Any parameters that the preferences driver needs. This includes
// database or ldap server, username/password to connect with, etc.
$conf['prefs']['params'] = array();
$conf['prefs']['params']['phptype'] = 'mysql';
$conf['prefs']['params']['hostspec'] = 'localhost';
$conf['prefs']['params']['username'] = 'hordemgr';
$conf['prefs']['params']['password'] = 'XXXXXX';
$conf['prefs']['params']['database'] = 'horde';
$conf['prefs']['params']['table'] = 'horde_prefs';