source: github/config/main.inc.php.dist @ eeb85f4

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