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