| | |
| | | | | |
| | | | This file is part of the RoundCube Webmail client | |
| | | | Copyright (C) 2005, RoundCube Dev. - Switzerland | |
| | | | All rights reserved. | |
| | | | Licensed under the GNU GPL | |
| | | | | |
| | | +-----------------------------------------------------------------------+ |
| | | |
| | |
| | | |
| | | $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 |
| | | // currentyl suported db_providers: mysql, sqlite, pgsql |
| | | |
| | | // database host |
| | | $rcmail_config['db_host'] = 'localhost'; |
| | | $rcmail_config['db_dsnw'] = 'mysql://roundcube:pass@localhost/roundcubemail'; |
| | | // sqlite example: 'sqlite://./sqlite.db?mode=0646'; |
| | | |
| | | // 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'; |