Source for file config_default.php

Documentation is available at 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.  * 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-2006 The SquirrelMail Project Team
  19.  * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  20.  * @version $Id: config_default.php,v 1.84.2.20 2006/10/07 11:58:42 tokul Exp $
  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 [email protected], example.com is the domain.
  116.  * @global string $domain 
  117.  */
  118. $domain 'example.com';
  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.  * IMAP authentication mechanism
  261.  *
  262.  * auth_mech can be either 'login','plain', 'cram-md5', or 'digest-md5'
  263.  * @global string $imap_auth_mech 
  264.  */
  265. $imap_auth_mech 'login';
  266.  
  267. /**
  268.  * IMAP folder delimiter
  269.  *
  270.  * This is the delimiter that your IMAP server uses to distinguish between
  271.  * folders.  For example, Cyrus uses '.' as the delimiter and a complete
  272.  * folder would look like 'INBOX.Friends.Bob', while UW uses '/' and would
  273.  * look like 'INBOX/Friends/Bob'.  Normally this should be left at 'detect'
  274.  * but if you are sure you know what delimiter your server uses, you can
  275.  * specify it here.
  276.  *
  277.  * To have it autodetect the delimiter, set it to 'detect'.
  278.  * @global string $optional_delimiter 
  279.  */
  280. $optional_delimiter 'detect';
  281.  
  282. /**
  283.  * POP before SMTP setting
  284.  *
  285.  * Do you wish to use POP3 before SMTP?  Your server must
  286.  * support this in order for SquirrelMail to work with it.
  287.  * @global bool $pop_before_smtp 
  288.  */
  289. $pop_before_smtp false;
  290.  
  291.  
  292. /*** Folder Settings ***/
  293. /**
  294.  * Default IMAP folder prefix
  295.  *
  296.  * Many servers store mail in your home directory. With this, they
  297.  * store them in a subdirectory: mail/ or Mail/, etc. If your server
  298.  * does this, please set this to what the default mail folder should
  299.  * be. This is still a user preference, so they can change it if it
  300.  * is different for each user.
  301.  *
  302.  * Example:
  303.  *     $default_folder_prefix = 'mail/';
  304.  *        -- or --
  305.  *     $default_folder_prefix = 'Mail/folders/';
  306.  *
  307.  * If you do not use this, set it to the empty string.
  308.  * @global string $default_folder_prefix 
  309.  */
  310. $default_folder_prefix '';
  311.  
  312. /**
  313.  * User level prefix control
  314.  *
  315.  * If you do not wish to give them the option to change this, set it
  316.  * to false. Otherwise, if it is true, they can change the folder prefix
  317.  * to be anything.
  318.  * @global bool $show_prefix_option 
  319.  */
  320. $show_prefix_option false;
  321.  
  322. /**
  323.  * The following are related to deleting messages.
  324.  *   $default_move_to_trash
  325.  *      If this is set to 'true', when 'delete' is pressed, it
  326.  *      will attempt to move the selected messages to the folder
  327.  *      named $trash_folder. If it's set to 'false', we won't even
  328.  *      attempt to move the messages, just delete them.
  329.  *   $default_move_to_sent
  330.  *      If this is set to 'true', sent messages will be stored in
  331.  *      $sent_folder by default.
  332.  *   $default_save_as_draft
  333.  *      If this is set to 'true', users are able to use $draft_folder
  334.  *      to store their unfinished messages.
  335.  *   $trash_folder
  336.  *      This is the path to the default trash folder. For Cyrus
  337.  *      IMAP, it would be 'INBOX.Trash', but for UW it would be
  338.  *      'Trash'. We need the full path name here.
  339.  *   $draft_folder
  340.  *      This is the patch to where Draft messages will be stored.
  341.  *   $auto_expunge
  342.  *      If this is true, when a message is moved or copied, the
  343.  *      source mailbox will get expunged, removing all messages
  344.  *      marked 'Deleted'.
  345.  *   $sent_folder
  346.  *      This is the path to where Sent messages will be stored.
  347.  *   $delete_folder
  348.  *      If this is true, when a folder is deleted then it will
  349.  *      not get moved into the Trash folder.
  350.  * @global bool $default_move_to_trash 
  351.  * @global bool $default_move_to_sent 
  352.  * @global bool $default_save_as_draft 
  353.  * @global string $trash_folder 
  354.  * @global string $sent_folder 
  355.  * @global string $draft_folder 
  356.  * @global bool $auto_expunge 
  357.  * @global bool $delete_folder 
  358.  */
  359. $default_move_to_trash true;
  360. $default_move_to_sent  true;
  361. $default_save_as_draft true;
  362. $trash_folder 'INBOX.Trash';
  363. $sent_folder  'INBOX.Sent';
  364. $draft_folder 'INBOX.Drafts';
  365. $auto_expunge true;
  366. $delete_folder false;
  367.  
  368. /**
  369.  * Special Folder Color Control
  370.  *
  371.  * Whether or not to use a special color for special folders. If not,
  372.  * special folders will be the same color as the other folders.
  373.  * @global bool $use_special_folder_color 
  374.  */
  375. $use_special_folder_color true;
  376.  
  377. /**
  378.  * Create Special Folders Control
  379.  *
  380.  * Should I create the Sent and Trash folders automatically for
  381.  * a new user that doesn't already have them created?
  382.  * @global bool $auto_create_special 
  383.  */
  384. $auto_create_special true;
  385.  
  386. /**
  387.  * List Special Folders First Control
  388.  *
  389.  * Whether or not to list the special folders first (true/false).
  390.  * @global bool $list_special_folders_first 
  391.  */
  392. $list_special_folders_first true;
  393.  
  394. /**
  395.  * Subfolder Layout Control
  396.  *
  397.  * Are all your folders subfolders of INBOX (i.e. cyrus IMAP server).
  398.  * If you are unsure, set it to false.
  399.  * @global bool $default_sub_of_inbox 
  400.  */
  401. $default_sub_of_inbox true;
  402.  
  403. /**
  404.  * Subfolder Format Control
  405.  *
  406.  * Some IMAP daemons (UW) handle folders weird. They only allow a
  407.  * folder to contain either messages or other folders, not both at
  408.  * the same time. This option controls whether or not to display an
  409.  * option during folder creation. The option toggles which type of
  410.  * folder it should be.
  411.  *
  412.  * If this option confuses you, just set it to 'true'. You can not hurt
  413.  * anything if it's true, but some servers will respond weird if it's
  414.  * false. (Cyrus works fine whether it's true OR false).
  415.  * @global bool $show_contain_subfolders_option 
  416.  */
  417. $show_contain_subfolders_option false;
  418.  
  419. /**
  420.  * These next two options set the defaults for the way that the
  421.  * users see their folder list.
  422.  *   $default_unseen_notify
  423.  *       Specifies whether or not the users will see the number of
  424.  *       unseen in each folder by default and also which folders to
  425.  *       do this to. Valid values are: 1=none, 2=inbox, 3=all.
  426.  *   $default_unseen_type
  427.  *       Specifies the type of notification to give the users by
  428.  *       default. Valid choice are: 1=(4), 2=(4,25).
  429.  * @global integer $default_unseen_notify 
  430.  * @global integer $default_unseen_type 
  431.  */
  432. $default_unseen_notify 2;
  433. $default_unseen_type   1;
  434.  
  435. /**
  436.  * NoSelect Fix Control
  437.  *
  438.  * This enables the no select fix for Cyrus when subfolders
  439.  * exist but parent folders do not
  440.  * @global bool $noselect_fix_enable 
  441.  */
  442. $noselect_fix_enable false;
  443.  
  444. /*** General options ***/
  445. /**
  446.  * Path to the data/ directory
  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.  *   For this reason, it is possible to put the data directory
  451.  *   anywhere you would like. The path name can be absolute or
  452.  *   relative (to the config directory). It doesn't matter. Here
  453.  *   are two examples:
  454.  *
  455.  * Absolute:
  456.  *   $data_dir = '/usr/local/squirrelmail/data/';
  457.  *
  458.  * Relative (to main SM directory):
  459.  *   $data_dir = SM_PATH . 'data/';
  460.  * @global string $data_dir 
  461.  */
  462. $data_dir SM_PATH 'data/';
  463.  
  464. /**
  465.  * Attachments directory
  466.  *
  467.  * Path to directory used for storing attachments while a mail is
  468.  * being sent. There are a few security considerations regarding
  469.  * this directory:
  470.  *    + It should have the permission 733 (rwx-wx-wx) to make it
  471.  *      impossible for a random person with access to the webserver to
  472.  *      list files in this directory. Confidential data might be laying
  473.  *      around there.
  474.  *    + Since the webserver is not able to list the files in the content
  475.  *       is also impossible for the webserver to delete files lying around
  476.  *       there for too long.
  477.  *    + It should probably be another directory than data_dir.
  478.  * @global string $attachment_dir 
  479.  */
  480. $attachment_dir $data_dir;
  481.  
  482. /**
  483.  * Hash level used for data directory.
  484.  * 
  485.  * This option allows spliting file based squirrelmail user
  486.  * data storage directory into several subfolders. Number from
  487.  * 0 to 4 allows allows having up to four subfolder levels.
  488.  *
  489.  * Hashing should speed up directory access if you have big number
  490.  * of users (500 and more).
  491.  * @global integer $dir_hash_level 
  492.  */
  493. $dir_hash_level 0;
  494.  
  495. /**
  496.  * Default Size of Folder List
  497.  *
  498.  * This is the default size of the folder list. Default
  499.  * is 150, but you can set it to whatever you wish.
  500.  * @global string $default_left_size 
  501.  */
  502. $default_left_size '150';
  503.  
  504. /**
  505.  * Username Case Control
  506.  *
  507.  * Some IMAP servers allow a username (like 'bob') to log in if they use
  508.  * uppercase in their name (like 'Bob' or 'BOB'). This creates extra
  509.  * preference files.  Toggling this option to true will transparently
  510.  * change all usernames to lowercase.
  511.  * @global bool $force_username_lowercase 
  512.  */
  513. $force_username_lowercase false;
  514.  
  515. /**
  516.  * Email Priority Control
  517.  *
  518.  * This option enables use of email priority flags by end users.
  519.  * @global bool $default_use_priority 
  520.  */
  521. $default_use_priority true;
  522.  
  523. /**
  524.  * SquirrelMail Attributions Control
  525.  *
  526.  * This option disables display of "created by squirrelmail developers"
  527.  * strings and provider link
  528.  * @global bool $hide_sm_attributions 
  529.  */
  530. $hide_sm_attributions false;
  531.  
  532. /**
  533.  * Delivery Receipts Control
  534.  *
  535.  * This option enables use of read/delivery receipts by end users.
  536.  * @global bool $default_use_mdn 
  537.  */
  538. $default_use_mdn true;
  539.  
  540. /**
  541.  * Identity Controls
  542.  *
  543.  * If you don't want to allow users to change their email address
  544.  * then you can set $edit_identity to false, if you want them to
  545.  * not be able to change their full name too then set $edit_name
  546.  * to false as well. $edit_name has no effect unless $edit_identity
  547.  * is false;
  548.  * @global bool $edit_identity 
  549.  * @global bool $edit_name 
  550.  */
  551. $edit_identity true;
  552. $edit_name true;
  553.  
  554. /**
  555.  * SquirrelMail adds username information to every sent email.
  556.  * It is done in order to prevent possible sender forging when
  557.  * end users are allowed to change their email and name
  558.  * information.
  559.  *
  560.  * You can disable this header, if you think that it violates
  561.  * user's privacy or security. Please note, that setting will
  562.  * work only when users are not allowed to change their identity.
  563.  *
  564.  * See SquirrelMail bug tracker #847107 for more details about it.
  565.  * @global bool $hide_auth_header 
  566.  * @since 1.5.1 and 1.4.5
  567.  */
  568. $hide_auth_header false;
  569.  
  570. /**
  571.  * Server Side Threading Control
  572.  *
  573.  * If you want to enable server side thread sorting options
  574.  * Your IMAP server must support the THREAD extension for
  575.  * this to work.
  576.  * @global bool $allow_thread_sort 
  577.  */
  578. $allow_thread_sort false;
  579.  
  580. /**
  581.  * Server Side Sorting Control
  582.  *
  583.  * to use server-side sorting instead of SM client side.
  584.  * Your IMAP server must support the SORT extension for this
  585.  * to work.
  586.  * @global bool $allow_server_sort 
  587.  */
  588. $allow_server_sort false;
  589.  
  590. /**
  591.  * IMAP Charset Use Control
  592.  *
  593.  * This option allows you to choose if SM uses charset search
  594.  * Your imap server should support SEARCH CHARSET command for
  595.  * this to work.
  596.  * @global bool $allow_charset_search 
  597.  */
  598. $allow_charset_search true;
  599.  
  600. /**
  601.  * IMAP UID control
  602.  *
  603.  * This option allows you to enable unique identifier (UID) support.
  604.  * @global bool $uid_support 
  605.  */
  606. $uid_support              true;
  607.  
  608. /**
  609.  * PHP session name.
  610.  *
  611.  * Leave this alone unless you know what you are doing.
  612.  * @global string $session_name 
  613.  */
  614. $session_name 'SQMSESSID';
  615.  
  616.  
  617. /**
  618.  * Location base
  619.  * 
  620.  * This is used to build the URL to the SquirrelMail location.
  621.  * It should contain only the protocol and hostname/port parts
  622.  * of the URL; the full path will be appended automatically.
  623.  *
  624.  * If not specified or empty, it will be autodetected.
  625.  *
  626.  * Examples:
  627.  * http://webmail.example.org
  628.  * http://webmail.example.com:8080
  629.  * https://webmail.example.com:6691
  630.  *
  631.  * To be clear: do not include any of the path elements, so if
  632.  * SquirrelMail is at http://www.example.net/web/mail/src/login.php, you
  633.  * write: http://www.example.net
  634.  *
  635.  * @global string $config_location_base 
  636.  * @since 1.4.8
  637.  */
  638. $config_location_base '';
  639.  
  640.  
  641.  
  642. /**
  643.  * Themes
  644.  *   You can define your own theme and put it in this directory.
  645.  *   You must call it as the example below. You can name the theme
  646.  *   whatever you want. For an example of a theme, see the ones
  647.  *   included in the config directory.
  648.  *
  649.  * To add a new theme to the options that users can choose from, just
  650.  * add a new number to the array at the bottom, and follow the pattern.
  651.  * 
  652.  * $theme_default sets theme that will be used by default
  653.  * $theme_css sets stylesheet (from theme/css directory) that will be
  654.  * used by default.
  655.  * @global integer $theme_default 
  656.  * @global string $theme_css 
  657.  */
  658. $theme_default 0;
  659. $theme_css '';
  660.  
  661. /**
  662.  * Listing of installed themes
  663.  * @global array $theme 
  664.  */
  665. $theme[0]['PATH'SM_PATH 'themes/default_theme.php';
  666. $theme[0]['NAME''Default';
  667.  
  668. $theme[1]['PATH'SM_PATH 'themes/plain_blue_theme.php';
  669. $theme[1]['NAME''Plain Blue';
  670.  
  671. $theme[2]['PATH'SM_PATH 'themes/sandstorm_theme.php';
  672. $theme[2]['NAME''Sand Storm';
  673.  
  674. $theme[3]['PATH'SM_PATH 'themes/deepocean_theme.php';
  675. $theme[3]['NAME''Deep Ocean';
  676.  
  677. $theme[4]['PATH'SM_PATH 'themes/slashdot_theme.php';
  678. $theme[4]['NAME''Slashdot';
  679.  
  680. $theme[5]['PATH'SM_PATH 'themes/purple_theme.php';
  681. $theme[5]['NAME''Purple';
  682.  
  683. $theme[6]['PATH'SM_PATH 'themes/forest_theme.php';
  684. $theme[6]['NAME''Forest';
  685.  
  686. $theme[7]['PATH'SM_PATH 'themes/ice_theme.php';
  687. $theme[7]['NAME''Ice';
  688.  
  689. $theme[8]['PATH'SM_PATH 'themes/seaspray_theme.php';
  690. $theme[8]['NAME''Sea Spray';
  691.  
  692. $theme[9]['PATH'SM_PATH 'themes/bluesteel_theme.php';
  693. $theme[9]['NAME''Blue Steel';
  694.  
  695. $theme[10]['PATH'SM_PATH 'themes/dark_grey_theme.php';
  696. $theme[10]['NAME''Dark Grey';
  697.  
  698. $theme[11]['PATH'SM_PATH 'themes/high_contrast_theme.php';
  699. $theme[11]['NAME''High Contrast';
  700.  
  701. $theme[12]['PATH'SM_PATH 'themes/black_bean_burrito_theme.php';
  702. $theme[12]['NAME''Black Bean Burrito';
  703.  
  704. $theme[13]['PATH'SM_PATH 'themes/servery_theme.php';
  705. $theme[13]['NAME''Servery';
  706.  
  707. $theme[14]['PATH'SM_PATH 'themes/maize_theme.php';
  708. $theme[14]['NAME''Maize';
  709.  
  710. $theme[15]['PATH'SM_PATH 'themes/bluesnews_theme.php';
  711. $theme[15]['NAME''BluesNews';
  712.  
  713. $theme[16]['PATH'SM_PATH 'themes/deepocean2_theme.php';
  714. $theme[16]['NAME''Deep Ocean 2';
  715.  
  716. $theme[17]['PATH'SM_PATH 'themes/blue_grey_theme.php';
  717. $theme[17]['NAME''Blue Grey';
  718.  
  719. $theme[18]['PATH'SM_PATH 'themes/dompie_theme.php';
  720. $theme[18]['NAME''Dompie';
  721.  
  722. $theme[19]['PATH'SM_PATH 'themes/methodical_theme.php';
  723. $theme[19]['NAME''Methodical';
  724.  
  725. $theme[20]['PATH'SM_PATH 'themes/greenhouse_effect.php';
  726. $theme[20]['NAME''Greenhouse Effect (Changes)';
  727.  
  728. $theme[21]['PATH'SM_PATH 'themes/in_the_pink.php';
  729. $theme[21]['NAME''In The Pink (Changes)';
  730.  
  731. $theme[22]['PATH'SM_PATH 'themes/kind_of_blue.php';
  732. $theme[22]['NAME''Kind of Blue (Changes)';
  733.  
  734. $theme[23]['PATH'SM_PATH 'themes/monostochastic.php';
  735. $theme[23]['NAME''Monostochastic (Changes)';
  736.  
  737. $theme[24]['PATH'SM_PATH 'themes/shades_of_grey.php';
  738. $theme[24]['NAME''Shades of Grey (Changes)';
  739.  
  740. $theme[25]['PATH'SM_PATH 'themes/spice_of_life.php';
  741. $theme[25]['NAME''Spice of Life (Changes)';
  742.  
  743. $theme[26]['PATH'SM_PATH 'themes/spice_of_life_lite.php';
  744. $theme[26]['NAME''Spice of Life - Lite (Changes)';
  745.  
  746. $theme[27]['PATH'SM_PATH 'themes/spice_of_life_dark.php';
  747. $theme[27]['NAME''Spice of Life - Dark (Changes)';
  748.  
  749. $theme[28]['PATH'SM_PATH 'themes/christmas.php';
  750. $theme[28]['NAME''Holiday - Christmas';
  751.  
  752. $theme[29]['PATH'SM_PATH 'themes/darkness.php';
  753. $theme[29]['NAME''Darkness (Changes)';
  754.  
  755. $theme[30]['PATH'SM_PATH 'themes/random.php';
  756. $theme[30]['NAME''Random (Changes every login)';
  757.  
  758. $theme[31]['PATH'SM_PATH 'themes/midnight.php';
  759. $theme[31]['NAME''Midnight';
  760.  
  761. $theme[32]['PATH'SM_PATH 'themes/alien_glow.php';
  762. $theme[32]['NAME''Alien Glow';
  763.  
  764. $theme[33]['PATH'SM_PATH 'themes/dark_green.php';
  765. $theme[33]['NAME''Dark Green';
  766.  
  767. $theme[34]['PATH'SM_PATH 'themes/penguin.php';
  768. $theme[34]['NAME''Penguin';
  769.  
  770. $theme[35]['PATH'SM_PATH 'themes/minimal_bw.php';
  771. $theme[35]['NAME''Minimal BW';
  772.  
  773. $theme[36]['PATH'SM_PATH 'themes/redmond.php';
  774. $theme[36]['NAME''Redmond';
  775.  
  776. $theme[37]['PATH'SM_PATH 'themes/netstyle_theme.php';
  777. $theme[37]['NAME''Net Style';
  778.  
  779. $theme[38]['PATH'SM_PATH 'themes/silver_steel_theme.php';
  780. $theme[38]['NAME''Silver Steel';
  781.  
  782. $theme[39]['PATH'SM_PATH 'themes/simple_green_theme.php';
  783. $theme[39]['NAME''Simple Green';
  784.  
  785. $theme[40]['PATH'SM_PATH 'themes/wood_theme.php';
  786. $theme[40]['NAME''Wood';
  787.  
  788. $theme[41]['PATH'SM_PATH 'themes/bluesome.php';
  789. $theme[41]['NAME''Bluesome';
  790.  
  791. $theme[42]['PATH'SM_PATH 'themes/simple_green2.php';
  792. $theme[42]['NAME''Simple Green 2';
  793.  
  794. $theme[43]['PATH'SM_PATH 'themes/simple_purple.php';
  795. $theme[43]['NAME''Simple Purple';
  796.  
  797. $theme[44]['PATH'SM_PATH 'themes/autumn.php';
  798. $theme[44]['NAME''Autumn';
  799.  
  800. $theme[45]['PATH'SM_PATH 'themes/autumn2.php';
  801. $theme[45]['NAME''Autumn 2';
  802.  
  803. $theme[46]['PATH'SM_PATH 'themes/blue_on_blue.php';
  804. $theme[46]['NAME''Blue on Blue';
  805.  
  806. $theme[47]['PATH'SM_PATH 'themes/classic_blue.php';
  807. $theme[47]['NAME''Classic Blue';
  808.  
  809. $theme[48]['PATH'SM_PATH 'themes/classic_blue2.php';
  810. $theme[48]['NAME''Classic Blue 2';
  811.  
  812. $theme[49]['PATH'SM_PATH 'themes/powder_blue.php';
  813. $theme[49]['NAME''Powder Blue';
  814.  
  815. $theme[50]['PATH'SM_PATH 'themes/techno_blue.php';
  816. $theme[50]['NAME''Techno Blue';
  817.  
  818. $theme[51]['PATH'SM_PATH 'themes/turquoise.php';
  819. $theme[51]['NAME''Turquoise';
  820.  
  821. /**
  822.  * LDAP server(s)
  823.  *   Array of arrays with LDAP server parameters. See
  824.  *   functions/abook_ldap_server.php for a list of possible
  825.  *   parameters
  826.  *
  827.  * EXAMPLE:
  828.  *   $ldap_server[0] = Array(
  829.  *       'host' => 'memberdir.netscape.com',
  830.  *       'name' => 'Netcenter Member Directory',
  831.  *       'base' => 'ou=member_directory,o=netcenter.com'
  832.  *   );
  833.  *
  834.  *   NOTE: please see security note at the top of this file when
  835.  *   entering a password.
  836.  */
  837. // Add your ldap server options here
  838.  
  839. /**
  840.  * Javascript in Addressbook Control
  841.  *
  842.  * Users may search their addressbook via either a plain HTML or Javascript
  843.  * enhanced user interface. This option allows you to set the default choice.
  844.  * Set this default choice as either:
  845.  *    true  = javascript
  846.  *    false = html
  847.  * @global bool $default_use_javascript_addr_book 
  848.  */
  849. $default_use_javascript_addr_book false;
  850.  
  851. /**
  852.  * Shared filebased address book
  853.  * @global string $abook_global_file 
  854.  * @since 1.5.1 and 1.4.4
  855.  */
  856. $abook_global_file '';
  857.  
  858. /**
  859.  * Writing into shared address book control
  860.  * @global bool $abook_global_file_writeable 
  861.  * @since 1.5.1 and 1.4.4
  862.  */
  863. $abook_global_file_writeable false;
  864.  
  865. /**
  866.  * Listing of shared address book control
  867.  * @global bool $abook_global_file_listing 
  868.  * @since 1.5.1 and 1.4.9
  869.  */
  870. $abook_global_file_listing true;
  871.  
  872. /**
  873.  * Controls file based address book entry size
  874.  * 
  875.  * This setting controls space allocated to file based address book records.
  876.  * End users will be unable to save address book entry, if total entry size
  877.  * (quoted address book fields + 4 delimiters + linefeed) exceeds allowed
  878.  * address book length size.
  879.  *
  880.  * Same setting is applied to personal and global file based address books.
  881.  *
  882.  * It is strongly recommended to keep default setting value. Change it only
  883.  * if you really want to store address book entries that are bigger than two
  884.  * kilobytes (2048).
  885.  * @global integer $abook_file_line_length 
  886.  * @since 1.5.2 and 1.4.9
  887.  */
  888. $abook_file_line_length 2048;
  889.  
  890. /**
  891.  * MOTD
  892.  *
  893.  * This is a message that is displayed immediately after a user logs in.
  894.  * @global string $motd 
  895.  */
  896. $motd "";
  897.  
  898.  
  899. /**
  900.  * To install plugins, just add elements to this array that have
  901.  * the plugin directory name relative to the /plugins/ directory.
  902.  * For instance, for the 'sqclock' plugin, you'd put a line like
  903.  * the following.
  904.  *    $plugins[0] = 'sqclock';
  905.  *    $plugins[1] = 'attachment_common';
  906.  */
  907. // Add list of enabled plugins here
  908.  
  909.  
  910. /*** Database ***/
  911. /**
  912.  * Read doc/database.txt in order to get more information
  913.  * about these settings.
  914.  */
  915. /**
  916.  * Database-driven private addressbooks
  917.  *   DSN (Data Source Name) for a database where the private
  918.  *   addressbooks are stored.  See doc/db-backend.txt for more info.
  919.  *   If it is not set, the addressbooks are stored in files
  920.  *   in the data dir.
  921.  *   The DSN is in the format: mysql://user:pass@hostname/dbname
  922.  *   The table is the name of the table to use within the
  923.  *   specified database.
  924.  *
  925.  *   NOTE: please see security note at the top of this file when
  926.  *   entering a password.
  927.  */
  928. $addrbook_dsn '';
  929. $addrbook_table 'address';
  930. /**
  931.  * Database used to store user data
  932.  */
  933. $prefs_dsn '';
  934. $prefs_table 'userprefs';
  935. $prefs_key_field 'prefkey';
  936. $prefs_user_field 'user';
  937. $prefs_val_field 'prefval';
  938.  
  939. /*** Global sql database options ***/
  940. /**
  941.  * DSN of global address book database
  942.  * @global string $addrbook_global_dsn 
  943.  * @since 1.5.1 and 1.4.4
  944.  */
  945. $addrbook_global_dsn '';
  946. /**
  947.  * Table used for global database address book
  948.  * @global string $addrbook_global_table 
  949.  * @since 1.5.1 and 1.4.4
  950.  */
  951. $addrbook_global_table 'global_abook';
  952. /**
  953.  * Control writing into global database address book
  954.  * @global boolean $addrbook_global_writeable 
  955.  * @since 1.5.1 and 1.4.4
  956.  */
  957. $addrbook_global_writeable false;
  958. /**
  959.  * Control listing of global database address book
  960.  * @global boolean $addrbook_global_listing 
  961.  * @since 1.5.1 and 1.4.4
  962.  */
  963. $addrbook_global_listing false;
  964.  
  965. /*** Language settings ***/
  966. /**
  967.  * Default language
  968.  *
  969.  * This is the default language. It is used as a last resort
  970.  * if SquirrelMail can't figure out which language to display.
  971.  * Language names usually consist of language code, undercore
  972.  * symbol and country code
  973.  * @global string $squirrelmail_default_language 
  974.  */
  975. $squirrelmail_default_language 'en_US';
  976.  
  977. /**
  978.  * Default Charset
  979.  *
  980.  * This option controls what character set is used when sending mail
  981.  * and when sending HTML to the browser. Do not set this to US-ASCII,
  982.  * use ISO-8859-1 instead.
  983.  *
  984.  * This option is active only when default language is en_US. In other
  985.  * cases SquirrelMail uses charset that depends on default language.
  986.  * See $squirrelmail_default_language
  987.  *
  988.  * @global string $default_charset 
  989.  */
  990. $default_charset 'iso-8859-1';
  991.  
  992. /**
  993.  * Lossy Encoding Control
  994.  *
  995.  * This option allows charset conversions when output charset does not support
  996.  * all symbols used in original charset. Symbols unsupported by output charset
  997.  * will be replaced with question marks.
  998.  * @global bool $lossy_encoding 
  999.  * @since 1.4.4 and 1.5.1
  1000.  */
  1001. $lossy_encoding false;
  1002.  
  1003. /**
  1004.  * Subscribe Listing Control
  1005.  *
  1006.  * this disables listing all of the folders on the IMAP Server to
  1007.  * generate the folder subscribe listbox (this can take a long time
  1008.  * when you have a lot of folders).  Instead, a textbox will be
  1009.  * displayed allowing users to enter a specific folder name to subscribe to
  1010.  * 
  1011.  * This option can't be changed by conf.pl
  1012.  * @global bool $no_list_for_subscribe 
  1013.  */
  1014. $no_list_for_subscribe false;
  1015.  
  1016. /**
  1017.  * Color in config control
  1018.  *
  1019.  * This option is used only by conf.pl script to generate configuration
  1020.  * menu with some colors and is provided here only as reference.
  1021.  * @global integer $config_use_color 
  1022.  */
  1023. $config_use_color 2;
  1024.  
  1025. /**
  1026.  * This option includes special configuration options
  1027.  */
  1028. @include SM_PATH 'config/config_local.php';
  1029.  
  1030. /**
  1031.  * Make sure there are no characters after the PHP closing
  1032.  * tag below (including newline characters and whitespace).
  1033.  * Otherwise, that character will cause the headers to be
  1034.  * sent and regular output to begin, which will majorly screw
  1035.  * things up when we try to send more headers later.
  1036.  */
  1037. ?>

Documentation generated on Sat, 07 Oct 2006 16:30:23 +0300 by phpDocumentor 1.3.0RC6