From e20e31016215ae6d1ac759ff448ac9d1d71a7cd1 Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Wed, 10 Jun 2009 14:13:20 -0400 Subject: [PATCH] - Fix messages searching on MailEnable IMAP (#1485762) --- config/db.inc.php.dist | 17 ++++++++++------- 1 files changed, 10 insertions(+), 7 deletions(-) diff --git a/config/db.inc.php.dist b/config/db.inc.php.dist index ea4cb39..4020b26 100644 --- a/config/db.inc.php.dist +++ b/config/db.inc.php.dist @@ -5,7 +5,7 @@ | Configuration file for database access | | | | This file is part of the RoundCube Webmail client | - | Copyright (C) 2005, RoundCube Dev. - Switzerland | + | Copyright (C) 2005-2009, RoundCube Dev. - Switzerland | | Licensed under the GNU GPL | | | +-----------------------------------------------------------------------+ @@ -15,8 +15,8 @@ $rcmail_config = array(); // PEAR database DSN for read/write operations -// format is db_provider://user:password@host/databse -// currentyl suported db_providers: mysql, sqlite +// format is db_provider://user:password@host/database +// currently supported db_providers: mysql, mysqli, pgsql, sqlite, mssql $rcmail_config['db_dsnw'] = 'mysql://roundcube:pass@localhost/roundcubemail'; // postgres example: 'pgsql://roundcube:pass@localhost/roundcubemail'; @@ -26,11 +26,14 @@ // useful for database replication $rcmail_config['db_dsnr'] = ''; -// database backend to use (only db or mdb2 are supported) -$rcmail_config['db_backend'] = 'db'; - // maximum length of a query in bytes $rcmail_config['db_max_length'] = 512000; // 500K + +// use persistent db-connections +// beware this will not "always" work as expected +// see: http://www.php.net/manual/en/features.persistent-connections.php +$rcmail_config['db_persistent'] = FALSE; + // you can define specific table names used to store webmail data $rcmail_config['db_table_users'] = 'users'; @@ -59,4 +62,4 @@ // end db config file -?> \ No newline at end of file +?> -- Gitblit v1.9.1