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