thomascube
2010-12-17 db1a87cd6c506f2afbd1a37c64cb56ae11120b49
commit | author | age
4e17e6 1 <?php
T 2
3 /*
4  +-----------------------------------------------------------------------+
5  | Main configuration file                                               |
6  |                                                                       |
e019f2 7  | This file is part of the Roundcube Webmail client                     |
A 8  | Copyright (C) 2005-2010, Roundcube Dev. - Switzerland                 |
52c1f2 9  | Licensed under the GNU GPL                                            |
4e17e6 10  |                                                                       |
T 11  +-----------------------------------------------------------------------+
12
13 */
14
15 $rcmail_config = array();
16
2d08c5 17 // ----------------------------------
A 18 // LOGGING/DEBUGGING
19 // ----------------------------------
20
968bdc 21 // system error reporting: 1 = log; 2 = report (not implemented yet), 4 = show, 8 = trace
13c1af 22 $rcmail_config['debug_level'] = 1;
4e17e6 23
b77d0d 24 // log driver:  'syslog' or 'file'.
A 25 $rcmail_config['log_driver'] = 'file';
26
0ad27c 27 // date format for log entries
A 28 // (read http://php.net/manual/en/function.date.php for all format characters)  
29 $rcmail_config['log_date_format'] = 'd-M-Y H:i:s O';
30
b77d0d 31 // Syslog ident string to use, if using the 'syslog' log driver.
A 32 $rcmail_config['syslog_id'] = 'roundcube';
33
34 // Syslog facility to use, if using the 'syslog' log driver.
35 // For possible values see installer or http://php.net/manual/en/function.openlog.php
36 $rcmail_config['syslog_facility'] = LOG_USER;
37
3e3429 38 // Log sent messages to <log_dir>/sendmail or to syslog
2d08c5 39 $rcmail_config['smtp_log'] = true;
b77d0d 40
3e3429 41 // Log successful logins to <log_dir>/userlogins or to syslog
2d08c5 42 $rcmail_config['log_logins'] = false;
b77d0d 43
2d08c5 44 // Log SQL queries to <log_dir>/sql or to syslog
A 45 $rcmail_config['sql_debug'] = false;
cc97ea 46
2d08c5 47 // Log IMAP conversation to <log_dir>/imap or to syslog
A 48 $rcmail_config['imap_debug'] = false;
6dc026 49
2d08c5 50 // Log LDAP conversation to <log_dir>/ldap or to syslog
A 51 $rcmail_config['ldap_debug'] = false;
cc9570 52
2d08c5 53 // Log SMTP conversation to <log_dir>/smtp or to syslog
A 54 $rcmail_config['smtp_debug'] = false;
f5d61d 55
2d08c5 56 // ----------------------------------
A 57 // IMAP
58 // ----------------------------------
4e17e6 59
T 60 // the mail host chosen to perform the log-in
61 // leave blank to show a textbox at login, give a list of hosts
42b113 62 // to display a pulldown menu or set one host as string.
f86e8f 63 // To use SSL/TLS connection, enter hostname with prefix ssl:// or tls://
bb8721 64 // Supported replacement variables:
A 65 // %n - http hostname ($_SERVER['SERVER_NAME'])
66 // %d - domain (http hostname without the first part)
67 // For example %n = mail.domain.tld, %d = domain.tld
4e17e6 68 $rcmail_config['default_host'] = '';
T 69
42b113 70 // TCP port used for IMAP connections
T 71 $rcmail_config['default_port'] = 143;
72
4dd417 73 // IMAP AUTH type (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or empty to use
A 74 // best server supported one)
b026c3 75 $rcmail_config['imap_auth_type'] = null;
T 76
00290a 77 // If you know your imap's folder delimiter, you can specify it here.
A 78 // Otherwise it will be determined automatically
030c84 79 $rcmail_config['imap_delimiter'] = null;
A 80
00290a 81 // If IMAP server doesn't support NAMESPACE extension, but you're
A 82 // using shared folders or personal root folder is non-empty, you'll need to
83 // set these options. All can be strings or arrays of strings.
e3af1f 84 // Folders need to be ended with directory separator, e.g. "INBOX."
A 85 // (special directory "~" is an exception to this rule)
db1a87 86 // These can be used also to overwrite server's namespaces
00290a 87 $rcmail_config['imap_ns_personal'] = null;
A 88 $rcmail_config['imap_ns_other']    = null;
89 $rcmail_config['imap_ns_shared']   = null;
90
d8c440 91 // By default IMAP capabilities are readed after connection to IMAP server
A 92 // In some cases, e.g. when using IMAP proxy, there's a need to refresh the list
93 // after login. Set to True if you've got this case.
94 $rcmail_config['imap_force_caps'] = false;
95
f75f65 96 // By default list of subscribed folders is determined using LIST-EXTENDED
A 97 // extension if available. Some servers (dovecot 1.x) returns wrong results
98 // for shared namespaces in this case. http://trac.roundcube.net/ticket/1486225
99 // Enable this option to force LSUB command usage instead.
100 $rcmail_config['imap_force_lsub'] = false;
101
f07d23 102 // IMAP connection timeout, in seconds. Default: 0 (no limit)
A 103 $rcmail_config['imap_timeout'] = 0;
104
a1fe6b 105 // Optional IMAP authentication identifier to be used as authorization proxy
A 106 $rcmail_config['imap_auth_cid'] = null;
107
108 // Optional IMAP authentication password to be used for imap_auth_cid
109 $rcmail_config['imap_auth_pw'] = null;
110
2d08c5 111 // ----------------------------------
A 112 // SMTP
113 // ----------------------------------
f88d41 114
c3b676 115 // SMTP server host (for sending mails).
2d08c5 116 // To use SSL/TLS connection, enter hostname with prefix ssl:// or tls://
c3b676 117 // If left blank, the PHP mail() function is used
bb8721 118 // Supported replacement variables:
A 119 // %h - user's IMAP hostname
120 // %n - http hostname ($_SERVER['SERVER_NAME'])
121 // %d - domain (http hostname without the first part)
11be93 122 // %z - IMAP domain (IMAP hostname without the first part)
bb8721 123 // For example %n = mail.domain.tld, %d = domain.tld
4e17e6 124 $rcmail_config['smtp_server'] = '';
T 125
fd8c50 126 // SMTP port (default is 25; 465 for SSL)
968bdc 127 $rcmail_config['smtp_port'] = 25;
T 128
e019f2 129 // SMTP username (if required) if you use %u as the username Roundcube
d206c1 130 // will use the current username for login
4e17e6 131 $rcmail_config['smtp_user'] = '';
T 132
e019f2 133 // SMTP password (if required) if you use %p as the password Roundcube
d206c1 134 // will use the current user's password for login
4e17e6 135 $rcmail_config['smtp_pass'] = '';
T 136
d206c1 137 // SMTP AUTH type (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or empty to use
S 138 // best server supported one)
139 $rcmail_config['smtp_auth_type'] = '';
140
63d4d6 141 // Optional SMTP authentication identifier to be used as authorization proxy
A 142 $rcmail_config['smtp_auth_cid'] = null;
143
a1fe6b 144 // Optional SMTP authentication password to be used for smtp_auth_cid
63d4d6 145 $rcmail_config['smtp_auth_pw'] = null;
a39212 146
aca3d2 147 // SMTP HELO host 
S 148 // Hostname to give to the remote server for SMTP 'HELO' or 'EHLO' messages 
149 // Leave this blank and you will get the server variable 'server_name' or 
150 // localhost if that isn't defined. 
151 $rcmail_config['smtp_helo_host'] = '';
152
f07d23 153 // SMTP connection timeout, in seconds. Default: 0 (no limit)
A 154 $rcmail_config['smtp_timeout'] = 0;
155
2d08c5 156 // ----------------------------------
A 157 // SYSTEM
158 // ----------------------------------
64608b 159
2d08c5 160 // THIS OPTION WILL ALLOW THE INSTALLER TO RUN AND CAN EXPOSE SENSITIVE CONFIG DATA.
A 161 // ONLY ENABLE IT IF YOU'RE REALLY SURE WHAT YOU'RE DOING!
162 $rcmail_config['enable_installer'] = false;
4e17e6 163
2d08c5 164 // use this folder to store log files (must be writeable for apache user)
A 165 // This is used by the 'file' log driver.
166 $rcmail_config['log_dir'] = 'logs/';
d559cb 167
2d08c5 168 // use this folder to store temp files (must be writeable for apache user)
A 169 $rcmail_config['temp_dir'] = 'temp/';
d559cb 170
2d08c5 171 // enable caching of messages and mailbox data in the local database.
A 172 // this is recommended if the IMAP server does not run on the same machine
173 $rcmail_config['enable_caching'] = false;
010274 174
2d08c5 175 // lifetime of message cache
A 176 // possible units: s, m, h, d, w
177 $rcmail_config['message_cache_lifetime'] = '10d';
19862b 178
2d08c5 179 // enforce connections over https
A 180 // with this option enabled, all non-secure connections will be redirected.
181 // set the port for the ssl connection as value of this option if it differs from the default 443
182 $rcmail_config['force_https'] = false;
acb08f 183
db1a87 184 // Allow browser-autocompletion on login form.
T 185 // 0 - disabled, 1 - username and host only, 2 - username, host, password
186 $rcmail_config['login_autocomplete'] = 0;
187
188 // If users authentication is not case sensitive this must be enabled.
189 // You can also use it to force conversion of logins to lower case.
190 $rcmail_config['login_lc'] = false;
fbe24e 191
e019f2 192 // automatically create a new Roundcube user when log-in the first time.
2d08c5 193 // a new user will be created once the IMAP login succeeds.
A 194 // set to false if only registered users can use this service
195 $rcmail_config['auto_create_user'] = true;
4e17e6 196
95d90f 197 // Includes should be interpreted as PHP files
2d08c5 198 $rcmail_config['skin_include_php'] = false;
fd8c50 199
95d90f 200 // Session lifetime in minutes
A 201 // must be greater than 'keep_alive'/60
7902df 202 $rcmail_config['session_lifetime'] = 10;
T 203
4e17e6 204 // check client IP in session athorization
aad6e2 205 $rcmail_config['ip_check'] = false;
T 206
207 // Use an additional frequently changing cookie to athenticate user sessions.
208 // There have been problems reported with this feature.
209 $rcmail_config['double_auth'] = false;
4e17e6 210
bac7d1 211 // this key is used to encrypt the users imap password which is stored
T 212 // in the session record (and the client cookie if remember password is enabled).
213 // please provide a string of exactly 24 chars.
214 $rcmail_config['des_key'] = 'rcmail-!24ByteDESkey*Str';
215
2d08c5 216 // Automatically add this domain to user names for login
A 217 // Only for IMAP servers that require full e-mail addresses for login
218 // Specify an array with 'host' => 'domain' values to support multiple hosts
6a642d 219 // Supported replacement variables:
A 220 // %h - user's IMAP hostname
221 // %n - http hostname ($_SERVER['SERVER_NAME'])
222 // %d - domain (http hostname without the first part)
11be93 223 // %z - IMAP domain (IMAP hostname without the first part)
6a642d 224 // For example %n = mail.domain.tld, %d = domain.tld
2d08c5 225 $rcmail_config['username_domain'] = '';
A 226
227 // This domain will be used to form e-mail addresses of new users
228 // Specify an array with 'host' => 'domain' values to support multiple hosts
bb8721 229 // Supported replacement variables:
A 230 // %h - user's IMAP hostname
231 // %n - http hostname ($_SERVER['SERVER_NAME'])
232 // %d - domain (http hostname without the first part)
11be93 233 // %z - IMAP domain (IMAP hostname without the first part)
bb8721 234 // For example %n = mail.domain.tld, %d = domain.tld
2d08c5 235 $rcmail_config['mail_domain'] = '';
A 236
237 // Password charset.
238 // Use it if your authentication backend doesn't support UTF-8.
239 // Defaults to ISO-8859-1 for backward compatibility
240 $rcmail_config['password_charset'] = 'ISO-8859-1';
241
242 // How many seconds must pass between emails sent by a user
243 $rcmail_config['sendmail_delay'] = 0;
244
751b22 245 // Maximum number of recipients per message. Default: 0 (no limit)
A 246 $rcmail_config['max_recipients'] = 0; 
247
d1851b 248 // Maximum allowednumber of members of an address group. Default: 0 (no limit)
T 249 // If 'max_recipients' is set this value should be less or equal
250 $rcmail_config['max_group_members'] = 0; 
251
2d08c5 252 // add this user-agent to message headers when sending
6b6f2e 253 $rcmail_config['useragent'] = 'Roundcube Webmail/'.RCMAIL_VERSION;
2d08c5 254
A 255 // use this name to compose page titles
6b6f2e 256 $rcmail_config['product_name'] = 'Roundcube Webmail';
2d08c5 257
A 258 // try to load host-specific configuration
259 // see http://trac.roundcube.net/wiki/Howto_Config for more details
260 $rcmail_config['include_host_config'] = false;
261
262 // path to a text file which will be added to each sent message
e019f2 263 // paths are relative to the Roundcube root folder
2d08c5 264 $rcmail_config['generic_message_footer'] = '';
A 265
5852c1 266 // path to a text file which will be added to each sent HTML message
e019f2 267 // paths are relative to the Roundcube root folder
5852c1 268 $rcmail_config['generic_message_footer_html'] = '';
A 269
2d08c5 270 // add a received header to outgoing mails containing the creators IP and hostname
A 271 $rcmail_config['http_received_header'] = false;
272
273 // Whether or not to encrypt the IP address and the host name
274 // these could, in some circles, be considered as sensitive information;
275 // however, for the administrator, these could be invaluable help
276 // when tracking down issues.
277 $rcmail_config['http_received_header_encrypt'] = false;
278
ac8edb 279 // This string is used as a delimiter for message headers when sending
A 280 // a message via mail() function. Leave empty for auto-detection
2d08c5 281 $rcmail_config['mail_header_delimiter'] = NULL;
A 282
6b6f2e 283 // number of chars allowed for line when wrapping text.
T 284 // text wrapping is done when composing/sending messages
c769c6 285 $rcmail_config['line_length'] = 72;
6b6f2e 286
T 287 // send plaintext messages as format=flowed
288 $rcmail_config['send_format_flowed'] = true;
289
2d08c5 290 // session domain: .example.org
A 291 $rcmail_config['session_domain'] = '';
292
293 // don't allow these settings to be overriden by the user
294 $rcmail_config['dont_override'] = array();
295
296 // Set identities access level:
297 // 0 - many identities with possibility to edit all params
298 // 1 - many identities with possibility to edit all params but not email address
299 // 2 - one identity with possibility to edit all params
300 // 3 - one identity with possibility to edit all params but not email address
301 $rcmail_config['identities_level'] = 0;
302
303 // mime magic database
304 $rcmail_config['mime_magic'] = '/usr/share/misc/magic';
305
306 // Enable DNS checking for e-mail address validation
307 $rcmail_config['email_dns_check'] = false;
308
309 // ----------------------------------
310 // PLUGINS
311 // ----------------------------------
312
313 // List of active plugins (in plugins/ directory)
314 $rcmail_config['plugins'] = array();
315
316 // ----------------------------------
317 // USER INTERFACE
318 // ----------------------------------
319
f52c93 320 // default messages sort column. Use empty value for default server's sorting, 
T 321 // or 'arrival', 'date', 'subject', 'from', 'to', 'size', 'cc'
322 $rcmail_config['message_sort_col'] = '';
2d08c5 323
f52c93 324 // default messages sort order
2d08c5 325 $rcmail_config['message_sort_order'] = 'DESC';
A 326
327 // These cols are shown in the message list. Available cols are:
4438d6 328 // subject, from, to, cc, replyto, date, size, status, flag, attachment
A 329 $rcmail_config['list_cols'] = array('subject', 'status', 'from', 'date', 'size', 'flag', 'attachment');
2d08c5 330
c8ae24 331 // the default locale setting (leave empty for auto-detection)
T 332 // RFC1766 formatted language name like en_US, de_DE, de_CH, fr_FR, pt_BR
333 $rcmail_config['language'] = null;
4e17e6 334
b6b593 335 // use this format for short date display (date or strftime format)
4e17e6 336 $rcmail_config['date_short'] = 'D H:i';
T 337
b6b593 338 // use this format for detailed date/time formatting (date or strftime format)
4e17e6 339 $rcmail_config['date_long'] = 'd.m.Y H:i';
T 340
b6b593 341 // use this format for today's date display (date or strftime format)
8c8b2a 342 $rcmail_config['date_today'] = 'H:i';
4e17e6 343
1966c5 344 // store draft message is this mailbox
S 345 // leave blank if draft messages should not be stored
346 $rcmail_config['drafts_mbox'] = 'Drafts';
347
b4b081 348 // store spam messages in this mailbox
S 349 $rcmail_config['junk_mbox'] = 'Junk';
350
4e17e6 351 // store sent message is this mailbox
T 352 // leave blank if sent messages should not be stored
353 $rcmail_config['sent_mbox'] = 'Sent';
354
355 // move messages to this folder when deleting them
356 // leave blank if they should be deleted directly
357 $rcmail_config['trash_mbox'] = 'Trash';
358
fa4cd2 359 // display these folders separately in the mailbox list.
83ce4b 360 // these folders will also be displayed with localized names
4e17e6 361 $rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash');
T 362
b2ff3d 363 // automatically create the above listed default folders on login
2d08c5 364 $rcmail_config['create_default_folders'] = false;
b2ff3d 365
c8c1e0 366 // protect the default folders from renames, deletes, and subscription changes
2d08c5 367 $rcmail_config['protect_default_folders'] = true;
c8c1e0 368
2d08c5 369 // if in your system 0 quota means no limit set this option to true 
A 370 $rcmail_config['quota_zero_as_unlimited'] = false;
876b15 371
996066 372 // Make use of the built-in spell checker. It is based on GoogieSpell.
e9ac14 373 // Since Google only accepts connections over https your PHP installatation
T 374 // requires to be compiled with Open SSL support
2d08c5 375 $rcmail_config['enable_spellcheck'] = true;
ed5d29 376
5d2b7f 377 // Set the spell checking engine. 'googie' is the default. 'pspell' is also available,
T 378 // but requires the Pspell extensions. When using Nox Spell Server, also set 'googie' here.
379 $rcmail_config['spellcheck_engine'] = 'googie';
380
996066 381 // For a locally installed Nox Spell Server, please specify the URI to call it.
T 382 // Get Nox Spell Server from http://orangoo.com/labs/?page_id=72
383 // Leave empty to use the Google spell checking service, what means
384 // that the message content will be sent to Google in order to check spelling
385 $rcmail_config['spellcheck_uri'] = '';
386
387 // These languages can be selected for spell checking.
388 // Configure as a PHP style hash array: array('en'=>'English', 'de'=>'Deutsch');
01a8c5 389 // Leave empty for default set of available language.
996066 390 $rcmail_config['spellcheck_languages'] = NULL;
T 391
2d08c5 392 // don't let users set pagesize to more than this value if set
A 393 $rcmail_config['max_pagesize'] = 200;
967b34 394
2d08c5 395 // Minimal value of user's 'keep_alive' setting (in seconds)
A 396 // Must be less than 'session_lifetime'
397 $rcmail_config['min_keep_alive'] = 60;
2471d3 398
2d08c5 399 // ----------------------------------
A 400 // ADDRESSBOOK SETTINGS
401 // ----------------------------------
aec82b 402
6153e2 403 // This indicates which type of address book to use. Possible choises:
A 404 // 'sql' (default) and 'ldap'.
405 // If set to 'ldap' then it will look at using the first writable LDAP
4f9c83 406 // address book as the primary address book and it will not display the
S 407 // SQL address book in the 'Address Book' view.
6153e2 408 $rcmail_config['address_book_type'] = 'sql';
4f9c83 409
S 410 // In order to enable public ldap search, configure an array like the Verisign
411 // example further below. if you would like to test, simply uncomment the example.
5f25a1 412 $rcmail_config['ldap_public'] = array();
T 413
4f9c83 414 //
S 415 // If you are going to use LDAP for individual address books, you will need to 
416 // set 'user_specific' to true and use the variables to generate the appropriate DNs to access it.
417 //
418 // The recommended directory structure for LDAP is to store all the address book entries
419 // under the users main entry, e.g.:
420 //
421 //  o=root
422 //   ou=people
423 //    uid=user@domain
3b9a53 424 //  mail=contact@contactdomain
T 425 //
4f9c83 426 // So the base_dn would be uid=%fu,ou=people,o=root
S 427 // The bind_dn would be the same as based_dn or some super user login.
3b9a53 428 /* 
f11541 429  * example config for Verisign directory
eea43f 430  *
3b9a53 431 $rcmail_config['ldap_public']['Verisign'] = array(
T 432   'name'          => 'Verisign.com',
bb8721 433   // Replacement variables supported in host names:
A 434   // %h - user's IMAP hostname
435   // %n - http hostname ($_SERVER['SERVER_NAME'])
436   // %d - domain (http hostname without the first part)
11be93 437   // %z - IMAP domain (IMAP hostname without the first part)
bb8721 438   // For example %n = mail.domain.tld, %d = domain.tld
3b9a53 439   'hosts'         => array('directory.verisign.com'),
T 440   'port'          => 389,
1148c6 441   'use_tls'          => false,
3b9a53 442   'user_specific' => false,   // If true the base_dn, bind_dn and bind_pass default to the user's IMAP login.
T 443   // %fu - The full username provided, assumes the username is an email
444   //       address, uses the username_domain value if not an email address.
445   // %u  - The username prior to the '@'.
446   // %d  - The domain name after the '@'.
f76765 447   // %dc - The domain name hierarchal string e.g. "dc=test,dc=domain,dc=com"
1148c6 448   // %dn - DN found by ldap search when search_filter/search_base_dn are used
3b9a53 449   'base_dn'       => '',
T 450   'bind_dn'       => '',
451   'bind_pass'     => '',
1148c6 452   // It's possible to bind for an individual address book
A 453   // The login name is used to search for the DN to bind with
454   'search_base_dn' => '',
455   'search_filter'  => '',   // e.g. '(&(objectClass=posixAccount)(uid=%u))'
456
3b9a53 457   'writable'      => false,   // Indicates if we can write to the LDAP directory or not.
T 458   // If writable is true then these fields need to be populated:
459   // LDAP_Object_Classes, required_fields, LDAP_rdn
460   'LDAP_Object_Classes' => array("top", "inetOrgPerson"), // To create a new contact these are the object classes to specify (or any other classes you wish to use).
461   'required_fields'     => array("cn", "sn", "mail"),     // The required fields needed to build a new contact as required by the object classes (can include additional fields not required by the object classes).
462   'LDAP_rdn'      => 'mail', // The RDN field that is used for new entries, this field needs to be one of the search_fields, the base of base_dn is appended to the RDN to insert into the LDAP directory.
463   'ldap_version'  => 3,       // using LDAPv3
464   'search_fields' => array('mail', 'cn'),  // fields to search in
465   'name_field'    => 'cn',    // this field represents the contact's name
466   'email_field'   => 'mail',  // this field represents the contact's e-mail
467   'surname_field' => 'sn',    // this field represents the contact's last name
468   'firstname_field' => 'gn',  // this field represents the contact's first name
469   'sort'          => 'cn',    // The field to sort the listing by.
470   'scope'         => 'sub',   // search mode: sub|base|list
471   'filter'        => '',      // used for basic listing (if not empty) and will be &'d with search queries. example: status=act
650601 472   'fuzzy_search'  => true,    // server allows wildcard search
93c018 473   'sizelimit'     => '0',     // Enables you to limit the count of entries fetched. Setting this to 0 means no limit. 
A 474   'timelimit'     => '0',     // Sets the number of seconds how long is spend on the search. Setting this to 0 means no limit. 
475 );
3b9a53 476 */
d1d2c4 477
2c8e84 478 // An ordered array of the ids of the addressbooks that should be searched
T 479 // when populating address autocomplete fields server-side. ex: array('sql','Verisign');
480 $rcmail_config['autocomplete_addressbooks'] = array('sql');
481
c296b8 482 // The minimum number of characters required to be typed in an autocomplete field
A 483 // before address books will be searched. Most useful for LDAP directories that
484 // may need to do lengthy results building given overly-broad searches
485 $rcmail_config['autocomplete_min_length'] = 1;
486
2d08c5 487 // ----------------------------------
A 488 // USER PREFERENCES
489 // ----------------------------------
4e17e6 490
e55ab0 491 // Use this charset as fallback for message decoding
A 492 $rcmail_config['default_charset'] = 'ISO-8859-1';
493
67effe 494 // skin name: folder from skins/
A 495 $rcmail_config['skin'] = 'default';
e58df3 496
4e17e6 497 // show up to X items in list view
T 498 $rcmail_config['pagesize'] = 40;
499
500 // use this timezone to display date/time
c8ae24 501 $rcmail_config['timezone'] = 'auto';
4e17e6 502
5349b7 503 // is daylight saving On?
d7d663 504 $rcmail_config['dst_active'] = (bool)date('I');
4647e1 505
4e17e6 506 // prefer displaying HTML messages
2d08c5 507 $rcmail_config['prefer_html'] = true;
4e17e6 508
2a4135 509 // display remote inline images
A 510 // 0 - Never, always ask
511 // 1 - Ask if sender is not in address book
512 // 2 - Always show inline images
513 $rcmail_config['show_images'] = 0;
712b30 514
b19097 515 // compose html formatted messages by default
868deb 516 // 0 - never, 1 - always, 2 - on reply to HTML message only 
A 517 $rcmail_config['htmleditor'] = 0;
b19097 518
30233b 519 // show pretty dates as standard
2d08c5 520 $rcmail_config['prettydate'] = true;
4e17e6 521
d656f1 522 // save compose message every 300 seconds (5min)
T 523 $rcmail_config['draft_autosave'] = 300;
0566ad 524
b19097 525 // default setting if preview pane is enabled
2d08c5 526 $rcmail_config['preview_pane'] = false;
b19097 527
bc4960 528 // Mark as read when viewed in preview pane (delay in seconds)
T 529 // Set to -1 if messages in preview pane should not be marked as read
530 $rcmail_config['preview_pane_mark_read'] = 0;
531
06343d 532 // focus new window if new message arrives
A 533 $rcmail_config['focus_on_new_message'] = true;
534
eaa394 535 // Clear Trash on logout
2d08c5 536 $rcmail_config['logout_purge'] = false;
eaa394 537
A 538 // Compact INBOX on logout
2d08c5 539 $rcmail_config['logout_expunge'] = false;
50c753 540
166b61 541 // Display attached images below the message body 
2d08c5 542 $rcmail_config['inline_images'] = true;
5e0045 543
ffae15 544 // Encoding of long/non-ascii attachment names:
A 545 // 0 - Full RFC 2231 compatible
546 // 1 - RFC 2047 for 'name' and RFC 2231 for 'filename' parameter (Thunderbird's default)
547 // 2 - Full 2047 compatible
21c277 548 $rcmail_config['mime_param_folding'] = 1;
ffae15 549
2d08c5 550 // Set true if deleted messages should not be displayed
2b5852 551 // This will make the application run slower
2d08c5 552 $rcmail_config['skip_deleted'] = false;
2b5852 553
A 554 // Set true to Mark deleted messages as read as well as deleted
555 // False means that a message's read status is not affected by marking it as deleted
2d08c5 556 $rcmail_config['read_when_deleted'] = true;
2b5852 557
2d08c5 558 // Set to true to newer delete messages immediately
119cd1 559 // Use 'Purge' to remove messages marked as deleted 
2d08c5 560 $rcmail_config['flag_for_deletion'] = false;
2b5852 561
95d90f 562 // Default interval for keep-alive/check-recent requests (in seconds)
A 563 // Must be greater than or equal to 'min_keep_alive' and less than 'session_lifetime'
564 $rcmail_config['keep_alive'] = 60;
565
2fd975 566 // If true all folders will be checked for recent messages
2d08c5 567 $rcmail_config['check_all_folders'] = false;
2fd975 568
e54bb7 569 // If true, after message delete/move, the next message will be displayed
2d08c5 570 $rcmail_config['display_next'] = false;
e54bb7 571
f52c93 572 // 0 - Do not expand threads 
T 573 // 1 - Expand all threads automatically 
574 // 2 - Expand only threads with unread messages 
575 $rcmail_config['autoexpand_threads'] = 0;
1cead0 576
50f56d 577 // When replying place cursor above original message (top posting)
2d08c5 578 $rcmail_config['top_posting'] = false;
50f56d 579
0207c4 580 // When replying strip original signature from message
2d08c5 581 $rcmail_config['strip_existing_sig'] = true;
0207c4 582
50f56d 583 // Show signature:
0207c4 584 // 0 - Never
T 585 // 1 - Always
50f56d 586 // 2 - New messages only
0207c4 587 // 3 - Forwards and Replies only
T 588 $rcmail_config['show_sig'] = 1;
589
590 // When replying or forwarding place sender's signature above existing message
2d08c5 591 $rcmail_config['sig_above'] = false;
50f56d 592
47ad83 593 // Use MIME encoding (quoted-printable) for 8bit characters in message body
2d08c5 594 $rcmail_config['force_7bit'] = false;
47ad83 595
b975da 596 // Defaults of the search field configuration.
T 597 // The array can contain a per-folder list of header fields which should be considered when searching
598 // The entry with key '*' stands for all folders which do not have a specific list set.
599 // Please note that folder names should to be in sync with $rcmail_config['default_imap_folders']
600 $rcmail_config['search_mods'] = null;  // Example: array('*' => array('subject'=>1, 'from'=>1), 'Sent' => array('subject'=>1, 'to'=>1));
601
b7f952 602 // 'Delete always'
A 603 // This setting reflects if mail should be always deleted
604 // when moving to Trash fails. This is necessary in some setups
605 // when user is over quota and Trash is included in the quota.
606 $rcmail_config['delete_always'] = false;
607
f22ea7 608 // Behavior if a received message requests a message delivery notification (read receipt)
A 609 // 0 = ask the user, 1 = send automatically, 2 = ignore (never send or ask)
610 // 3 = send automatically if sender is in addressbook, otherwise ask the user
611 // 4 = send automatically if sender is in addressbook, otherwise ignore
612 $rcmail_config['mdn_requests'] = 0;
b25dfd 613
f22ea7 614 // Return receipt checkbox default state
A 615 $rcmail_config['mdn_default'] = 0;
616
617 // Delivery Status Notification checkbox default state
618 $rcmail_config['dsn_default'] = 0;
619
eeb85f 620 // Place replies in the folder of the message being replied to
A 621 $rcmail_config['reply_same_folder'] = false;
622
f22ea7 623 // end of config file