moved smtp sitewide configuration to main configuration utility
[squirrelmail.git] / config / config_default.php
CommitLineData
59177427 1<?php
716fa276 2
a3439b27 3/**
2d896bbf 4 * Default SquirrelMail configuration file
5 *
a3439b27 6 * BEFORE EDITING THIS FILE!
7 *
8 * Don't edit this file directly. Copy it to config.php before you
9 * edit it. However, it is best to use the configuration script
10 * conf.pl if at all possible. That is the easiest and cleanest way
11 * to configure.
2d896bbf 12 *
223cc0f5 13 * Note on SECURITY: some options require putting a password in this file.
14 * Please make sure that you adapt its permissions appropriately to avoid
15 * passwords being leaked to e.g. other system users. Take extra care when
16 * the webserver is shared with untrusted users.
17 *
47ccfad4 18 * @copyright &copy; 2000-2006 The SquirrelMail Project Team
4b4abf93 19 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
20 * @version $Id$
2d896bbf 21 * @package squirrelmail
22 * @subpackage config
a3439b27 23 */
24
25/* Do not change this value. */
f6cfbdac 26global $version;
a3439b27 27global $config_version;
76911253 28$config_version = '1.4.0';
a3439b27 29
f6cfbdac 30/*** Organization preferences ***/
31/**
32 * Organization's name
2d896bbf 33 * @global string $org_name
f6cfbdac 34 */
35$org_name = "SquirrelMail";
b6e0c3b6 36
f6cfbdac 37/**
38 * Organization's logo picture (blank if none)
2d896bbf 39 * @global string $org_logo
f6cfbdac 40 */
41$org_logo = SM_PATH . 'images/sm_logo.png';
b6e0c3b6 42
f6cfbdac 43/**
44 * The width of the logo (0 for default)
2d896bbf 45 * @global string $org_logo_width
f6cfbdac 46 */
47$org_logo_width = '308';
b6e0c3b6 48
f6cfbdac 49/**
50 * The height of the logo (0 for default)
2d896bbf 51 * @global string $org_logo_height
f6cfbdac 52 */
53$org_logo_height = '111';
a3439b27 54
55/**
56 * Webmail Title
2d896bbf 57 *
58 * This is the web page title that appears at the top of the browser window.
59 * @global string $org_title
a3439b27 60 */
8b5c49cd 61$org_title = "SquirrelMail";
f6cfbdac 62
a3439b27 63/**
2d896bbf 64 * Signout page
65 *
f6cfbdac 66 * Rather than going to the signout.php page (which only allows you
67 * to sign back in), setting signout_page allows you to sign the user
68 * out and then redirect to whatever page you want. For instance,
69 * the following would return the user to your home page:
70 * $signout_page = '/';
71 * Set to the empty string to continue to use the default signout page.
2d896bbf 72 * @global string $signout_page
a3439b27 73 */
f6cfbdac 74$signout_page = '';
a3439b27 75
f6cfbdac 76/**
2d896bbf 77 * Top frame
78 *
f6cfbdac 79 * By default SquirrelMail takes up the whole browser window,
80 * this allows you to embed it within sites using frames. Set
81 * this to the frame you want it to stay in.
2d896bbf 82 * @global string $frame_top
f6cfbdac 83 */
84$frame_top = '_top';
a3439b27 85
f6cfbdac 86/**
2d896bbf 87 * Provider name
88 *
89 * Here you can set name of the link displayed on the right side of main page.
f6cfbdac 90 *
91e0dccc 91 * Link will be displayed only if you have $hide_sm_attributions
f6cfbdac 92 * option set to true.
2d896bbf 93 * @global string $provider_name
f6cfbdac 94 */
95$provider_name = 'SquirrelMail';
f6cfbdac 96
2d896bbf 97/**
98 * Provider URI
99 *
100 * Here you can set URL of the link displayed on the right side of main page.
8b5c49cd 101 * When empty, this refers to the SquirrelMail About page.
91e0dccc 102 * Link will be displayed only if you have $hide_sm_attributions
2d896bbf 103 * option set to true.
104 * @global string $provider_uri
105 */
8b5c49cd 106$provider_uri = '';
f6cfbdac 107
108/*** Server Settings ***/
a3439b27 109/**
2d896bbf 110 * Default Domain
111 *
a3439b27 112 * The domain part of local email addresses.
113 * This is for all messages sent out from this server.
114 * Reply address is generated by $username@$domain
5d28b77e 115 * Example: In bob@example.com, example.com is the domain.
2d896bbf 116 * @global string $domain
a3439b27 117 */
884eba1e 118$domain = 'example.com';
a3439b27 119
f6cfbdac 120/**
2d896bbf 121 * Time offset inversion
122 *
f6cfbdac 123 * If you are running on a machine that doesn't have the tm_gmtoff
124 * value in your time structure and if you are in a time zone that
125 * has a negative offset, you need to set this value to 1. This is
126 * typically people in the US that are running Solaris 7.
2d896bbf 127 * @global bool $invert_time
f6cfbdac 128 */
129$invert_time = false;
a3439b27 130
131/**
2d896bbf 132 * Default send transport
133 *
f6cfbdac 134 * What should be used when sending email.
135 * If it is set to false, SquirrelMail will use SMTP server settings.
91e0dccc 136 * If it is set to true, SquirrelMail will use program defined in
f6cfbdac 137 * $sendmail_path
2d896bbf 138 * @global bool $useSendmail
a3439b27 139 */
f6cfbdac 140$useSendmail = false;
a3439b27 141
f6cfbdac 142/**
2d896bbf 143 * Your SMTP server (usually the same as the IMAP server).
144 * @global string $smtpServerAddress
f6cfbdac 145 */
146$smtpServerAddress = 'localhost';
2d896bbf 147/**
148 * Your SMTP port number (usually 25).
149 * @global integer $smtpPort
150 */
f6cfbdac 151$smtpPort = 25;
a3439b27 152
cba7675e 153/**
432db2fc 154 * SquirrelMail header encryption
2d896bbf 155 *
432db2fc 156 * Encryption key allows to hide SquirrelMail Received: headers
157 * in outbound messages. Interface uses encryption key to encode
158 * username, remote address and proxied address, then stores encoded
159 * information in X-Squirrel-* headers.
cba7675e 160 *
432db2fc 161 * Warning: used encryption function is not bulletproof. When used
162 * with static encryption keys, it provides only minimal security
163 * measures and information can be decoded quickly.
164 *
165 * Encoded information can be decoded with decrypt_headers.php script
166 * from SquirrelMail contrib/ directory.
167 * @global string $encode_header_key
94511d23 168 * @since 1.5.1 and 1.4.5
cba7675e 169 */
432db2fc 170$encode_header_key = '';
cba7675e 171
a3439b27 172/**
2d896bbf 173 * Path to Sendmail
174 *
f6cfbdac 175 * Program that should be used when sending email. SquirrelMail expects that
91e0dccc 176 * this program will follow options used by original sendmail
fd7ab795 177 * (http://www.sendmail.org). Support of -f argument is required.
2d896bbf 178 * @global string $sendmail_path
a3439b27 179 */
f6cfbdac 180$sendmail_path = '/usr/sbin/sendmail';
91e0dccc 181
fd7ab795 182/**
183 * Extra sendmail command arguments.
85bacb8f 184 *
185 * Sets additional sendmail command arguments. Make sure that arguments are
fd7ab795 186 * supported by your sendmail program. -f argument is added automatically by
85bacb8f 187 * SquirrelMail scripts. Variable defaults to standard /usr/sbin/sendmail
fd7ab795 188 * arguments. If you use qmail-inject, nbsmtp or any other sendmail wrapper,
189 * which does not support -t and -i arguments, set variable to empty string
85bacb8f 190 * or use arguments suitable for your mailer.
fd7ab795 191 * @global string $sendmail_args
5e68a08e 192 * @since 1.5.1 and 1.4.8
fd7ab795 193 */
194$sendmail_args = '-i -t';
195
f6cfbdac 196/**
2d896bbf 197 * IMAP server address
198 *
199 * The dns name (or IP address) for your imap server.
200 * @global string $imapServerAddress
f6cfbdac 201 */
202$imapServerAddress = 'localhost';
2d896bbf 203
204/**
205 * IMAP server port
206 *
207 * Port used by your imap server. (Usually 143)
208 * @global integer $imapPort
209 */
f6cfbdac 210$imapPort = 143;
a3439b27 211
212/**
2d896bbf 213 * IMAP server type
214 *
a3439b27 215 * The type of IMAP server you are running.
216 * Valid type are the following (case is important):
e498ebbd 217 * bincimap
a3439b27 218 * courier
219 * cyrus
e498ebbd 220 * dovecot
a3439b27 221 * exchange
b39825f0 222 * hmailserver
e498ebbd 223 * macosx
f6cfbdac 224 * mercury32
e498ebbd 225 * uw
a3439b27 226 * other
f6cfbdac 227 *
228 * Please note that this changes only some of server settings.
229 *
230 * In order to set everything correctly, you need to adjust several
598294a7 231 * SquirrelMail options. These options are listed in doc/presets.txt
2d896bbf 232 * @global string $imap_server_type
a3439b27 233 */
884eba1e 234$imap_server_type = 'other';
a3439b27 235
236/**
a15f9d93 237 * Secure IMAP connection controls
2d896bbf 238 *
a15f9d93 239 * 0 - use plain text connection,
240 * 1 - use imaps (adds tls:// prefix to hostname),
241 * 2 - use IMAP STARTTLS extension (rfc2595).
242 *
243 * Was boolean before 1.5.1.
244 * @global integer $use_imap_tls
245 * @since 1.4.0
a3439b27 246 */
a15f9d93 247$use_imap_tls = 0;
2d896bbf 248
249/**
a15f9d93 250 * Secure SMTP connection controls
251 *
252 * 0 - use plain text connection,
253 * 1 - use ssmtp (adds tls:// prefix to hostname),
254 * 2 - use SMTP STARTTLS extension (rfc2487).
2d896bbf 255 *
a15f9d93 256 * Was boolean before 1.5.1.
257 * @global integer $use_smtp_tls
258 * @since 1.4.0
2d896bbf 259 */
a15f9d93 260$use_smtp_tls = 0;
a3439b27 261
f6cfbdac 262/**
2d896bbf 263 * SMTP authentication mechanism
264 *
265 * auth_mech can be either 'none', 'login','plain', 'cram-md5', or 'digest-md5'
266 * @global string $smtp_auth_mech
f6cfbdac 267 */
268$smtp_auth_mech = 'none';
2d896bbf 269
029d1fc2 270/**
271 * Custom SMTP authentication username
272 *
273 * IMAP username is used if variable is set to empty string.
274 * Variable is included in main configuration file only from 1.5.2 version.
275 * Older versions stored it in config_local.php.
276 * @global string $smtp_sitewide_user
277 * @since 1.5.0
278 */
279$smtp_sitewide_user = '';
280
281/**
282 * Custom SMTP authentication password
283 *
284 * IMAP password is used if $smtp_sitewide_user global is set to empty string.
285 * Variable is included in main configuration file only from 1.5.2 version.
286 * Older versions stored it in config_local.php.
287 * @global string $smtp_sitewide_pass
288 * @since 1.5.0
289 */
290$smtp_sitewide_pass = '';
291
2d896bbf 292/**
293 * IMAP authentication mechanism
294 *
295 * auth_mech can be either 'login','plain', 'cram-md5', or 'digest-md5'
296 * @global string $imap_auth_mech
297 */
f6cfbdac 298$imap_auth_mech = 'login';
299
300/**
2d896bbf 301 * IMAP folder delimiter
302 *
f6cfbdac 303 * This is the delimiter that your IMAP server uses to distinguish between
304 * folders. For example, Cyrus uses '.' as the delimiter and a complete
305 * folder would look like 'INBOX.Friends.Bob', while UW uses '/' and would
306 * look like 'INBOX/Friends/Bob'. Normally this should be left at 'detect'
307 * but if you are sure you know what delimiter your server uses, you can
308 * specify it here.
309 *
310 * To have it autodetect the delimiter, set it to 'detect'.
2d896bbf 311 * @global string $optional_delimiter
f6cfbdac 312 */
313$optional_delimiter = 'detect';
314
315/**
2d896bbf 316 * POP before SMTP setting
317 *
f6cfbdac 318 * Do you wish to use POP3 before SMTP? Your server must
319 * support this in order for SquirrelMail to work with it.
2d896bbf 320 * @global bool $pop_before_smtp
f6cfbdac 321 */
322$pop_before_smtp = false;
323
324
325/*** Folder Settings ***/
a3439b27 326/**
2d896bbf 327 * Default IMAP folder prefix
328 *
a3439b27 329 * Many servers store mail in your home directory. With this, they
330 * store them in a subdirectory: mail/ or Mail/, etc. If your server
331 * does this, please set this to what the default mail folder should
332 * be. This is still a user preference, so they can change it if it
333 * is different for each user.
334 *
335 * Example:
336 * $default_folder_prefix = 'mail/';
337 * -- or --
338 * $default_folder_prefix = 'Mail/folders/';
339 *
340 * If you do not use this, set it to the empty string.
2d896bbf 341 * @global string $default_folder_prefix
a3439b27 342 */
a3439b27 343$default_folder_prefix = '';
344
345/**
2d896bbf 346 * User level prefix control
347 *
a3439b27 348 * If you do not wish to give them the option to change this, set it
349 * to false. Otherwise, if it is true, they can change the folder prefix
350 * to be anything.
2d896bbf 351 * @global bool $show_prefix_option
a3439b27 352 */
a3439b27 353$show_prefix_option = false;
354
355/**
356 * The following are related to deleting messages.
f6cfbdac 357 * $default_move_to_trash
358 * If this is set to 'true', when 'delete' is pressed, it
a3439b27 359 * will attempt to move the selected messages to the folder
360 * named $trash_folder. If it's set to 'false', we won't even
361 * attempt to move the messages, just delete them.
f6cfbdac 362 * $default_move_to_sent
363 * If this is set to 'true', sent messages will be stored in
364 * $sent_folder by default.
365 * $default_save_as_draft
366 * If this is set to 'true', users are able to use $draft_folder
367 * to store their unfinished messages.
a3439b27 368 * $trash_folder
369 * This is the path to the default trash folder. For Cyrus
370 * IMAP, it would be 'INBOX.Trash', but for UW it would be
371 * 'Trash'. We need the full path name here.
f6cfbdac 372 * $draft_folder
373 * This is the patch to where Draft messages will be stored.
a3439b27 374 * $auto_expunge
375 * If this is true, when a message is moved or copied, the
376 * source mailbox will get expunged, removing all messages
377 * marked 'Deleted'.
378 * $sent_folder
379 * This is the path to where Sent messages will be stored.
4e85a37f 380 * $delete_folder
381 * If this is true, when a folder is deleted then it will
382 * not get moved into the Trash folder.
2d896bbf 383 * @global bool $default_move_to_trash
384 * @global bool $default_move_to_sent
385 * @global bool $default_save_as_draft
386 * @global string $trash_folder
387 * @global string $sent_folder
388 * @global string $draft_folder
389 * @global bool $auto_expunge
390 * @global bool $delete_folder
a3439b27 391 */
a3439b27 392$default_move_to_trash = true;
393$default_move_to_sent = true;
394$default_save_as_draft = true;
395$trash_folder = 'INBOX.Trash';
396$sent_folder = 'INBOX.Sent';
397$draft_folder = 'INBOX.Drafts';
398$auto_expunge = true;
4e85a37f 399$delete_folder = false;
a3439b27 400
f6cfbdac 401/**
2d896bbf 402 * Special Folder Color Control
403 *
f6cfbdac 404 * Whether or not to use a special color for special folders. If not,
405 * special folders will be the same color as the other folders.
2d896bbf 406 * @global bool $use_special_folder_color
f6cfbdac 407 */
408$use_special_folder_color = true;
409
a3439b27 410/**
2d896bbf 411 * Create Special Folders Control
412 *
a3439b27 413 * Should I create the Sent and Trash folders automatically for
414 * a new user that doesn't already have them created?
2d896bbf 415 * @global bool $auto_create_special
a3439b27 416 */
a3439b27 417$auto_create_special = true;
418
2d896bbf 419/**
420 * List Special Folders First Control
421 *
422 * Whether or not to list the special folders first (true/false).
91e0dccc 423 * @global bool $list_special_folders_first
2d896bbf 424 */
a3439b27 425$list_special_folders_first = true;
426
427/**
2d896bbf 428 * Subfolder Layout Control
429 *
a3439b27 430 * Are all your folders subfolders of INBOX (i.e. cyrus IMAP server).
431 * If you are unsure, set it to false.
2d896bbf 432 * @global bool $default_sub_of_inbox
a3439b27 433 */
a3439b27 434$default_sub_of_inbox = true;
435
436/**
2d896bbf 437 * Subfolder Format Control
438 *
a3439b27 439 * Some IMAP daemons (UW) handle folders weird. They only allow a
440 * folder to contain either messages or other folders, not both at
441 * the same time. This option controls whether or not to display an
442 * option during folder creation. The option toggles which type of
443 * folder it should be.
444 *
91e0dccc 445 * If this option confuses you, just set it to 'true'. You can not hurt
a3439b27 446 * anything if it's true, but some servers will respond weird if it's
447 * false. (Cyrus works fine whether it's true OR false).
2d896bbf 448 * @global bool $show_contain_subfolders_option
a3439b27 449 */
a3439b27 450$show_contain_subfolders_option = false;
451
452/**
f6cfbdac 453 * These next two options set the defaults for the way that the
454 * users see their folder list.
455 * $default_unseen_notify
91e0dccc 456 * Specifies whether or not the users will see the number of
f6cfbdac 457 * unseen in each folder by default and also which folders to
458 * do this to. Valid values are: 1=none, 2=inbox, 3=all.
459 * $default_unseen_type
460 * Specifies the type of notification to give the users by
461 * default. Valid choice are: 1=(4), 2=(4,25).
2d896bbf 462 * @global integer $default_unseen_notify
463 * @global integer $default_unseen_type
a3439b27 464 */
f6cfbdac 465$default_unseen_notify = 2;
466$default_unseen_type = 1;
a3439b27 467
f6cfbdac 468/**
2d896bbf 469 * NoSelect Fix Control
470 *
f6cfbdac 471 * This enables the no select fix for Cyrus when subfolders
472 * exist but parent folders do not
2d896bbf 473 * @global bool $noselect_fix_enable
f6cfbdac 474 */
475$noselect_fix_enable = false;
476
477/*** General options ***/
a3439b27 478/**
479 * Path to the data/ directory
2d896bbf 480 *
368ab966 481 * You need to create this directory yourself (see INSTALL).
482 *
a3439b27 483 * It is a possible security hole to have a writable directory
484 * under the web server's root directory (ex: /home/httpd/html).
368ab966 485 * The path name can be absolute or relative (to the config directory).
ff6d5db0 486 * If path is relative, it must use SM_PATH constant.
368ab966 487 * Here are two examples:
a3439b27 488 *
489 * Absolute:
368ab966 490 * $data_dir = '/var/local/squirrelmail/data/';
a3439b27 491 *
f6cfbdac 492 * Relative (to main SM directory):
884eba1e 493 * $data_dir = SM_PATH . 'data/';
368ab966 494 * (NOT recommended: you need to secure apache to make sure these
495 * files are not world readable)
496 *
2d896bbf 497 * @global string $data_dir
a3439b27 498 */
aabfe164 499$data_dir = '/var/local/squirrelmail/data/';
a3439b27 500
501/**
2d896bbf 502 * Attachments directory
503 *
a3439b27 504 * Path to directory used for storing attachments while a mail is
505 * being sent. There are a few security considerations regarding
506 * this directory:
507 * + It should have the permission 733 (rwx-wx-wx) to make it
508 * impossible for a random person with access to the webserver to
509 * list files in this directory. Confidential data might be laying
510 * around there.
511 * + Since the webserver is not able to list the files in the content
368ab966 512 * is also impossible for the webserver to delete files lying around
513 * there for too long. You should have some script that deletes
514 * left over temp files.
a3439b27 515 * + It should probably be another directory than data_dir.
2d896bbf 516 * @global string $attachment_dir
a3439b27 517 */
aabfe164 518$attachment_dir = '/var/local/squirrelmail/attach/';
a3439b27 519
f6cfbdac 520/**
521 * Hash level used for data directory.
91e0dccc 522 *
598294a7 523 * This option allows spliting file based SquirrelMail user
f6cfbdac 524 * data storage directory into several subfolders. Number from
525 * 0 to 4 allows allows having up to four subfolder levels.
526 *
91e0dccc 527 * Hashing should speed up directory access if you have big number
f6cfbdac 528 * of users (500 and more).
2d896bbf 529 * @global integer $dir_hash_level
f6cfbdac 530 */
a3439b27 531$dir_hash_level = 0;
532
533/**
2d896bbf 534 * Default Size of Folder List
535 *
a3439b27 536 * This is the default size of the folder list. Default
537 * is 150, but you can set it to whatever you wish.
2d896bbf 538 * @global string $default_left_size
a3439b27 539 */
f6cfbdac 540$default_left_size = '150';
a3439b27 541
542/**
2d896bbf 543 * Username Case Control
544 *
a3439b27 545 * Some IMAP servers allow a username (like 'bob') to log in if they use
546 * uppercase in their name (like 'Bob' or 'BOB'). This creates extra
547 * preference files. Toggling this option to true will transparently
548 * change all usernames to lowercase.
2d896bbf 549 * @global bool $force_username_lowercase
a3439b27 550 */
a3439b27 551$force_username_lowercase = false;
552
f6cfbdac 553/**
2d896bbf 554 * Email Priority Control
555 *
f6cfbdac 556 * This option enables use of email priority flags by end users.
2d896bbf 557 * @global bool $default_use_priority
f6cfbdac 558 */
559$default_use_priority = true;
560
561/**
2d896bbf 562 * SquirrelMail Attributions Control
563 *
598294a7 564 * This option disables display of "created by SquirrelMail developers"
f6cfbdac 565 * strings and provider link
2d896bbf 566 * @global bool $hide_sm_attributions
beebd508 567 * @since 1.2.0
f6cfbdac 568 */
569$hide_sm_attributions = false;
570
571/**
2d896bbf 572 * Delivery Receipts Control
573 *
574 * This option enables use of read/delivery receipts by end users.
575 * @global bool $default_use_mdn
f6cfbdac 576 */
577$default_use_mdn = true;
578
579/**
2d896bbf 580 * Identity Controls
581 *
f6cfbdac 582 * If you don't want to allow users to change their email address
583 * then you can set $edit_identity to false, if you want them to
584 * not be able to change their full name too then set $edit_name
585 * to false as well. $edit_name has no effect unless $edit_identity
586 * is false;
2d896bbf 587 * @global bool $edit_identity
588 * @global bool $edit_name
f6cfbdac 589 */
590$edit_identity = true;
591$edit_name = true;
592
432db2fc 593/**
594 * SquirrelMail adds username information to every sent email.
85bacb8f 595 * It is done in order to prevent possible sender forging when
596 * end users are allowed to change their email and name
432db2fc 597 * information.
598 *
599 * You can disable this header, if you think that it violates
600 * user's privacy or security. Please note, that setting will
601 * work only when users are not allowed to change their identity.
602 *
603 * See SquirrelMail bug tracker #847107 for more details about it.
604 * @global bool $hide_auth_header
94511d23 605 * @since 1.5.1 and 1.4.5
432db2fc 606 */
607$hide_auth_header = false;
608
f6cfbdac 609/**
2d896bbf 610 * Server Side Threading Control
611 *
e7650b35 612 * Set it to true, if you want to disable server side thread
613 * sorting options. Your IMAP server must support the THREAD
614 * extension for this to have any effect.
615 *
616 * Older SquirrelMail versions used $allow_thread_sort option.
11e00010 617 * @global bool $disable_thread_sort
e7650b35 618 * @since 1.5.1
f6cfbdac 619 */
11e00010 620$disable_thread_sort = false;
f6cfbdac 621
2d896bbf 622/**
623 * Server Side Sorting Control
624 *
e7650b35 625 * Set it to true, if you want to disable server side sorting
626 * and use SM client side sorting instead (client side sorting
627 * can be slow). Your IMAP server must support the SORT extension
628 * for this to have any effect.
629 *
630 * Older SquirrelMail versions used $allow_server_sort option.
631 * @global bool $disable_server_sort
632 * @since 1.5.1
f6cfbdac 633 */
11e00010 634$disable_server_sort = false;
f6cfbdac 635
636/**
2d896bbf 637 * IMAP Charset Use Control
638 *
f6cfbdac 639 * This option allows you to choose if SM uses charset search
91e0dccc 640 * Your imap server should support SEARCH CHARSET command for
f6cfbdac 641 * this to work.
2d896bbf 642 * @global bool $allow_charset_search
f6cfbdac 643 */
644$allow_charset_search = true;
645
fdefb2e7 646/**
647 * Search functions control
648 *
649 * This option allows you to control the use of advanced search form.
650 * Set to 0 to enable basic search only, 1 to enable advanced search only
651 * or 2 to enable both.
652 * @global integer $allow_advanced_search
653 */
654$allow_advanced_search = 0;
655
f6cfbdac 656/**
2d896bbf 657 * PHP session name.
658 *
659 * Leave this alone unless you know what you are doing.
660 * @global string $session_name
f6cfbdac 661 */
662$session_name = 'SQMSESSID';
663
664
a3439b27 665/**
666 * Themes
667 * You can define your own theme and put it in this directory.
668 * You must call it as the example below. You can name the theme
669 * whatever you want. For an example of a theme, see the ones
670 * included in the config directory.
671 *
672 * To add a new theme to the options that users can choose from, just
673 * add a new number to the array at the bottom, and follow the pattern.
91e0dccc 674 *
f6cfbdac 675 * $theme_default sets theme that will be used by default
91e0dccc 676 * $theme_css sets stylesheet (from theme/css directory) that will be
f6cfbdac 677 * used by default.
2d896bbf 678 * @global integer $theme_default
679 * @global string $theme_css
a3439b27 680 */
57c6fabc 681$theme_default = 0;
f6cfbdac 682$theme_css = '';
a3439b27 683
2d896bbf 684/**
685 * Listing of installed themes
686 * @global array $theme
687 */
884eba1e 688$theme[0]['PATH'] = SM_PATH . 'themes/default_theme.php';
a3439b27 689$theme[0]['NAME'] = 'Default';
690
884eba1e 691$theme[1]['PATH'] = SM_PATH . 'themes/plain_blue_theme.php';
a3439b27 692$theme[1]['NAME'] = 'Plain Blue';
693
884eba1e 694$theme[2]['PATH'] = SM_PATH . 'themes/sandstorm_theme.php';
a3439b27 695$theme[2]['NAME'] = 'Sand Storm';
696
884eba1e 697$theme[3]['PATH'] = SM_PATH . 'themes/deepocean_theme.php';
a3439b27 698$theme[3]['NAME'] = 'Deep Ocean';
699
884eba1e 700$theme[4]['PATH'] = SM_PATH . 'themes/slashdot_theme.php';
a3439b27 701$theme[4]['NAME'] = 'Slashdot';
702
884eba1e 703$theme[5]['PATH'] = SM_PATH . 'themes/purple_theme.php';
a3439b27 704$theme[5]['NAME'] = 'Purple';
705
884eba1e 706$theme[6]['PATH'] = SM_PATH . 'themes/forest_theme.php';
a3439b27 707$theme[6]['NAME'] = 'Forest';
708
884eba1e 709$theme[7]['PATH'] = SM_PATH . 'themes/ice_theme.php';
a3439b27 710$theme[7]['NAME'] = 'Ice';
711
884eba1e 712$theme[8]['PATH'] = SM_PATH . 'themes/seaspray_theme.php';
a3439b27 713$theme[8]['NAME'] = 'Sea Spray';
714
884eba1e 715$theme[9]['PATH'] = SM_PATH . 'themes/bluesteel_theme.php';
a3439b27 716$theme[9]['NAME'] = 'Blue Steel';
717
884eba1e 718$theme[10]['PATH'] = SM_PATH . 'themes/dark_grey_theme.php';
a3439b27 719$theme[10]['NAME'] = 'Dark Grey';
720
884eba1e 721$theme[11]['PATH'] = SM_PATH . 'themes/high_contrast_theme.php';
a3439b27 722$theme[11]['NAME'] = 'High Contrast';
723
884eba1e 724$theme[12]['PATH'] = SM_PATH . 'themes/black_bean_burrito_theme.php';
a3439b27 725$theme[12]['NAME'] = 'Black Bean Burrito';
726
884eba1e 727$theme[13]['PATH'] = SM_PATH . 'themes/servery_theme.php';
a3439b27 728$theme[13]['NAME'] = 'Servery';
729
884eba1e 730$theme[14]['PATH'] = SM_PATH . 'themes/maize_theme.php';
a3439b27 731$theme[14]['NAME'] = 'Maize';
732
884eba1e 733$theme[15]['PATH'] = SM_PATH . 'themes/bluesnews_theme.php';
a3439b27 734$theme[15]['NAME'] = 'BluesNews';
735
884eba1e 736$theme[16]['PATH'] = SM_PATH . 'themes/deepocean2_theme.php';
a3439b27 737$theme[16]['NAME'] = 'Deep Ocean 2';
738
884eba1e 739$theme[17]['PATH'] = SM_PATH . 'themes/blue_grey_theme.php';
ecf5c1bd 740$theme[17]['NAME'] = 'Blue Grey';
a3439b27 741
884eba1e 742$theme[18]['PATH'] = SM_PATH . 'themes/dompie_theme.php';
a3439b27 743$theme[18]['NAME'] = 'Dompie';
744
884eba1e 745$theme[19]['PATH'] = SM_PATH . 'themes/methodical_theme.php';
a3439b27 746$theme[19]['NAME'] = 'Methodical';
747
884eba1e 748$theme[20]['PATH'] = SM_PATH . 'themes/greenhouse_effect.php';
a3439b27 749$theme[20]['NAME'] = 'Greenhouse Effect (Changes)';
6e0fa5e6 750
884eba1e 751$theme[21]['PATH'] = SM_PATH . 'themes/in_the_pink.php';
a3439b27 752$theme[21]['NAME'] = 'In The Pink (Changes)';
94c9adcb 753
884eba1e 754$theme[22]['PATH'] = SM_PATH . 'themes/kind_of_blue.php';
a3439b27 755$theme[22]['NAME'] = 'Kind of Blue (Changes)';
756
884eba1e 757$theme[23]['PATH'] = SM_PATH . 'themes/monostochastic.php';
a3439b27 758$theme[23]['NAME'] = 'Monostochastic (Changes)';
a610c5e4 759
884eba1e 760$theme[24]['PATH'] = SM_PATH . 'themes/shades_of_grey.php';
a3439b27 761$theme[24]['NAME'] = 'Shades of Grey (Changes)';
a610c5e4 762
884eba1e 763$theme[25]['PATH'] = SM_PATH . 'themes/spice_of_life.php';
a3439b27 764$theme[25]['NAME'] = 'Spice of Life (Changes)';
a1b33f64 765
884eba1e 766$theme[26]['PATH'] = SM_PATH . 'themes/spice_of_life_lite.php';
a3439b27 767$theme[26]['NAME'] = 'Spice of Life - Lite (Changes)';
a1b33f64 768
884eba1e 769$theme[27]['PATH'] = SM_PATH . 'themes/spice_of_life_dark.php';
a3439b27 770$theme[27]['NAME'] = 'Spice of Life - Dark (Changes)';
a1b33f64 771
884eba1e 772$theme[28]['PATH'] = SM_PATH . 'themes/christmas.php';
a3439b27 773$theme[28]['NAME'] = 'Holiday - Christmas';
774
884eba1e 775$theme[29]['PATH'] = SM_PATH . 'themes/darkness.php';
9007bf00 776$theme[29]['NAME'] = 'Darkness (Changes)';
777
884eba1e 778$theme[30]['PATH'] = SM_PATH . 'themes/random.php';
fb351cd8 779$theme[30]['NAME'] = 'Random (Changes every login)';
780
884eba1e 781$theme[31]['PATH'] = SM_PATH . 'themes/midnight.php';
fb351cd8 782$theme[31]['NAME'] = 'Midnight';
9007bf00 783
884eba1e 784$theme[32]['PATH'] = SM_PATH . 'themes/alien_glow.php';
211f8c1d 785$theme[32]['NAME'] = 'Alien Glow';
786
884eba1e 787$theme[33]['PATH'] = SM_PATH . 'themes/dark_green.php';
211f8c1d 788$theme[33]['NAME'] = 'Dark Green';
789
884eba1e 790$theme[34]['PATH'] = SM_PATH . 'themes/penguin.php';
46b89abe 791$theme[34]['NAME'] = 'Penguin';
716fa276 792
e79c77f2 793$theme[35]['PATH'] = SM_PATH . 'themes/minimal_bw.php';
794$theme[35]['NAME'] = 'Minimal BW';
795
f2225182 796$theme[36]['PATH'] = SM_PATH . 'themes/redmond.php';
797$theme[36]['NAME'] = 'Redmond';
e79c77f2 798
1043c75f 799$theme[37]['PATH'] = SM_PATH . 'themes/netstyle_theme.php';
800$theme[37]['NAME'] = 'Net Style';
801
802$theme[38]['PATH'] = SM_PATH . 'themes/silver_steel_theme.php';
803$theme[38]['NAME'] = 'Silver Steel';
804
805$theme[39]['PATH'] = SM_PATH . 'themes/simple_green_theme.php';
806$theme[39]['NAME'] = 'Simple Green';
807
808$theme[40]['PATH'] = SM_PATH . 'themes/wood_theme.php';
809$theme[40]['NAME'] = 'Wood';
810
c14fa1b5 811$theme[41]['PATH'] = SM_PATH . 'themes/bluesome.php';
812$theme[41]['NAME'] = 'Bluesome';
813
37b0cf0c 814$theme[42]['PATH'] = SM_PATH . 'themes/simple_green2.php';
815$theme[42]['NAME'] = 'Simple Green 2';
816
817$theme[43]['PATH'] = SM_PATH . 'themes/simple_purple.php';
818$theme[43]['NAME'] = 'Simple Purple';
819
48adf5d6 820$theme[44]['PATH'] = SM_PATH . 'themes/autumn.php';
821$theme[44]['NAME'] = 'Autumn';
822
823$theme[45]['PATH'] = SM_PATH . 'themes/autumn2.php';
824$theme[45]['NAME'] = 'Autumn 2';
825
826$theme[46]['PATH'] = SM_PATH . 'themes/blue_on_blue.php';
827$theme[46]['NAME'] = 'Blue on Blue';
828
829$theme[47]['PATH'] = SM_PATH . 'themes/classic_blue.php';
830$theme[47]['NAME'] = 'Classic Blue';
831
832$theme[48]['PATH'] = SM_PATH . 'themes/classic_blue2.php';
833$theme[48]['NAME'] = 'Classic Blue 2';
834
835$theme[49]['PATH'] = SM_PATH . 'themes/powder_blue.php';
836$theme[49]['NAME'] = 'Powder Blue';
837
838$theme[50]['PATH'] = SM_PATH . 'themes/techno_blue.php';
839$theme[50]['NAME'] = 'Techno Blue';
840
841$theme[51]['PATH'] = SM_PATH . 'themes/turquoise.php';
842$theme[51]['NAME'] = 'Turquoise';
843
85bacb8f 844/**
845 * Templates
846 * You can define your own template and put it in this directory.
847 * You must call it as the example below. You can name the template
848 * whatever you want. For an example of a template, see the ones
849 * included in the template directory.
850 *
851 * To add a new template to the options that users can choose from, just
852 * add a new number to the array at the bottom, and follow the pattern.
853 *
854 * $templateset_default sets theme that will be used by default
855 * used by default.
856 * @global integer $templateset_default
857 */
858$templateset_default = 0;
859
860$aTemplateSet[0]['PATH'] = SM_PATH . 'templates/default/';
861$aTemplateSet[0]['NAME'] = 'Default template';
10bb2e90 862$aTemplateSet[1]['PATH'] = SM_PATH . 'templates/default_advanced/';
863$aTemplateSet[1]['NAME'] = 'Advanced template';
85bacb8f 864
81132de8 865/**
866 * Default interface font size.
867 * @global string $default_fontsize
868 * @since 1.5.1
869 */
870$default_fontsize = '';
871
872/**
873 * Default font set
874 * @global string $default_fontset
875 * @since 1.5.1
876 */
877$default_fontset = '';
878
879/**
880 * List of available fontsets.
881 * @global array $fontsets
882 * @since 1.5.1
883 */
884$fontsets = array();
885$fontsets['serif'] = 'serif';
886$fontsets['sans'] = 'helvetica,arial,sans-serif';
887$fontsets['comicsans'] = 'comic sans ms,sans-serif';
888$fontsets['verasans'] = 'bitstream vera sans,verdana,sans-serif';
889$fontsets['tahoma'] = 'tahoma,sans-serif';
890
a3439b27 891/**
892 * LDAP server(s)
893 * Array of arrays with LDAP server parameters. See
894 * functions/abook_ldap_server.php for a list of possible
895 * parameters
896 *
897 * EXAMPLE:
898 * $ldap_server[0] = Array(
899 * 'host' => 'memberdir.netscape.com',
900 * 'name' => 'Netcenter Member Directory',
901 * 'base' => 'ou=member_directory,o=netcenter.com'
91e0dccc 902 * );
223cc0f5 903 *
904 * NOTE: please see security note at the top of this file when
905 * entering a password.
a3439b27 906 */
f6cfbdac 907// Add your ldap server options here
3499f99f 908
a3439b27 909/**
2d896bbf 910 * Javascript in Addressbook Control
911 *
a3439b27 912 * Users may search their addressbook via either a plain HTML or Javascript
913 * enhanced user interface. This option allows you to set the default choice.
914 * Set this default choice as either:
915 * true = javascript
916 * false = html
2d896bbf 917 * @global bool $default_use_javascript_addr_book
a3439b27 918 */
a3439b27 919$default_use_javascript_addr_book = false;
920
4272758c 921/**
922 * Shared filebased address book
923 * @global string $abook_global_file
71d3f882 924 * @since 1.5.1 and 1.4.4
4272758c 925 */
926$abook_global_file = '';
927
928/**
929 * Writing into shared address book control
930 * @global bool $abook_global_file_writeable
71d3f882 931 * @since 1.5.1 and 1.4.4
4272758c 932 */
933$abook_global_file_writeable = false;
a3439b27 934
71d3f882 935/**
936 * Listing of shared address book control
937 * @global bool $abook_global_file_listing
938 * @since 1.5.1
939 */
940$abook_global_file_listing = true;
941
7311c377 942/**
943 * Controls file based address book entry size
944 *
945 * This setting controls space allocated to file based address book records.
946 * End users will be unable to save address book entry, if total entry size
947 * (quoted address book fields + 4 delimiters + linefeed) exceeds allowed
948 * address book length size.
949 *
950 * Same setting is applied to personal and global file based address books.
951 *
952 * It is strongly recommended to keep default setting value. Change it only
953 * if you really want to store address book entries that are bigger than two
954 * kilobytes (2048).
955 * @global integer $abook_file_line_length
956 * @since 1.5.2
957 */
958$abook_file_line_length = 2048;
959
80e86e94 960/**
f6cfbdac 961 * MOTD
2d896bbf 962 *
91e0dccc 963 * This is a message that is displayed immediately after a user logs in.
2d896bbf 964 * @global string $motd
80e86e94 965 */
f6cfbdac 966$motd = "";
80e86e94 967
80e86e94 968
a3439b27 969/**
970 * To install plugins, just add elements to this array that have
971 * the plugin directory name relative to the /plugins/ directory.
972 * For instance, for the 'sqclock' plugin, you'd put a line like
973 * the following.
a1b036d6 974 * $plugins[] = 'sqclock';
975 * $plugins[] = 'attachment_common';
a3439b27 976 */
f6cfbdac 977// Add list of enabled plugins here
a3439b27 978
f6cfbdac 979
980/*** Database ***/
8a7d0669 981/**
91e0dccc 982 * Read doc/database.txt in order to get more information
f6cfbdac 983 * about these settings.
8a7d0669 984 */
f6cfbdac 985/**
986 * Database-driven private addressbooks
987 * DSN (Data Source Name) for a database where the private
988 * addressbooks are stored. See doc/db-backend.txt for more info.
989 * If it is not set, the addressbooks are stored in files
990 * in the data dir.
991 * The DSN is in the format: mysql://user:pass@hostname/dbname
992 * The table is the name of the table to use within the
993 * specified database.
223cc0f5 994 *
995 * NOTE: please see security note at the top of this file when
996 * entering a password.
f6cfbdac 997 */
998$addrbook_dsn = '';
999$addrbook_table = 'address';
1000/**
1001 * Database used to store user data
1002 */
1003$prefs_dsn = '';
1004$prefs_table = 'userprefs';
06316c07 1005/**
85bacb8f 1006 * Preference key field
06316c07 1007 * @global string $prefs_key_field
1008 */
f6cfbdac 1009$prefs_key_field = 'prefkey';
06316c07 1010/**
1011 * Size of preference key field
1012 * @global integer $prefs_key_size
1013 * @since 1.5.1
1014 */
1015$prefs_key_size = 64;
1016/**
85bacb8f 1017 * Preference owner field
06316c07 1018 * @global string $prefs_user_field
1019 */
f6cfbdac 1020$prefs_user_field = 'user';
06316c07 1021/**
1022 * Size of preference owner field
1023 * @global integer $prefs_user_size
1024 * @since 1.5.1
1025 */
1026$prefs_user_size = 128;
1027/**
85bacb8f 1028 * Preference value field
06316c07 1029 * @global string $prefs_val_field
1030 */
f6cfbdac 1031$prefs_val_field = 'prefval';
06316c07 1032/**
1033 * Size of preference key field
1034 * @global integer $prefs_val_size
1035 * @since 1.5.1
1036 */
1037$prefs_val_size = 65536;
71d3f882 1038
1039/*** Global sql database options ***/
30e9932c 1040/**
71d3f882 1041 * DSN of global address book database
1042 * @global string $addrbook_global_dsn
f0a4a973 1043 * @since 1.5.1 and 1.4.4
30e9932c 1044 */
1045$addrbook_global_dsn = '';
71d3f882 1046/**
1047 * Table used for global database address book
1048 * @global string $addrbook_global_table
f0a4a973 1049 * @since 1.5.1 and 1.4.4
71d3f882 1050 */
30e9932c 1051$addrbook_global_table = 'global_abook';
71d3f882 1052/**
1053 * Control writing into global database address book
1054 * @global boolean $addrbook_global_writeable
f0a4a973 1055 * @since 1.5.1 and 1.4.4
71d3f882 1056 */
30e9932c 1057$addrbook_global_writeable = false;
71d3f882 1058/**
1059 * Control listing of global database address book
1060 * @global boolean $addrbook_global_listing
f0a4a973 1061 * @since 1.5.1 and 1.4.4
71d3f882 1062 */
30e9932c 1063$addrbook_global_listing = false;
7c612fdd 1064
f6cfbdac 1065/*** Language settings ***/
7c612fdd 1066/**
f6cfbdac 1067 * Default language
2d896bbf 1068 *
f6cfbdac 1069 * This is the default language. It is used as a last resort
1070 * if SquirrelMail can't figure out which language to display.
91e0dccc 1071 * Language names usually consist of language code, undercore
f6cfbdac 1072 * symbol and country code
2d896bbf 1073 * @global string $squirrelmail_default_language
aa0da530 1074 */
f6cfbdac 1075$squirrelmail_default_language = 'en_US';
7c612fdd 1076
f6cfbdac 1077/**
2d896bbf 1078 * Default Charset
1079 *
fe48c808 1080 * This option controls what character set is used when sending
1081 * mail and when sending HTML to the browser. Option works only
1082 * with US English (en_US) translation. Other translations use
867fed37 1083 * charsets that are set in translation settings.
fe48c808 1084 *
2d896bbf 1085 * @global string $default_charset
f6cfbdac 1086 */
1087$default_charset = 'iso-8859-1';
7c612fdd 1088
f6cfbdac 1089/**
2d896bbf 1090 * Alternative Language Names Control
1091 *
91e0dccc 1092 * This options allows displaying native language names in language
f6cfbdac 1093 * selection box.
2d896bbf 1094 * @global bool $show_alternative_names
f03f6ee7 1095 * @since 1.5.0
f6cfbdac 1096 */
1097$show_alternative_names = false;
aa0da530 1098
ca85aabe 1099/**
f03f6ee7 1100 * Aggressive Decoding Control
2d896bbf 1101 *
91e0dccc 1102 * This option enables reading of Eastern multibyte encodings.
f6cfbdac 1103 * Functions that provide this support are very cpu and memory intensive.
1104 * Don't enable this option unless you really need it.
f03f6ee7 1105 * @global bool $aggressive_decoding
1106 * @since 1.5.1
ca85aabe 1107 */
f03f6ee7 1108$aggressive_decoding = false;
1109
1110/**
6d3689f5 1111 * Lossy Encoding Control
f03f6ee7 1112 *
91e0dccc 1113 * This option allows charset conversions when output charset does not support
1114 * all symbols used in original charset. Symbols unsupported by output charset
f03f6ee7 1115 * will be replaced with question marks.
6d3689f5 1116 * @global bool $lossy_encoding
f03f6ee7 1117 * @since 1.5.1
1118 */
6d3689f5 1119$lossy_encoding = false;
ca85aabe 1120
4766fd60 1121/**
1122 * Controls use of time zone libraries
1123 *
1124 * Possible values:
1125 * <ul>
1126 * <li>0 - default, SquirrelMail uses GNU C timezone names in
1127 * TZ environment variables
1128 * <li>1 - strict, SquirrelMail uses 'TZ' subkey values in TZ
1129 * environment variables
1130 * <li>2 - custom, SquirrelMail loads time zone data from
1131 * config/timezones.php and uses time zone array keys in
1132 * TZ enviroment variables
1133 * <li>3 - custom strict, SquirrelMail loads time zone data from
1134 * config/timezones.php and uses TZ subkey values in
1135 * TZ enviroment variables
1136 * </ul>
1137 * Use of any other value switches to default SquirrelMail time zone
1138 * handling ($time_zone_type).
1139 * @global integer $time_zone_type
1140 * @since 1.5.1
1141 */
1142$time_zone_type = 0;
1143
74530cf4 1144/**
1145 * Location base
1146 *
1147 * This is used to build the URL to the SquirrelMail location.
1148 * It should contain only the protocol and hostname/port parts
1149 * of the URL; the full path will be appended automatically.
1150 *
1151 * If not specified or empty, it will be autodetected.
1152 *
1153 * Examples:
1154 * http://webmail.example.org
1155 * http://webmail.example.com:8080
1156 * https://webmail.example.com:6691
1157 *
1158 * To be clear: do not include any of the path elements, so if
1159 * SquirrelMail is at http://www.example.net/web/mail/src/login.php, you
1160 * write: http://www.example.net
1161 *
05a7e5b4 1162 * @global string $config_location_base
1163 * @since 1.5.2 and 1.4.8
74530cf4 1164 */
1165$config_location_base = '';
1166
f6cfbdac 1167/*** Tweaks ***/
74d6a0d9 1168/**
1169 * Iframe sandbox code control
1170 *
1171 * Use iframe to render html emails
1172 * (temp option used during debuging of new code)
1173 * @global bool $use_iframe
1174 * @since 1.5.1
1175 */
1176$use_iframe = false;
1177
6395c46d 1178/**
2d896bbf 1179 * Message Icons control
1180 *
6395c46d 1181 * Use icons for message and folder markers
2d896bbf 1182 * @global bool $use_icons
71d3f882 1183 * @since 1.5.1
6395c46d 1184 */
1185$use_icons = false;
2d896bbf 1186
f6cfbdac 1187/**
2d896bbf 1188 * PHP recode functions control
1189 *
f6cfbdac 1190 * Use experimental code with php recode functions when reading messages with
1191 * different encoding. This code is faster that original SM functions,
1192 * but it require php with recode support.
91e0dccc 1193 *
1194 * Don't enable this option if you are not sure about availability of
f6cfbdac 1195 * recode support.
2d896bbf 1196 * @global bool $use_php_recode
f03f6ee7 1197 * @since 1.5.0
f6cfbdac 1198 */
1199$use_php_recode = false;
f03f6ee7 1200
f6cfbdac 1201/**
2d896bbf 1202 * PHP iconv functions control
1203 *
f6cfbdac 1204 * Use experimental code with php iconv functions when reading messages with
1205 * different encoding. This code is faster that original SM functions,
1206 * but it require php with iconv support and works only with some translations.
91e0dccc 1207 *
1208 * Don't enable this option if you are not sure about availability of
f6cfbdac 1209 * iconv support.
2d896bbf 1210 * @global bool $use_php_iconv
f03f6ee7 1211 * @since 1.5.0
f6cfbdac 1212 */
1213$use_php_iconv = false;
ca85aabe 1214
71d3f882 1215/**
1216 * Controls remote configuration checks
1217 * @global boolean $allow_remote_configtest
1218 * @since 1.5.1
1219 */
1220$allow_remote_configtest = false;
1221
52ed2f88 1222/**
2d896bbf 1223 * Subscribe Listing Control
1224 *
52ed2f88 1225 * this disables listing all of the folders on the IMAP Server to
1226 * generate the folder subscribe listbox (this can take a long time
1227 * when you have a lot of folders). Instead, a textbox will be
f6cfbdac 1228 * displayed allowing users to enter a specific folder name to subscribe to
91e0dccc 1229 *
f6cfbdac 1230 * This option can't be changed by conf.pl
2d896bbf 1231 * @global bool $no_list_for_subscribe
f6cfbdac 1232 */
52ed2f88 1233$no_list_for_subscribe = false;
1234
47a29326 1235/**
2d896bbf 1236 * Color in config control
1237 *
f6cfbdac 1238 * This option is used only by conf.pl script to generate configuration
91e0dccc 1239 * menu with some colors and is provided here only as reference.
2d896bbf 1240 * @global integer $config_use_color
47a29326 1241 */
f6cfbdac 1242$config_use_color = 2;