'/usr/lib/sendmail'); // $conf['mailer']['params'] = array('host' => 'smtp.example.com'); /** ** Virtual File Storage **/ // If a VFS (virtual filesystem) backend is required, which one should // we use? Options are 'file' and 'sql'. $conf['vfs']['type'] = 'file'; // What configuration parameters should be set for the VFS system? For // the 'file' driver, the only parameter is 'vfsroot' - where on the // real filesystem should Horde use as root of the virtual // filesystem. For the 'sql' driver, see the examples for the 'prefs' // section, above. $conf['vfs']['params']['vfsroot'] = '/tmp'; /** ** Custom Session Handler **/ // If we are defining a custom session handler, what sessionhandler // driver should we use? Valid options are 'none', 'external', 'dbm', // 'mysql', 'sapdb', and 'sql'. In the case of 'none' the default php // (file-based) session handler is used. 'external' is a way to get // Horde to gracefully handle a session handler that you've already // defined elsewhere. See below ($conf['sessionhandler']['params']) // for what you need to configure for the 'external' driver. // // NOTE for database-based session handlers: if you access your // database through ODBC, you will almost certainly need to change // PHP's default value for odbc.defaultlrl (this is a php.ini // setting). The default is 4096, which is too small (your session // data will be chopped off), and setting it to 0 DOES NOT work - that // doesn't mean no limit, for some reason. odbc.defaultlrl = 32768 // seems to work pretty well for me (using MSSQL-2000). // // PLEASE NOTE: CUSTOM SESSION HANDLERS WILL NOT WORK WITH IMP AS THE // AUTHENTICATION HANDLER (see config/registry.php) *UNLESS* YOU ARE USING // IMP 3.2 OR GREATER! $conf['sessionhandler']['type'] = 'none'; // Any parameters that the session handler driver needs. // // The 'external' driver expects this to be a hash, with 6 entries: // // $conf['sessionhandler']['params']['open'] = 'your session open() function'; // $conf['sessionhandler']['params']['close'] = 'your session close() function'; // $conf['sessionhandler']['params']['read'] = 'your session read() function'; // $conf['sessionhandler']['params']['write'] = 'your session write() function'; // $conf['sessionhandler']['params']['destroy'] = 'your session destroy() function'; // $conf['sessionhandler']['params']['gc'] = 'your session gc() function'; // // Database or other drivers might require configuration parameters // here. // $conf['sessionhandler']['params'] = array(); // $conf['sessionhandler']['params']['phptype'] = 'mysql'; // $conf['sessionhandler']['params']['hostspec'] = 'localhost'; // $conf['sessionhandler']['params']['username'] = 'horde'; // $conf['sessionhandler']['params']['password'] = '*****'; // $conf['sessionhandler']['params']['database'] = 'horde'; /** ** Problem Reporting **/ // Should we display a problem reporting link in Horde application // menus? $conf['problems']['enabled'] = false; // If so, where should problem report emails be sent? $conf['problems']['email'] = 'webmaster@example.com'; /** ** User Capabilities and Constraints **/ // Should we display help links to the user? $conf['user']['online_help'] = true; /** ** Stylesheets **/ // If this is true, then we will allow the browser to cache generated // stylesheets, saving us from generating the stylesheet on every page // request, but meaning that users will need to do a manual refresh to // see any stylesheet changes. $conf['css']['cached'] = true; /** ** Menu settings **/ // Should we use DHTML to display a floating menu of Horde appliation // links, instead of a frame? $conf['menu']['floating_bar'] = false;