commit | author | age
|
4e17e6
|
1 |
<?php |
T |
2 |
|
|
3 |
/* |
|
4 |
+-----------------------------------------------------------------------+ |
|
5 |
| Main configuration file | |
|
6 |
| | |
|
7 |
| This file is part of the RoundCube Webmail client | |
|
8 |
| Copyright (C) 2005, RoundCube Dev. - Switzerland | |
52c1f2
|
9 |
| Licensed under the GNU GPL | |
4e17e6
|
10 |
| | |
T |
11 |
+-----------------------------------------------------------------------+ |
|
12 |
|
|
13 |
*/ |
|
14 |
|
|
15 |
$rcmail_config = array(); |
|
16 |
|
|
17 |
|
968bdc
|
18 |
// system error reporting: 1 = log; 2 = report (not implemented yet), 4 = show, 8 = trace |
13c1af
|
19 |
$rcmail_config['debug_level'] = 1; |
4e17e6
|
20 |
|
6dc026
|
21 |
// enable caching of messages and mailbox data in the local database. |
T |
22 |
// this is recommended if the IMAP server does not run on the same machine |
|
23 |
$rcmail_config['enable_caching'] = TRUE; |
|
24 |
|
cc9570
|
25 |
// lifetime of message cache |
T |
26 |
// possible units: s, m, h, d, w |
|
27 |
$rcmail_config['message_cache_lifetime'] = '10d'; |
|
28 |
|
7902df
|
29 |
// automatically create a new RoundCube user when log-in the first time. |
7cc38e
|
30 |
// a new user will be created once the IMAP login succeeds. |
4e17e6
|
31 |
// set to false if only registered users can use this service |
T |
32 |
$rcmail_config['auto_create_user'] = TRUE; |
|
33 |
|
|
34 |
// the mail host chosen to perform the log-in |
|
35 |
// leave blank to show a textbox at login, give a list of hosts |
42b113
|
36 |
// to display a pulldown menu or set one host as string. |
T |
37 |
// To use SSL connection, enter ssl://hostname:993 |
4e17e6
|
38 |
$rcmail_config['default_host'] = ''; |
T |
39 |
|
42b113
|
40 |
// TCP port used for IMAP connections |
T |
41 |
$rcmail_config['default_port'] = 143; |
|
42 |
|
0566ad
|
43 |
// Automatically add this domain to user names for login |
T |
44 |
// Only for IMAP servers that require full e-mail addresses for login |
|
45 |
// Specify an array with 'host' => 'domain' values to support multiple hosts |
|
46 |
$rcmail_config['username_domain'] = ''; |
|
47 |
|
977a29
|
48 |
// This domain will be used to form e-mail addresses of new users |
T |
49 |
// Specify an array with 'host' => 'domain' values to support multiple hosts |
13c1af
|
50 |
$rcmail_config['mail_domain'] = ''; |
977a29
|
51 |
|
T |
52 |
// Path to a virtuser table file to resolve user names and e-mail addresses |
|
53 |
$rcmail_config['virtuser_file'] = ''; |
|
54 |
|
f88d41
|
55 |
// Query to resolve user names and e-mail addresses from the database |
T |
56 |
// %u will be replaced with the current username for login. |
|
57 |
// The query should select the user's e-mail address as first col |
|
58 |
$rcmail_config['virtuser_query'] = ''; |
|
59 |
|
4e17e6
|
60 |
// use this host for sending mails. |
fd8c50
|
61 |
// to use SSL connection, set ssl://smtp.host.com |
4e17e6
|
62 |
// if left blank, the PHP mail() function is used |
T |
63 |
$rcmail_config['smtp_server'] = ''; |
|
64 |
|
fd8c50
|
65 |
// SMTP port (default is 25; 465 for SSL) |
968bdc
|
66 |
$rcmail_config['smtp_port'] = 25; |
T |
67 |
|
d206c1
|
68 |
// SMTP username (if required) if you use %u as the username RoundCube |
S |
69 |
// will use the current username for login |
4e17e6
|
70 |
$rcmail_config['smtp_user'] = ''; |
T |
71 |
|
d206c1
|
72 |
// SMTP password (if required) if you use %p as the password RoundCube |
S |
73 |
// will use the current user's password for login |
4e17e6
|
74 |
$rcmail_config['smtp_pass'] = ''; |
T |
75 |
|
d206c1
|
76 |
// SMTP AUTH type (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or empty to use |
S |
77 |
// best server supported one) |
|
78 |
$rcmail_config['smtp_auth_type'] = ''; |
|
79 |
|
4e17e6
|
80 |
// Log sent messages |
T |
81 |
$rcmail_config['smtp_log'] = TRUE; |
|
82 |
|
|
83 |
// these cols are shown in the message list |
|
84 |
// available cols are: subject, from, to, cc, replyto, date, size, encoding |
|
85 |
$rcmail_config['list_cols'] = array('subject', 'from', 'date', 'size'); |
|
86 |
|
|
87 |
// relative path to the skin folder |
|
88 |
$rcmail_config['skin_path'] = 'skins/default/'; |
|
89 |
|
|
90 |
// use this folder to store temp files (must be writebale for apache user) |
|
91 |
$rcmail_config['temp_dir'] = 'temp/'; |
|
92 |
|
fd8c50
|
93 |
// use this folder to store log files (must be writebale for apache user) |
T |
94 |
$rcmail_config['log_dir'] = 'logs/'; |
|
95 |
|
7902df
|
96 |
// session lifetime in minutes |
T |
97 |
$rcmail_config['session_lifetime'] = 10; |
|
98 |
|
4e17e6
|
99 |
// check client IP in session athorization |
T |
100 |
$rcmail_config['ip_check'] = TRUE; |
|
101 |
|
58e360
|
102 |
// the default locale setting |
f3b659
|
103 |
$rcmail_config['locale_string'] = 'en'; |
4e17e6
|
104 |
|
T |
105 |
// use this format for short date display |
|
106 |
$rcmail_config['date_short'] = 'D H:i'; |
|
107 |
|
|
108 |
// use this format for detailed date/time formatting |
|
109 |
$rcmail_config['date_long'] = 'd.m.Y H:i'; |
|
110 |
|
|
111 |
// add this user-agent to message headers when sending |
1cded8
|
112 |
$rcmail_config['useragent'] = 'RoundCube Webmail/0.1b'; |
4e17e6
|
113 |
|
15a9d1
|
114 |
// use this name to compose page titles |
T |
115 |
$rcmail_config['product_name'] = 'RoundCube Webmail'; |
|
116 |
|
4e17e6
|
117 |
// only list folders within this path |
T |
118 |
$rcmail_config['imap_root'] = ''; |
|
119 |
|
|
120 |
// store sent message is this mailbox |
|
121 |
// leave blank if sent messages should not be stored |
|
122 |
$rcmail_config['sent_mbox'] = 'Sent'; |
|
123 |
|
|
124 |
// move messages to this folder when deleting them |
|
125 |
// leave blank if they should be deleted directly |
|
126 |
$rcmail_config['trash_mbox'] = 'Trash'; |
|
127 |
|
|
128 |
// display these folders separately in the mailbox list |
|
129 |
$rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash'); |
|
130 |
|
3baec2
|
131 |
// Set TRUE if deleted messages should not be displayed |
T |
132 |
// This will make the application run slower |
|
133 |
$rcmail_config['skip_deleted'] = FALSE; |
|
134 |
|
4b3af3
|
135 |
// Set true to Mark deleted messages as read as well as deleted |
S |
136 |
// False means that a message's read status is not affected by marking it as deleted |
|
137 |
$rcmail_config['read_when_deleted'] = TRUE; |
|
138 |
|
|
139 |
// When a Trash folder is not present and a message is deleted, flag |
|
140 |
// the message for deletion rather than deleting it immediately. Setting this to |
|
141 |
// false causes deleted messages to be permanantly removed if there is no Trash folder |
|
142 |
$rcmail_config['flag_for_deletion'] = TRUE; |
|
143 |
|
4b0f65
|
144 |
// path to a text file which will be added to each sent message |
T |
145 |
// paths are relative to the RoundCube root folder |
|
146 |
$rcmail_config['generic_message_footer'] = ''; |
|
147 |
|
|
148 |
// this string is used as a delimiter for message headers when sending |
4647e1
|
149 |
// leave empty for auto-detection |
T |
150 |
$rcmail_config['mail_header_delimiter'] = NULL; |
b076a4
|
151 |
|
eea43f
|
152 |
// in order to enable public ldap search, create a config array |
S |
153 |
// like the Verisign example below. if you would like to test, |
|
154 |
// simply uncomment the Verisign example. |
|
155 |
/** |
|
156 |
* example config for Verisign directory |
|
157 |
* |
|
158 |
* $rcmail_config['ldap_public']['Verisign'] = array('hosts' => array('directory.verisign.com'), |
|
159 |
* 'port' => 389, |
|
160 |
* 'base_dn' => '', |
|
161 |
* 'search_fields' => array('Email' => 'mail', 'Name' => 'cn'), |
|
162 |
* 'name_field' => 'cn', |
|
163 |
* 'mail_field' => 'mail', |
|
164 |
* 'scope' => 'sub', |
|
165 |
* 'fuzzy_search' => 0); |
|
166 |
*/ |
d1d2c4
|
167 |
|
4e17e6
|
168 |
|
T |
169 |
/***** these settings can be overwritten by user's preferences *****/ |
|
170 |
|
|
171 |
// show up to X items in list view |
|
172 |
$rcmail_config['pagesize'] = 40; |
|
173 |
|
|
174 |
// use this timezone to display date/time |
|
175 |
$rcmail_config['timezone'] = 1; |
|
176 |
|
4647e1
|
177 |
// daylight savings are On |
T |
178 |
$rcmail_config['dst_active'] = TRUE; |
|
179 |
|
4e17e6
|
180 |
// prefer displaying HTML messages |
T |
181 |
$rcmail_config['prefer_html'] = TRUE; |
|
182 |
|
30233b
|
183 |
// show pretty dates as standard |
T |
184 |
$rcmail_config['prettydate'] = TRUE; |
4e17e6
|
185 |
|
86f172
|
186 |
// default sort col |
T |
187 |
$rcmail_config['message_sort_col'] = 'date'; |
|
188 |
|
|
189 |
// default sort order |
|
190 |
$rcmail_config['message_sort_order'] = 'DESC'; |
|
191 |
|
4b3af3
|
192 |
// list of configuration option names that need to be available in Javascript. |
S |
193 |
$rcmail_config['javascript_config'] = array('read_when_deleted', 'flag_for_deletion'); |
0566ad
|
194 |
|
T |
195 |
/***** try to load host-specific configuration *****/ |
|
196 |
|
|
197 |
@include($_SERVER['HTTP_HOST'].'.inc.php'); |
|
198 |
|
|
199 |
|
4e17e6
|
200 |
// end of config file |
6e4985
|
201 |
?> |