source: github/config/main.inc.php.dist @ 15d7627

HEADcourier-fixdev-browser-capabilitiespdorelease-0.6release-0.7release-0.8
Last change on this file since 15d7627 was 15d7627, checked in by thomascube <thomas@…>, 2 years ago

Fix typos

  • Property mode set to 100644
File size: 28.8 KB
Line 
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, The Roundcube Dev Team                       |
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// %s - domain name after the '@' from e-mail address provided at login screen
68// For example %n = mail.domain.tld, %d = domain.tld
69$rcmail_config['default_host'] = '';
70
71// TCP port used for IMAP connections
72$rcmail_config['default_port'] = 143;
73
74// IMAP AUTH type (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or empty to use
75// best server supported one)
76$rcmail_config['imap_auth_type'] = null;
77
78// If you know your imap's folder delimiter, you can specify it here.
79// Otherwise it will be determined automatically
80$rcmail_config['imap_delimiter'] = null;
81
82// If IMAP server doesn't support NAMESPACE extension, but you're
83// using shared folders or personal root folder is non-empty, you'll need to
84// set these options. All can be strings or arrays of strings.
85// Folders need to be ended with directory separator, e.g. "INBOX."
86// (special directory "~" is an exception to this rule)
87// These can be used also to overwrite server's namespaces
88$rcmail_config['imap_ns_personal'] = null;
89$rcmail_config['imap_ns_other']    = null;
90$rcmail_config['imap_ns_shared']   = null;
91
92// By default IMAP capabilities are readed after connection to IMAP server
93// In some cases, e.g. when using IMAP proxy, there's a need to refresh the list
94// after login. Set to True if you've got this case.
95$rcmail_config['imap_force_caps'] = false;
96
97// By default list of subscribed folders is determined using LIST-EXTENDED
98// extension if available. Some servers (dovecot 1.x) returns wrong results
99// for shared namespaces in this case. http://trac.roundcube.net/ticket/1486225
100// Enable this option to force LSUB command usage instead.
101$rcmail_config['imap_force_lsub'] = false;
102
103// IMAP connection timeout, in seconds. Default: 0 (no limit)
104$rcmail_config['imap_timeout'] = 0;
105
106// Optional IMAP authentication identifier to be used as authorization proxy
107$rcmail_config['imap_auth_cid'] = null;
108
109// Optional IMAP authentication password to be used for imap_auth_cid
110$rcmail_config['imap_auth_pw'] = null;
111
112// Type of IMAP indexes cache. Supported values: 'db', 'apc' and 'memcache'.
113$rcmail_config['imap_cache'] = null;
114
115// Enables messages cache. Only 'db' cache is supported.
116$rcmail_config['messages_cache'] = false;
117
118
119// ----------------------------------
120// SMTP
121// ----------------------------------
122
123// SMTP server host (for sending mails).
124// To use SSL/TLS connection, enter hostname with prefix ssl:// or tls://
125// If left blank, the PHP mail() function is used
126// Supported replacement variables:
127// %h - user's IMAP hostname
128// %n - http hostname ($_SERVER['SERVER_NAME'])
129// %d - domain (http hostname without the first part)
130// %z - IMAP domain (IMAP hostname without the first part)
131// For example %n = mail.domain.tld, %d = domain.tld
132$rcmail_config['smtp_server'] = '';
133
134// SMTP port (default is 25; 465 for SSL)
135$rcmail_config['smtp_port'] = 25;
136
137// SMTP username (if required) if you use %u as the username Roundcube
138// will use the current username for login
139$rcmail_config['smtp_user'] = '';
140
141// SMTP password (if required) if you use %p as the password Roundcube
142// will use the current user's password for login
143$rcmail_config['smtp_pass'] = '';
144
145// SMTP AUTH type (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or empty to use
146// best server supported one)
147$rcmail_config['smtp_auth_type'] = '';
148
149// Optional SMTP authentication identifier to be used as authorization proxy
150$rcmail_config['smtp_auth_cid'] = null;
151
152// Optional SMTP authentication password to be used for smtp_auth_cid
153$rcmail_config['smtp_auth_pw'] = null;
154
155// SMTP HELO host
156// Hostname to give to the remote server for SMTP 'HELO' or 'EHLO' messages
157// Leave this blank and you will get the server variable 'server_name' or
158// localhost if that isn't defined.
159$rcmail_config['smtp_helo_host'] = '';
160
161// SMTP connection timeout, in seconds. Default: 0 (no limit)
162$rcmail_config['smtp_timeout'] = 0;
163
164// ----------------------------------
165// SYSTEM
166// ----------------------------------
167
168// THIS OPTION WILL ALLOW THE INSTALLER TO RUN AND CAN EXPOSE SENSITIVE CONFIG DATA.
169// ONLY ENABLE IT IF YOU'RE REALLY SURE WHAT YOU'RE DOING!
170$rcmail_config['enable_installer'] = false;
171
172// use this folder to store log files (must be writeable for apache user)
173// This is used by the 'file' log driver.
174$rcmail_config['log_dir'] = 'logs/';
175
176// use this folder to store temp files (must be writeable for apache user)
177$rcmail_config['temp_dir'] = 'temp/';
178
179// lifetime of message cache
180// possible units: s, m, h, d, w
181$rcmail_config['message_cache_lifetime'] = '10d';
182
183// enforce connections over https
184// with this option enabled, all non-secure connections will be redirected.
185// set the port for the ssl connection as value of this option if it differs from the default 443
186$rcmail_config['force_https'] = false;
187
188// tell PHP that it should work as under secure connection
189// even if it doesn't recognize it as secure ($_SERVER['HTTPS'] is not set)
190// e.g. when you're running Roundcube behind a https proxy
191$rcmail_config['use_https'] = false;
192
193// Allow browser-autocompletion on login form.
194// 0 - disabled, 1 - username and host only, 2 - username, host, password
195$rcmail_config['login_autocomplete'] = 0;
196
197// If users authentication is not case sensitive this must be enabled.
198// You can also use it to force conversion of logins to lower case.
199// After enabling it all user records need to be updated, e.g. with query:
200// UPDATE users SET username = LOWER(username);
201$rcmail_config['login_lc'] = false;
202
203// automatically create a new Roundcube user when log-in the first time.
204// a new user will be created once the IMAP login succeeds.
205// set to false if only registered users can use this service
206$rcmail_config['auto_create_user'] = true;
207
208// replace Roundcube logo with this image
209// specify an URL relative to the document root of this Roundcube installation
210$rcmail_config['skin_logo'] = null;
211
212// Includes should be interpreted as PHP files
213$rcmail_config['skin_include_php'] = false;
214
215// Session lifetime in minutes
216// must be greater than 'keep_alive'/60
217$rcmail_config['session_lifetime'] = 10;
218
219// session domain: .example.org
220$rcmail_config['session_domain'] = '';
221
222// Backend to use for session storage. Can either be 'db' (default) or 'memcache'
223// If set to memcache, a list of servers need to be specified in 'memcache_hosts'
224// Make sure the Memcache extension (http://pecl.php.net/package/memcache) version >= 2.0.0 is installed
225$rcmail_config['session_storage'] = 'db';
226
227// Use these hosts for accessing memcached
228// Define any number of hosts in the form hostname:port
229$rcmail_config['memcache_hosts'] = null; // e.g. array( 'localhost:11211', '192.168.1.12:11211' );
230
231// check client IP in session athorization
232$rcmail_config['ip_check'] = false;
233
234// check referer of incoming requests
235$rcmail_config['referer_check'] = false;
236
237// this key is used to encrypt the users imap password which is stored
238// in the session record (and the client cookie if remember password is enabled).
239// please provide a string of exactly 24 chars.
240$rcmail_config['des_key'] = 'rcmail-!24ByteDESkey*Str';
241
242// Automatically add this domain to user names for login
243// Only for IMAP servers that require full e-mail addresses for login
244// Specify an array with 'host' => 'domain' values to support multiple hosts
245// Supported replacement variables:
246// %h - user's IMAP hostname
247// %n - http hostname ($_SERVER['SERVER_NAME'])
248// %d - domain (http hostname without the first part)
249// %z - IMAP domain (IMAP hostname without the first part)
250// For example %n = mail.domain.tld, %d = domain.tld
251$rcmail_config['username_domain'] = '';
252
253// This domain will be used to form e-mail addresses of new users
254// Specify an array with 'host' => 'domain' values to support multiple hosts
255// Supported replacement variables:
256// %h - user's IMAP hostname
257// %n - http hostname ($_SERVER['SERVER_NAME'])
258// %d - domain (http hostname without the first part)
259// %z - IMAP domain (IMAP hostname without the first part)
260// For example %n = mail.domain.tld, %d = domain.tld
261$rcmail_config['mail_domain'] = '';
262
263// Password charset.
264// Use it if your authentication backend doesn't support UTF-8.
265// Defaults to ISO-8859-1 for backward compatibility
266$rcmail_config['password_charset'] = 'ISO-8859-1';
267
268// How many seconds must pass between emails sent by a user
269$rcmail_config['sendmail_delay'] = 0;
270
271// Maximum number of recipients per message. Default: 0 (no limit)
272$rcmail_config['max_recipients'] = 0;
273
274// Maximum allowednumber of members of an address group. Default: 0 (no limit)
275// If 'max_recipients' is set this value should be less or equal
276$rcmail_config['max_group_members'] = 0;
277
278// add this user-agent to message headers when sending
279$rcmail_config['useragent'] = 'Roundcube Webmail/'.RCMAIL_VERSION;
280
281// use this name to compose page titles
282$rcmail_config['product_name'] = 'Roundcube Webmail';
283
284// try to load host-specific configuration
285// see http://trac.roundcube.net/wiki/Howto_Config for more details
286$rcmail_config['include_host_config'] = false;
287
288// path to a text file which will be added to each sent message
289// paths are relative to the Roundcube root folder
290$rcmail_config['generic_message_footer'] = '';
291
292// path to a text file which will be added to each sent HTML message
293// paths are relative to the Roundcube root folder
294$rcmail_config['generic_message_footer_html'] = '';
295
296// add a received header to outgoing mails containing the creators IP and hostname
297$rcmail_config['http_received_header'] = false;
298
299// Whether or not to encrypt the IP address and the host name
300// these could, in some circles, be considered as sensitive information;
301// however, for the administrator, these could be invaluable help
302// when tracking down issues.
303$rcmail_config['http_received_header_encrypt'] = false;
304
305// This string is used as a delimiter for message headers when sending
306// a message via mail() function. Leave empty for auto-detection
307$rcmail_config['mail_header_delimiter'] = NULL;
308
309// number of chars allowed for line when wrapping text.
310// text wrapping is done when composing/sending messages
311$rcmail_config['line_length'] = 72;
312
313// send plaintext messages as format=flowed
314$rcmail_config['send_format_flowed'] = true;
315
316// don't allow these settings to be overriden by the user
317$rcmail_config['dont_override'] = array();
318
319// Set identities access level:
320// 0 - many identities with possibility to edit all params
321// 1 - many identities with possibility to edit all params but not email address
322// 2 - one identity with possibility to edit all params
323// 3 - one identity with possibility to edit all params but not email address
324$rcmail_config['identities_level'] = 0;
325
326// mime magic database
327$rcmail_config['mime_magic'] = '/usr/share/misc/magic';
328
329// path to imagemagick identify binary
330$rcmail_config['im_identify_path'] = null;
331
332// path to imagemagick convert binary
333$rcmail_config['im_convert_path'] = null;
334
335// maximum size of uploaded contact photos in pixel
336$rcmail_config['contact_photo_size'] = 160;
337
338// Enable DNS checking for e-mail address validation
339$rcmail_config['email_dns_check'] = false;
340
341// ----------------------------------
342// PLUGINS
343// ----------------------------------
344
345// List of active plugins (in plugins/ directory)
346$rcmail_config['plugins'] = array();
347
348// ----------------------------------
349// USER INTERFACE
350// ----------------------------------
351
352// default messages sort column. Use empty value for default server's sorting,
353// or 'arrival', 'date', 'subject', 'from', 'to', 'size', 'cc'
354$rcmail_config['message_sort_col'] = '';
355
356// default messages sort order
357$rcmail_config['message_sort_order'] = 'DESC';
358
359// These cols are shown in the message list. Available cols are:
360// subject, from, to, cc, replyto, date, size, status, flag, attachment
361$rcmail_config['list_cols'] = array('subject', 'status', 'from', 'date', 'size', 'flag', 'attachment');
362
363// the default locale setting (leave empty for auto-detection)
364// RFC1766 formatted language name like en_US, de_DE, de_CH, fr_FR, pt_BR
365$rcmail_config['language'] = null;
366
367// use this format for short date display (date or strftime format)
368$rcmail_config['date_short'] = 'D H:i';
369
370// use this format for detailed date/time formatting (date or strftime format)
371$rcmail_config['date_long'] = 'd.m.Y H:i';
372
373// use this format for today's date display (date or strftime format)
374// Note: $ character will be replaced with 'Today' label
375$rcmail_config['date_today'] = 'H:i';
376
377// use this format for date display without time (date or strftime format)
378$rcmail_config['date_format'] = 'Y-m-d';
379
380// store draft message is this mailbox
381// leave blank if draft messages should not be stored
382// NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
383$rcmail_config['drafts_mbox'] = 'Drafts';
384
385// store spam messages in this mailbox
386// NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
387$rcmail_config['junk_mbox'] = 'Junk';
388
389// store sent message is this mailbox
390// leave blank if sent messages should not be stored
391// NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
392$rcmail_config['sent_mbox'] = 'Sent';
393
394// move messages to this folder when deleting them
395// leave blank if they should be deleted directly
396// NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
397$rcmail_config['trash_mbox'] = 'Trash';
398
399// display these folders separately in the mailbox list.
400// these folders will also be displayed with localized names
401// NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
402$rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash');
403
404// automatically create the above listed default folders on login
405$rcmail_config['create_default_folders'] = false;
406
407// protect the default folders from renames, deletes, and subscription changes
408$rcmail_config['protect_default_folders'] = true;
409
410// if in your system 0 quota means no limit set this option to true
411$rcmail_config['quota_zero_as_unlimited'] = false;
412
413// Make use of the built-in spell checker. It is based on GoogieSpell.
414// Since Google only accepts connections over https your PHP installatation
415// requires to be compiled with Open SSL support
416$rcmail_config['enable_spellcheck'] = true;
417
418// Set the spell checking engine. 'googie' is the default. 'pspell' is also available,
419// but requires the Pspell extensions. When using Nox Spell Server, also set 'googie' here.
420$rcmail_config['spellcheck_engine'] = 'googie';
421
422// For a locally installed Nox Spell Server, please specify the URI to call it.
423// Get Nox Spell Server from http://orangoo.com/labs/?page_id=72
424// Leave empty to use the Google spell checking service, what means
425// that the message content will be sent to Google in order to check spelling
426$rcmail_config['spellcheck_uri'] = '';
427
428// These languages can be selected for spell checking.
429// Configure as a PHP style hash array: array('en'=>'English', 'de'=>'Deutsch');
430// Leave empty for default set of available language.
431$rcmail_config['spellcheck_languages'] = NULL;
432
433// don't let users set pagesize to more than this value if set
434$rcmail_config['max_pagesize'] = 200;
435
436// Minimal value of user's 'keep_alive' setting (in seconds)
437// Must be less than 'session_lifetime'
438$rcmail_config['min_keep_alive'] = 60;
439
440// ----------------------------------
441// ADDRESSBOOK SETTINGS
442// ----------------------------------
443
444// This indicates which type of address book to use. Possible choises:
445// 'sql' (default) and 'ldap'.
446// If set to 'ldap' then it will look at using the first writable LDAP
447// address book as the primary address book and it will not display the
448// SQL address book in the 'Address Book' view.
449$rcmail_config['address_book_type'] = 'sql';
450
451// In order to enable public ldap search, configure an array like the Verisign
452// example further below. if you would like to test, simply uncomment the example.
453// Array key must contain only safe characters, ie. a-zA-Z0-9_
454$rcmail_config['ldap_public'] = array();
455
456// If you are going to use LDAP for individual address books, you will need to
457// set 'user_specific' to true and use the variables to generate the appropriate DNs to access it.
458//
459// The recommended directory structure for LDAP is to store all the address book entries
460// under the users main entry, e.g.:
461//
462//  o=root
463//   ou=people
464//    uid=user@domain
465//  mail=contact@contactdomain
466//
467// So the base_dn would be uid=%fu,ou=people,o=root
468// The bind_dn would be the same as based_dn or some super user login.
469/*
470 * example config for Verisign directory
471 *
472$rcmail_config['ldap_public']['Verisign'] = array(
473  'name'          => 'Verisign.com',
474  // Replacement variables supported in host names:
475  // %h - user's IMAP hostname
476  // %n - http hostname ($_SERVER['SERVER_NAME'])
477  // %d - domain (http hostname without the first part)
478  // %z - IMAP domain (IMAP hostname without the first part)
479  // For example %n = mail.domain.tld, %d = domain.tld
480  'hosts'         => array('directory.verisign.com'),
481  'port'          => 389,
482  'use_tls'           => false,
483  'ldap_version'  => 3,       // using LDAPv3
484  'user_specific' => false,   // If true the base_dn, bind_dn and bind_pass default to the user's IMAP login.
485  // %fu - The full username provided, assumes the username is an email
486  //       address, uses the username_domain value if not an email address.
487  // %u  - The username prior to the '@'.
488  // %d  - The domain name after the '@'.
489  // %dc - The domain name hierarchal string e.g. "dc=test,dc=domain,dc=com"
490  // %dn - DN found by ldap search when search_filter/search_base_dn are used
491  'base_dn'       => '',
492  'bind_dn'       => '',
493  'bind_pass'     => '',
494  // It's possible to bind for an individual address book
495  // The login name is used to search for the DN to bind with
496  'search_base_dn' => '',
497  'search_filter'  => '',   // e.g. '(&(objectClass=posixAccount)(uid=%u))'
498  // Optional authentication identifier to be used as SASL authorization proxy
499  // bind_dn need to be empty
500  'auth_cid'       => '',
501  // SASL authentication method (for proxy auth), e.g. DIGEST-MD5
502  'auth_method'    => '',
503  // Indicates if we can write to the LDAP directory or not.
504  // If writable is true then these fields need to be populated:
505  // LDAP_Object_Classes, required_fields, LDAP_rdn
506  'writable'       => false,
507  // To create a new contact these are the object classes to specify
508  // (or any other classes you wish to use).
509  'LDAP_Object_Classes' => array('top', 'inetOrgPerson'),
510  // The RDN field that is used for new entries, this field needs
511  // to be one of the search_fields, the base of base_dn is appended
512  // to the RDN to insert into the LDAP directory.
513  'LDAP_rdn'       => 'mail',
514  // The required fields needed to build a new contact as required by
515  // the object classes (can include additional fields not required by the object classes).
516  'required_fields' => array('cn', 'sn', 'mail'),
517  'search_fields'   => array('mail', 'cn'),  // fields to search in
518  // mapping of contact fields to directory attributes
519  'fieldmap' => array(
520    // Roundcube  => LDAP
521    'name'        => 'cn',
522    'surname'     => 'sn',
523    'firstname'   => 'givenName',
524    'email'       => 'mail',
525    'phone:home'  => 'homePhone',
526    'phone:work'  => 'telephoneNumber',
527    'phone:mobile' => 'mobile',
528    'street'      => 'street',
529    'zipcode'     => 'postalCode',
530    'locality'    => 'l',
531    'country'     => 'c',
532    'organization' => 'o',
533  ),
534  'sort'          => 'cn',    // The field to sort the listing by.
535  'scope'         => 'sub',   // search mode: sub|base|list
536  'filter'        => '(objectClass=inetOrgPerson)',      // used for basic listing (if not empty) and will be &'d with search queries. example: status=act
537  'fuzzy_search'  => true,    // server allows wildcard search
538  'vlv'           => false,   // Enable Virtual List View to more efficiently fetch paginated data (if server supports it)
539  'numsub_filter' => '(objectClass=organizationalUnit)',   // with VLV, we also use numSubOrdinates to query the total number of records. Set this filter to get all numSubOrdinates attributes for counting
540  'sizelimit'     => '0',     // Enables you to limit the count of entries fetched. Setting this to 0 means no limit.
541  'timelimit'     => '0',     // Sets the number of seconds how long is spend on the search. Setting this to 0 means no limit.
542
543  // definition for contact groups (uncomment if no groups are supported)
544  // for the groups base_dn, the user replacements %fu, %u, $d and %dc work as for base_dn (see above)
545  // if the groups base_dn is empty, the contact base_dn is used for the groups as well
546  // -> in this case, assure that groups and contacts are separated due to the concernig filters!
547  'groups'        => array(
548    'base_dn'     => '',   
549    'filter'      => '(objectClass=groupOfNames)',
550    'object_classes' => array("top", "groupOfNames"),
551  ),
552);
553*/
554
555// An ordered array of the ids of the addressbooks that should be searched
556// when populating address autocomplete fields server-side. ex: array('sql','Verisign');
557$rcmail_config['autocomplete_addressbooks'] = array('sql');
558
559// The minimum number of characters required to be typed in an autocomplete field
560// before address books will be searched. Most useful for LDAP directories that
561// may need to do lengthy results building given overly-broad searches
562$rcmail_config['autocomplete_min_length'] = 1;
563
564// show address fields in this order
565// available placeholders: {street}, {locality}, {zipcode}, {country}, {region}
566$rcmail_config['address_template'] = '{street}<br/>{locality} {zipcode}<br/>{country} {region}';
567
568// ----------------------------------
569// USER PREFERENCES
570// ----------------------------------
571
572// Use this charset as fallback for message decoding
573$rcmail_config['default_charset'] = 'ISO-8859-1';
574
575// skin name: folder from skins/
576$rcmail_config['skin'] = 'default';
577
578// show up to X items in list view
579$rcmail_config['pagesize'] = 40;
580
581// use this timezone to display date/time
582$rcmail_config['timezone'] = 'auto';
583
584// is daylight saving On?
585$rcmail_config['dst_active'] = (bool)date('I');
586
587// prefer displaying HTML messages
588$rcmail_config['prefer_html'] = true;
589
590// display remote inline images
591// 0 - Never, always ask
592// 1 - Ask if sender is not in address book
593// 2 - Always show inline images
594$rcmail_config['show_images'] = 0;
595
596// compose html formatted messages by default
597// 0 - never, 1 - always, 2 - on reply to HTML message only
598$rcmail_config['htmleditor'] = 0;
599
600// show pretty dates as standard
601$rcmail_config['prettydate'] = true;
602
603// save compose message every 300 seconds (5min)
604$rcmail_config['draft_autosave'] = 300;
605
606// default setting if preview pane is enabled
607$rcmail_config['preview_pane'] = false;
608
609// Mark as read when viewed in preview pane (delay in seconds)
610// Set to -1 if messages in preview pane should not be marked as read
611$rcmail_config['preview_pane_mark_read'] = 0;
612
613// Clear Trash on logout
614$rcmail_config['logout_purge'] = false;
615
616// Compact INBOX on logout
617$rcmail_config['logout_expunge'] = false;
618
619// Display attached images below the message body
620$rcmail_config['inline_images'] = true;
621
622// Encoding of long/non-ascii attachment names:
623// 0 - Full RFC 2231 compatible
624// 1 - RFC 2047 for 'name' and RFC 2231 for 'filename' parameter (Thunderbird's default)
625// 2 - Full 2047 compatible
626$rcmail_config['mime_param_folding'] = 1;
627
628// Set true if deleted messages should not be displayed
629// This will make the application run slower
630$rcmail_config['skip_deleted'] = false;
631
632// Set true to Mark deleted messages as read as well as deleted
633// False means that a message's read status is not affected by marking it as deleted
634$rcmail_config['read_when_deleted'] = true;
635
636// Set to true to newer delete messages immediately
637// Use 'Purge' to remove messages marked as deleted
638$rcmail_config['flag_for_deletion'] = false;
639
640// Default interval for keep-alive/check-recent requests (in seconds)
641// Must be greater than or equal to 'min_keep_alive' and less than 'session_lifetime'
642$rcmail_config['keep_alive'] = 60;
643
644// If true all folders will be checked for recent messages
645$rcmail_config['check_all_folders'] = false;
646
647// If true, after message delete/move, the next message will be displayed
648$rcmail_config['display_next'] = false;
649
650// 0 - Do not expand threads
651// 1 - Expand all threads automatically
652// 2 - Expand only threads with unread messages
653$rcmail_config['autoexpand_threads'] = 0;
654
655// When replying place cursor above original message (top posting)
656$rcmail_config['top_posting'] = false;
657
658// When replying strip original signature from message
659$rcmail_config['strip_existing_sig'] = true;
660
661// Show signature:
662// 0 - Never
663// 1 - Always
664// 2 - New messages only
665// 3 - Forwards and Replies only
666$rcmail_config['show_sig'] = 1;
667
668// When replying or forwarding place sender's signature above existing message
669$rcmail_config['sig_above'] = false;
670
671// Use MIME encoding (quoted-printable) for 8bit characters in message body
672$rcmail_config['force_7bit'] = false;
673
674// Defaults of the search field configuration.
675// The array can contain a per-folder list of header fields which should be considered when searching
676// The entry with key '*' stands for all folders which do not have a specific list set.
677// Please note that folder names should to be in sync with $rcmail_config['default_imap_folders']
678$rcmail_config['search_mods'] = null;  // Example: array('*' => array('subject'=>1, 'from'=>1), 'Sent' => array('subject'=>1, 'to'=>1));
679
680// Defaults of the addressbook search field configuration.
681$rcmail_config['addressbook_search_mods'] = null;  // Example: array('name'=>1, 'firstname'=>1, 'surname'=>1, 'email'=>1, '*'=>1);
682
683// 'Delete always'
684// This setting reflects if mail should be always deleted
685// when moving to Trash fails. This is necessary in some setups
686// when user is over quota and Trash is included in the quota.
687$rcmail_config['delete_always'] = false;
688
689// Behavior if a received message requests a message delivery notification (read receipt)
690// 0 = ask the user, 1 = send automatically, 2 = ignore (never send or ask)
691// 3 = send automatically if sender is in addressbook, otherwise ask the user
692// 4 = send automatically if sender is in addressbook, otherwise ignore
693$rcmail_config['mdn_requests'] = 0;
694
695// Return receipt checkbox default state
696$rcmail_config['mdn_default'] = 0;
697
698// Delivery Status Notification checkbox default state
699$rcmail_config['dsn_default'] = 0;
700
701// Place replies in the folder of the message being replied to
702$rcmail_config['reply_same_folder'] = false;
703
704// Sets default mode of Forward feature to "forward as attachment"
705$rcmail_config['forward_attachment'] = false;
706
707// Defines address book (internal index) to which new contacts will be added
708// By default it is the first writeable addressbook.
709// Note: Use '0' for built-in address book.
710$rcmail_config['default_addressbook'] = null;
711
712// Enables spell checking before sending a message.
713$rcmail_config['spellcheck_before_send'] = false;
714
715// end of config file
Note: See TracBrowser for help on using the repository browser.