source: github/config/main.inc.php.dist @ 64608bf

HEADcourier-fixdev-browser-capabilitiespdorelease-0.6release-0.7release-0.8
Last change on this file since 64608bf was 64608bf, checked in by alecpl <alec@…>, 3 years ago
  • Password: Make passwords encoding consistent with core, add 'password_charset' global option (#1486473)
  • Property mode set to 100644
File size: 18.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-2009, RoundCube Dev. - Switzerland                 |
9 | Licensed under the GNU GPL                                            |
10 |                                                                       |
11 +-----------------------------------------------------------------------+
12
13*/
14
15$rcmail_config = array();
16
17// system error reporting: 1 = log; 2 = report (not implemented yet), 4 = show, 8 = trace
18$rcmail_config['debug_level'] = 1;
19
20// log driver:  'syslog' or 'file'.
21$rcmail_config['log_driver'] = 'file';
22
23// date format for log entries
24// (read http://php.net/manual/en/function.date.php for all format characters) 
25$rcmail_config['log_date_format'] = 'd-M-Y H:i:s O';
26
27// Syslog ident string to use, if using the 'syslog' log driver.
28$rcmail_config['syslog_id'] = 'roundcube';
29
30// Syslog facility to use, if using the 'syslog' log driver.
31// For possible values see installer or http://php.net/manual/en/function.openlog.php
32$rcmail_config['syslog_facility'] = LOG_USER;
33
34// use this folder to store log files (must be writeable for apache user)
35// This is used by the 'file' log driver.
36$rcmail_config['log_dir'] = 'logs/';
37
38// use this folder to store temp files (must be writeable for apache user)
39$rcmail_config['temp_dir'] = 'temp/';
40
41// List of active plugins (in plugins/ directory)
42$rcmail_config['plugins'] = array();
43
44// enable caching of messages and mailbox data in the local database.
45// this is recommended if the IMAP server does not run on the same machine
46$rcmail_config['enable_caching'] = FALSE;
47
48// lifetime of message cache
49// possible units: s, m, h, d, w
50$rcmail_config['message_cache_lifetime'] = '10d';
51
52// enforce connections over https
53// with this option enabled, all non-secure connections will be redirected.
54// set the port for the ssl connection as value of this option if it differs from the default 443
55$rcmail_config['force_https'] = FALSE;
56
57// automatically create a new RoundCube user when log-in the first time.
58// a new user will be created once the IMAP login succeeds.
59// set to false if only registered users can use this service
60$rcmail_config['auto_create_user'] = TRUE;
61
62// the mail host chosen to perform the log-in
63// leave blank to show a textbox at login, give a list of hosts
64// to display a pulldown menu or set one host as string.
65// To use SSL/TLS connection, enter hostname with prefix ssl:// or tls://
66$rcmail_config['default_host'] = '';
67
68// TCP port used for IMAP connections
69$rcmail_config['default_port'] = 143;
70
71// IMAP auth type. Can be "auth" (CRAM-MD5), "plain" (PLAIN) or "check" to auto detect.
72// Optional, defaults to "check"
73$rcmail_config['imap_auth_type'] = null;
74
75// If you know your imap's root directory and its folder delimiter,
76// you can specify them here. Otherwise they will be determined automatically.
77$rcmail_config['imap_root'] = null;
78$rcmail_config['imap_delimiter'] = null;
79
80// Automatically add this domain to user names for login
81// Only for IMAP servers that require full e-mail addresses for login
82// Specify an array with 'host' => 'domain' values to support multiple hosts
83$rcmail_config['username_domain'] = '';
84
85// This domain will be used to form e-mail addresses of new users
86// Specify an array with 'host' => 'domain' values to support multiple hosts
87$rcmail_config['mail_domain'] = '';
88
89// Path to a virtuser table file to resolve user names and e-mail addresses
90$rcmail_config['virtuser_file'] = '';
91
92// Query to resolve user names and e-mail addresses from the database
93// %u will be replaced with the current username for login.
94// The query should select the user's e-mail address as first column
95// and optional identity name as second column
96$rcmail_config['virtuser_query'] = '';
97
98// SMTP server host (for sending mails).
99// To use SSL connection, set ssl://smtp.host.com
100// WARNING: Don't use 'tls://' prefix, TLS is used by default if possible
101// If left blank, the PHP mail() function is used
102// Use %h variable as replacement for user's IMAP hostname
103$rcmail_config['smtp_server'] = '';
104
105// SMTP port (default is 25; 465 for SSL)
106$rcmail_config['smtp_port'] = 25;
107
108// SMTP username (if required) if you use %u as the username RoundCube
109// will use the current username for login
110$rcmail_config['smtp_user'] = '';
111
112// SMTP password (if required) if you use %p as the password RoundCube
113// will use the current user's password for login
114$rcmail_config['smtp_pass'] = '';
115
116// SMTP AUTH type (DIGEST-MD5, CRAM-MD5, LOGIN, PLAIN or empty to use
117// best server supported one)
118$rcmail_config['smtp_auth_type'] = '';
119
120// SMTP HELO host
121// Hostname to give to the remote server for SMTP 'HELO' or 'EHLO' messages
122// Leave this blank and you will get the server variable 'server_name' or
123// localhost if that isn't defined.
124$rcmail_config['smtp_helo_host'] = '';
125
126// Password charset.
127// Use it if your authentication backend doesn't support UTF-8.
128// Defaults to ISO-8859-1 for backward compatibility
129$rcmail_config['password_charset'] = 'ISO-8859-1';
130
131// Log sent messages
132$rcmail_config['smtp_log'] = TRUE;
133
134// Log SQL queries to <log_dir>/sql or to syslog
135$rcmail_config['sql_debug'] = false;
136
137// Log IMAP conversation to <log_dir>/imap or to syslog
138$rcmail_config['imap_debug'] = false;
139
140// Log LDAP conversation to <log_dir>/ldap or to syslog
141$rcmail_config['ldap_debug'] = false;
142
143// Log SMTP conversation to <log_dir>/smtp or to syslog
144$rcmail_config['smtp_debug'] = false;
145
146// How many seconds must pass between emails sent by a user
147$rcmail_config['sendmail_delay'] = 0;
148
149// These cols are shown in the message list. Available cols are:
150// subject, from, to, cc, replyto, date, size, flag, attachment
151$rcmail_config['list_cols'] = array('subject', 'from', 'date', 'size', 'flag', 'attachment');
152
153// Includes should be interpreted as PHP files
154$rcmail_config['skin_include_php'] = FALSE;
155
156// Session lifetime in minutes
157// must be greater than 'keep_alive'/60
158$rcmail_config['session_lifetime'] = 10;
159
160// check client IP in session athorization
161$rcmail_config['ip_check'] = false;
162
163// Use an additional frequently changing cookie to athenticate user sessions.
164// There have been problems reported with this feature.
165$rcmail_config['double_auth'] = false;
166
167// this key is used to encrypt the users imap password which is stored
168// in the session record (and the client cookie if remember password is enabled).
169// please provide a string of exactly 24 chars.
170$rcmail_config['des_key'] = 'rcmail-!24ByteDESkey*Str';
171
172// the default locale setting (leave empty for auto-detection)
173// RFC1766 formatted language name like en_US, de_DE, de_CH, fr_FR, pt_BR
174$rcmail_config['language'] = null;
175
176// use this format for short date display (date or strftime format)
177$rcmail_config['date_short'] = 'D H:i';
178
179// use this format for detailed date/time formatting (date or strftime format)
180$rcmail_config['date_long'] = 'd.m.Y H:i';
181
182// use this format for today's date display (date or strftime format)
183$rcmail_config['date_today'] = 'H:i';
184
185// add this user-agent to message headers when sending
186$rcmail_config['useragent'] = 'RoundCube Webmail/'.RCMAIL_VERSION;
187
188// use this name to compose page titles
189$rcmail_config['product_name'] = 'RoundCube Webmail';
190
191// store draft message is this mailbox
192// leave blank if draft messages should not be stored
193$rcmail_config['drafts_mbox'] = 'Drafts';
194
195// store spam messages in this mailbox
196$rcmail_config['junk_mbox'] = 'Junk';
197
198// store sent message is this mailbox
199// leave blank if sent messages should not be stored
200$rcmail_config['sent_mbox'] = 'Sent';
201
202// move messages to this folder when deleting them
203// leave blank if they should be deleted directly
204$rcmail_config['trash_mbox'] = 'Trash';
205
206// display these folders separately in the mailbox list.
207// these folders will also be displayed with localized names
208$rcmail_config['default_imap_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash');
209
210// automatically create the above listed default folders on login
211$rcmail_config['create_default_folders'] = FALSE;
212
213// protect the default folders from renames, deletes, and subscription changes
214$rcmail_config['protect_default_folders'] = TRUE;
215
216// if in your system 0 quota means no limit set this option to TRUE
217$rcmail_config['quota_zero_as_unlimited'] = FALSE;
218
219// Behavior if a received message requests a message delivery notification (read receipt)
220// 0 = ask the user, 1 = send automatically, 2 = ignore (never send or ask)
221$rcmail_config['mdn_requests'] = 0;
222
223// Use this charset as fallback for message decoding
224$rcmail_config['default_charset'] = 'ISO-8859-1';
225
226// Make use of the built-in spell checker. It is based on GoogieSpell.
227// Since Google only accepts connections over https your PHP installatation
228// requires to be compiled with Open SSL support
229$rcmail_config['enable_spellcheck'] = TRUE;
230
231// Set the spell checking engine. 'googie' is the default. 'pspell' is also available,
232// but requires the Pspell extensions. When using Nox Spell Server, also set 'googie' here.
233$rcmail_config['spellcheck_engine'] = 'googie';
234
235// For a locally installed Nox Spell Server, please specify the URI to call it.
236// Get Nox Spell Server from http://orangoo.com/labs/?page_id=72
237// Leave empty to use the Google spell checking service, what means
238// that the message content will be sent to Google in order to check spelling
239$rcmail_config['spellcheck_uri'] = '';
240
241// These languages can be selected for spell checking.
242// Configure as a PHP style hash array: array('en'=>'English', 'de'=>'Deutsch');
243// Leave empty for default set of available language.
244$rcmail_config['spellcheck_languages'] = NULL;
245
246// path to a text file which will be added to each sent message
247// paths are relative to the RoundCube root folder
248$rcmail_config['generic_message_footer'] = '';
249
250// add a received header to outgoing mails containing the creators IP and hostname
251$rcmail_config['http_received_header'] = false;
252
253// Whether or not to encrypt the IP address and the host name
254// these could, in some circles, be considered as sensitive information;
255// however, for the administrator, these could be invaluable help
256// when tracking down issues.
257$rcmail_config['http_received_header_encrypt'] = false;
258
259// this string is used as a delimiter for message headers when sending
260// leave empty for auto-detection
261$rcmail_config['mail_header_delimiter'] = NULL;
262
263// session domain: .example.org
264$rcmail_config['session_domain'] = '';
265
266// This indicates which type of address book to use. Possible choises:
267// 'sql' (default) and 'ldap'.
268// If set to 'ldap' then it will look at using the first writable LDAP
269// address book as the primary address book and it will not display the
270// SQL address book in the 'Address Book' view.
271$rcmail_config['address_book_type'] = 'sql';
272
273// In order to enable public ldap search, configure an array like the Verisign
274// example further below. if you would like to test, simply uncomment the example.
275$rcmail_config['ldap_public'] = array();
276
277//
278// If you are going to use LDAP for individual address books, you will need to
279// set 'user_specific' to true and use the variables to generate the appropriate DNs to access it.
280//
281// The recommended directory structure for LDAP is to store all the address book entries
282// under the users main entry, e.g.:
283//
284//  o=root
285//   ou=people
286//    uid=user@domain
287//  mail=contact@contactdomain
288//
289// So the base_dn would be uid=%fu,ou=people,o=root
290// The bind_dn would be the same as based_dn or some super user login.
291/*
292 * example config for Verisign directory
293 *
294$rcmail_config['ldap_public']['Verisign'] = array(
295  'name'          => 'Verisign.com',
296  'hosts'         => array('directory.verisign.com'),
297  'port'          => 389,
298  'use_tls'         => false,
299  'user_specific' => false,   // If true the base_dn, bind_dn and bind_pass default to the user's IMAP login.
300  // %fu - The full username provided, assumes the username is an email
301  //       address, uses the username_domain value if not an email address.
302  // %u  - The username prior to the '@'.
303  // %d  - The domain name after the '@'.
304  'base_dn'       => '',
305  'bind_dn'       => '',
306  'bind_pass'     => '',
307  'writable'      => false,   // Indicates if we can write to the LDAP directory or not.
308  // If writable is true then these fields need to be populated:
309  // LDAP_Object_Classes, required_fields, LDAP_rdn
310  '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).
311  '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).
312  '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.
313  'ldap_version'  => 3,       // using LDAPv3
314  'search_fields' => array('mail', 'cn'),  // fields to search in
315  'name_field'    => 'cn',    // this field represents the contact's name
316  'email_field'   => 'mail',  // this field represents the contact's e-mail
317  'surname_field' => 'sn',    // this field represents the contact's last name
318  'firstname_field' => 'gn',  // this field represents the contact's first name
319  'sort'          => 'cn',    // The field to sort the listing by.
320  'scope'         => 'sub',   // search mode: sub|base|list
321  'filter'        => '',      // used for basic listing (if not empty) and will be &'d with search queries. example: status=act
322  'fuzzy_search'  => true);   // server allows wildcard search
323*/
324
325// An ordered array of the ids of the addressbooks that should be searched
326// when populating address autocomplete fields server-side. ex: array('sql','Verisign');
327$rcmail_config['autocomplete_addressbooks'] = array('sql');
328
329// don't allow these settings to be overriden by the user
330$rcmail_config['dont_override'] = array();
331
332// Set identities access level:
333// 0 - many identities with possibility to edit all params
334// 1 - many identities with possibility to edit all params but not email address
335// 2 - one identity with possibility to edit all params
336// 3 - one identity with possibility to edit all params but not email address
337$rcmail_config['identities_level'] = 0;
338
339// try to load host-specific configuration
340// see http://trac.roundcube.net/wiki/Howto_Config for more details
341$rcmail_config['include_host_config'] = false;
342
343// don't let users set pagesize to more than this value if set
344$rcmail_config['max_pagesize'] = 200;
345
346// mime magic database
347$rcmail_config['mime_magic'] = '/usr/share/misc/magic';
348
349// default sort col
350$rcmail_config['message_sort_col'] = 'date';
351
352// default sort order
353$rcmail_config['message_sort_order'] = 'DESC';
354
355// THIS OPTION WILL ALLOW THE INSTALLER TO RUN AND CAN EXPOSE SENSITIVE CONFIG DATA.
356// ONLY ENABLE IT IF YOU'RE REALLY SURE WHAT YOU'RE DOING!
357$rcmail_config['enable_installer'] = false;
358
359// Log successful logins
360$rcmail_config['log_logins'] = false;
361
362/**
363 * 'Delete always'
364 * This setting reflects if mail should be always marked as deleted,
365 * even if moving to "Trash" fails. This is necessary in some setups
366 * because a) people may not have a Trash folder or b) they are over
367 * quota (and Trash is included in the quota).
368 *
369 * This is a failover setting for iil_C_Move when a message is moved
370 * to the Trash.
371 */
372$rcmail_config['delete_always'] = false;
373
374// Minimal value of user's 'keep_alive' setting (in seconds)
375// Must be less than 'session_lifetime'
376$rcmail_config['min_keep_alive'] = 60;
377
378// Enable DNS checking for e-mail address validation
379$rcmail_config['email_dns_check'] = false;
380
381/***** these settings can be overwritten by user's preferences *****/
382
383// skin name: folder from skins/
384$rcmail_config['skin'] = 'default';
385
386// show up to X items in list view
387$rcmail_config['pagesize'] = 40;
388
389// use this timezone to display date/time
390$rcmail_config['timezone'] = 'auto';
391
392// is daylight saving On?
393$rcmail_config['dst_active'] = (bool)date('I');
394
395// prefer displaying HTML messages
396$rcmail_config['prefer_html'] = TRUE;
397
398// display remote inline images
399// 0 - Never, always ask
400// 1 - Ask if sender is not in address book
401// 2 - Always show inline images
402$rcmail_config['show_images'] = 0;
403
404// compose html formatted messages by default
405$rcmail_config['htmleditor'] = FALSE;
406
407// show pretty dates as standard
408$rcmail_config['prettydate'] = TRUE;
409
410// save compose message every 300 seconds (5min)
411$rcmail_config['draft_autosave'] = 300;
412
413// default setting if preview pane is enabled
414$rcmail_config['preview_pane'] = FALSE;
415
416// focus new window if new message arrives
417$rcmail_config['focus_on_new_message'] = true;
418
419// Clear Trash on logout
420$rcmail_config['logout_purge'] = FALSE;
421
422// Compact INBOX on logout
423$rcmail_config['logout_expunge'] = FALSE;
424
425// Display attached images below the message body
426$rcmail_config['inline_images'] = TRUE;
427
428// Encoding of long/non-ascii attachment names:
429// 0 - Full RFC 2231 compatible
430// 1 - RFC 2047 for 'name' and RFC 2231 for 'filename' parameter (Thunderbird's default)
431// 2 - Full 2047 compatible
432$rcmail_config['mime_param_folding'] = 1;
433
434// Set TRUE if deleted messages should not be displayed
435// This will make the application run slower
436$rcmail_config['skip_deleted'] = FALSE;
437
438// Set true to Mark deleted messages as read as well as deleted
439// False means that a message's read status is not affected by marking it as deleted
440$rcmail_config['read_when_deleted'] = TRUE;
441
442// Set to TRUE to newer delete messages immediately
443// Use 'Purge' to remove messages marked as deleted
444$rcmail_config['flag_for_deletion'] = FALSE;
445
446// Default interval for keep-alive/check-recent requests (in seconds)
447// Must be greater than or equal to 'min_keep_alive' and less than 'session_lifetime'
448$rcmail_config['keep_alive'] = 60;
449
450// If true all folders will be checked for recent messages
451$rcmail_config['check_all_folders'] = FALSE;
452
453// If true, after message delete/move, the next message will be displayed
454$rcmail_config['display_next'] = FALSE;
455
456// If true, messages list will be sorted by message index instead of message date
457$rcmail_config['index_sort'] = TRUE;
458
459// When replying place cursor above original message (top posting)
460$rcmail_config['top_posting'] = FALSE;
461
462// When replying strip original signature from message
463$rcmail_config['strip_existing_sig'] = TRUE;
464
465// Show signature:
466// 0 - Never
467// 1 - Always
468// 2 - New messages only
469// 3 - Forwards and Replies only
470$rcmail_config['show_sig'] = 1;
471
472// When replying or forwarding place sender's signature above existing message
473$rcmail_config['sig_above'] = FALSE;
474
475// end of config file
476?>
Note: See TracBrowser for help on using the repository browser.