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