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