Updating examples for setting up directories
[squirrelmail.git] / config / config_default.php
... / ...
CommitLineData
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-2006 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. */
21global $version;
22global $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 * Secure IMAP connection controls
233 *
234 * 0 - use plain text connection,
235 * 1 - use imaps (adds tls:// prefix to hostname),
236 * 2 - use IMAP STARTTLS extension (rfc2595).
237 *
238 * Was boolean before 1.5.1.
239 * @global integer $use_imap_tls
240 * @since 1.4.0
241 */
242$use_imap_tls = 0;
243
244/**
245 * Secure SMTP connection controls
246 *
247 * 0 - use plain text connection,
248 * 1 - use ssmtp (adds tls:// prefix to hostname),
249 * 2 - use SMTP STARTTLS extension (rfc2487).
250 *
251 * Was boolean before 1.5.1.
252 * @global integer $use_smtp_tls
253 * @since 1.4.0
254 */
255$use_smtp_tls = 0;
256
257/**
258 * SMTP authentication mechanism
259 *
260 * auth_mech can be either 'none', 'login','plain', 'cram-md5', or 'digest-md5'
261 * @global string $smtp_auth_mech
262 */
263$smtp_auth_mech = 'none';
264
265/**
266 * IMAP authentication mechanism
267 *
268 * auth_mech can be either 'login','plain', 'cram-md5', or 'digest-md5'
269 * @global string $imap_auth_mech
270 */
271$imap_auth_mech = 'login';
272
273/**
274 * IMAP folder delimiter
275 *
276 * This is the delimiter that your IMAP server uses to distinguish between
277 * folders. For example, Cyrus uses '.' as the delimiter and a complete
278 * folder would look like 'INBOX.Friends.Bob', while UW uses '/' and would
279 * look like 'INBOX/Friends/Bob'. Normally this should be left at 'detect'
280 * but if you are sure you know what delimiter your server uses, you can
281 * specify it here.
282 *
283 * To have it autodetect the delimiter, set it to 'detect'.
284 * @global string $optional_delimiter
285 */
286$optional_delimiter = 'detect';
287
288/**
289 * POP before SMTP setting
290 *
291 * Do you wish to use POP3 before SMTP? Your server must
292 * support this in order for SquirrelMail to work with it.
293 * @global bool $pop_before_smtp
294 */
295$pop_before_smtp = false;
296
297
298/*** Folder Settings ***/
299/**
300 * Default IMAP folder prefix
301 *
302 * Many servers store mail in your home directory. With this, they
303 * store them in a subdirectory: mail/ or Mail/, etc. If your server
304 * does this, please set this to what the default mail folder should
305 * be. This is still a user preference, so they can change it if it
306 * is different for each user.
307 *
308 * Example:
309 * $default_folder_prefix = 'mail/';
310 * -- or --
311 * $default_folder_prefix = 'Mail/folders/';
312 *
313 * If you do not use this, set it to the empty string.
314 * @global string $default_folder_prefix
315 */
316$default_folder_prefix = '';
317
318/**
319 * User level prefix control
320 *
321 * If you do not wish to give them the option to change this, set it
322 * to false. Otherwise, if it is true, they can change the folder prefix
323 * to be anything.
324 * @global bool $show_prefix_option
325 */
326$show_prefix_option = false;
327
328/**
329 * The following are related to deleting messages.
330 * $default_move_to_trash
331 * If this is set to 'true', when 'delete' is pressed, it
332 * will attempt to move the selected messages to the folder
333 * named $trash_folder. If it's set to 'false', we won't even
334 * attempt to move the messages, just delete them.
335 * $default_move_to_sent
336 * If this is set to 'true', sent messages will be stored in
337 * $sent_folder by default.
338 * $default_save_as_draft
339 * If this is set to 'true', users are able to use $draft_folder
340 * to store their unfinished messages.
341 * $trash_folder
342 * This is the path to the default trash folder. For Cyrus
343 * IMAP, it would be 'INBOX.Trash', but for UW it would be
344 * 'Trash'. We need the full path name here.
345 * $draft_folder
346 * This is the patch to where Draft messages will be stored.
347 * $auto_expunge
348 * If this is true, when a message is moved or copied, the
349 * source mailbox will get expunged, removing all messages
350 * marked 'Deleted'.
351 * $sent_folder
352 * This is the path to where Sent messages will be stored.
353 * $delete_folder
354 * If this is true, when a folder is deleted then it will
355 * not get moved into the Trash folder.
356 * @global bool $default_move_to_trash
357 * @global bool $default_move_to_sent
358 * @global bool $default_save_as_draft
359 * @global string $trash_folder
360 * @global string $sent_folder
361 * @global string $draft_folder
362 * @global bool $auto_expunge
363 * @global bool $delete_folder
364 */
365$default_move_to_trash = true;
366$default_move_to_sent = true;
367$default_save_as_draft = true;
368$trash_folder = 'INBOX.Trash';
369$sent_folder = 'INBOX.Sent';
370$draft_folder = 'INBOX.Drafts';
371$auto_expunge = true;
372$delete_folder = false;
373
374/**
375 * Special Folder Color Control
376 *
377 * Whether or not to use a special color for special folders. If not,
378 * special folders will be the same color as the other folders.
379 * @global bool $use_special_folder_color
380 */
381$use_special_folder_color = true;
382
383/**
384 * Create Special Folders Control
385 *
386 * Should I create the Sent and Trash folders automatically for
387 * a new user that doesn't already have them created?
388 * @global bool $auto_create_special
389 */
390$auto_create_special = true;
391
392/**
393 * List Special Folders First Control
394 *
395 * Whether or not to list the special folders first (true/false).
396 * @global bool $list_special_folders_first
397 */
398$list_special_folders_first = true;
399
400/**
401 * Subfolder Layout Control
402 *
403 * Are all your folders subfolders of INBOX (i.e. cyrus IMAP server).
404 * If you are unsure, set it to false.
405 * @global bool $default_sub_of_inbox
406 */
407$default_sub_of_inbox = true;
408
409/**
410 * Subfolder Format Control
411 *
412 * Some IMAP daemons (UW) handle folders weird. They only allow a
413 * folder to contain either messages or other folders, not both at
414 * the same time. This option controls whether or not to display an
415 * option during folder creation. The option toggles which type of
416 * folder it should be.
417 *
418 * If this option confuses you, just set it to 'true'. You can not hurt
419 * anything if it's true, but some servers will respond weird if it's
420 * false. (Cyrus works fine whether it's true OR false).
421 * @global bool $show_contain_subfolders_option
422 */
423$show_contain_subfolders_option = false;
424
425/**
426 * These next two options set the defaults for the way that the
427 * users see their folder list.
428 * $default_unseen_notify
429 * Specifies whether or not the users will see the number of
430 * unseen in each folder by default and also which folders to
431 * do this to. Valid values are: 1=none, 2=inbox, 3=all.
432 * $default_unseen_type
433 * Specifies the type of notification to give the users by
434 * default. Valid choice are: 1=(4), 2=(4,25).
435 * @global integer $default_unseen_notify
436 * @global integer $default_unseen_type
437 */
438$default_unseen_notify = 2;
439$default_unseen_type = 1;
440
441/**
442 * NoSelect Fix Control
443 *
444 * This enables the no select fix for Cyrus when subfolders
445 * exist but parent folders do not
446 * @global bool $noselect_fix_enable
447 */
448$noselect_fix_enable = false;
449
450/*** General options ***/
451/**
452 * Path to the data/ directory
453 *
454 * You need to create this directory yourself (see INSTALL).
455 *
456 * It is a possible security hole to have a writable directory
457 * under the web server's root directory (ex: /home/httpd/html).
458 * The path name can be absolute or relative (to the config directory).
459 * If path is relative, it must use SM_PATH constant.
460 * Here are two examples:
461 *
462 * Absolute:
463 * $data_dir = '/var/local/squirrelmail/data/';
464 *
465 * Relative (to main SM directory):
466 * $data_dir = SM_PATH . 'data/';
467 * (NOT recommended: you need to secure apache to make sure these
468 * files are not world readable)
469 *
470 * @global string $data_dir
471 */
472$data_dir = '/var/local/squirrelmail/data';
473
474/**
475 * Attachments directory
476 *
477 * Path to directory used for storing attachments while a mail is
478 * being sent. There are a few security considerations regarding
479 * this directory:
480 * + It should have the permission 733 (rwx-wx-wx) to make it
481 * impossible for a random person with access to the webserver to
482 * list files in this directory. Confidential data might be laying
483 * around there.
484 * + Since the webserver is not able to list the files in the content
485 * is also impossible for the webserver to delete files lying around
486 * there for too long. You should have some script that deletes
487 * left over temp files.
488 * + It should probably be another directory than data_dir.
489 * @global string $attachment_dir
490 */
491$attachment_dir = $data_dir;
492
493/**
494 * Hash level used for data directory.
495 *
496 * This option allows spliting file based SquirrelMail user
497 * data storage directory into several subfolders. Number from
498 * 0 to 4 allows allows having up to four subfolder levels.
499 *
500 * Hashing should speed up directory access if you have big number
501 * of users (500 and more).
502 * @global integer $dir_hash_level
503 */
504$dir_hash_level = 0;
505
506/**
507 * Default Size of Folder List
508 *
509 * This is the default size of the folder list. Default
510 * is 150, but you can set it to whatever you wish.
511 * @global string $default_left_size
512 */
513$default_left_size = '150';
514
515/**
516 * Username Case Control
517 *
518 * Some IMAP servers allow a username (like 'bob') to log in if they use
519 * uppercase in their name (like 'Bob' or 'BOB'). This creates extra
520 * preference files. Toggling this option to true will transparently
521 * change all usernames to lowercase.
522 * @global bool $force_username_lowercase
523 */
524$force_username_lowercase = false;
525
526/**
527 * Email Priority Control
528 *
529 * This option enables use of email priority flags by end users.
530 * @global bool $default_use_priority
531 */
532$default_use_priority = true;
533
534/**
535 * SquirrelMail Attributions Control
536 *
537 * This option disables display of "created by SquirrelMail developers"
538 * strings and provider link
539 * @global bool $hide_sm_attributions
540 * @since 1.2.0
541 */
542$hide_sm_attributions = false;
543
544/**
545 * Delivery Receipts Control
546 *
547 * This option enables use of read/delivery receipts by end users.
548 * @global bool $default_use_mdn
549 */
550$default_use_mdn = true;
551
552/**
553 * Identity Controls
554 *
555 * If you don't want to allow users to change their email address
556 * then you can set $edit_identity to false, if you want them to
557 * not be able to change their full name too then set $edit_name
558 * to false as well. $edit_name has no effect unless $edit_identity
559 * is false;
560 * @global bool $edit_identity
561 * @global bool $edit_name
562 */
563$edit_identity = true;
564$edit_name = true;
565
566/**
567 * SquirrelMail adds username information to every sent email.
568 * It is done in order to prevent possible sender forging when
569 * end users are allowed to change their email and name
570 * information.
571 *
572 * You can disable this header, if you think that it violates
573 * user's privacy or security. Please note, that setting will
574 * work only when users are not allowed to change their identity.
575 *
576 * See SquirrelMail bug tracker #847107 for more details about it.
577 * @global bool $hide_auth_header
578 * @since 1.5.1 and 1.4.5
579 */
580$hide_auth_header = false;
581
582/**
583 * Server Side Threading Control
584 *
585 * Set it to true, if you want to disable server side thread
586 * sorting options. Your IMAP server must support the THREAD
587 * extension for this to have any effect.
588 *
589 * Older SquirrelMail versions used $allow_thread_sort option.
590 * @global bool $disable_thread_sort
591 * @since 1.5.1
592 */
593$disable_thread_sort = false;
594
595/**
596 * Server Side Sorting Control
597 *
598 * Set it to true, if you want to disable server side sorting
599 * and use SM client side sorting instead (client side sorting
600 * can be slow). Your IMAP server must support the SORT extension
601 * for this to have any effect.
602 *
603 * Older SquirrelMail versions used $allow_server_sort option.
604 * @global bool $disable_server_sort
605 * @since 1.5.1
606 */
607$disable_server_sort = false;
608
609/**
610 * IMAP Charset Use Control
611 *
612 * This option allows you to choose if SM uses charset search
613 * Your imap server should support SEARCH CHARSET command for
614 * this to work.
615 * @global bool $allow_charset_search
616 */
617$allow_charset_search = true;
618
619/**
620 * Search functions control
621 *
622 * This option allows you to control the use of advanced search form.
623 * Set to 0 to enable basic search only, 1 to enable advanced search only
624 * or 2 to enable both.
625 * @global integer $allow_advanced_search
626 */
627$allow_advanced_search = 0;
628
629/**
630 * PHP session name.
631 *
632 * Leave this alone unless you know what you are doing.
633 * @global string $session_name
634 */
635$session_name = 'SQMSESSID';
636
637
638/**
639 * Themes
640 * You can define your own theme and put it in this directory.
641 * You must call it as the example below. You can name the theme
642 * whatever you want. For an example of a theme, see the ones
643 * included in the config directory.
644 *
645 * To add a new theme to the options that users can choose from, just
646 * add a new number to the array at the bottom, and follow the pattern.
647 *
648 * $theme_default sets theme that will be used by default
649 * $theme_css sets stylesheet (from theme/css directory) that will be
650 * used by default.
651 * @global integer $theme_default
652 * @global string $theme_css
653 */
654$theme_default = 0;
655$theme_css = '';
656
657/**
658 * Listing of installed themes
659 * @global array $theme
660 */
661$theme[0]['PATH'] = SM_PATH . 'themes/default_theme.php';
662$theme[0]['NAME'] = 'Default';
663
664$theme[1]['PATH'] = SM_PATH . 'themes/plain_blue_theme.php';
665$theme[1]['NAME'] = 'Plain Blue';
666
667$theme[2]['PATH'] = SM_PATH . 'themes/sandstorm_theme.php';
668$theme[2]['NAME'] = 'Sand Storm';
669
670$theme[3]['PATH'] = SM_PATH . 'themes/deepocean_theme.php';
671$theme[3]['NAME'] = 'Deep Ocean';
672
673$theme[4]['PATH'] = SM_PATH . 'themes/slashdot_theme.php';
674$theme[4]['NAME'] = 'Slashdot';
675
676$theme[5]['PATH'] = SM_PATH . 'themes/purple_theme.php';
677$theme[5]['NAME'] = 'Purple';
678
679$theme[6]['PATH'] = SM_PATH . 'themes/forest_theme.php';
680$theme[6]['NAME'] = 'Forest';
681
682$theme[7]['PATH'] = SM_PATH . 'themes/ice_theme.php';
683$theme[7]['NAME'] = 'Ice';
684
685$theme[8]['PATH'] = SM_PATH . 'themes/seaspray_theme.php';
686$theme[8]['NAME'] = 'Sea Spray';
687
688$theme[9]['PATH'] = SM_PATH . 'themes/bluesteel_theme.php';
689$theme[9]['NAME'] = 'Blue Steel';
690
691$theme[10]['PATH'] = SM_PATH . 'themes/dark_grey_theme.php';
692$theme[10]['NAME'] = 'Dark Grey';
693
694$theme[11]['PATH'] = SM_PATH . 'themes/high_contrast_theme.php';
695$theme[11]['NAME'] = 'High Contrast';
696
697$theme[12]['PATH'] = SM_PATH . 'themes/black_bean_burrito_theme.php';
698$theme[12]['NAME'] = 'Black Bean Burrito';
699
700$theme[13]['PATH'] = SM_PATH . 'themes/servery_theme.php';
701$theme[13]['NAME'] = 'Servery';
702
703$theme[14]['PATH'] = SM_PATH . 'themes/maize_theme.php';
704$theme[14]['NAME'] = 'Maize';
705
706$theme[15]['PATH'] = SM_PATH . 'themes/bluesnews_theme.php';
707$theme[15]['NAME'] = 'BluesNews';
708
709$theme[16]['PATH'] = SM_PATH . 'themes/deepocean2_theme.php';
710$theme[16]['NAME'] = 'Deep Ocean 2';
711
712$theme[17]['PATH'] = SM_PATH . 'themes/blue_grey_theme.php';
713$theme[17]['NAME'] = 'Blue Grey';
714
715$theme[18]['PATH'] = SM_PATH . 'themes/dompie_theme.php';
716$theme[18]['NAME'] = 'Dompie';
717
718$theme[19]['PATH'] = SM_PATH . 'themes/methodical_theme.php';
719$theme[19]['NAME'] = 'Methodical';
720
721$theme[20]['PATH'] = SM_PATH . 'themes/greenhouse_effect.php';
722$theme[20]['NAME'] = 'Greenhouse Effect (Changes)';
723
724$theme[21]['PATH'] = SM_PATH . 'themes/in_the_pink.php';
725$theme[21]['NAME'] = 'In The Pink (Changes)';
726
727$theme[22]['PATH'] = SM_PATH . 'themes/kind_of_blue.php';
728$theme[22]['NAME'] = 'Kind of Blue (Changes)';
729
730$theme[23]['PATH'] = SM_PATH . 'themes/monostochastic.php';
731$theme[23]['NAME'] = 'Monostochastic (Changes)';
732
733$theme[24]['PATH'] = SM_PATH . 'themes/shades_of_grey.php';
734$theme[24]['NAME'] = 'Shades of Grey (Changes)';
735
736$theme[25]['PATH'] = SM_PATH . 'themes/spice_of_life.php';
737$theme[25]['NAME'] = 'Spice of Life (Changes)';
738
739$theme[26]['PATH'] = SM_PATH . 'themes/spice_of_life_lite.php';
740$theme[26]['NAME'] = 'Spice of Life - Lite (Changes)';
741
742$theme[27]['PATH'] = SM_PATH . 'themes/spice_of_life_dark.php';
743$theme[27]['NAME'] = 'Spice of Life - Dark (Changes)';
744
745$theme[28]['PATH'] = SM_PATH . 'themes/christmas.php';
746$theme[28]['NAME'] = 'Holiday - Christmas';
747
748$theme[29]['PATH'] = SM_PATH . 'themes/darkness.php';
749$theme[29]['NAME'] = 'Darkness (Changes)';
750
751$theme[30]['PATH'] = SM_PATH . 'themes/random.php';
752$theme[30]['NAME'] = 'Random (Changes every login)';
753
754$theme[31]['PATH'] = SM_PATH . 'themes/midnight.php';
755$theme[31]['NAME'] = 'Midnight';
756
757$theme[32]['PATH'] = SM_PATH . 'themes/alien_glow.php';
758$theme[32]['NAME'] = 'Alien Glow';
759
760$theme[33]['PATH'] = SM_PATH . 'themes/dark_green.php';
761$theme[33]['NAME'] = 'Dark Green';
762
763$theme[34]['PATH'] = SM_PATH . 'themes/penguin.php';
764$theme[34]['NAME'] = 'Penguin';
765
766$theme[35]['PATH'] = SM_PATH . 'themes/minimal_bw.php';
767$theme[35]['NAME'] = 'Minimal BW';
768
769$theme[36]['PATH'] = SM_PATH . 'themes/redmond.php';
770$theme[36]['NAME'] = 'Redmond';
771
772$theme[37]['PATH'] = SM_PATH . 'themes/netstyle_theme.php';
773$theme[37]['NAME'] = 'Net Style';
774
775$theme[38]['PATH'] = SM_PATH . 'themes/silver_steel_theme.php';
776$theme[38]['NAME'] = 'Silver Steel';
777
778$theme[39]['PATH'] = SM_PATH . 'themes/simple_green_theme.php';
779$theme[39]['NAME'] = 'Simple Green';
780
781$theme[40]['PATH'] = SM_PATH . 'themes/wood_theme.php';
782$theme[40]['NAME'] = 'Wood';
783
784$theme[41]['PATH'] = SM_PATH . 'themes/bluesome.php';
785$theme[41]['NAME'] = 'Bluesome';
786
787$theme[42]['PATH'] = SM_PATH . 'themes/simple_green2.php';
788$theme[42]['NAME'] = 'Simple Green 2';
789
790$theme[43]['PATH'] = SM_PATH . 'themes/simple_purple.php';
791$theme[43]['NAME'] = 'Simple Purple';
792
793/**
794 * Templates
795 * You can define your own template and put it in this directory.
796 * You must call it as the example below. You can name the template
797 * whatever you want. For an example of a template, see the ones
798 * included in the template directory.
799 *
800 * To add a new template to the options that users can choose from, just
801 * add a new number to the array at the bottom, and follow the pattern.
802 *
803 * $templateset_default sets theme that will be used by default
804 * used by default.
805 * @global integer $templateset_default
806 */
807$templateset_default = 0;
808
809$aTemplateSet[0]['PATH'] = SM_PATH . 'templates/default/';
810$aTemplateSet[0]['NAME'] = 'Default template';
811
812
813/**
814 * Default interface font size.
815 * @global string $default_fontsize
816 * @since 1.5.1
817 */
818$default_fontsize = '';
819
820/**
821 * Default font set
822 * @global string $default_fontset
823 * @since 1.5.1
824 */
825$default_fontset = '';
826
827/**
828 * List of available fontsets.
829 * @global array $fontsets
830 * @since 1.5.1
831 */
832$fontsets = array();
833$fontsets['serif'] = 'serif';
834$fontsets['sans'] = 'helvetica,arial,sans-serif';
835$fontsets['comicsans'] = 'comic sans ms,sans-serif';
836$fontsets['verasans'] = 'bitstream vera sans,verdana,sans-serif';
837$fontsets['tahoma'] = 'tahoma,sans-serif';
838
839/**
840 * LDAP server(s)
841 * Array of arrays with LDAP server parameters. See
842 * functions/abook_ldap_server.php for a list of possible
843 * parameters
844 *
845 * EXAMPLE:
846 * $ldap_server[0] = Array(
847 * 'host' => 'memberdir.netscape.com',
848 * 'name' => 'Netcenter Member Directory',
849 * 'base' => 'ou=member_directory,o=netcenter.com'
850 * );
851 */
852// Add your ldap server options here
853
854/**
855 * Javascript in Addressbook Control
856 *
857 * Users may search their addressbook via either a plain HTML or Javascript
858 * enhanced user interface. This option allows you to set the default choice.
859 * Set this default choice as either:
860 * true = javascript
861 * false = html
862 * @global bool $default_use_javascript_addr_book
863 */
864$default_use_javascript_addr_book = false;
865
866/**
867 * Shared filebased address book
868 * @global string $abook_global_file
869 * @since 1.5.1 and 1.4.4
870 */
871$abook_global_file = '';
872
873/**
874 * Writing into shared address book control
875 * @global bool $abook_global_file_writeable
876 * @since 1.5.1 and 1.4.4
877 */
878$abook_global_file_writeable = false;
879
880/**
881 * Listing of shared address book control
882 * @global bool $abook_global_file_listing
883 * @since 1.5.1
884 */
885$abook_global_file_listing = true;
886
887/**
888 * MOTD
889 *
890 * This is a message that is displayed immediately after a user logs in.
891 * @global string $motd
892 */
893$motd = "";
894
895
896/**
897 * To install plugins, just add elements to this array that have
898 * the plugin directory name relative to the /plugins/ directory.
899 * For instance, for the 'sqclock' plugin, you'd put a line like
900 * the following.
901 * $plugins[] = 'sqclock';
902 * $plugins[] = 'attachment_common';
903 */
904// Add list of enabled plugins here
905
906
907/*** Database ***/
908/**
909 * Read doc/database.txt in order to get more information
910 * about these settings.
911 */
912/**
913 * Database-driven private addressbooks
914 * DSN (Data Source Name) for a database where the private
915 * addressbooks are stored. See doc/db-backend.txt for more info.
916 * If it is not set, the addressbooks are stored in files
917 * in the data dir.
918 * The DSN is in the format: mysql://user:pass@hostname/dbname
919 * The table is the name of the table to use within the
920 * specified database.
921 */
922$addrbook_dsn = '';
923$addrbook_table = 'address';
924/**
925 * Database used to store user data
926 */
927$prefs_dsn = '';
928$prefs_table = 'userprefs';
929/**
930 * Preference key field
931 * @global string $prefs_key_field
932 */
933$prefs_key_field = 'prefkey';
934/**
935 * Size of preference key field
936 * @global integer $prefs_key_size
937 * @since 1.5.1
938 */
939$prefs_key_size = 64;
940/**
941 * Preference owner field
942 * @global string $prefs_user_field
943 */
944$prefs_user_field = 'user';
945/**
946 * Size of preference owner field
947 * @global integer $prefs_user_size
948 * @since 1.5.1
949 */
950$prefs_user_size = 128;
951/**
952 * Preference value field
953 * @global string $prefs_val_field
954 */
955$prefs_val_field = 'prefval';
956/**
957 * Size of preference key field
958 * @global integer $prefs_val_size
959 * @since 1.5.1
960 */
961$prefs_val_size = 65536;
962
963/*** Global sql database options ***/
964/**
965 * DSN of global address book database
966 * @global string $addrbook_global_dsn
967 * @since 1.5.1 and 1.4.4
968 */
969$addrbook_global_dsn = '';
970/**
971 * Table used for global database address book
972 * @global string $addrbook_global_table
973 * @since 1.5.1 and 1.4.4
974 */
975$addrbook_global_table = 'global_abook';
976/**
977 * Control writing into global database address book
978 * @global boolean $addrbook_global_writeable
979 * @since 1.5.1 and 1.4.4
980 */
981$addrbook_global_writeable = false;
982/**
983 * Control listing of global database address book
984 * @global boolean $addrbook_global_listing
985 * @since 1.5.1 and 1.4.4
986 */
987$addrbook_global_listing = false;
988
989/*** Language settings ***/
990/**
991 * Default language
992 *
993 * This is the default language. It is used as a last resort
994 * if SquirrelMail can't figure out which language to display.
995 * Language names usually consist of language code, undercore
996 * symbol and country code
997 * @global string $squirrelmail_default_language
998 */
999$squirrelmail_default_language = 'en_US';
1000
1001/**
1002 * Default Charset
1003 *
1004 * This option controls what character set is used when sending
1005 * mail and when sending HTML to the browser. Option works only
1006 * with US English (en_US) translation. Other translations use
1007 * charsets that are set in functions/i18n.php.
1008 *
1009 * @global string $default_charset
1010 */
1011$default_charset = 'iso-8859-1';
1012
1013/**
1014 * Alternative Language Names Control
1015 *
1016 * This options allows displaying native language names in language
1017 * selection box.
1018 * @global bool $show_alternative_names
1019 * @since 1.5.0
1020 */
1021$show_alternative_names = false;
1022
1023/**
1024 * Aggressive Decoding Control
1025 *
1026 * This option enables reading of Eastern multibyte encodings.
1027 * Functions that provide this support are very cpu and memory intensive.
1028 * Don't enable this option unless you really need it.
1029 * @global bool $aggressive_decoding
1030 * @since 1.5.1
1031 */
1032$aggressive_decoding = false;
1033
1034/**
1035 * Lossy Encoding Control
1036 *
1037 * This option allows charset conversions when output charset does not support
1038 * all symbols used in original charset. Symbols unsupported by output charset
1039 * will be replaced with question marks.
1040 * @global bool $lossy_encoding
1041 * @since 1.5.1
1042 */
1043$lossy_encoding = false;
1044
1045/**
1046 * Controls use of time zone libraries
1047 *
1048 * Possible values:
1049 * <ul>
1050 * <li>0 - default, SquirrelMail uses GNU C timezone names in
1051 * TZ environment variables
1052 * <li>1 - strict, SquirrelMail uses 'TZ' subkey values in TZ
1053 * environment variables
1054 * <li>2 - custom, SquirrelMail loads time zone data from
1055 * config/timezones.php and uses time zone array keys in
1056 * TZ enviroment variables
1057 * <li>3 - custom strict, SquirrelMail loads time zone data from
1058 * config/timezones.php and uses TZ subkey values in
1059 * TZ enviroment variables
1060 * </ul>
1061 * Use of any other value switches to default SquirrelMail time zone
1062 * handling ($time_zone_type).
1063 * @global integer $time_zone_type
1064 * @since 1.5.1
1065 */
1066$time_zone_type = 0;
1067
1068/*** Tweaks ***/
1069/**
1070 * Advanced DHTML tree control
1071 *
1072 * Use experimental DHTML folder listing
1073 * @global bool $advanced_tree
1074 * @since 1.5.0
1075 */
1076$advanced_tree = false;
1077
1078/**
1079 * Iframe sandbox code control
1080 *
1081 * Use iframe to render html emails
1082 * (temp option used during debuging of new code)
1083 * @global bool $use_iframe
1084 * @since 1.5.1
1085 */
1086$use_iframe = false;
1087
1088/**
1089 * Message Icons control
1090 *
1091 * Use icons for message and folder markers
1092 * @global bool $use_icons
1093 * @since 1.5.1
1094 */
1095$use_icons = false;
1096
1097/**
1098 * PHP recode functions control
1099 *
1100 * Use experimental code with php recode functions when reading messages with
1101 * different encoding. This code is faster that original SM functions,
1102 * but it require php with recode support.
1103 *
1104 * Don't enable this option if you are not sure about availability of
1105 * recode support.
1106 * @global bool $use_php_recode
1107 * @since 1.5.0
1108 */
1109$use_php_recode = false;
1110
1111/**
1112 * PHP iconv functions control
1113 *
1114 * Use experimental code with php iconv functions when reading messages with
1115 * different encoding. This code is faster that original SM functions,
1116 * but it require php with iconv support and works only with some translations.
1117 *
1118 * Don't enable this option if you are not sure about availability of
1119 * iconv support.
1120 * @global bool $use_php_iconv
1121 * @since 1.5.0
1122 */
1123$use_php_iconv = false;
1124
1125/**
1126 * Controls remote configuration checks
1127 * @global boolean $allow_remote_configtest
1128 * @since 1.5.1
1129 */
1130$allow_remote_configtest = false;
1131
1132/**
1133 * Subscribe Listing Control
1134 *
1135 * this disables listing all of the folders on the IMAP Server to
1136 * generate the folder subscribe listbox (this can take a long time
1137 * when you have a lot of folders). Instead, a textbox will be
1138 * displayed allowing users to enter a specific folder name to subscribe to
1139 *
1140 * This option can't be changed by conf.pl
1141 * @global bool $no_list_for_subscribe
1142 */
1143$no_list_for_subscribe = false;
1144
1145/**
1146 * Color in config control
1147 *
1148 * This option is used only by conf.pl script to generate configuration
1149 * menu with some colors and is provided here only as reference.
1150 * @global integer $config_use_color
1151 */
1152$config_use_color = 2;
1153
1154/**
1155 * This option includes special configuration options
1156 */
1157@include SM_PATH . 'config/config_local.php';
1158
1159/**
1160 * Make sure there are no characters after the PHP closing
1161 * tag below (including newline characters and whitespace).
1162 * Otherwise, that character will cause the headers to be
1163 * sent and regular output to begin, which will majorly screw
1164 * things up when we try to send more headers later.
1165 */
1166?>