conf.php suggestion
Scott Martin
martin@math.ohiou.edu
Mon, 6 Nov 2000 09:10:46 -0500
---------------------- multipart/mixed attachment
I have a suggestion for the options listed in conf.php. I would like to see
all of the possible options available. Have them listed in the file and
perhaps be commented out. I think this would save users having to ask
questions or search through documentation to try to find out about unlisted
options.
Example:
The way it is now:
/**
** Mailer
**/
$conf['mailer']['type'] = 'sendmail';
$conf['mailer']['params'] = array();
The way I'd like to see it:
/**
** Mailer
**/
$conf['mailer']['type'] = 'sendmail';
$conf['mailer']['params'] = array();
/*
The following option is only used is you are using sendmail
and it is not located in the path of /usr/sbin/sendmail:
$conf['mailer']['params']['sendmail_path'] = /usr/local/bin/sendmail';
*/
The way it is now:
/**
** Connection Tracking
**/
$conf['connections']['track'] = false;
$conf['connections']['driver'] = 'sql';
$conf['connections']['params'] = array();
The way I'd like to see it:
/**
** Connection Tracking
**/
$conf['connections']['track'] = false;
$conf['connections']['driver'] = 'sql';
$conf['connections']['params'] = array();
/*
The following options are only necessary if you are using a database for
connection tracking:
$conf['connections']['params']['phptype'] = 'mysql';
$conf['connections']['params']['hostspec'] = 'localhost';
$conf['connections']['params']['username'] = 'username';
$conf['connections']['params']['password'] = 'password';
$conf['connections']['params']['database'] = 'horde';
$conf['connections']['params']['table'] = 'connections';
*/
---------------------- multipart/mixed attachment--