449c864a6fbe5bc7866aa6b0e2dc97a0a4e0ec05
[matthijs/servers/drsnuggles.git] / etc / squirrelmail / config.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  * Note on SECURITY: some options require putting a password in this file.
14  * Please make sure that you adapt its permissions appropriately to avoid
15  * passwords being leaked to e.g. other system users. Take extra care when
16  * the webserver is shared with untrusted users.
17  *
18  * @copyright &copy; 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
22  * @subpackage config
23  */
24
25 /* Do not change this value. */
26 global $version;
27 global $config_version;
28 $config_version = '1.4.0';
29
30 /*** Organization preferences ***/
31 /**
32  * Organization's name
33  * @global string $org_name
34  */
35 $org_name = "SquirrelMail";
36
37 /**
38  * Organization's logo picture (blank if none)
39  * @global string $org_logo
40  */
41 $org_logo = SM_PATH . 'images/sm_logo.png';
42
43 /**
44  * The width of the logo (0 for default)
45  * @global string $org_logo_width
46  */
47 $org_logo_width = '308';
48
49 /**
50  * The height of the logo (0 for default)
51  * @global string $org_logo_height
52  */
53 $org_logo_height = '111';
54
55 /**
56  * Webmail Title
57  *
58  * This is the web page title that appears at the top of the browser window.
59  * @global string $org_title
60  */
61 $org_title = "SquirrelMail $version";
62
63 /**
64  * Signout page
65  *
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
73  */
74 $signout_page = '';
75
76 /**
77  * Top frame
78  *
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
83  */
84 $frame_top = '_top';
85
86 /**
87  * Provider name
88  *
89  * Here you can set name of the link displayed on the right side of main page.
90  *
91  * Link will be displayed only if you have $hide_sm_attributions 
92  * option set to true.
93  * @global string $provider_name
94  */
95 $provider_name = 'SquirrelMail';
96
97 /**
98  * Provider URI
99  *
100  * Here you can set URL of the link displayed on the right side of main page.
101  *
102  * Link will be displayed only if you have $hide_sm_attributions 
103  * option set to true.
104  * @global string $provider_uri
105  */
106 $provider_uri = 'http://www.squirrelmail.org/';
107
108 /*** Server Settings ***/
109 /**
110  * Default Domain
111  *
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
117  */
118 $domain = trim(implode('', file('/etc/'.(file_exists('/etc/mailname')?'mail':'host').'name')));
119
120 /**
121  * Time offset inversion
122  *
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
128  */
129 $invert_time = false;
130
131 /**
132  * Default send transport
133  *
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 
137  * $sendmail_path
138  * @global bool $useSendmail
139  */
140 $useSendmail = false;
141
142 /**
143  * Your SMTP server (usually the same as the IMAP server).
144  * @global string $smtpServerAddress
145  */
146 $smtpServerAddress = 'localhost';
147 /**
148  * Your SMTP port number (usually 25).
149  * @global integer $smtpPort
150  */
151 $smtpPort = 25;
152
153 /**
154  * SquirrelMail header encryption
155  *
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.
160  *
161  * Warning: used encryption function is not bulletproof. When used
162  * with static encryption keys, it provides only minimal security
163  * measures and information can be decoded quickly.
164  *
165  * Encoded information can be decoded with decrypt_headers.php script
166  * from SquirrelMail contrib/ directory.
167  * @global string $encode_header_key
168  * @since 1.5.1 and 1.4.5
169  */
170 $encode_header_key = '';
171
172 /**
173  * Path to Sendmail
174  *
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
179  */
180 $sendmail_path = '/usr/sbin/sendmail';
181
182 /**
183  * Extra sendmail command arguments.
184  *
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
193  */
194 $sendmail_args = '-i -t';
195     
196 /**
197  * IMAP server address
198  *
199  * The dns name (or IP address) for your imap server.
200  * @global string $imapServerAddress
201  */
202 $imapServerAddress = 'localhost';
203
204 /**
205  * IMAP server port
206  *
207  * Port used by your imap server. (Usually 143)
208  * @global integer $imapPort
209  */
210 $imapPort = 143;
211
212 /**
213  * IMAP server type
214  *
215  * The type of IMAP server you are running.
216  * Valid type are the following (case is important):
217  *   courier
218  *   cyrus
219  *   exchange
220  *   uw
221  *   macosx
222  *   hmailserver
223  *   other
224  *
225  * Please note that this changes only some of server settings.
226  *
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
230  */
231 $imap_server_type = 'other';
232
233 /**
234  * Advanced IMAP authentication options control
235  *
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
239  */
240 $use_imap_tls = false;
241
242 /**
243  * Advanced SMTP authentication options control
244  *
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
248  */
249 $use_smtp_tls = false;
250
251 /**
252  * SMTP authentication mechanism
253  *
254  * auth_mech can be either 'none', 'login','plain', 'cram-md5', or 'digest-md5'
255  * @global string $smtp_auth_mech
256  */
257 $smtp_auth_mech = 'none';
258
259 /**
260  * Custom SMTP Authentication Username
261  * 
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
265  * @since 1.4.11
266  */
267 $smtp_sitewide_user = '';
268
269 /**
270  * Custom SMTP Authentication Password
271  * 
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
275  * @since 1.4.11
276  */
277 $smtp_sitewide_pass = '';
278
279 /**
280  * IMAP authentication mechanism
281  *
282  * auth_mech can be either 'login','plain', 'cram-md5', or 'digest-md5'
283  * @global string $imap_auth_mech
284  */
285 $imap_auth_mech = 'login';
286
287 /**
288  * IMAP folder delimiter
289  *
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
295  * specify it here.
296  *
297  * To have it autodetect the delimiter, set it to 'detect'.
298  * @global string $optional_delimiter
299  */
300 $optional_delimiter = 'detect';
301
302 /**
303  * POP before SMTP setting
304  *
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
308  */
309 $pop_before_smtp = false;
310
311
312 /*** Folder Settings ***/
313 /**
314  * Default IMAP folder prefix
315  *
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.
321  *
322  * Example:
323  *     $default_folder_prefix = 'mail/';
324  *        -- or --
325  *     $default_folder_prefix = 'Mail/folders/';
326  *
327  * If you do not use this, set it to the empty string.
328  * @global string $default_folder_prefix
329  */
330 $default_folder_prefix = '';
331
332 /**
333  * User level prefix control
334  *
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
337  * to be anything.
338  * @global bool $show_prefix_option
339  */
340 $show_prefix_option = false;
341
342 /**
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.
355  *   $trash_folder
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.
359  *   $draft_folder
360  *      This is the patch to where Draft messages will be stored.
361  *   $auto_expunge
362  *      If this is true, when a message is moved or copied, the
363  *      source mailbox will get expunged, removing all messages
364  *      marked 'Deleted'.
365  *   $sent_folder
366  *      This is the path to where Sent messages will be stored.
367  *   $delete_folder
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
378  */
379 $default_move_to_trash = true;
380 $default_move_to_sent  = true;
381 $default_save_as_draft = true;
382 $trash_folder = 'INBOX.Trash';
383 $sent_folder  = 'INBOX.Sent';
384 $draft_folder = 'INBOX.Drafts';
385 $auto_expunge = true;
386 $delete_folder = false;
387
388 /**
389  * Special Folder Color Control
390  *
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
394  */
395 $use_special_folder_color = true;
396
397 /**
398  * Create Special Folders Control
399  *
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
403  */
404 $auto_create_special = true;
405
406 /**
407  * List Special Folders First Control
408  *
409  * Whether or not to list the special folders first (true/false).
410  * @global bool $list_special_folders_first 
411  */
412 $list_special_folders_first = true;
413
414 /**
415  * Subfolder Layout Control
416  *
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
420  */
421 $default_sub_of_inbox = true;
422
423 /**
424  * Subfolder Format Control
425  *
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.
431  *
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
436  */
437 $show_contain_subfolders_option = false;
438
439 /**
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
451  */
452 $default_unseen_notify = 2;
453 $default_unseen_type   = 1;
454
455 /**
456  * NoSelect Fix Control
457  *
458  * This enables the no select fix for Cyrus when subfolders
459  * exist but parent folders do not
460  * @global bool $noselect_fix_enable
461  */
462 $noselect_fix_enable = false;
463
464 /*** General options ***/
465 /**
466  * Path to the data/ directory
467  *
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.
472  *
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:
476  *
477  * Absolute:
478  *   $data_dir = '/var/lib/squirrelmail/data/';
479  *
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)
484  *
485  * @global string $data_dir
486  */
487 $data_dir = '/var/lib/squirrelmail/data/';
488
489 /**
490  * Attachments directory
491  *
492  * Path to directory used for storing attachments while a mail is
493  * being sent. There are a few security considerations regarding
494  * this directory:
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
498  *      around there.
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
504  */
505 $attachment_dir = '/var/spool/squirrelmail/attach/';
506
507 /**
508  * Hash level used for data directory.
509  * 
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.
513  *
514  * Hashing should speed up directory access if you have big number 
515  * of users (500 and more).
516  * @global integer $dir_hash_level
517  */
518 $dir_hash_level = 0;
519
520 /**
521  * Default Size of Folder List
522  *
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
526  */
527 $default_left_size = '150';
528
529 /**
530  * Username Case Control
531  *
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
537  */
538 $force_username_lowercase = false;
539
540 /**
541  * Email Priority Control
542  *
543  * This option enables use of email priority flags by end users.
544  * @global bool $default_use_priority
545  */
546 $default_use_priority = true;
547
548 /**
549  * SquirrelMail Attributions Control
550  *
551  * This option disables display of "created by squirrelmail developers" 
552  * strings and provider link
553  * @global bool $hide_sm_attributions
554  */
555 $hide_sm_attributions = false;
556
557 /**
558  * Delivery Receipts Control
559  *
560  * This option enables use of read/delivery receipts by end users.
561  * @global bool $default_use_mdn
562  */
563 $default_use_mdn = true;
564
565 /**
566  * Identity Controls
567  *
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
572  * is false;
573  * @global bool $edit_identity
574  * @global bool $edit_name
575  */
576 $edit_identity = true;
577 $edit_name = true;
578
579 /**
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 
583  * information.
584  *
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.
588  *
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
592  */
593 $hide_auth_header = false;
594
595 /**
596  * Server Side Threading Control
597  *
598  * If you want to enable server side thread sorting options
599  * Your IMAP server must support the THREAD extension for 
600  * this to work.
601  * @global bool $allow_thread_sort
602  */
603 $allow_thread_sort = false;
604
605 /**
606  * Server Side Sorting Control
607  *
608  * to use server-side sorting instead of SM client side.
609  * Your IMAP server must support the SORT extension for this
610  * to work.
611  * @global bool $allow_server_sort
612  */
613 $allow_server_sort = false;
614
615 /**
616  * IMAP Charset Use Control
617  *
618  * This option allows you to choose if SM uses charset search
619  * Your imap server should support SEARCH CHARSET command for 
620  * this to work.
621  * @global bool $allow_charset_search
622  */
623 $allow_charset_search = true;
624
625 /**
626  * IMAP UID control
627  *
628  * This option allows you to enable unique identifier (UID) support.
629  * @global bool $uid_support
630  */
631 $uid_support              = true;
632
633 /**
634  * PHP session name.
635  *
636  * Leave this alone unless you know what you are doing.
637  * @global string $session_name
638  */
639 $session_name = 'SQMSESSID';
640
641
642 /**
643  * Location base
644  * 
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.
648  *
649  * If not specified or empty, it will be autodetected.
650  *
651  * Examples:
652  * http://webmail.example.org
653  * http://webmail.example.com:8080
654  * https://webmail.example.com:6691
655  *
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
659  *
660  * @global string $config_location_base
661  * @since 1.4.8
662  */
663 $config_location_base = '';
664
665
666
667 /**
668  * Themes
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.
673  *
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.
676  * 
677  * $theme_default sets theme that will be used by default
678  * $theme_css sets stylesheet (from theme/css directory) that will be 
679  * used by default.
680  * @global integer $theme_default
681  * @global string $theme_css
682  */
683 $theme_default = 0;
684 $theme_css = '';
685
686 /**
687  * Listing of installed themes
688  * @global array $theme
689  */
690 $theme[0]['PATH'] = SM_PATH . 'themes/default_theme.php';
691 $theme[0]['NAME'] = 'Default';
692
693 $theme[1]['PATH'] = SM_PATH . 'themes/plain_blue_theme.php';
694 $theme[1]['NAME'] = 'Plain Blue';
695
696 $theme[2]['PATH'] = SM_PATH . 'themes/sandstorm_theme.php';
697 $theme[2]['NAME'] = 'Sand Storm';
698
699 $theme[3]['PATH'] = SM_PATH . 'themes/deepocean_theme.php';
700 $theme[3]['NAME'] = 'Deep Ocean';
701
702 $theme[4]['PATH'] = SM_PATH . 'themes/slashdot_theme.php';
703 $theme[4]['NAME'] = 'Slashdot';
704
705 $theme[5]['PATH'] = SM_PATH . 'themes/purple_theme.php';
706 $theme[5]['NAME'] = 'Purple';
707
708 $theme[6]['PATH'] = SM_PATH . 'themes/forest_theme.php';
709 $theme[6]['NAME'] = 'Forest';
710
711 $theme[7]['PATH'] = SM_PATH . 'themes/ice_theme.php';
712 $theme[7]['NAME'] = 'Ice';
713
714 $theme[8]['PATH'] = SM_PATH . 'themes/seaspray_theme.php';
715 $theme[8]['NAME'] = 'Sea Spray';
716
717 $theme[9]['PATH'] = SM_PATH . 'themes/bluesteel_theme.php';
718 $theme[9]['NAME'] = 'Blue Steel';
719
720 $theme[10]['PATH'] = SM_PATH . 'themes/dark_grey_theme.php';
721 $theme[10]['NAME'] = 'Dark Grey';
722
723 $theme[11]['PATH'] = SM_PATH . 'themes/high_contrast_theme.php';
724 $theme[11]['NAME'] = 'High Contrast';
725
726 $theme[12]['PATH'] = SM_PATH . 'themes/black_bean_burrito_theme.php';
727 $theme[12]['NAME'] = 'Black Bean Burrito';
728
729 $theme[13]['PATH'] = SM_PATH . 'themes/servery_theme.php';
730 $theme[13]['NAME'] = 'Servery';
731
732 $theme[14]['PATH'] = SM_PATH . 'themes/maize_theme.php';
733 $theme[14]['NAME'] = 'Maize';
734
735 $theme[15]['PATH'] = SM_PATH . 'themes/bluesnews_theme.php';
736 $theme[15]['NAME'] = 'BluesNews';
737
738 $theme[16]['PATH'] = SM_PATH . 'themes/deepocean2_theme.php';
739 $theme[16]['NAME'] = 'Deep Ocean 2';
740
741 $theme[17]['PATH'] = SM_PATH . 'themes/blue_grey_theme.php';
742 $theme[17]['NAME'] = 'Blue Grey';
743
744 $theme[18]['PATH'] = SM_PATH . 'themes/dompie_theme.php';
745 $theme[18]['NAME'] = 'Dompie';
746
747 $theme[19]['PATH'] = SM_PATH . 'themes/methodical_theme.php';
748 $theme[19]['NAME'] = 'Methodical';
749
750 $theme[20]['PATH'] = SM_PATH . 'themes/greenhouse_effect.php';
751 $theme[20]['NAME'] = 'Greenhouse Effect (Changes)';
752
753 $theme[21]['PATH'] = SM_PATH . 'themes/in_the_pink.php';
754 $theme[21]['NAME'] = 'In The Pink (Changes)';
755
756 $theme[22]['PATH'] = SM_PATH . 'themes/kind_of_blue.php';
757 $theme[22]['NAME'] = 'Kind of Blue (Changes)';
758
759 $theme[23]['PATH'] = SM_PATH . 'themes/monostochastic.php';
760 $theme[23]['NAME'] = 'Monostochastic (Changes)';
761
762 $theme[24]['PATH'] = SM_PATH . 'themes/shades_of_grey.php';
763 $theme[24]['NAME'] = 'Shades of Grey (Changes)';
764
765 $theme[25]['PATH'] = SM_PATH . 'themes/spice_of_life.php';
766 $theme[25]['NAME'] = 'Spice of Life (Changes)';
767
768 $theme[26]['PATH'] = SM_PATH . 'themes/spice_of_life_lite.php';
769 $theme[26]['NAME'] = 'Spice of Life - Lite (Changes)';
770
771 $theme[27]['PATH'] = SM_PATH . 'themes/spice_of_life_dark.php';
772 $theme[27]['NAME'] = 'Spice of Life - Dark (Changes)';
773
774 $theme[28]['PATH'] = SM_PATH . 'themes/christmas.php';
775 $theme[28]['NAME'] = 'Holiday - Christmas';
776
777 $theme[29]['PATH'] = SM_PATH . 'themes/darkness.php';
778 $theme[29]['NAME'] = 'Darkness (Changes)';
779
780 $theme[30]['PATH'] = SM_PATH . 'themes/random.php';
781 $theme[30]['NAME'] = 'Random (Changes every login)';
782
783 $theme[31]['PATH'] = SM_PATH . 'themes/midnight.php';
784 $theme[31]['NAME'] = 'Midnight';
785
786 $theme[32]['PATH'] = SM_PATH . 'themes/alien_glow.php';
787 $theme[32]['NAME'] = 'Alien Glow';
788
789 $theme[33]['PATH'] = SM_PATH . 'themes/dark_green.php';
790 $theme[33]['NAME'] = 'Dark Green';
791
792 $theme[34]['PATH'] = SM_PATH . 'themes/penguin.php';
793 $theme[34]['NAME'] = 'Penguin';
794
795 $theme[35]['PATH'] = SM_PATH . 'themes/minimal_bw.php';
796 $theme[35]['NAME'] = 'Minimal BW';
797
798 $theme[36]['PATH'] = SM_PATH . 'themes/redmond.php';
799 $theme[36]['NAME'] = 'Redmond';
800
801 $theme[37]['PATH'] = SM_PATH . 'themes/netstyle_theme.php';
802 $theme[37]['NAME'] = 'Net Style';
803
804 $theme[38]['PATH'] = SM_PATH . 'themes/silver_steel_theme.php';
805 $theme[38]['NAME'] = 'Silver Steel';
806
807 $theme[39]['PATH'] = SM_PATH . 'themes/simple_green_theme.php';
808 $theme[39]['NAME'] = 'Simple Green';
809
810 $theme[40]['PATH'] = SM_PATH . 'themes/wood_theme.php';
811 $theme[40]['NAME'] = 'Wood';
812
813 $theme[41]['PATH'] = SM_PATH . 'themes/bluesome.php';
814 $theme[41]['NAME'] = 'Bluesome';
815
816 $theme[42]['PATH'] = SM_PATH . 'themes/simple_green2.php';
817 $theme[42]['NAME'] = 'Simple Green 2';
818
819 $theme[43]['PATH'] = SM_PATH . 'themes/simple_purple.php';
820 $theme[43]['NAME'] = 'Simple Purple';
821
822 $theme[44]['PATH'] = SM_PATH . 'themes/autumn.php';
823 $theme[44]['NAME'] = 'Autumn';
824
825 $theme[45]['PATH'] = SM_PATH . 'themes/autumn2.php';
826 $theme[45]['NAME'] = 'Autumn 2';
827
828 $theme[46]['PATH'] = SM_PATH . 'themes/blue_on_blue.php';
829 $theme[46]['NAME'] = 'Blue on Blue';
830
831 $theme[47]['PATH'] = SM_PATH . 'themes/classic_blue.php';
832 $theme[47]['NAME'] = 'Classic Blue';
833
834 $theme[48]['PATH'] = SM_PATH . 'themes/classic_blue2.php';
835 $theme[48]['NAME'] = 'Classic Blue 2';
836
837 $theme[49]['PATH'] = SM_PATH . 'themes/powder_blue.php';
838 $theme[49]['NAME'] = 'Powder Blue';
839
840 $theme[50]['PATH'] = SM_PATH . 'themes/techno_blue.php';
841 $theme[50]['NAME'] = 'Techno Blue';
842
843 $theme[51]['PATH'] = SM_PATH . 'themes/turquoise.php';
844 $theme[51]['NAME'] = 'Turquoise';
845
846 /**
847  * LDAP server(s)
848  *   Array of arrays with LDAP server parameters. See
849  *   functions/abook_ldap_server.php for a list of possible
850  *   parameters
851  *
852  * EXAMPLE:
853  *   $ldap_server[0] = Array(
854  *       'host' => 'memberdir.netscape.com',
855  *       'name' => 'Netcenter Member Directory',
856  *       'base' => 'ou=member_directory,o=netcenter.com'
857  *   ); 
858  *
859  *   NOTE: please see security note at the top of this file when
860  *   entering a password.
861  */
862 // Add your ldap server options here
863
864 /**
865  * Javascript in Addressbook Control
866  *
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:
870  *    true  = javascript
871  *    false = html
872  * @global bool $default_use_javascript_addr_book
873  */
874 $default_use_javascript_addr_book = false;
875
876 /**
877  * Shared filebased address book
878  * @global string $abook_global_file
879  * @since 1.5.1 and 1.4.4
880  */
881 $abook_global_file = '';
882
883 /**
884  * Writing into shared address book control
885  * @global bool $abook_global_file_writeable
886  * @since 1.5.1 and 1.4.4
887  */
888 $abook_global_file_writeable = false;
889
890 /**
891  * Listing of shared address book control
892  * @global bool $abook_global_file_listing
893  * @since 1.5.1 and 1.4.9
894  */
895 $abook_global_file_listing = true;
896
897 /**
898  * Controls file based address book entry size
899  * 
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.
904  *
905  * Same setting is applied to personal and global file based address books.
906  *
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
909  * kilobytes (2048).
910  * @global integer $abook_file_line_length
911  * @since 1.5.2 and 1.4.9
912  */
913 $abook_file_line_length = 2048;
914
915 /**
916  * MOTD
917  *
918  * This is a message that is displayed immediately after a user logs in. 
919  * @global string $motd
920  */
921 $motd = "";
922
923
924 /**
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
928  * the following.
929  *    $plugins[0] = 'squirrelspell';
930  *    $plugins[1] = 'listcommands';
931  */
932 // Add list of enabled plugins here
933
934
935 /*** Database ***/
936 /**
937  * Read the administrator's manual in order to get more information 
938  * about these settings.
939  */
940 /**
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
945  *   in the data dir.
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.
949  *
950  *   NOTE: please see security note at the top of this file when
951  *   entering a password.
952  */
953 $addrbook_dsn = '';
954 $addrbook_table = 'address';
955 /**
956  * Database used to store user data
957  */
958 $prefs_dsn = '';
959 $prefs_table = 'userprefs';
960 $prefs_key_field = 'prefkey';
961 $prefs_user_field = 'user';
962 $prefs_val_field = 'prefval';
963
964 /*** Global sql database options ***/
965 /**
966  * DSN of global address book database
967  * @global string $addrbook_global_dsn
968  * @since 1.5.1 and 1.4.4
969  */
970 $addrbook_global_dsn = '';
971 /**
972  * Table used for global database address book
973  * @global string $addrbook_global_table
974  * @since 1.5.1 and 1.4.4
975  */
976 $addrbook_global_table = 'global_abook';
977 /**
978  * Control writing into global database address book
979  * @global boolean $addrbook_global_writeable
980  * @since 1.5.1 and 1.4.4
981  */
982 $addrbook_global_writeable = false;
983 /**
984  * Control listing of global database address book
985  * @global boolean $addrbook_global_listing
986  * @since 1.5.1 and 1.4.4
987  */
988 $addrbook_global_listing = false;
989
990 /*** Language settings ***/
991 /**
992  * Default language
993  *
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
999  */
1000 $squirrelmail_default_language = 'en_US';
1001
1002 /**
1003  * Default Charset
1004  *
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.
1008  *
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
1012  *
1013  * @global string $default_charset
1014  */
1015 $default_charset = 'iso-8859-1';
1016
1017 /**
1018  * Lossy Encoding Control
1019  *
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
1025  */
1026 $lossy_encoding = false;
1027
1028 /**
1029  * Subscribe Listing Control
1030  *
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
1035  * 
1036  * This option can't be changed by conf.pl
1037  * @global bool $no_list_for_subscribe
1038  */
1039 $no_list_for_subscribe = false;
1040
1041 /**
1042  * Color in config control
1043  *
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
1047  */
1048 $config_use_color = 2;
1049
1050 /**
1051  * This option includes special configuration options
1052  */
1053 @include SM_PATH . 'config/config_local.php';
1054