You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.2 KiB
Plaintext
69 lines
2.2 KiB
Plaintext
<?php
|
|
|
|
/*
|
|
+-----------------------------------------------------------------------+
|
|
| Configuration file for database access |
|
|
| |
|
|
| This file is part of the RoundCube Webmail client |
|
|
| Copyright (C) 2005-2008, RoundCube Dev. - Switzerland |
|
|
| Licensed under the GNU GPL |
|
|
| |
|
|
+-----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
$rcmail_config = array();
|
|
|
|
// PEAR database DSN for read/write operations
|
|
// 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';
|
|
// sqlite example: 'sqlite://./sqlite.db?mode=0646';
|
|
|
|
// PEAR database DSN for read only operations (if empty write database will be used)
|
|
// useful for database replication
|
|
$rcmail_config['db_dsnr'] = '';
|
|
|
|
// database backend to use (only db or mdb2 are supported)
|
|
$rcmail_config['db_backend'] = 'mdb2';
|
|
|
|
// 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';
|
|
|
|
$rcmail_config['db_table_identities'] = 'identities';
|
|
|
|
$rcmail_config['db_table_contacts'] = 'contacts';
|
|
|
|
$rcmail_config['db_table_session'] = 'session';
|
|
|
|
$rcmail_config['db_table_cache'] = 'cache';
|
|
|
|
$rcmail_config['db_table_messages'] = 'messages';
|
|
|
|
|
|
// you can define specific sequence names used in PostgreSQL
|
|
$rcmail_config['db_sequence_users'] = 'user_ids';
|
|
|
|
$rcmail_config['db_sequence_identities'] = 'identity_ids';
|
|
|
|
$rcmail_config['db_sequence_contacts'] = 'contact_ids';
|
|
|
|
$rcmail_config['db_sequence_cache'] = 'cache_ids';
|
|
|
|
$rcmail_config['db_sequence_messages'] = 'message_ids';
|
|
|
|
|
|
// end db config file
|
|
?>
|