From 1676e1ebda38922b609c501b3c3c34b881302122 Mon Sep 17 00:00:00 2001 From: svncommit Date: Sun, 2 Oct 2005 11:36:35 +0000 Subject: Added PEAR:DB support plus database replication support --- config/db.inc.php.dist | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) (limited to 'config') diff --git a/config/db.inc.php.dist b/config/db.inc.php.dist index fb6d2bb8b..5ee392b5c 100644 --- a/config/db.inc.php.dist +++ b/config/db.inc.php.dist @@ -14,21 +14,15 @@ $rcmail_config = array(); -// database engine (currently supported: mysql) -$rcmail_config['db_type'] = 'mysql'; +// PEAR database DSN for read/write operations +//format is db_provider://user:password@host/databse -// database host -$rcmail_config['db_host'] = 'localhost'; +$rcmail_config['db_dsnw'] = 'mysql://roundcube:pass@localhost/roundcubemail'; -// database user -$rcmail_config['db_user'] = 'roundcube'; - -// pwd -$rcmail_config['db_pass'] = 'pass'; - -// database name -$rcmail_config['db_name'] = 'roundcubemail'; +// PEAR database DSN for read only operations (if empty write database will be used) +// userful for database replication +$rcmail_config['db_dsnr'] = ''; // you can define specific table names used to store webmail data $rcmail_config['db_table_users'] = 'users'; -- cgit v1.2.3