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