source: subversion/branches/devel-addressbook/config/main.inc.php.dist @ 4239

Last change on this file since 4239 was 4239, checked in by thomasb, 3 years ago

Improve vcard saving; use callback functions to render certain contact fields; add button to delete a contact field

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