]> git.donarmstrong.com Git - roundcube.git/blobdiff - config/db.inc.php.dist
Imported Upstream version 0.1~rc2
[roundcube.git] / config / db.inc.php.dist
index 895aa45f23e6a81a25e5bc865fc90b955d4c19df..e142dd71c835b3dec0e71212d72b7f55a42d9c95 100644 (file)
@@ -16,7 +16,7 @@ $rcmail_config = array();
 
 // PEAR database DSN for read/write operations
 // format is db_provider://user:password@host/databse
-// currentyl suported db_providers: mysql, pgsql, sqlite
+// currently supported db_providers: mysql, sqlite
 
 $rcmail_config['db_dsnw'] = 'mysql://roundcube:pass@localhost/roundcubemail';
 // postgres example: 'pgsql://roundcube:pass@localhost/roundcubemail';
@@ -33,7 +33,9 @@ $rcmail_config['db_backend'] = 'db';
 $rcmail_config['db_max_length'] = 512000;  // 500K
 
 // use persistent db-connections
-$rcmail_config['db_persistent'] = TRUE;
+// 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
@@ -63,4 +65,4 @@ $rcmail_config['db_sequence_messages'] = 'message_ids';
 
 
 // end db config file
-?>
\ No newline at end of file
+?>