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