0
|
1 <?php
|
|
2
|
|
3 // Driver - 'file' or 'sql'
|
|
4 $config['squirrelmail_driver'] = 'sql';
|
|
5
|
|
6 // full path to the squirrelmail data directory
|
|
7 $config['squirrelmail_data_dir'] = '';
|
|
8 $config['squirrelmail_data_dir_hash_level'] = 0;
|
|
9
|
|
10 // file charset - e.g. 'EUC-JP'. Leave empty for ASCII.
|
|
11 $config['squirrelmail_file_charset'] = '';
|
|
12
|
|
13 // 'mysql://dbuser:dbpass@localhost/database'
|
|
14 $config['squirrelmail_dsn'] = 'mysql://user:password@localhost/webmail';
|
|
15 $config['squirrelmail_db_charset'] = 'iso-8859-1';
|
|
16
|
|
17 $config['squirrelmail_address_table'] = 'address';
|
|
18 $config['squirrelmail_userprefs_table'] = 'userprefs';
|
|
19
|
|
20 // identities_level option value for squirrelmail plugin
|
|
21 // With this you can bypass/change identities_level checks
|
|
22 // for operations inside this plugin. See #1486773
|
|
23 $config['squirrelmail_identities_level'] = null;
|
|
24
|
|
25 // Set to false if you don't want the email address of the default identity
|
|
26 // (squirrelmail preference "email_address") to be saved as alias.
|
|
27 // Recommended: set to false if your squirrelmail config setting $edit_identity has been true.
|
|
28 $config['squirrelmail_set_alias'] = true;
|