4 * Default SquirrelMail configuration file
6 * BEFORE EDITING THIS FILE!
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
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.
18 * @copyright © 2000-2007 The SquirrelMail Project Team
19 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
20 * @version $Id: config_default.php 12522 2007-07-10 14:52:53Z kink $
21 * @package squirrelmail
25 /* Do not change this value. */
27 global $config_version;
28 $config_version = '1.4.0';
30 /*** Organization preferences ***/
33 * @global string $org_name
35 $org_name = "SquirrelMail";
38 * Organization's logo picture (blank if none)
39 * @global string $org_logo
41 $org_logo = SM_PATH . 'images/sm_logo.png';
44 * The width of the logo (0 for default)
45 * @global string $org_logo_width
47 $org_logo_width = '308';
50 * The height of the logo (0 for default)
51 * @global string $org_logo_height
53 $org_logo_height = '111';
58 * This is the web page title that appears at the top of the browser window.
59 * @global string $org_title
61 $org_title = "SquirrelMail $version";
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.
72 * @global string $signout_page
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.
82 * @global string $frame_top
89 * Here you can set name of the link displayed on the right side of main page.
91 * Link will be displayed only if you have $hide_sm_attributions
93 * @global string $provider_name
95 $provider_name = 'SquirrelMail';
100 * Here you can set URL of the link displayed on the right side of main page.
102 * Link will be displayed only if you have $hide_sm_attributions
103 * option set to true.
104 * @global string $provider_uri
106 $provider_uri = 'http://www.squirrelmail.org/';
108 /*** Server Settings ***/
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
115 * Example: In bob@example.com, example.com is the domain.
116 * @global string $domain
118 $domain = trim(implode('', file('/etc/'.(file_exists('/etc/mailname')?'mail':'host').'name')));
121 * Time offset inversion
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.
127 * @global bool $invert_time
129 $invert_time = false;
132 * Default send transport
134 * What should be used when sending email.
135 * If it is set to false, SquirrelMail will use SMTP server settings.
136 * If it is set to true, SquirrelMail will use program defined in
138 * @global bool $useSendmail
143 * Your SMTP server (usually the same as the IMAP server).
144 * @global string $smtpServerAddress
146 $smtpServerAddress = 'localhost';
148 * Your SMTP port number (usually 25).
149 * @global integer $smtpPort
154 * SquirrelMail header encryption
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.
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.
165 * Encoded information can be decoded with decrypt_headers.php script
166 * from SquirrelMail contrib/ directory.
167 * @global string $encode_header_key
168 * @since 1.5.1 and 1.4.5
170 $encode_header_key = '';
175 * Program that should be used when sending email. SquirrelMail expects that
176 * this program will follow options used by original sendmail
177 * (http://www.sendmail.org).
178 * @global string $sendmail_path
180 $sendmail_path = '/usr/sbin/sendmail';
183 * Extra sendmail command arguments.
185 * Sets additional sendmail command arguments. Make sure that arguments are
186 * supported by your sendmail program. -f argument is added automatically by
187 * SquirrelMail scripts. Variable defaults to standard /usr/sbin/sendmail
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
190 * or use arguments suitable for your mailer.
191 * @global string $sendmail_args
192 * @since 1.5.1 and 1.4.8
194 $sendmail_args = '-i -t';
197 * IMAP server address
199 * The dns name (or IP address) for your imap server.
200 * @global string $imapServerAddress
202 $imapServerAddress = 'mail.drsnuggles.stderr.nl';
207 * Port used by your imap server. (Usually 143)
208 * @global integer $imapPort
215 * The type of IMAP server you are running.
216 * Valid type are the following (case is important):
225 * Please note that this changes only some of server settings.
227 * In order to set everything correctly, you need to adjust several
228 * squirrelmail options. These options are listed in doc/presets.txt
229 * @global string $imap_server_type
231 $imap_server_type = 'other';
234 * Advanced IMAP authentication options control
236 * CRAM-MD5, DIGEST-MD5, Plain, and TLS
237 * Set reasonable defaults - you'd never know this was there unless you ask for it
238 * @global bool $use_imap_tls
240 $use_imap_tls = false;
243 * Advanced SMTP authentication options control
245 * CRAM-MD5, DIGEST-MD5, Plain, and TLS
246 * Set reasonable defaults - you'd never know this was there unless you ask for it
247 * @global bool $use_smtp_tls
249 $use_smtp_tls = false;
252 * SMTP authentication mechanism
254 * auth_mech can be either 'none', 'login','plain', 'cram-md5', or 'digest-md5'
255 * @global string $smtp_auth_mech
257 $smtp_auth_mech = 'none';
260 * Custom SMTP Authentication Username
262 * IMAP username is used if variable is set to an empty string. Variable is included in
263 * the main configuration file only in 1.4.11+ and 1.5.2+.
264 * @global string $smtp_sitewide_user
267 $smtp_sitewide_user = '';
270 * Custom SMTP Authentication Password
272 * IMAP password is used if variable is set to an empty string. Variable is included in
273 * the main configuration file in 1.4.11+ and 1.5.2+
274 * @global string $smtp_sitewide_pass
277 $smtp_sitewide_pass = '';
280 * IMAP authentication mechanism
282 * auth_mech can be either 'login','plain', 'cram-md5', or 'digest-md5'
283 * @global string $imap_auth_mech
285 $imap_auth_mech = 'login';
288 * IMAP folder delimiter
290 * This is the delimiter that your IMAP server uses to distinguish between
291 * folders. For example, Cyrus uses '.' as the delimiter and a complete
292 * folder would look like 'INBOX.Friends.Bob', while UW uses '/' and would
293 * look like 'INBOX/Friends/Bob'. Normally this should be left at 'detect'
294 * but if you are sure you know what delimiter your server uses, you can
297 * To have it autodetect the delimiter, set it to 'detect'.
298 * @global string $optional_delimiter
300 $optional_delimiter = 'detect';
303 * POP before SMTP setting
305 * Do you wish to use POP3 before SMTP? Your server must
306 * support this in order for SquirrelMail to work with it.
307 * @global bool $pop_before_smtp
309 $pop_before_smtp = false;
312 /*** Folder Settings ***/
314 * Default IMAP folder prefix
316 * Many servers store mail in your home directory. With this, they
317 * store them in a subdirectory: mail/ or Mail/, etc. If your server
318 * does this, please set this to what the default mail folder should
319 * be. This is still a user preference, so they can change it if it
320 * is different for each user.
323 * $default_folder_prefix = 'mail/';
325 * $default_folder_prefix = 'Mail/folders/';
327 * If you do not use this, set it to the empty string.
328 * @global string $default_folder_prefix
330 $default_folder_prefix = '';
333 * User level prefix control
335 * If you do not wish to give them the option to change this, set it
336 * to false. Otherwise, if it is true, they can change the folder prefix
338 * @global bool $show_prefix_option
340 $show_prefix_option = false;
343 * The following are related to deleting messages.
344 * $default_move_to_trash
345 * If this is set to 'true', when 'delete' is pressed, it
346 * will attempt to move the selected messages to the folder
347 * named $trash_folder. If it's set to 'false', we won't even
348 * attempt to move the messages, just delete them.
349 * $default_move_to_sent
350 * If this is set to 'true', sent messages will be stored in
351 * $sent_folder by default.
352 * $default_save_as_draft
353 * If this is set to 'true', users are able to use $draft_folder
354 * to store their unfinished messages.
356 * This is the path to the default trash folder. For Cyrus
357 * IMAP, it would be 'INBOX.Trash', but for UW it would be
358 * 'Trash'. We need the full path name here.
360 * This is the patch to where Draft messages will be stored.
362 * If this is true, when a message is moved or copied, the
363 * source mailbox will get expunged, removing all messages
366 * This is the path to where Sent messages will be stored.
368 * If this is true, when a folder is deleted then it will
369 * not get moved into the Trash folder.
370 * @global bool $default_move_to_trash
371 * @global bool $default_move_to_sent
372 * @global bool $default_save_as_draft
373 * @global string $trash_folder
374 * @global string $sent_folder
375 * @global string $draft_folder
376 * @global bool $auto_expunge
377 * @global bool $delete_folder
379 $default_move_to_trash = true;
380 $default_move_to_sent = true;
381 $default_save_as_draft = true;
382 $trash_folder = 'Trash';
383 $sent_folder = 'Sent';
384 $draft_folder = 'Drafts';
385 $auto_expunge = true;
386 $delete_folder = false;
389 * Special Folder Color Control
391 * Whether or not to use a special color for special folders. If not,
392 * special folders will be the same color as the other folders.
393 * @global bool $use_special_folder_color
395 $use_special_folder_color = true;
398 * Create Special Folders Control
400 * Should I create the Sent and Trash folders automatically for
401 * a new user that doesn't already have them created?
402 * @global bool $auto_create_special
404 $auto_create_special = true;
407 * List Special Folders First Control
409 * Whether or not to list the special folders first (true/false).
410 * @global bool $list_special_folders_first
412 $list_special_folders_first = true;
415 * Subfolder Layout Control
417 * Are all your folders subfolders of INBOX (i.e. cyrus IMAP server).
418 * If you are unsure, set it to false.
419 * @global bool $default_sub_of_inbox
421 $default_sub_of_inbox = true;
424 * Subfolder Format Control
426 * Some IMAP daemons (UW) handle folders weird. They only allow a
427 * folder to contain either messages or other folders, not both at
428 * the same time. This option controls whether or not to display an
429 * option during folder creation. The option toggles which type of
430 * folder it should be.
432 * If this option confuses you, just set it to 'true'. You can not hurt
433 * anything if it's true, but some servers will respond weird if it's
434 * false. (Cyrus works fine whether it's true OR false).
435 * @global bool $show_contain_subfolders_option
437 $show_contain_subfolders_option = false;
440 * These next two options set the defaults for the way that the
441 * users see their folder list.
442 * $default_unseen_notify
443 * Specifies whether or not the users will see the number of
444 * unseen in each folder by default and also which folders to
445 * do this to. Valid values are: 1=none, 2=inbox, 3=all.
446 * $default_unseen_type
447 * Specifies the type of notification to give the users by
448 * default. Valid choice are: 1=(4), 2=(4,25).
449 * @global integer $default_unseen_notify
450 * @global integer $default_unseen_type
452 $default_unseen_notify = 2;
453 $default_unseen_type = 1;
456 * NoSelect Fix Control
458 * This enables the no select fix for Cyrus when subfolders
459 * exist but parent folders do not
460 * @global bool $noselect_fix_enable
462 $noselect_fix_enable = false;
464 /*** General options ***/
466 * Path to the data/ directory
468 * It is a possible security hole to have a writable directory
469 * under the web server's root directory (ex: /home/httpd/html).
470 * It is possible to put the data directory anywhere you would like;
471 * it is strongly advised that it is NOT directly web-accessible.
473 * The path name can be absolute or relative (to the config directory).
474 * If it is relative, it must use the SM_PATH constant.
475 * Here are two examples:
478 * $data_dir = '/var/lib/squirrelmail/data/';
480 * Relative (to main SM directory):
481 * $data_dir = SM_PATH . 'data/';
482 * (NOT recommended: you need to secure apache to make sure these
483 * files are not world readable)
485 * @global string $data_dir
487 $data_dir = $_ENV['SITE_DIR'] . '/data/squirrelmail/data/';
490 * Attachments directory
492 * Path to directory used for storing attachments while a mail is
493 * being sent. There are a few security considerations regarding
495 * + It should have the permission 733 (rwx-wx-wx) to make it
496 * impossible for a random person with access to the webserver to
497 * list files in this directory. Confidential data might be laying
499 * + Since the webserver is not able to list the files in the content
500 * is also impossible for the webserver to delete files lying around
501 * there for too long.
502 * + It should probably be another directory than data_dir.
503 * @global string $attachment_dir
505 $attachment_dir = $_ENV['SITE_DIR'] . '/data/squirrelmail/attach/';
508 * Hash level used for data directory.
510 * This option allows spliting file based squirrelmail user
511 * data storage directory into several subfolders. Number from
512 * 0 to 4 allows allows having up to four subfolder levels.
514 * Hashing should speed up directory access if you have big number
515 * of users (500 and more).
516 * @global integer $dir_hash_level
521 * Default Size of Folder List
523 * This is the default size of the folder list. Default
524 * is 150, but you can set it to whatever you wish.
525 * @global string $default_left_size
527 $default_left_size = '150';
530 * Username Case Control
532 * Some IMAP servers allow a username (like 'bob') to log in if they use
533 * uppercase in their name (like 'Bob' or 'BOB'). This creates extra
534 * preference files. Toggling this option to true will transparently
535 * change all usernames to lowercase.
536 * @global bool $force_username_lowercase
538 $force_username_lowercase = false;
541 * Email Priority Control
543 * This option enables use of email priority flags by end users.
544 * @global bool $default_use_priority
546 $default_use_priority = true;
549 * SquirrelMail Attributions Control
551 * This option disables display of "created by squirrelmail developers"
552 * strings and provider link
553 * @global bool $hide_sm_attributions
555 $hide_sm_attributions = false;
558 * Delivery Receipts Control
560 * This option enables use of read/delivery receipts by end users.
561 * @global bool $default_use_mdn
563 $default_use_mdn = true;
568 * If you don't want to allow users to change their email address
569 * then you can set $edit_identity to false, if you want them to
570 * not be able to change their full name too then set $edit_name
571 * to false as well. $edit_name has no effect unless $edit_identity
573 * @global bool $edit_identity
574 * @global bool $edit_name
576 $edit_identity = true;
580 * SquirrelMail adds username information to every sent email.
581 * It is done in order to prevent possible sender forging when
582 * end users are allowed to change their email and name
585 * You can disable this header, if you think that it violates
586 * user's privacy or security. Please note, that setting will
587 * work only when users are not allowed to change their identity.
589 * See SquirrelMail bug tracker #847107 for more details about it.
590 * @global bool $hide_auth_header
591 * @since 1.5.1 and 1.4.5
593 $hide_auth_header = false;
596 * Server Side Threading Control
598 * If you want to enable server side thread sorting options
599 * Your IMAP server must support the THREAD extension for
601 * @global bool $allow_thread_sort
603 $allow_thread_sort = false;
606 * Server Side Sorting Control
608 * to use server-side sorting instead of SM client side.
609 * Your IMAP server must support the SORT extension for this
611 * @global bool $allow_server_sort
613 $allow_server_sort = false;
616 * IMAP Charset Use Control
618 * This option allows you to choose if SM uses charset search
619 * Your imap server should support SEARCH CHARSET command for
621 * @global bool $allow_charset_search
623 $allow_charset_search = true;
628 * This option allows you to enable unique identifier (UID) support.
629 * @global bool $uid_support
636 * Leave this alone unless you know what you are doing.
637 * @global string $session_name
639 $session_name = 'SQMSESSID';
645 * This is used to build the URL to the SquirrelMail location.
646 * It should contain only the protocol and hostname/port parts
647 * of the URL; the full path will be appended automatically.
649 * If not specified or empty, it will be autodetected.
652 * http://webmail.example.org
653 * http://webmail.example.com:8080
654 * https://webmail.example.com:6691
656 * To be clear: do not include any of the path elements, so if
657 * SquirrelMail is at http://www.example.net/web/mail/src/login.php, you
658 * write: http://www.example.net
660 * @global string $config_location_base
663 $config_location_base = '';
669 * You can define your own theme and put it in this directory.
670 * You must call it as the example below. You can name the theme
671 * whatever you want. For an example of a theme, see the ones
672 * included in the config directory.
674 * To add a new theme to the options that users can choose from, just
675 * add a new number to the array at the bottom, and follow the pattern.
677 * $theme_default sets theme that will be used by default
678 * $theme_css sets stylesheet (from theme/css directory) that will be
680 * @global integer $theme_default
681 * @global string $theme_css
687 * Listing of installed themes
688 * @global array $theme
690 $theme[0]['PATH'] = SM_PATH . 'themes/default_theme.php';
691 $theme[0]['NAME'] = 'Default';
693 $theme[1]['PATH'] = SM_PATH . 'themes/plain_blue_theme.php';
694 $theme[1]['NAME'] = 'Plain Blue';
696 $theme[2]['PATH'] = SM_PATH . 'themes/sandstorm_theme.php';
697 $theme[2]['NAME'] = 'Sand Storm';
699 $theme[3]['PATH'] = SM_PATH . 'themes/deepocean_theme.php';
700 $theme[3]['NAME'] = 'Deep Ocean';
702 $theme[4]['PATH'] = SM_PATH . 'themes/slashdot_theme.php';
703 $theme[4]['NAME'] = 'Slashdot';
705 $theme[5]['PATH'] = SM_PATH . 'themes/purple_theme.php';
706 $theme[5]['NAME'] = 'Purple';
708 $theme[6]['PATH'] = SM_PATH . 'themes/forest_theme.php';
709 $theme[6]['NAME'] = 'Forest';
711 $theme[7]['PATH'] = SM_PATH . 'themes/ice_theme.php';
712 $theme[7]['NAME'] = 'Ice';
714 $theme[8]['PATH'] = SM_PATH . 'themes/seaspray_theme.php';
715 $theme[8]['NAME'] = 'Sea Spray';
717 $theme[9]['PATH'] = SM_PATH . 'themes/bluesteel_theme.php';
718 $theme[9]['NAME'] = 'Blue Steel';
720 $theme[10]['PATH'] = SM_PATH . 'themes/dark_grey_theme.php';
721 $theme[10]['NAME'] = 'Dark Grey';
723 $theme[11]['PATH'] = SM_PATH . 'themes/high_contrast_theme.php';
724 $theme[11]['NAME'] = 'High Contrast';
726 $theme[12]['PATH'] = SM_PATH . 'themes/black_bean_burrito_theme.php';
727 $theme[12]['NAME'] = 'Black Bean Burrito';
729 $theme[13]['PATH'] = SM_PATH . 'themes/servery_theme.php';
730 $theme[13]['NAME'] = 'Servery';
732 $theme[14]['PATH'] = SM_PATH . 'themes/maize_theme.php';
733 $theme[14]['NAME'] = 'Maize';
735 $theme[15]['PATH'] = SM_PATH . 'themes/bluesnews_theme.php';
736 $theme[15]['NAME'] = 'BluesNews';
738 $theme[16]['PATH'] = SM_PATH . 'themes/deepocean2_theme.php';
739 $theme[16]['NAME'] = 'Deep Ocean 2';
741 $theme[17]['PATH'] = SM_PATH . 'themes/blue_grey_theme.php';
742 $theme[17]['NAME'] = 'Blue Grey';
744 $theme[18]['PATH'] = SM_PATH . 'themes/dompie_theme.php';
745 $theme[18]['NAME'] = 'Dompie';
747 $theme[19]['PATH'] = SM_PATH . 'themes/methodical_theme.php';
748 $theme[19]['NAME'] = 'Methodical';
750 $theme[20]['PATH'] = SM_PATH . 'themes/greenhouse_effect.php';
751 $theme[20]['NAME'] = 'Greenhouse Effect (Changes)';
753 $theme[21]['PATH'] = SM_PATH . 'themes/in_the_pink.php';
754 $theme[21]['NAME'] = 'In The Pink (Changes)';
756 $theme[22]['PATH'] = SM_PATH . 'themes/kind_of_blue.php';
757 $theme[22]['NAME'] = 'Kind of Blue (Changes)';
759 $theme[23]['PATH'] = SM_PATH . 'themes/monostochastic.php';
760 $theme[23]['NAME'] = 'Monostochastic (Changes)';
762 $theme[24]['PATH'] = SM_PATH . 'themes/shades_of_grey.php';
763 $theme[24]['NAME'] = 'Shades of Grey (Changes)';
765 $theme[25]['PATH'] = SM_PATH . 'themes/spice_of_life.php';
766 $theme[25]['NAME'] = 'Spice of Life (Changes)';
768 $theme[26]['PATH'] = SM_PATH . 'themes/spice_of_life_lite.php';
769 $theme[26]['NAME'] = 'Spice of Life - Lite (Changes)';
771 $theme[27]['PATH'] = SM_PATH . 'themes/spice_of_life_dark.php';
772 $theme[27]['NAME'] = 'Spice of Life - Dark (Changes)';
774 $theme[28]['PATH'] = SM_PATH . 'themes/christmas.php';
775 $theme[28]['NAME'] = 'Holiday - Christmas';
777 $theme[29]['PATH'] = SM_PATH . 'themes/darkness.php';
778 $theme[29]['NAME'] = 'Darkness (Changes)';
780 $theme[30]['PATH'] = SM_PATH . 'themes/random.php';
781 $theme[30]['NAME'] = 'Random (Changes every login)';
783 $theme[31]['PATH'] = SM_PATH . 'themes/midnight.php';
784 $theme[31]['NAME'] = 'Midnight';
786 $theme[32]['PATH'] = SM_PATH . 'themes/alien_glow.php';
787 $theme[32]['NAME'] = 'Alien Glow';
789 $theme[33]['PATH'] = SM_PATH . 'themes/dark_green.php';
790 $theme[33]['NAME'] = 'Dark Green';
792 $theme[34]['PATH'] = SM_PATH . 'themes/penguin.php';
793 $theme[34]['NAME'] = 'Penguin';
795 $theme[35]['PATH'] = SM_PATH . 'themes/minimal_bw.php';
796 $theme[35]['NAME'] = 'Minimal BW';
798 $theme[36]['PATH'] = SM_PATH . 'themes/redmond.php';
799 $theme[36]['NAME'] = 'Redmond';
801 $theme[37]['PATH'] = SM_PATH . 'themes/netstyle_theme.php';
802 $theme[37]['NAME'] = 'Net Style';
804 $theme[38]['PATH'] = SM_PATH . 'themes/silver_steel_theme.php';
805 $theme[38]['NAME'] = 'Silver Steel';
807 $theme[39]['PATH'] = SM_PATH . 'themes/simple_green_theme.php';
808 $theme[39]['NAME'] = 'Simple Green';
810 $theme[40]['PATH'] = SM_PATH . 'themes/wood_theme.php';
811 $theme[40]['NAME'] = 'Wood';
813 $theme[41]['PATH'] = SM_PATH . 'themes/bluesome.php';
814 $theme[41]['NAME'] = 'Bluesome';
816 $theme[42]['PATH'] = SM_PATH . 'themes/simple_green2.php';
817 $theme[42]['NAME'] = 'Simple Green 2';
819 $theme[43]['PATH'] = SM_PATH . 'themes/simple_purple.php';
820 $theme[43]['NAME'] = 'Simple Purple';
822 $theme[44]['PATH'] = SM_PATH . 'themes/autumn.php';
823 $theme[44]['NAME'] = 'Autumn';
825 $theme[45]['PATH'] = SM_PATH . 'themes/autumn2.php';
826 $theme[45]['NAME'] = 'Autumn 2';
828 $theme[46]['PATH'] = SM_PATH . 'themes/blue_on_blue.php';
829 $theme[46]['NAME'] = 'Blue on Blue';
831 $theme[47]['PATH'] = SM_PATH . 'themes/classic_blue.php';
832 $theme[47]['NAME'] = 'Classic Blue';
834 $theme[48]['PATH'] = SM_PATH . 'themes/classic_blue2.php';
835 $theme[48]['NAME'] = 'Classic Blue 2';
837 $theme[49]['PATH'] = SM_PATH . 'themes/powder_blue.php';
838 $theme[49]['NAME'] = 'Powder Blue';
840 $theme[50]['PATH'] = SM_PATH . 'themes/techno_blue.php';
841 $theme[50]['NAME'] = 'Techno Blue';
843 $theme[51]['PATH'] = SM_PATH . 'themes/turquoise.php';
844 $theme[51]['NAME'] = 'Turquoise';
848 * Array of arrays with LDAP server parameters. See
849 * functions/abook_ldap_server.php for a list of possible
853 * $ldap_server[0] = Array(
854 * 'host' => 'memberdir.netscape.com',
855 * 'name' => 'Netcenter Member Directory',
856 * 'base' => 'ou=member_directory,o=netcenter.com'
859 * NOTE: please see security note at the top of this file when
860 * entering a password.
862 // Add your ldap server options here
865 * Javascript in Addressbook Control
867 * Users may search their addressbook via either a plain HTML or Javascript
868 * enhanced user interface. This option allows you to set the default choice.
869 * Set this default choice as either:
872 * @global bool $default_use_javascript_addr_book
874 $default_use_javascript_addr_book = false;
877 * Shared filebased address book
878 * @global string $abook_global_file
879 * @since 1.5.1 and 1.4.4
881 $abook_global_file = '';
884 * Writing into shared address book control
885 * @global bool $abook_global_file_writeable
886 * @since 1.5.1 and 1.4.4
888 $abook_global_file_writeable = false;
891 * Listing of shared address book control
892 * @global bool $abook_global_file_listing
893 * @since 1.5.1 and 1.4.9
895 $abook_global_file_listing = true;
898 * Controls file based address book entry size
900 * This setting controls space allocated to file based address book records.
901 * End users will be unable to save address book entry, if total entry size
902 * (quoted address book fields + 4 delimiters + linefeed) exceeds allowed
903 * address book length size.
905 * Same setting is applied to personal and global file based address books.
907 * It is strongly recommended to keep default setting value. Change it only
908 * if you really want to store address book entries that are bigger than two
910 * @global integer $abook_file_line_length
911 * @since 1.5.2 and 1.4.9
913 $abook_file_line_length = 2048;
918 * This is a message that is displayed immediately after a user logs in.
919 * @global string $motd
925 * To install plugins, just add elements to this array that have
926 * the plugin directory name relative to the /plugins/ directory.
927 * For instance, for the 'squirrelspell' plugin, you'd put a line like
929 * $plugins[0] = 'squirrelspell';
930 * $plugins[1] = 'listcommands';
932 // Add list of enabled plugins here
937 * Read the administrator's manual in order to get more information
938 * about these settings.
941 * Database-driven private addressbooks
942 * DSN (Data Source Name) for a database where the private
943 * addressbooks are stored. See the administrator's manual for more info.
944 * If it is not set, the addressbooks are stored in files
946 * The DSN is in the format: mysql://user:pass@hostname/dbname
947 * The table is the name of the table to use within the
948 * specified database.
950 * NOTE: please see security note at the top of this file when
951 * entering a password.
954 $addrbook_table = 'address';
956 * Database used to store user data
959 $prefs_table = 'userprefs';
960 $prefs_key_field = 'prefkey';
961 $prefs_user_field = 'user';
962 $prefs_val_field = 'prefval';
964 /*** Global sql database options ***/
966 * DSN of global address book database
967 * @global string $addrbook_global_dsn
968 * @since 1.5.1 and 1.4.4
970 $addrbook_global_dsn = '';
972 * Table used for global database address book
973 * @global string $addrbook_global_table
974 * @since 1.5.1 and 1.4.4
976 $addrbook_global_table = 'global_abook';
978 * Control writing into global database address book
979 * @global boolean $addrbook_global_writeable
980 * @since 1.5.1 and 1.4.4
982 $addrbook_global_writeable = false;
984 * Control listing of global database address book
985 * @global boolean $addrbook_global_listing
986 * @since 1.5.1 and 1.4.4
988 $addrbook_global_listing = false;
990 /*** Language settings ***/
994 * This is the default language. It is used as a last resort
995 * if SquirrelMail can't figure out which language to display.
996 * Language names usually consist of language code, undercore
997 * symbol and country code
998 * @global string $squirrelmail_default_language
1000 $squirrelmail_default_language = 'en_US';
1005 * This option controls what character set is used when sending mail
1006 * and when sending HTML to the browser. Do not set this to US-ASCII,
1007 * use ISO-8859-1 instead.
1009 * This option is active only when default language is en_US. In other
1010 * cases SquirrelMail uses charset that depends on default language.
1011 * See $squirrelmail_default_language
1013 * @global string $default_charset
1015 $default_charset = 'iso-8859-1';
1018 * Lossy Encoding Control
1020 * This option allows charset conversions when output charset does not support
1021 * all symbols used in original charset. Symbols unsupported by output charset
1022 * will be replaced with question marks.
1023 * @global bool $lossy_encoding
1024 * @since 1.4.4 and 1.5.1
1026 $lossy_encoding = false;
1029 * Subscribe Listing Control
1031 * this disables listing all of the folders on the IMAP Server to
1032 * generate the folder subscribe listbox (this can take a long time
1033 * when you have a lot of folders). Instead, a textbox will be
1034 * displayed allowing users to enter a specific folder name to subscribe to
1036 * This option can't be changed by conf.pl
1037 * @global bool $no_list_for_subscribe
1039 $no_list_for_subscribe = false;
1042 * Color in config control
1044 * This option is used only by conf.pl script to generate configuration
1045 * menu with some colors and is provided here only as reference.
1046 * @global integer $config_use_color
1048 $config_use_color = 2;
1051 * This option includes special configuration options
1053 @include SM_PATH . 'config/config_local.php';