Source for file init.php

Documentation is available at init.php

  1. <?php
  2. /**
  3. * init.php -- initialisation file
  4. *
  5. * File should be loaded in every file in src/ or plugins that occupate an entire frame
  6. *
  7. * @copyright 2006-2020 The SquirrelMail Project Team
  8. * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  9. * @version $Id: init.php 14845 2020年01月07日 08:09:34Z pdontthink $
  10. * @package squirrelmail
  11. */
  12. /**
  13. * This is a development version so in order to track programmer mistakes we
  14. * set the error reporting to E_ALL
  15. FIXME: disabling this for now, because we now have $sm_debug_mode, but the problem with that is that we don't know what it will be until we have loaded the config file, a good 175 lines below after several important files have been included, etc. For now, we'll trust that developers have turned on E_ALL in php.ini anyway, but this can be uncommented if not.
  16. */
  17. //error_reporting(E_ALL);
  18. /**
  19. * Make sure we have a page name
  20. *
  21. */
  22. if ( !defined ('PAGE_NAME') ) define ('PAGE_NAME', NULL);
  23. /**
  24. * If register_globals are on, unregister globals.
  25. * Second test covers boolean set as string (php_value register_globals off).
  26. */
  27. if ((bool) ini_get ('register_globals') &&
  28. strtolower (ini_get ('register_globals'))!='off') {
  29. /**
  30. * Remove all globals that are not reserved by PHP
  31. * 'value' and 'key' are used by foreach. Don't unset them inside foreach.
  32. */
  33. foreach ($GLOBALS as $key => $value) {
  34. switch($key) {
  35. case 'HTTP_POST_VARS':
  36. case '_POST':
  37. case 'HTTP_GET_VARS':
  38. case '_GET':
  39. case 'HTTP_COOKIE_VARS':
  40. case '_COOKIE':
  41. case 'HTTP_SERVER_VARS':
  42. case '_SERVER':
  43. case 'HTTP_ENV_VARS':
  44. case '_ENV':
  45. case 'HTTP_POST_FILES':
  46. case '_FILES':
  47. case '_REQUEST':
  48. case 'HTTP_SESSION_VARS':
  49. case '_SESSION':
  50. case 'GLOBALS':
  51. case 'key':
  52. case 'value':
  53. break;
  54. default:
  55. unset($GLOBALS[$key]);
  56. }
  57. }
  58. // Unset variables used in foreach
  59. unset($GLOBALS['key']);
  60. unset($GLOBALS['value']);
  61. }
  62. /**
  63. * Used as a dummy value, e.g., for passing as an empty
  64. * hook argument (where the value is passed by reference,
  65. * and therefore NULL itself is not acceptable).
  66. */
  67. global $null;
  68. $null = NULL;
  69. /**
  70. * The global $server_os variable will be "windows" if
  71. * we are working in a Windows environment or "*nix"
  72. * otherwise.
  73. */
  74. global $server_os;
  75. if (DIRECTORY_SEPARATOR == '\\') $server_os = 'windows'; else $server_os = '*nix';
  76. /**
  77. * [#1518885] session.use_cookies = off breaks SquirrelMail
  78. *
  79. * When session cookies are not used, all http redirects, meta refreshes,
  80. * src/download.php and javascript URLs are broken. Setting must be set
  81. * before session is started.
  82. */
  83. if (!(bool)ini_get ('session.use_cookies') ||
  84. ini_get ('session.use_cookies') == 'off') {
  85. ini_set ('session.use_cookies','1');
  86. }
  87. /**
  88. * Initialize seed of random number generator.
  89. * We use a number of things to randomize input: current time in ms,
  90. * info about the remote client, info about the current process, the
  91. * randomness of uniqid and stat of the current file.
  92. *
  93. * We seed this here only once per init, not only to save cycles
  94. * but also to make the result of mt_rand more random (it now also
  95. * depends on the number of times mt_rand was called before in this
  96. * execution.
  97. */
  98. $seed = microtime () . $_SERVER['REMOTE_PORT'] . $_SERVER['REMOTE_ADDR'] . getmypid ();
  99. if (function_exists ('getrusage')) {
  100. /* Avoid warnings with Win32 */
  101. $dat = @getrusage ();
  102. if (isset($dat) && is_array ($dat)) { $seed .= implode ('', $dat); }
  103. }
  104. if(!empty($_SERVER['UNIQUE_ID'])) {
  105. $seed .= $_SERVER['UNIQUE_ID'];
  106. }
  107. $seed .= uniqid (mt_rand (),TRUE);
  108. $seed .= implode ('', stat ( __FILE__));
  109. // mt_srand() uses an integer to seed, so we need to distill our
  110. // very large seed to something useful (without taking a sub-string,
  111. // the integer conversion of such a large number is always 0 on
  112. // many systems, but strangely, 9 hex numbers - even if larger
  113. // than a signed 32 bit integer - seem to be an acceptable "integer"
  114. // seed (perhaps it is used as unsigned?)...
  115. // we may want to revisit this and always force it to be less than
  116. // 2,147,483,647
  117. //
  118. $seed = hexdec (substr (md5 ($seed), 0, 9));
  119. // PHP 4.2 and up don't require seeding, but their used seed algorithm
  120. // is of questionable quality, so we keep doing it ourselves. */
  121. mt_srand ($seed);
  122. /**
  123. * calculate SM_PATH and calculate the base_uri
  124. * assumptions made: init.php is only called from plugins or from the src dir.
  125. * files in the plugin directory may not be part of a subdirectory called "src"
  126. *
  127. */
  128. if (isset($_SERVER['SCRIPT_NAME'])) {
  129. $a = explode ('/', $_SERVER['SCRIPT_NAME']);
  130. } elseif (isset($HTTP_SERVER_VARS['SCRIPT_NAME'])) {
  131. $a = explode ('/', $HTTP_SERVER_VARS['SCRIPT_NAME']);
  132. } else {
  133. $error = 'Unable to detect script environment. Please test your PHP '
  134. . 'settings and send your PHP core configuration, $_SERVER and '
  135. . '$HTTP_SERVER_VARS contents to the SquirrelMail developers.';
  136. die($error);
  137. }
  138. $sSM_PATH = '';
  139. for($i = count ($a) -2; $i > -1; --$i) {
  140. $sSM_PATH .= '../';
  141. if ($a[$i] === 'src' || $a[$i] === 'plugins') {
  142. break;
  143. }
  144. }
  145. $base_uri = implode ('/', array_slice ($a, 0, $i)). '/';
  146. define ('SM_PATH',$sSM_PATH);
  147. define ('SM_BASE_URI', $base_uri);
  148. /**
  149. * global var $bInit is used to check if initialisation took place.
  150. * At this moment it's a workarounf for the include of addrbook_search_html
  151. * inside compose.php. If we found a better way then remove this. Do only use
  152. * this var if you know for sure a page can be called stand alone and be included
  153. * in another file.
  154. */
  155. $bInit = true;
  156. /**
  157. * This theme as a failsafe if no themes were found, or if we error
  158. * out before anything could be initialised.
  159. */
  160. $color = array();
  161. $color[0] = '#DCDCDC'; /* light gray TitleBar */
  162. $color[1] = '#800000'; /* red */
  163. $color[2] = '#CC0000'; /* light red Warning/Error Messages */
  164. $color[3] = '#A0B8C8'; /* green-blue Left Bar Background */
  165. $color[4] = '#FFFFFF'; /* white Normal Background */
  166. $color[5] = '#FFFFCC'; /* light yellow Table Headers */
  167. $color[6] = '#000000'; /* black Text on left bar */
  168. $color[7] = '#0000CC'; /* blue Links */
  169. $color[8] = '#000000'; /* black Normal text */
  170. $color[9] = '#ABABAB'; /* mid-gray Darker version of #0 */
  171. $color[10] = '#666666'; /* dark gray Darker version of #9 */
  172. $color[11] = '#770000'; /* dark red Special Folders color */
  173. $color[12] = '#EDEDED';
  174. $color[13] = '#800000'; /* (dark red) Color for quoted text -- > 1 quote */
  175. $color[14] = '#ff0000'; /* (red) Color for quoted text -- >> 2 or more */
  176. $color[15] = '#002266'; /* (dark blue) Unselectable folders */
  177. $color[16] = '#ff9933'; /* (orange) Highlight color */
  178. require(SM_PATH . 'include/constants.php');
  179. require(SM_PATH . 'functions/global.php');
  180. require(SM_PATH . 'functions/strings.php');
  181. require(SM_PATH . 'functions/arrays.php');
  182. require(SM_PATH . 'functions/files.php');
  183. /* load default configuration */
  184. require(SM_PATH . 'config/config_default.php');
  185. /* reset arrays in default configuration */
  186. $ldap_server = array();
  187. $plugins = array();
  188. $fontsets = array();
  189. $aTemplateSet = array();
  190. $aTemplateSet[0]['ID'] = 'default';
  191. $aTemplateSet[0]['NAME'] = 'Default';
  192. /* load site configuration */
  193. require(SM_PATH . 'config/config.php');
  194. /* load local configuration overrides */
  195. if (file_exists (SM_PATH . 'config/config_local.php')) {
  196. require(SM_PATH . 'config/config_local.php');
  197. }
  198. /**
  199. * Set PHP error reporting level based on the SquirrelMail debug mode
  200. * E_STRICT = 2048
  201. * E_DEPRECATED = 8192
  202. */
  203. $error_level = 0;
  204. if ($sm_debug_mode & SM_DEBUG_MODE_SIMPLE )
  205. $error_level |= E_ERROR;
  206. if ($sm_debug_mode & SM_DEBUG_MODE_MODERATE
  207. || $sm_debug_mode & SM_DEBUG_MODE_ADVANCED )
  208. $error_level = ($error_level | E_ALL) & ~2048 & ~8192;
  209. if ($sm_debug_mode & SM_DEBUG_MODE_STRICT )
  210. $error_level |= 2048 | 8192;
  211. error_reporting ($error_level);
  212. /**
  213. * Detect SSL connections
  214. */
  215. $is_secure_connection = is_ssl_secured_connection ();
  216. require(SM_PATH . 'functions/plugin.php');
  217. require(SM_PATH . 'include/languages.php');
  218. require(SM_PATH . 'class/template/Template.class.php');
  219. require(SM_PATH . 'class/error.class.php');
  220. /**
  221. * If magic_quotes_runtime is on, SquirrelMail breaks in new and creative ways.
  222. * Force magic_quotes_runtime off.
  223. * [email protected] - I put it here in the hopes that all SM code includes this.
  224. * If there's a better place, please let me know.
  225. */
  226. ini_set ('magic_quotes_runtime','0');
  227. /* if running with magic_quotes_gpc then strip the slashes
  228. from POST and GET global arrays */
  229. if (function_exists ('get_magic_quotes_gpc') && @get_magic_quotes_gpc ()) {
  230. sqstripslashes ($_GET);
  231. sqstripslashes ($_POST);
  232. }
  233. /**
  234. * Strip any tags added to the url from PHP_SELF.
  235. * This fixes hand crafted url XXS expoits for any
  236. * page that uses PHP_SELF as the FORM action
  237. * Update: strip_tags() won't catch something like
  238. * src/right_main.php?sort=0&startMessage=1&mailbox=INBOX&xxx="><script>window.open("http://example.com")</script>
  239. * or
  240. * contrib/decrypt_headers.php/%22%20onmouseover=%22alert(%27hello%20world%27)%22%3E
  241. * because it doesn't bother with broken tags.
  242. * sm_encode_html_special_chars() is the preferred method.
  243. * QUERY_STRING also needs the same treatment since it is
  244. * used in php_self().
  245. * Update again: the encoding of ampersands that occurs
  246. * using sm_encode_html_special_chars() corrupts the query strings
  247. * in normal URIs, so we have to let those through.
  248. FIXME: will the de-sanitizing of ampersands create any security/XSS problems?
  249. */
  250. if (isset($_SERVER['REQUEST_URI']))
  251. $_SERVER['REQUEST_URI'] = str_replace ('&amp;', '&', sm_encode_html_special_chars ($_SERVER['REQUEST_URI']));
  252. if (isset($_SERVER['PHP_SELF']))
  253. $_SERVER['PHP_SELF'] = str_replace ('&amp;', '&', sm_encode_html_special_chars ($_SERVER['PHP_SELF']));
  254. if (isset($_SERVER['QUERY_STRING']))
  255. $_SERVER['QUERY_STRING'] = str_replace ('&amp;', '&', sm_encode_html_special_chars ($_SERVER['QUERY_STRING']));
  256. $PHP_SELF = php_self ();
  257. /**
  258. * Initialize the session
  259. */
  260. /** set the name of the session cookie */
  261. if (!isset($session_name) || !$session_name) {
  262. $session_name = 'SQMSESSID';
  263. }
  264. /**
  265. * When session.auto_start is On we want to destroy/close the session
  266. */
  267. $sSessionAutostartName = session_name ();
  268. $sSessionAutostartID = session_id ();
  269. if (!empty($sSessionAutostartID) && $sSessionAutostartName !== $session_name) {
  270. $sCookiePath = ini_get ('session.cookie_path');
  271. $sCookieDomain = ini_get ('session.cookie_domain');
  272. // reset the cookie
  273. sqsetcookie ($sSessionAutostartName,'',1,$sCookiePath,$sCookieDomain);
  274. }
  275. /**
  276. * includes from classes stored in the session
  277. */
  278. require(SM_PATH . 'class/mime.class.php');
  279. ini_set ('session.name' , $session_name);
  280. /**
  281. * When on login page, have to reset the user session, making
  282. * sure to save session restore data first
  283. */
  284. if (PAGE_NAME == 'login') {
  285. if (!sqGetGlobalVar('session_expired_post', $sep, SQ_SESSION ))
  286. $sep = '';
  287. if (!sqGetGlobalVar('session_expired_location', $sel, SQ_SESSION ))
  288. $sel = '';
  289. /**
  290. * in some rare instances, the session seems to stick
  291. * around even after destroying it (!!), so if it does,
  292. * we'll manually flatten the $_SESSION data
  293. */
  294. if (!empty($_SESSION))
  295. $_SESSION = array();
  296. /**
  297. * Allow administrators to define custom session handlers
  298. * for SquirrelMail without needing to change anything in
  299. * php.ini (application-level).
  300. *
  301. * In config_local.php, admin needs to put:
  302. *
  303. * $custom_session_handlers = array(
  304. * 'my_open_handler',
  305. * 'my_close_handler',
  306. * 'my_read_handler',
  307. * 'my_write_handler',
  308. * 'my_destroy_handler',
  309. * 'my_gc_handler',
  310. * );
  311. * session_module_name('user');
  312. * session_set_save_handler(
  313. * $custom_session_handlers[0],
  314. * $custom_session_handlers[1],
  315. * $custom_session_handlers[2],
  316. * $custom_session_handlers[3],
  317. * $custom_session_handlers[4],
  318. * $custom_session_handlers[5]
  319. * );
  320. *
  321. * We need to replicate that code once here because PHP has
  322. * long had a bug that resets the session handler mechanism
  323. * when the session data is also destroyed. Because of this
  324. * bug, even administrators who define custom session handlers
  325. * via a PHP pre-load defined in php.ini (auto_prepend_file)
  326. * will still need to define the $custom_session_handlers array
  327. * in config_local.php.
  328. */
  329. global $custom_session_handlers;
  330. if (!empty($custom_session_handlers)) {
  331. $open = $custom_session_handlers[0];
  332. $close = $custom_session_handlers[1];
  333. $read = $custom_session_handlers[2];
  334. $write = $custom_session_handlers[3];
  335. $destroy = $custom_session_handlers[4];
  336. $gc = $custom_session_handlers[5];
  337. session_set_save_handler ($open, $close, $read, $write, $destroy, $gc);
  338. }
  339. // put session restore data back into session if necessary
  340. if (!empty($sel)) {
  341. sqsession_register ($sel, 'session_expired_location');
  342. if (!empty($sep))
  343. sqsession_register ($sep, 'session_expired_post');
  344. }
  345. }
  346. /**
  347. * SquirrelMail internal version number -- DO NOT CHANGE
  348. * $sm_internal_version = array (release, major, minor)
  349. */
  350. $SQM_INTERNAL_VERSION = explode ('.', SM_VERSION , 3);
  351. $SQM_INTERNAL_VERSION[2] = intval ($SQM_INTERNAL_VERSION[2]);
  352. /* load prefs system; even when user not logged in, should be OK to do this here */
  353. require(SM_PATH . 'functions/prefs.php');
  354. /* if plugins are disabled only for one user and
  355. * the current user is NOT that user, turn them
  356. * back on
  357. */
  358. sqgetGlobalVar ('username', $username, SQ_SESSION );
  359. if ($disable_plugins && !empty($disable_plugins_user)
  360. && $username != $disable_plugins_user) {
  361. $disable_plugins = false;
  362. }
  363. /* remove all plugins if they are disabled */
  364. if ($disable_plugins) {
  365. $plugins = array();
  366. }
  367. /**
  368. * Include Compatibility plugin if available.
  369. */
  370. if (!$disable_plugins && file_exists (SM_PATH . 'plugins/compatibility/functions.php'))
  371. include_once(SM_PATH . 'plugins/compatibility/functions.php');
  372. /**
  373. * MAIN PLUGIN LOADING CODE HERE
  374. * On init, we no longer need to load all plugin setup files.
  375. * Now, we load the statically generated hook registrations here
  376. * and let the hook calls include only the plugins needed.
  377. */
  378. $squirrelmail_plugin_hooks = array();
  379. if (!$disable_plugins && file_exists (SM_PATH . 'config/plugin_hooks.php')) {
  380. //FIXME: if we keep the plugin hooks array static like this, it seems like we should also keep the template files list in a static file too (when a new user session is started or the template set is changed, the code will dynamically iterate through the directory heirarchy of the template directory and catalog all the template files therein (and store the "catalog" in PHP session) -- instead, we could do that once at config-time and keep that static so SM can just include the file just like the line below)
  381. require(SM_PATH . 'config/plugin_hooks.php');
  382. }
  383. /**
  384. * Plugin authors note that the "config_override" hook used to be
  385. * executed here, but please adapt your plugin to use this "prefs_backend"
  386. * hook instead, making sure that it does NOT return anything, since
  387. * doing so will interfere with proper prefs system functionality.
  388. * Of course, otherwise, this hook may be used to do any configuration
  389. * overrides as needed, as well as set up a custom preferences backend.
  390. */
  391. $prefs_backend = do_hook ('prefs_backend', $null);
  392. if (isset($prefs_backend) && !empty($prefs_backend) && file_exists (SM_PATH . $prefs_backend)) {
  393. require(SM_PATH . $prefs_backend);
  394. } elseif (isset($prefs_dsn) && !empty($prefs_dsn)) {
  395. require(SM_PATH . 'functions/db_prefs.php');
  396. } else {
  397. require(SM_PATH . 'functions/file_prefs.php');
  398. }
  399. /**
  400. * DISABLED.
  401. * Remove globalized session data in rg=on setups
  402. *
  403. * Code can be utilized when session is started, but data is not loaded.
  404. * We have already loaded configuration and other important vars. Can't
  405. * clean session globals here, beside, the cleanout of globals at the
  406. * top of this file will have removed anything this code would find anyway.
  407. if ((bool) @ini_get('register_globals') &&
  408. strtolower(ini_get('register_globals'))!='off') {
  409. foreach ($_SESSION as $key => $value) {
  410. unset($GLOBALS[$key]);
  411. }
  412. }
  413. */
  414. /**
  415. * Retrieve the language cookie
  416. */
  417. if (! sqgetGlobalVar ('squirrelmail_language',$squirrelmail_language,SQ_COOKIE )) {
  418. $squirrelmail_language = '';
  419. }
  420. /**
  421. * In some cases, buffering all output allows more complex functionality,
  422. * especially for plugins that want to add headers on hooks that are beyond
  423. * the point of output having been sent to the browser otherwise.
  424. *
  425. * Note that we don't turn this on any earlier since we want to allow plugins
  426. * to turn it on themselves via a configuration override on the prefs_backend
  427. * hook.
  428. *
  429. */
  430. if ($buffer_output) ob_start (!empty($buffered_output_handler) ? $buffered_output_handler : NULL);
  431. /**
  432. * Do something special for some pages. This is based on the PAGE_NAME constant
  433. * set at the top of every page.
  434. */
  435. $set_up_langage_after_template_setup = FALSE;
  436. switch (PAGE_NAME ) {
  437. case 'style':
  438. // need to get the right template set up
  439. //
  440. sqGetGlobalVar('templateid', $templateid, SQ_GET );
  441. // sanitize just in case...
  442. //
  443. $templateid = preg_replace ('/(\.\.\/){1,}/', '', $templateid);
  444. // make sure given template actually is available
  445. //
  446. $found_templateset = false;
  447. for ($i = 0; $i < count ($aTemplateSet); ++$i) {
  448. if ($aTemplateSet[$i]['ID'] == $templateid) {
  449. $found_templateset = true;
  450. break;
  451. }
  452. }
  453. // FIXME: do we need/want to check here for actual (physical) presence of template sets?
  454. // selected template not available, fall back to default template
  455. //
  456. if (!$found_templateset) {
  457. $sTemplateID = Template ::get_default_template_set ();
  458. } else {
  459. $sTemplateID = $templateid;
  460. }
  461. break;
  462. case 'mailto':
  463. // nothing to do
  464. break;
  465. case 'redirect':
  466. require(SM_PATH . 'functions/auth.php');
  467. //nobreak;
  468. case 'login':
  469. require(SM_PATH . 'functions/display_messages.php' );
  470. require(SM_PATH . 'functions/page_header.php');
  471. require(SM_PATH . 'functions/html.php');
  472. // reset template file cache
  473. //
  474. $sTemplateID = Template ::get_default_template_set ();
  475. Template ::cache_template_file_hierarchy ($sTemplateID, TRUE);
  476. /**
  477. * Make sure icon variables are setup for the login page.
  478. */
  479. $icon_theme = $icon_themes[$icon_theme_def]['PATH'];
  480. /*
  481. * NOTE: The $icon_theme_path var should contain the path to the icon
  482. * theme to use. If the admin has disabled icons, or the user has
  483. * set the icon theme to "None," no icons will be used.
  484. */
  485. $icon_theme_path = (!$use_icons || $icon_theme=='none') ? NULL : ($icon_theme == 'template' ? SM_PATH . Template ::calculate_template_images_directory ($sTemplateID) : $icon_theme);
  486. break;
  487. default:
  488. require(SM_PATH . 'functions/display_messages.php' );
  489. require(SM_PATH . 'functions/page_header.php');
  490. require(SM_PATH . 'functions/html.php');
  491. /**
  492. * Check if we are logged in and does optional referrer check
  493. */
  494. require(SM_PATH . 'functions/auth.php');
  495. global $check_referrer, $domain;
  496. if (!sqgetGlobalVar ('HTTP_REFERER', $referrer, SQ_SERVER )) $referrer = '';
  497. if ($check_referrer == '###DOMAIN###') $check_referrer = $domain;
  498. if (!empty($check_referrer)) {
  499. $ssl_check_referrer = 'https://' . $check_referrer;
  500. $check_referrer = 'http://' . $check_referrer;
  501. }
  502. if (!sqsession_is_registered ('user_is_logged_in')
  503. || ($check_referrer && !empty($referrer)
  504. && strpos (strtolower ($referrer), strtolower ($check_referrer)) !== 0
  505. && strpos (strtolower ($referrer), strtolower ($ssl_check_referrer)) !== 0)) {
  506. // use $message to indicate what logout text the user
  507. // will see... if 0, typical "You must be logged in"
  508. // if 1, information that the user session was saved
  509. // and will be resumed after (re)login, if 2, there
  510. // seems to have been a XSS or phishing attack (bad
  511. // referrer)
  512. //
  513. $message = 0;
  514. // First we store some information in the new session to prevent
  515. // information-loss.
  516. //
  517. $session_expired_post = $_POST;
  518. $session_expired_location = PAGE_NAME ;
  519. if (!sqsession_is_registered ('session_expired_post')) {
  520. sqsession_register ($session_expired_post,'session_expired_post');
  521. }
  522. if (!sqsession_is_registered ('session_expired_location')) {
  523. sqsession_register ($session_expired_location,'session_expired_location');
  524. if ($session_expired_location == 'compose')
  525. $message = 1;
  526. }
  527. // was bad referrer the reason we were rejected?
  528. //
  529. if (sqsession_is_registered ('user_is_logged_in')
  530. && $check_referrer && !empty($referrer))
  531. $message = 2;
  532. // signout page will deal with users who aren't logged
  533. // in on its own; don't show error here
  534. //
  535. if ( PAGE_NAME == 'signout' ) {
  536. return;
  537. }
  538. /**
  539. * Initialize the template object (logout_error uses it)
  540. */
  541. /*
  542. * $sTemplateID is not initialized when a user is not logged in, so we
  543. * will use the config file defaults here. If the neccesary variables
  544. * are not set, force a default value.
  545. */
  546. if (PAGE_NAME == 'squirrelmail_rpc') {
  547. $sTemplateID = Template ::get_rpc_template_set ();
  548. } else {
  549. $sTemplateID = Template ::get_default_template_set ();
  550. }
  551. $oTemplate = Template ::construct_template ($sTemplateID);
  552. set_up_language ($squirrelmail_language, true);
  553. if (!$message)
  554. logout_error ( _ ("You must be logged in to access this page.") );
  555. else if ($message == 1)
  556. logout_error ( _ ("Your session has expired, but will be resumed after logging in again.") );
  557. else if ($message == 2)
  558. logout_error ( _ ("The current page request appears to have originated from an unrecognized source.") );
  559. exit;
  560. }
  561. sqgetGlobalVar ('authz',$authz,SQ_SESSION );
  562. /**
  563. * Setting the prefs backend
  564. */
  565. sqgetGlobalVar ('prefs_cache', $prefs_cache, SQ_SESSION );
  566. sqgetGlobalVar ('prefs_are_cached', $prefs_are_cached, SQ_SESSION );
  567. if ( !sqsession_is_registered ('prefs_are_cached') ||
  568. !isset( $prefs_cache) ||
  569. !is_array ( $prefs_cache)) {
  570. $prefs_are_cached = false;
  571. $prefs_cache = false; //array();
  572. }
  573. /**
  574. * initializing user settings
  575. */
  576. require(SM_PATH . 'include/load_prefs.php');
  577. /**
  578. * We'll need this to later have a noframes version
  579. *
  580. * Check if the user has a language preference, but no cookie.
  581. * Send him a cookie with his language preference, if there is
  582. * such discrepancy.
  583. */
  584. $my_language = getPref ($data_dir, $username, 'language');
  585. if ($my_language != $squirrelmail_language) {
  586. sqsetcookie ('squirrelmail_language', $my_language, time ()+2592000, $base_uri);
  587. }
  588. $set_up_langage_after_template_setup = TRUE;
  589. $timeZone = getPref ($data_dir, $username, 'timezone');
  590. global $server_timezone, $server_timezone_offset, $server_timezone_offset_seconds;
  591. list($server_timezone, $server_timezone_offset, $server_timezone_offset_seconds)
  592. = explode ('::', date ('T::O::Z'));
  593. /* Check to see if we are allowed to set the TZ environment variable.
  594. * We are able to do this if ...
  595. * safe_mode is disabled OR
  596. * safe_mode_allowed_env_vars is empty (you are allowed to set any) OR
  597. * safe_mode_allowed_env_vars contains TZ
  598. */
  599. $tzChangeAllowed = (!ini_get ('safe_mode')) ||
  600. !strcmp (ini_get ('safe_mode_allowed_env_vars'),'') ||
  601. preg_match ('/^([\w_]+,)*TZ/', ini_get ('safe_mode_allowed_env_vars'));
  602. if ( $timeZone != SMPREF_NONE && ($timeZone != "")
  603. && $tzChangeAllowed ) {
  604. // get time zone key, if strict or custom strict timezones are used
  605. if (isset($time_zone_type) &&
  606. ($time_zone_type == 1 || $time_zone_type == 3)) {
  607. /* load time zone functions */
  608. require(SM_PATH . 'include/timezones.php');
  609. $realTimeZone = sq_get_tz_key ($timeZone);
  610. } else {
  611. $realTimeZone = $timeZone;
  612. }
  613. // set time zone
  614. if ($realTimeZone) {
  615. putenv ("TZ=".$realTimeZone);
  616. }
  617. }
  618. /**
  619. * php 5.1.0 added time zone functions. Set time zone with them in order
  620. * to prevent E_STRICT notices and allow time zone modifications in safe_mode.
  621. */
  622. if (function_exists ('date_default_timezone_set')) {
  623. if ($timeZone != SMPREF_NONE && $timeZone != "") {
  624. } else {
  625. // interface runs on server's time zone. Remove php E_STRICT complains
  626. $default_timezone = @date_default_timezone_get ();
  627. date_default_timezone_set ($default_timezone);
  628. }
  629. }
  630. break;
  631. }
  632. /*
  633. * $sTemplateID is not initialized when a user is not logged in, so we
  634. * will use the config file defaults here. If the neccesary variables
  635. * are not set, force a default value.
  636. *
  637. * If the user is logged in, $sTemplateID will be set in load_prefs.php,
  638. * so we shouldn't change it here.
  639. */
  640. if (!isset($sTemplateID)) {
  641. if (PAGE_NAME == 'squirrelmail_rpc') {
  642. $sTemplateID = Template ::get_rpc_template_set ();
  643. } else {
  644. $sTemplateID = Template ::get_default_template_set ();
  645. }
  646. $icon_theme_path = !$use_icons ? NULL : Template ::calculate_template_images_directory ($sTemplateID);
  647. }
  648. // template object may have already been constructed in load_prefs.php
  649. //
  650. if (empty($oTemplate)) {
  651. $oTemplate = Template ::construct_template ($sTemplateID);
  652. }
  653. // We want some variables to always be available to the template
  654. //
  655. $oTemplate->assign('javascript_on',
  656. (sqGetGlobalVar('user_is_logged_in', $user_is_logged_in, SQ_SESSION )
  657. ? checkForJavascript () : 0));
  658. $oTemplate->assign('base_uri', sqm_baseuri ());
  659. $always_include = array('sTemplateID', 'icon_theme_path');
  660. foreach ($always_include as $var) {
  661. $oTemplate->assign($var, (isset($$var) ? $$var : NULL));
  662. }
  663. // A few output elements are used often, so just get them once here
  664. //
  665. $nbsp = $oTemplate->fetch('non_breaking_space.tpl');
  666. $br = $oTemplate->fetch('line_break.tpl');
  667. /**
  668. * Set up the language.
  669. *
  670. * This code block corresponds to the *default* block of the switch
  671. * statement above, but the language cannot be set up until after the
  672. * template is instantiated, so we set $set_up_langage_after_template_setup
  673. * above and do the linguistic stuff now.
  674. */
  675. if ($set_up_langage_after_template_setup) {
  676. $err=set_up_language (getPref ($data_dir, $username, 'language'));
  677. // Japanese translation used without mbstring support
  678. if ($err==2) {
  679. $sError = "<p>Your administrator needs to have PHP installed with the multibyte string extension enabled (using configure option --enable-mbstring).</p>\n"
  680. . "<p>This system has assumed that you accidently switched to Japanese and has reverted your language preference to English.</p>\n"
  681. . "<p>Please refresh this page in order to continue using your webmail.</p>\n";
  682. error_box ($sError);
  683. }
  684. }
  685. /**
  686. * Initialize our custom error handler object
  687. */
  688. $oErrorHandler = new ErrorHandler ($oTemplate,'error_message.tpl');
  689. /**
  690. * Activate custom error handling
  691. */
  692. if (version_compare (PHP_VERSION, "4.3.0", ">=")) {
  693. $oldErrorHandler = set_error_handler (array($oErrorHandler, 'SquirrelMailErrorhandler'));
  694. } else {
  695. $oldErrorHandler = set_error_handler ('SquirrelMailErrorhandler');
  696. }
  697. // ============================================================================
  698. // ================= End of Live Code, Beginning of Functions =================
  699. // ============================================================================
  700. /**
  701. * Javascript support detection function
  702. * @param boolean $reset recheck javascript support if set to true.
  703. * @return integer SMPREF_JS_ON or SMPREF_JS_OFF ({@see include/constants.php})
  704. * @since 1.5.1
  705. */
  706. function checkForJavascript ($reset = FALSE) {
  707. global $data_dir , $username, $javascript_on, $javascript_setting;
  708. if ( !$reset && sqGetGlobalVar('javascript_on', $javascript_on, SQ_SESSION ) )
  709. return $javascript_on;
  710. //FIXME: this isn't used anywhere else in this function; can we remove it? why is it here?
  711. $user_is_logged_in = FALSE;
  712. if ( $reset || !isset($javascript_setting) )
  713. $javascript_setting = getPref ($data_dir, $username, 'javascript_setting', SMPREF_JS_AUTODETECT );
  714. if ( !sqGetGlobalVar('new_js_autodetect_results', $js_autodetect_results) &&
  715. !sqGetGlobalVar('js_autodetect_results', $js_autodetect_results) )
  716. $js_autodetect_results = SMPREF_JS_OFF ;
  717. if ( $javascript_setting == SMPREF_JS_AUTODETECT )
  718. $javascript_on = $js_autodetect_results;
  719. else
  720. $javascript_on = $javascript_setting;
  721. sqsession_register ($javascript_on, 'javascript_on');
  722. return $javascript_on;
  723. }
  724. function sqm_baseuri () {
  725. global $base_uri;
  726. return $base_uri;
  727. }

Documentation generated on 2020年1月13日 04:22:50 +0100 by phpDocumentor 1.4.3

AltStyle によって変換されたページ (->オリジナル) /