squirrelmail/config.php

Wed, 15 Apr 2009 22:49:00 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 15 Apr 2009 22:49:00 +0200
changeset 157
3214ed6c04f6
child 159
5524672ebbe7
permissions
-rw-r--r--

Import package vendor original specs for necessary manipulations.

michael@157 1 <?php
michael@157 2
michael@157 3 /**
michael@157 4 * SquirrelMail Configuration File
michael@157 5 * Created using the configure script, conf.pl
michael@157 6 */
michael@157 7
michael@157 8 global $version;
michael@157 9 $config_version = '1.4.0';
michael@157 10 $config_use_color = 1;
michael@157 11
michael@157 12 $org_name = "Email";
michael@157 13 $org_logo = SM_PATH . 'images/opkg_large.png';
michael@157 14 $org_logo_width = '277';
michael@157 15 $org_logo_height = '88';
michael@157 16 $org_title = "SquirrelMail $version";
michael@157 17 $signout_page = '';
michael@157 18 $frame_top = '_top';
michael@157 19
michael@157 20 $provider_uri = 'http://www.openpkg.org/';
michael@157 21
michael@157 22 $provider_name = 'OpenPKG';
michael@157 23
michael@157 24 $motd = "";
michael@157 25
michael@157 26 $squirrelmail_default_language = 'de_DE';
michael@157 27 $default_charset = 'iso-8859-1';
michael@157 28 $lossy_encoding = false;
michael@157 29
michael@157 30 $domain = '@l_fqdm@';
michael@157 31 $imapServerAddress = '@l_fqdm@';
michael@157 32 $imapPort = 143;
michael@157 33 $useSendmail = true;
michael@157 34 $smtpServerAddress = '@l_fqdm@';
michael@157 35 $smtpPort = 25;
michael@157 36 $sendmail_path = '@l_prefix@/sbin/sendmail';
michael@157 37 $pop_before_smtp = false;
michael@157 38 $imap_server_type = 'cyrus';
michael@157 39 $invert_time = false;
michael@157 40 $optional_delimiter = '.';
michael@157 41
michael@157 42 $default_folder_prefix = '';
michael@157 43 $trash_folder = 'INBOX.Trash';
michael@157 44 $sent_folder = 'INBOX.Sent';
michael@157 45 $draft_folder = 'INBOX.Drafts';
michael@157 46 $default_move_to_trash = true;
michael@157 47 $default_move_to_sent = true;
michael@157 48 $default_save_as_draft = true;
michael@157 49 $show_prefix_option = false;
michael@157 50 $list_special_folders_first = true;
michael@157 51 $use_special_folder_color = true;
michael@157 52 $auto_expunge = true;
michael@157 53 $default_sub_of_inbox = true;
michael@157 54 $show_contain_subfolders_option = false;
michael@157 55 $default_unseen_notify = 2;
michael@157 56 $default_unseen_type = 1;
michael@157 57 $auto_create_special = false;
michael@157 58 $delete_folder = true;
michael@157 59 $noselect_fix_enable = false;
michael@157 60
michael@157 61 $data_dir = '@l_prefix@/share/squirrelmail/prefs/';
michael@157 62 $attachment_dir = '@l_prefix@/var/squirrelmail/spool/attach/';
michael@157 63 $dir_hash_level = 1;
michael@157 64 $default_left_size = '224';
michael@157 65 $force_username_lowercase = false;
michael@157 66 $default_use_priority = true;
michael@157 67 $hide_sm_attributions = false;
michael@157 68 $default_use_mdn = true;
michael@157 69 $edit_identity = true;
michael@157 70 $edit_name = true;
michael@157 71 $allow_thread_sort = true;
michael@157 72 $allow_server_sort = true;
michael@157 73 $allow_charset_search = true;
michael@157 74 $uid_support = true;
michael@157 75
michael@157 76 $plugins[0] = 'abook_take';
michael@157 77 $plugins[1] = 'administrator';
michael@157 78 $plugins[2] = 'calendar';
michael@157 79 $plugins[3] = 'compatibility';
michael@157 80 $plugins[4] = 'delete_move_next';
michael@157 81 $plugins[5] = 'filters';
michael@157 82 $plugins[6] = 'info';
michael@157 83 $plugins[7] = 'listcommands';
michael@157 84 $plugins[8] = 'mail_fetch';
michael@157 85 $plugins[9] = 'message_details';
michael@157 86 $plugins[10] = 'newmail';
michael@157 87 $plugins[11] = 'spamcop';
michael@157 88 $plugins[12] = 'squirrelspell';
michael@157 89 $plugins[13] = 'squirrel_logger';
michael@157 90 $plugins[14] = 'translate';
michael@157 91
michael@157 92 /* NOP, for patch line placeholder (avoids fuzz) */
michael@157 93 $theme_css = '';
michael@157 94 $theme_default = 0;
michael@157 95 $theme[0]['PATH'] = '@l_prefix@/share/squirrelmail/themes/default_theme.php';
michael@157 96 $theme[0]['NAME'] = 'Default';
michael@157 97 $theme[1]['PATH'] = '@l_prefix@/share/squirrelmail/themes/plain_blue_theme.php';
michael@157 98 $theme[1]['NAME'] = 'Plain Blue';
michael@157 99 $theme[2]['PATH'] = '@l_prefix@/share/squirrelmail/themes/sandstorm_theme.php';
michael@157 100 $theme[2]['NAME'] = 'Sand Storm';
michael@157 101 $theme[3]['PATH'] = '@l_prefix@/share/squirrelmail/themes/deepocean_theme.php';
michael@157 102 $theme[3]['NAME'] = 'Deep Ocean';
michael@157 103 $theme[4]['PATH'] = '@l_prefix@/share/squirrelmail/themes/slashdot_theme.php';
michael@157 104 $theme[4]['NAME'] = 'Slashdot';
michael@157 105 $theme[5]['PATH'] = '@l_prefix@/share/squirrelmail/themes/purple_theme.php';
michael@157 106 $theme[5]['NAME'] = 'Purple';
michael@157 107 $theme[6]['PATH'] = '@l_prefix@/share/squirrelmail/themes/forest_theme.php';
michael@157 108 $theme[6]['NAME'] = 'Forest';
michael@157 109 $theme[7]['PATH'] = '@l_prefix@/share/squirrelmail/themes/ice_theme.php';
michael@157 110 $theme[7]['NAME'] = 'Ice';
michael@157 111 $theme[8]['PATH'] = '@l_prefix@/share/squirrelmail/themes/seaspray_theme.php';
michael@157 112 $theme[8]['NAME'] = 'Sea Spray';
michael@157 113 $theme[9]['PATH'] = '@l_prefix@/share/squirrelmail/themes/bluesteel_theme.php';
michael@157 114 $theme[9]['NAME'] = 'Blue Steel';
michael@157 115 $theme[10]['PATH'] = '@l_prefix@/share/squirrelmail/themes/dark_grey_theme.php';
michael@157 116 $theme[10]['NAME'] = 'Dark Grey';
michael@157 117 $theme[11]['PATH'] = '@l_prefix@/share/squirrelmail/themes/high_contrast_theme.php';
michael@157 118 $theme[11]['NAME'] = 'High Contrast';
michael@157 119 $theme[12]['PATH'] = '@l_prefix@/share/squirrelmail/themes/black_bean_burrito_theme.php';
michael@157 120 $theme[12]['NAME'] = 'Black Bean Burrito';
michael@157 121 $theme[13]['PATH'] = '@l_prefix@/share/squirrelmail/themes/servery_theme.php';
michael@157 122 $theme[13]['NAME'] = 'Servery';
michael@157 123 $theme[14]['PATH'] = '@l_prefix@/share/squirrelmail/themes/maize_theme.php';
michael@157 124 $theme[14]['NAME'] = 'Maize';
michael@157 125 $theme[15]['PATH'] = '@l_prefix@/share/squirrelmail/themes/bluesnews_theme.php';
michael@157 126 $theme[15]['NAME'] = 'BluesNews';
michael@157 127 $theme[16]['PATH'] = '@l_prefix@/share/squirrelmail/themes/deepocean2_theme.php';
michael@157 128 $theme[16]['NAME'] = 'Deep Ocean 2';
michael@157 129 $theme[17]['PATH'] = '@l_prefix@/share/squirrelmail/themes/blue_grey_theme.php';
michael@157 130 $theme[17]['NAME'] = 'Blue Grey';
michael@157 131 $theme[18]['PATH'] = '@l_prefix@/share/squirrelmail/themes/dompie_theme.php';
michael@157 132 $theme[18]['NAME'] = 'Dompie';
michael@157 133 $theme[19]['PATH'] = '@l_prefix@/share/squirrelmail/themes/methodical_theme.php';
michael@157 134 $theme[19]['NAME'] = 'Methodical';
michael@157 135 $theme[20]['PATH'] = '@l_prefix@/share/squirrelmail/themes/greenhouse_effect.php';
michael@157 136 $theme[20]['NAME'] = 'Greenhouse Effect (Changes)';
michael@157 137 $theme[21]['PATH'] = '@l_prefix@/share/squirrelmail/themes/in_the_pink.php';
michael@157 138 $theme[21]['NAME'] = 'In The Pink (Changes)';
michael@157 139 $theme[22]['PATH'] = '@l_prefix@/share/squirrelmail/themes/kind_of_blue.php';
michael@157 140 $theme[22]['NAME'] = 'Kind of Blue (Changes)';
michael@157 141 $theme[23]['PATH'] = '@l_prefix@/share/squirrelmail/themes/monostochastic.php';
michael@157 142 $theme[23]['NAME'] = 'Monostochastic (Changes)';
michael@157 143 $theme[24]['PATH'] = '@l_prefix@/share/squirrelmail/themes/shades_of_grey.php';
michael@157 144 $theme[24]['NAME'] = 'Shades of Grey (Changes)';
michael@157 145 $theme[25]['PATH'] = '@l_prefix@/share/squirrelmail/themes/spice_of_life.php';
michael@157 146 $theme[25]['NAME'] = 'Spice of Life (Changes)';
michael@157 147 $theme[26]['PATH'] = '@l_prefix@/share/squirrelmail/themes/spice_of_life_lite.php';
michael@157 148 $theme[26]['NAME'] = 'Spice of Life - Lite (Changes)';
michael@157 149 $theme[27]['PATH'] = '@l_prefix@/share/squirrelmail/themes/spice_of_life_dark.php';
michael@157 150 $theme[27]['NAME'] = 'Spice of Life - Dark (Changes)';
michael@157 151 $theme[28]['PATH'] = '@l_prefix@/share/squirrelmail/themes/christmas.php';
michael@157 152 $theme[28]['NAME'] = 'Holiday - Christmas';
michael@157 153 $theme[29]['PATH'] = '@l_prefix@/share/squirrelmail/themes/darkness.php';
michael@157 154 $theme[29]['NAME'] = 'Darkness (Changes)';
michael@157 155 $theme[30]['PATH'] = '@l_prefix@/share/squirrelmail/themes/random.php';
michael@157 156 $theme[30]['NAME'] = 'Random (Changes every login)';
michael@157 157 $theme[31]['PATH'] = '@l_prefix@/share/squirrelmail/themes/midnight.php';
michael@157 158 $theme[31]['NAME'] = 'Midnight';
michael@157 159 $theme[32]['PATH'] = '@l_prefix@/share/squirrelmail/themes/alien_glow.php';
michael@157 160 $theme[32]['NAME'] = 'Alien Glow';
michael@157 161 $theme[33]['PATH'] = '@l_prefix@/share/squirrelmail/themes/dark_green.php';
michael@157 162 $theme[33]['NAME'] = 'Dark Green';
michael@157 163 $theme[34]['PATH'] = '@l_prefix@/share/squirrelmail/themes/penguin.php';
michael@157 164 $theme[34]['NAME'] = 'Penguin';
michael@157 165
michael@157 166 $default_use_javascript_addr_book = false;
michael@157 167 $abook_global_file = '';
michael@157 168 $abook_global_file_writeable = false;
michael@157 169
michael@157 170 $addrbook_dsn = '';
michael@157 171 $addrbook_table = 'address';
michael@157 172
michael@157 173 $prefs_dsn = '';
michael@157 174 $prefs_table = 'userprefs';
michael@157 175 $prefs_user_field = 'user';
michael@157 176 $prefs_key_field = 'prefkey';
michael@157 177 $prefs_val_field = 'prefval';
michael@157 178 $addrbook_global_dsn = '';
michael@157 179 $addrbook_global_table = 'global_abook';
michael@157 180 $addrbook_global_writeable = false;
michael@157 181 $addrbook_global_listing = false;
michael@157 182
michael@157 183 $no_list_for_subscribe = false;
michael@157 184 $smtp_auth_mech = 'digest-md5';
michael@157 185 $imap_auth_mech = 'digest-md5';
michael@157 186 $use_imap_tls = false;
michael@157 187 $use_smtp_tls = false;
michael@157 188 $session_name = 'SQMSESSID';
michael@157 189
michael@157 190 @include 'config_local.php';
michael@157 191
michael@157 192 /**
michael@157 193 * Make sure there are no characters after the PHP closing
michael@157 194 * tag below (including newline characters and whitespace).
michael@157 195 * Otherwise, that character will cause the headers to be
michael@157 196 * sent and regular output to begin, which will majorly screw
michael@157 197 * things up when we try to send more headers later.
michael@157 198 */
michael@157 199 ?>

mercurial