X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=config%2Fconfig_default.php;h=57215877c987d7189ea5d659a3c1bb79ee8fba5d;hp=43792afb9abb744ababb96b19690280883377132;hb=02473e22f55751d172fd081c55a1c29af870fb98;hpb=ca885a4ff4cc1175af8db97bab02f7aa74ced73a diff --git a/config/config_default.php b/config/config_default.php index 43792afb..57215877 100644 --- a/config/config_default.php +++ b/config/config_default.php @@ -10,6 +10,11 @@ * conf.pl if at all possible. That is the easiest and cleanest way * to configure. * + * Note on SECURITY: some options require putting a password in this file. + * Please make sure that you adapt its permissions appropriately to avoid + * passwords being leaked to e.g. other system users. Take extra care when + * the webserver is shared with untrusted users. + * * @copyright © 2000-2006 The SquirrelMail Project Team * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @version $Id$ @@ -20,7 +25,7 @@ /* Do not change this value. */ global $version; global $config_version; -$config_version = '1.4.0'; +$config_version = '1.5.0'; /*** Organization preferences ***/ /** @@ -184,7 +189,7 @@ $sendmail_path = '/usr/sbin/sendmail'; * which does not support -t and -i arguments, set variable to empty string * or use arguments suitable for your mailer. * @global string $sendmail_args - * @since 1.5.1 + * @since 1.5.1 and 1.4.8 */ $sendmail_args = '-i -t'; @@ -262,6 +267,28 @@ $use_smtp_tls = 0; */ $smtp_auth_mech = 'none'; +/** + * Custom SMTP authentication username + * + * IMAP username is used if variable is set to empty string. + * Variable is included in main configuration file only from 1.5.2 version. + * Older versions stored it in config_local.php. + * @global string $smtp_sitewide_user + * @since 1.5.0 + */ +$smtp_sitewide_user = ''; + +/** + * Custom SMTP authentication password + * + * IMAP password is used if $smtp_sitewide_user global is set to empty string. + * Variable is included in main configuration file only from 1.5.2 version. + * Older versions stored it in config_local.php. + * @global string $smtp_sitewide_pass + * @since 1.5.0 + */ +$smtp_sitewide_pass = ''; + /** * IMAP authentication mechanism * @@ -469,7 +496,7 @@ $noselect_fix_enable = false; * * @global string $data_dir */ -$data_dir = '/var/local/squirrelmail/data'; +$data_dir = '/var/local/squirrelmail/data/'; /** * Attachments directory @@ -488,7 +515,7 @@ $data_dir = '/var/local/squirrelmail/data'; * + It should probably be another directory than data_dir. * @global string $attachment_dir */ -$attachment_dir = $data_dir; +$attachment_dir = '/var/local/squirrelmail/attach/'; /** * Hash level used for data directory. @@ -636,203 +663,110 @@ $session_name = 'SQMSESSID'; /** - * Themes - * You can define your own theme and put it in this directory. + * User Themes + * You can define your own theme and put it in directory in SM_PATH/css/. * You must call it as the example below. You can name the theme - * whatever you want. For an example of a theme, see the ones - * included in the config directory. + * whatever you want. * * To add a new theme to the options that users can choose from, just * add a new number to the array at the bottom, and follow the pattern. * - * $theme_default sets theme that will be used by default - * $theme_css sets stylesheet (from theme/css directory) that will be - * used by default. - * @global integer $theme_default - * @global string $theme_css + * $user_theme_default sets theme that will be used by default + * + * @global integer $user_theme_default + * @since 1.5.2 */ -$theme_default = 0; -$theme_css = ''; +$user_theme_default = 0; /** * Listing of installed themes - * @global array $theme + * @global array $user_themes + * @since 1.5.2 */ -$theme[0]['PATH'] = SM_PATH . 'themes/default_theme.php'; -$theme[0]['NAME'] = 'Default'; - -$theme[1]['PATH'] = SM_PATH . 'themes/plain_blue_theme.php'; -$theme[1]['NAME'] = 'Plain Blue'; - -$theme[2]['PATH'] = SM_PATH . 'themes/sandstorm_theme.php'; -$theme[2]['NAME'] = 'Sand Storm'; - -$theme[3]['PATH'] = SM_PATH . 'themes/deepocean_theme.php'; -$theme[3]['NAME'] = 'Deep Ocean'; - -$theme[4]['PATH'] = SM_PATH . 'themes/slashdot_theme.php'; -$theme[4]['NAME'] = 'Slashdot'; - -$theme[5]['PATH'] = SM_PATH . 'themes/purple_theme.php'; -$theme[5]['NAME'] = 'Purple'; - -$theme[6]['PATH'] = SM_PATH . 'themes/forest_theme.php'; -$theme[6]['NAME'] = 'Forest'; - -$theme[7]['PATH'] = SM_PATH . 'themes/ice_theme.php'; -$theme[7]['NAME'] = 'Ice'; - -$theme[8]['PATH'] = SM_PATH . 'themes/seaspray_theme.php'; -$theme[8]['NAME'] = 'Sea Spray'; - -$theme[9]['PATH'] = SM_PATH . 'themes/bluesteel_theme.php'; -$theme[9]['NAME'] = 'Blue Steel'; - -$theme[10]['PATH'] = SM_PATH . 'themes/dark_grey_theme.php'; -$theme[10]['NAME'] = 'Dark Grey'; - -$theme[11]['PATH'] = SM_PATH . 'themes/high_contrast_theme.php'; -$theme[11]['NAME'] = 'High Contrast'; - -$theme[12]['PATH'] = SM_PATH . 'themes/black_bean_burrito_theme.php'; -$theme[12]['NAME'] = 'Black Bean Burrito'; - -$theme[13]['PATH'] = SM_PATH . 'themes/servery_theme.php'; -$theme[13]['NAME'] = 'Servery'; - -$theme[14]['PATH'] = SM_PATH . 'themes/maize_theme.php'; -$theme[14]['NAME'] = 'Maize'; - -$theme[15]['PATH'] = SM_PATH . 'themes/bluesnews_theme.php'; -$theme[15]['NAME'] = 'BluesNews'; - -$theme[16]['PATH'] = SM_PATH . 'themes/deepocean2_theme.php'; -$theme[16]['NAME'] = 'Deep Ocean 2'; - -$theme[17]['PATH'] = SM_PATH . 'themes/blue_grey_theme.php'; -$theme[17]['NAME'] = 'Blue Grey'; - -$theme[18]['PATH'] = SM_PATH . 'themes/dompie_theme.php'; -$theme[18]['NAME'] = 'Dompie'; - -$theme[19]['PATH'] = SM_PATH . 'themes/methodical_theme.php'; -$theme[19]['NAME'] = 'Methodical'; - -$theme[20]['PATH'] = SM_PATH . 'themes/greenhouse_effect.php'; -$theme[20]['NAME'] = 'Greenhouse Effect (Changes)'; - -$theme[21]['PATH'] = SM_PATH . 'themes/in_the_pink.php'; -$theme[21]['NAME'] = 'In The Pink (Changes)'; - -$theme[22]['PATH'] = SM_PATH . 'themes/kind_of_blue.php'; -$theme[22]['NAME'] = 'Kind of Blue (Changes)'; - -$theme[23]['PATH'] = SM_PATH . 'themes/monostochastic.php'; -$theme[23]['NAME'] = 'Monostochastic (Changes)'; - -$theme[24]['PATH'] = SM_PATH . 'themes/shades_of_grey.php'; -$theme[24]['NAME'] = 'Shades of Grey (Changes)'; - -$theme[25]['PATH'] = SM_PATH . 'themes/spice_of_life.php'; -$theme[25]['NAME'] = 'Spice of Life (Changes)'; - -$theme[26]['PATH'] = SM_PATH . 'themes/spice_of_life_lite.php'; -$theme[26]['NAME'] = 'Spice of Life - Lite (Changes)'; - -$theme[27]['PATH'] = SM_PATH . 'themes/spice_of_life_dark.php'; -$theme[27]['NAME'] = 'Spice of Life - Dark (Changes)'; - -$theme[28]['PATH'] = SM_PATH . 'themes/christmas.php'; -$theme[28]['NAME'] = 'Holiday - Christmas'; - -$theme[29]['PATH'] = SM_PATH . 'themes/darkness.php'; -$theme[29]['NAME'] = 'Darkness (Changes)'; - -$theme[30]['PATH'] = SM_PATH . 'themes/random.php'; -$theme[30]['NAME'] = 'Random (Changes every login)'; - -$theme[31]['PATH'] = SM_PATH . 'themes/midnight.php'; -$theme[31]['NAME'] = 'Midnight'; - -$theme[32]['PATH'] = SM_PATH . 'themes/alien_glow.php'; -$theme[32]['NAME'] = 'Alien Glow'; - -$theme[33]['PATH'] = SM_PATH . 'themes/dark_green.php'; -$theme[33]['NAME'] = 'Dark Green'; - -$theme[34]['PATH'] = SM_PATH . 'themes/penguin.php'; -$theme[34]['NAME'] = 'Penguin'; - -$theme[35]['PATH'] = SM_PATH . 'themes/minimal_bw.php'; -$theme[35]['NAME'] = 'Minimal BW'; - -$theme[36]['PATH'] = SM_PATH . 'themes/redmond.php'; -$theme[36]['NAME'] = 'Redmond'; - -$theme[37]['PATH'] = SM_PATH . 'themes/netstyle_theme.php'; -$theme[37]['NAME'] = 'Net Style'; - -$theme[38]['PATH'] = SM_PATH . 'themes/silver_steel_theme.php'; -$theme[38]['NAME'] = 'Silver Steel'; - -$theme[39]['PATH'] = SM_PATH . 'themes/simple_green_theme.php'; -$theme[39]['NAME'] = 'Simple Green'; +$user_themes[0]['PATH'] = 'none'; +$user_themes[0]['NAME'] = 'Default'; -$theme[40]['PATH'] = SM_PATH . 'themes/wood_theme.php'; -$theme[40]['NAME'] = 'Wood'; +$user_themes[1]['PATH'] = '../css/blue_gradient/'; +$user_themes[1]['NAME'] = 'Blue Options'; -$theme[41]['PATH'] = SM_PATH . 'themes/bluesome.php'; -$theme[41]['NAME'] = 'Bluesome'; - -$theme[42]['PATH'] = SM_PATH . 'themes/simple_green2.php'; -$theme[42]['NAME'] = 'Simple Green 2'; - -$theme[43]['PATH'] = SM_PATH . 'themes/simple_purple.php'; -$theme[43]['NAME'] = 'Simple Purple'; - -$theme[44]['PATH'] = SM_PATH . 'themes/autumn.php'; -$theme[44]['NAME'] = 'Autumn'; - -$theme[45]['PATH'] = SM_PATH . 'themes/autumn2.php'; -$theme[45]['NAME'] = 'Autumn 2'; - -$theme[46]['PATH'] = SM_PATH . 'themes/blue_on_blue.php'; -$theme[46]['NAME'] = 'Blue on Blue'; +/** + * Message Icons control + * + * Use icons for message and folder markers + * @global bool $use_icons + * @since 1.5.1 + */ +$use_icons = true; -$theme[47]['PATH'] = SM_PATH . 'themes/classic_blue.php'; -$theme[47]['NAME'] = 'Classic Blue'; +/** + * Icon Themes + * You can create your own icon themes and put them in a directory in + * SM_PATH/images/themes/. Your users will be able to choose whatever + * icon themes are listed below. + * + * To add a new theme to the list of available icon themes, just add a new + * number to the array below and follow the pattern + * + * $icon_theme_default sets the theme that will be used by default. + * $icon_theme_fallback specifies which theme will be used if an icon is + * not found in the selected theme + * + * @global integer $icon_theme_def + * @global integer $icon_theme_fallback + * @since 1.5.2 + */ +$icon_theme_def = 1; +$icon_theme_fallback = 3; -$theme[48]['PATH'] = SM_PATH . 'themes/classic_blue2.php'; -$theme[48]['NAME'] = 'Classic Blue 2'; +/** + * Listing of installed icon themes + * @global array $icon_themes + * @since 1.5.2 + */ +$icon_themes[0]['PATH'] = 'none'; +$icon_themes[0]['NAME'] = 'No Icons'; -$theme[49]['PATH'] = SM_PATH . 'themes/powder_blue.php'; -$theme[49]['NAME'] = 'Powder Blue'; +$icon_themes[1]['PATH'] = 'template'; +$icon_themes[1]['NAME'] = 'Template Default Icons'; -$theme[50]['PATH'] = SM_PATH . 'themes/techno_blue.php'; -$theme[50]['NAME'] = 'Techno Blue'; +$icon_themes[2]['PATH'] = '../images/themes/default/'; +$icon_themes[2]['NAME'] = 'Default Icon Set'; -$theme[51]['PATH'] = SM_PATH . 'themes/turquoise.php'; -$theme[51]['NAME'] = 'Turquoise'; +$icon_themes[3]['PATH'] = '../images/themes/xp/'; +$icon_themes[3]['NAME'] = 'XP Style Icons'; /** * Templates - * You can define your own template and put it in this directory. - * You must call it as the example below. You can name the template - * whatever you want. For an example of a template, see the ones - * included in the template directory. + * You can define your own template set (skin) and put it in a new + * directory under SM_PATH/templates. The ID must match the name of + * the template directory as the example below. You can name the + * template whatever you want. For an example of a template, see + * the ones included in the SM_PATH/templates directory. * * To add a new template to the options that users can choose from, just * add a new number to the array at the bottom, and follow the pattern. * - * $templateset_default sets theme that will be used by default - * used by default. - * @global integer $templateset_default + * $templateset_default sets the skin that will be used by default + * when a user doesn't have a skin selection + * in their preferences. (Must be the "ID" of + * the desired template set) + * + * $templateset_fallback tells SquirrelMail which template set (skin) + * to use when looking for a file that is not + * contained within whatever skin is currently + * being used. (Must be the "ID" of the desired + * template set) + * + * @global string $templateset_default + * @global string $templateset_fallback */ -$templateset_default = 0; - -$aTemplateSet[0]['PATH'] = SM_PATH . 'templates/default/'; -$aTemplateSet[0]['NAME'] = 'Default template'; +$templateset_default = 'default'; +$templateset_fallback = 'default'; +$aTemplateSet[0]['ID'] = 'default'; +$aTemplateSet[0]['NAME'] = 'Default'; +$aTemplateSet[1]['ID'] = 'default_advanced'; +$aTemplateSet[1]['NAME'] = 'Advanced'; /** * Default interface font size. @@ -872,6 +806,9 @@ $fontsets['tahoma'] = 'tahoma,sans-serif'; * 'name' => 'Netcenter Member Directory', * 'base' => 'ou=member_directory,o=netcenter.com' * ); + * + * NOTE: please see security note at the top of this file when + * entering a password. */ // Add your ldap server options here @@ -908,6 +845,24 @@ $abook_global_file_writeable = false; */ $abook_global_file_listing = true; +/** + * Controls file based address book entry size + * + * This setting controls space allocated to file based address book records. + * End users will be unable to save address book entry, if total entry size + * (quoted address book fields + 4 delimiters + linefeed) exceeds allowed + * address book length size. + * + * Same setting is applied to personal and global file based address books. + * + * It is strongly recommended to keep default setting value. Change it only + * if you really want to store address book entries that are bigger than two + * kilobytes (2048). + * @global integer $abook_file_line_length + * @since 1.5.2 + */ +$abook_file_line_length = 2048; + /** * MOTD * @@ -942,6 +897,9 @@ $motd = ""; * The DSN is in the format: mysql://user:pass@hostname/dbname * The table is the name of the table to use within the * specified database. + * + * NOTE: please see security note at the top of this file when + * entering a password. */ $addrbook_dsn = ''; $addrbook_table = 'address'; @@ -1028,7 +986,7 @@ $squirrelmail_default_language = 'en_US'; * This option controls what character set is used when sending * mail and when sending HTML to the browser. Option works only * with US English (en_US) translation. Other translations use - * charsets that are set in functions/i18n.php. + * charsets that are set in translation settings. * * @global string $default_charset */ @@ -1089,6 +1047,29 @@ $lossy_encoding = false; */ $time_zone_type = 0; +/** + * Location base + * + * This is used to build the URL to the SquirrelMail location. + * It should contain only the protocol and hostname/port parts + * of the URL; the full path will be appended automatically. + * + * If not specified or empty, it will be autodetected. + * + * Examples: + * http://webmail.example.org + * http://webmail.example.com:8080 + * https://webmail.example.com:6691 + * + * To be clear: do not include any of the path elements, so if + * SquirrelMail is at http://www.example.net/web/mail/src/login.php, you + * write: http://www.example.net + * + * @global string $config_location_base + * @since 1.5.2 and 1.4.8 + */ +$config_location_base = ''; + /*** Tweaks ***/ /** * Iframe sandbox code control @@ -1100,15 +1081,6 @@ $time_zone_type = 0; */ $use_iframe = false; -/** - * Message Icons control - * - * Use icons for message and folder markers - * @global bool $use_icons - * @since 1.5.1 - */ -$use_icons = false; - /** * PHP recode functions control * @@ -1165,17 +1137,3 @@ $no_list_for_subscribe = false; * @global integer $config_use_color */ $config_use_color = 2; - -/** - * This option includes special configuration options - */ -@include SM_PATH . 'config/config_local.php'; - -/** - * Make sure there are no characters after the PHP closing - * tag below (including newline characters and whitespace). - * Otherwise, that character will cause the headers to be - * sent and regular output to begin, which will majorly screw - * things up when we try to send more headers later. - */ -?> \ No newline at end of file