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