source: github/config/main.inc.php.dist @ 5852c14d

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