thomascube
2005-09-30 968bdc7c90f718560b84eb3b7e8e1d02cf4270f3
commit | author | age
4e17e6 1 <?php
T 2
3 /*
4  +-----------------------------------------------------------------------+
5  | Configuration file for database access                                |
6  |                                                                       |
7  | This file is part of the RoundCube Webmail client                     |
8  | Copyright (C) 2005, RoundCube Dev. - Switzerland                      |
9  | All rights reserved.                                                  |
10  |                                                                       |
11  +-----------------------------------------------------------------------+
12
13 */
14
15 $rcmail_config = array();
16
17 // database engine (currently supported: mysql)
18 $rcmail_config['db_type'] = 'mysql';
19
20 // database host
21 $rcmail_config['db_host'] = 'localhost';
22
23 // database user
24 $rcmail_config['db_user'] = 'roundcube';
25
26 // pwd
27 $rcmail_config['db_pass'] = 'pass';
28
29 // database name
30 $rcmail_config['db_name'] = 'roundcubemail';
31
32
33 // you can define specific table names used to store webmail data
34 $rcmail_config['db_table_users'] = 'users';
35
36 $rcmail_config['db_table_identities'] = 'identities';
37
38 $rcmail_config['db_table_contacts'] = 'contacts';
39
40 $rcmail_config['db_table_session'] = 'session';
41
42 $rcmail_config['db_table_cache'] = 'cache';
43
44
45 // end db config file
46 ?>