Advertisement
Guest User

problematic config

a guest
Jun 7th, 2013
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 8.47 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4.  * SquirrelMail Configuration File
  5.  * Created using the configure script, conf.pl
  6.  */
  7.  
  8. global $version;
  9. $config_version = '1.4.0';
  10. $config_use_color = 2;
  11.  
  12. $org_name      = "myorg.net";
  13. $org_logo      = SM_PATH . 'images/sm_logo.png';
  14. $org_logo_width  = '308';
  15. $org_logo_height = '111';
  16. $org_title     = "SquirrelMail $version";
  17. $signout_page  = '';
  18. $frame_top     = '_top';
  19.  
  20. $provider_uri     = 'http://squirrelmail.org/';
  21.  
  22. $provider_name     = 'SquirrelMail';
  23.  
  24. $motd = "";
  25.  
  26. $squirrelmail_default_language = 'en_US';
  27. $default_charset       = 'utf-8';
  28. $lossy_encoding        = false;
  29.  
  30. $domain                 = 'myorg.net';
  31. $imapServerAddress      = 'localhost';
  32. $imapPort               = 143;
  33. $useSendmail            = false;
  34. $smtpServerAddress      = 'smtp.myisp.net';
  35. $smtpPort               = 25;
  36. $sendmail_path          = '/usr/sbin/sendmail';
  37. $sendmail_args          = '-i -t';
  38. $pop_before_smtp        = false;
  39. $pop_before_smtp_host   = '';
  40. $imap_server_type       = 'hmailserver';
  41. $invert_time            = false;
  42. $optional_delimiter     = '.';
  43. $encode_header_key      = '';
  44.  
  45. $default_folder_prefix          = 'INBOX.';
  46. $trash_folder                   = 'Trash';
  47. $sent_folder                    = 'Sent';
  48. $draft_folder                   = 'Drafts';
  49. $default_move_to_trash          = true;
  50. $default_move_to_sent           = true;
  51. $default_save_as_draft          = true;
  52. $show_prefix_option             = false;
  53. $list_special_folders_first     = true;
  54. $use_special_folder_color       = true;
  55. $auto_expunge                   = true;
  56. $default_sub_of_inbox           = false;
  57. $show_contain_subfolders_option = false;
  58. $default_unseen_notify          = 2;
  59. $default_unseen_type            = 1;
  60. $auto_create_special            = true;
  61. $delete_folder                  = true;
  62. $noselect_fix_enable            = false;
  63.  
  64. $data_dir                 = '/home/data/squirrelmail/lehtiranta.net/data/';
  65. $attachment_dir           = '/home/data/squirrelmail/lehtiranta.net/attach/';
  66. $dir_hash_level           = 0;
  67. $default_left_size        = '150';
  68. $force_username_lowercase = false;
  69. $default_use_priority     = true;
  70. $hide_sm_attributions     = false;
  71. $default_use_mdn          = true;
  72. $edit_identity            = true;
  73. $edit_name                = true;
  74. $hide_auth_header         = false;
  75. $allow_thread_sort        = false;
  76. $allow_server_sort        = false;
  77. $allow_charset_search     = true;
  78. $uid_support              = true;
  79.  
  80. $plugins[0] = 'view_as_html';
  81. $plugins[1] = 'spamcop';
  82. $plugins[2] = 'archive_mail';
  83.  
  84. $theme_css = '';
  85. $theme_default = 0;
  86. $theme[0]['PATH'] = SM_PATH . 'themes/default_theme.php';
  87. $theme[0]['NAME'] = 'Default';
  88. $theme[1]['PATH'] = SM_PATH . 'themes/plain_blue_theme.php';
  89. $theme[1]['NAME'] = 'Plain Blue';
  90. $theme[2]['PATH'] = SM_PATH . 'themes/sandstorm_theme.php';
  91. $theme[2]['NAME'] = 'Sand Storm';
  92. $theme[3]['PATH'] = SM_PATH . 'themes/deepocean_theme.php';
  93. $theme[3]['NAME'] = 'Deep Ocean';
  94. $theme[4]['PATH'] = SM_PATH . 'themes/slashdot_theme.php';
  95. $theme[4]['NAME'] = 'Slashdot';
  96. $theme[5]['PATH'] = SM_PATH . 'themes/purple_theme.php';
  97. $theme[5]['NAME'] = 'Purple';
  98. $theme[6]['PATH'] = SM_PATH . 'themes/forest_theme.php';
  99. $theme[6]['NAME'] = 'Forest';
  100. $theme[7]['PATH'] = SM_PATH . 'themes/ice_theme.php';
  101. $theme[7]['NAME'] = 'Ice';
  102. $theme[8]['PATH'] = SM_PATH . 'themes/seaspray_theme.php';
  103. $theme[8]['NAME'] = 'Sea Spray';
  104. $theme[9]['PATH'] = SM_PATH . 'themes/bluesteel_theme.php';
  105. $theme[9]['NAME'] = 'Blue Steel';
  106. $theme[10]['PATH'] = SM_PATH . 'themes/dark_grey_theme.php';
  107. $theme[10]['NAME'] = 'Dark Grey';
  108. $theme[11]['PATH'] = SM_PATH . 'themes/high_contrast_theme.php';
  109. $theme[11]['NAME'] = 'High Contrast';
  110. $theme[12]['PATH'] = SM_PATH . 'themes/black_bean_burrito_theme.php';
  111. $theme[12]['NAME'] = 'Black Bean Burrito';
  112. $theme[13]['PATH'] = SM_PATH . 'themes/servery_theme.php';
  113. $theme[13]['NAME'] = 'Servery';
  114. $theme[14]['PATH'] = SM_PATH . 'themes/maize_theme.php';
  115. $theme[14]['NAME'] = 'Maize';
  116. $theme[15]['PATH'] = SM_PATH . 'themes/bluesnews_theme.php';
  117. $theme[15]['NAME'] = 'BluesNews';
  118. $theme[16]['PATH'] = SM_PATH . 'themes/deepocean2_theme.php';
  119. $theme[16]['NAME'] = 'Deep Ocean 2';
  120. $theme[17]['PATH'] = SM_PATH . 'themes/blue_grey_theme.php';
  121. $theme[17]['NAME'] = 'Blue Grey';
  122. $theme[18]['PATH'] = SM_PATH . 'themes/dompie_theme.php';
  123. $theme[18]['NAME'] = 'Dompie';
  124. $theme[19]['PATH'] = SM_PATH . 'themes/methodical_theme.php';
  125. $theme[19]['NAME'] = 'Methodical';
  126. $theme[20]['PATH'] = SM_PATH . 'themes/greenhouse_effect.php';
  127. $theme[20]['NAME'] = 'Greenhouse Effect (Changes)';
  128. $theme[21]['PATH'] = SM_PATH . 'themes/in_the_pink.php';
  129. $theme[21]['NAME'] = 'In The Pink (Changes)';
  130. $theme[22]['PATH'] = SM_PATH . 'themes/kind_of_blue.php';
  131. $theme[22]['NAME'] = 'Kind of Blue (Changes)';
  132. $theme[23]['PATH'] = SM_PATH . 'themes/monostochastic.php';
  133. $theme[23]['NAME'] = 'Monostochastic (Changes)';
  134. $theme[24]['PATH'] = SM_PATH . 'themes/shades_of_grey.php';
  135. $theme[24]['NAME'] = 'Shades of Grey (Changes)';
  136. $theme[25]['PATH'] = SM_PATH . 'themes/spice_of_life.php';
  137. $theme[25]['NAME'] = 'Spice of Life (Changes)';
  138. $theme[26]['PATH'] = SM_PATH . 'themes/spice_of_life_lite.php';
  139. $theme[26]['NAME'] = 'Spice of Life - Lite (Changes)';
  140. $theme[27]['PATH'] = SM_PATH . 'themes/spice_of_life_dark.php';
  141. $theme[27]['NAME'] = 'Spice of Life - Dark (Changes)';
  142. $theme[28]['PATH'] = SM_PATH . 'themes/christmas.php';
  143. $theme[28]['NAME'] = 'Holiday - Christmas';
  144. $theme[29]['PATH'] = SM_PATH . 'themes/darkness.php';
  145. $theme[29]['NAME'] = 'Darkness (Changes)';
  146. $theme[30]['PATH'] = SM_PATH . 'themes/random.php';
  147. $theme[30]['NAME'] = 'Random (Changes every login)';
  148. $theme[31]['PATH'] = SM_PATH . 'themes/midnight.php';
  149. $theme[31]['NAME'] = 'Midnight';
  150. $theme[32]['PATH'] = SM_PATH . 'themes/alien_glow.php';
  151. $theme[32]['NAME'] = 'Alien Glow';
  152. $theme[33]['PATH'] = SM_PATH . 'themes/dark_green.php';
  153. $theme[33]['NAME'] = 'Dark Green';
  154. $theme[34]['PATH'] = SM_PATH . 'themes/penguin.php';
  155. $theme[34]['NAME'] = 'Penguin';
  156. $theme[35]['PATH'] = SM_PATH . 'themes/minimal_bw.php';
  157. $theme[35]['NAME'] = 'Minimal BW';
  158. $theme[36]['PATH'] = SM_PATH . 'themes/redmond.php';
  159. $theme[36]['NAME'] = 'Redmond';
  160. $theme[37]['PATH'] = SM_PATH . 'themes/netstyle_theme.php';
  161. $theme[37]['NAME'] = 'Net Style';
  162. $theme[38]['PATH'] = SM_PATH . 'themes/silver_steel_theme.php';
  163. $theme[38]['NAME'] = 'Silver Steel';
  164. $theme[39]['PATH'] = SM_PATH . 'themes/simple_green_theme.php';
  165. $theme[39]['NAME'] = 'Simple Green';
  166. $theme[40]['PATH'] = SM_PATH . 'themes/wood_theme.php';
  167. $theme[40]['NAME'] = 'Wood';
  168. $theme[41]['PATH'] = SM_PATH . 'themes/bluesome.php';
  169. $theme[41]['NAME'] = 'Bluesome';
  170. $theme[42]['PATH'] = SM_PATH . 'themes/simple_green2.php';
  171. $theme[42]['NAME'] = 'Simple Green 2';
  172. $theme[43]['PATH'] = SM_PATH . 'themes/simple_purple.php';
  173. $theme[43]['NAME'] = 'Simple Purple';
  174. $theme[44]['PATH'] = SM_PATH . 'themes/autumn.php';
  175. $theme[44]['NAME'] = 'Autumn';
  176. $theme[45]['PATH'] = SM_PATH . 'themes/autumn2.php';
  177. $theme[45]['NAME'] = 'Autumn 2';
  178. $theme[46]['PATH'] = SM_PATH . 'themes/blue_on_blue.php';
  179. $theme[46]['NAME'] = 'Blue on Blue';
  180. $theme[47]['PATH'] = SM_PATH . 'themes/classic_blue.php';
  181. $theme[47]['NAME'] = 'Classic Blue';
  182. $theme[48]['PATH'] = SM_PATH . 'themes/classic_blue2.php';
  183. $theme[48]['NAME'] = 'Classic Blue 2';
  184. $theme[49]['PATH'] = SM_PATH . 'themes/powder_blue.php';
  185. $theme[49]['NAME'] = 'Powder Blue';
  186. $theme[50]['PATH'] = SM_PATH . 'themes/techno_blue.php';
  187. $theme[50]['NAME'] = 'Techno Blue';
  188. $theme[51]['PATH'] = SM_PATH . 'themes/turquoise.php';
  189. $theme[51]['NAME'] = 'Turquoise';
  190.  
  191. $default_use_javascript_addr_book = false;
  192. $abook_global_file = '';
  193. $abook_global_file_writeable = false;
  194. $abook_global_file_listing = true;
  195. $abook_file_line_length = 2048;
  196.  
  197. $addrbook_dsn = '';
  198. $addrbook_table = 'address';
  199.  
  200. $prefs_dsn = '';
  201. $prefs_table = 'userprefs';
  202. $prefs_user_field = 'user';
  203. $prefs_key_field = 'prefkey';
  204. $prefs_val_field = 'prefval';
  205. $addrbook_global_dsn = '';
  206. $addrbook_global_table = 'global_abook';
  207. $addrbook_global_writeable = false;
  208. $addrbook_global_listing = false;
  209.  
  210. $no_list_for_subscribe = false;
  211. $smtp_auth_mech = 'none';
  212. $imap_auth_mech = 'login';
  213. $smtp_sitewide_user = '';
  214. $smtp_sitewide_pass = '';
  215. $use_imap_tls = false;
  216. $use_smtp_tls = false;
  217. $session_name = 'SQMSESSID';
  218. $only_secure_cookies     = true;
  219. $disable_security_tokens = false;
  220. $check_referrer          = '';
  221. $browser_rendering_mode  = 'quirks';
  222.  
  223. $config_location_base    = '';
  224.  
  225. @include SM_PATH . 'config/config_local.php';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement