From 7902df457d3401c83f78a6ddd48df1a7f07f68b1 Mon Sep 17 00:00:00 2001 From: thomascube <thomas@roundcube.net> Date: Thu, 20 Oct 2005 18:20:26 -0400 Subject: [PATCH] Fixed SSL support; improved Courier compatibility; some visual enhancements and bugfixes --- config/db.inc.php.dist | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/config/db.inc.php.dist b/config/db.inc.php.dist index e1e95d1..fdb7d7e 100644 --- a/config/db.inc.php.dist +++ b/config/db.inc.php.dist @@ -16,7 +16,7 @@ // PEAR database DSN for read/write operations // format is db_provider://user:password@host/databse -// currentyl suported db_providers: mysql, sqlite, pgsql +// currentyl suported db_providers: mysql, sqlite $rcmail_config['db_dsnw'] = 'mysql://roundcube:pass@localhost/roundcubemail'; // sqlite example: 'sqlite://./sqlite.db?mode=0646'; @@ -25,6 +25,9 @@ // userful for database replication $rcmail_config['db_dsnr'] = ''; +// database backend to use (only db or mdb2 are supported) +$rcmail_config['db_backend'] = 'db'; + // you can define specific table names used to store webmail data $rcmail_config['db_table_users'] = 'users'; -- Gitblit v1.9.1