| | |
| | | |
| | | // 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'; |
| | |
| | | // 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'; |
| | | |