Use checkForJavascript() instead of $javascript_on
[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
17 */
202bcbcc 18error_reporting(E_ALL);
19
20
6a2a6e44 21/**
22 * If register_globals are on, unregister globals.
a3b99374 23 * Second test covers boolean set as string (php_value register_globals off).
6a2a6e44 24 */
55dd9abf 25if ((bool) ini_get('register_globals') &&
a3b99374 26 strtolower(ini_get('register_globals'))!='off') {
6a2a6e44 27 /**
55dd9abf 28 * Remove all globals that are not reserved by PHP
29 * 'value' and 'key' are used by foreach. Don't unset them inside foreach.
6a2a6e44 30 */
55dd9abf 31 foreach ($GLOBALS as $key => $value) {
32 switch($key) {
33 case 'HTTP_POST_VARS':
34 case '_POST':
35 case 'HTTP_GET_VARS':
36 case '_GET':
37 case 'HTTP_COOKIE_VARS':
38 case '_COOKIE':
39 case 'HTTP_SERVER_VARS':
40 case '_SERVER':
41 case 'HTTP_ENV_VARS':
42 case '_ENV':
43 case 'HTTP_POST_FILES':
44 case '_FILES':
45 case '_REQUEST':
46 case 'HTTP_SESSION_VARS':
47 case '_SESSION':
48 case 'GLOBALS':
49 case 'key':
50 case 'value':
51 break;
52 case 'sInitLocation':
53 // FIXME: variable must be set only in src/login.php
54 break;
55 default:
56 unset($GLOBALS[$key]);
57 }
6a2a6e44 58 }
55dd9abf 59 // Unset variables used in foreach
60 unset($GLOBALS['key']);
61 unset($GLOBALS['value']);
6a2a6e44 62}
63
d849b570 64/**
65 * Used as a dummy value, e.g., for passing as an empty
66 * hook argument.
67 */
68global $null;
69$null = NULL;
70
71efd1ed 71/**
72 * [#1518885] session.use_cookies = off breaks SquirrelMail
73 *
74 * When session cookies are not used, all http redirects, meta refreshes,
75 * src/download.php and javascript URLs are broken. Setting must be set
76 * before session is started.
77 */
78if (!(bool)ini_get('session.use_cookies') ||
79 ini_get('session.use_cookies') == 'off') {
80 ini_set('session.use_cookies','1');
81}
6a2a6e44 82
202bcbcc 83/**
84 * calculate SM_PATH and calculate the base_uri
85 * assumptions made: init.php is only called from plugins or from the src dir.
86 * files in the plugin directory may not be part of a subdirectory called "src"
87 *
88 */
89if (isset($_SERVER['SCRIPT_NAME'])) {
90 $a = explode('/',$_SERVER['SCRIPT_NAME']);
91} elseif (isset($HTTP_SERVER_VARS['SCRIPT_NAME'])) {
b0829edf 92 $a = explode('/',$HTTP_SERVER_VARS['SCRIPT_NAME']);
93} else {
94 $error = 'Unable to detect script environment. '
95 .'Please test your PHP settings and send PHP core config, $_SERVER '
96 .'and $HTTP_SERVER_VARS to SquirrelMail developers.';
97 die($error);
202bcbcc 98}
99$sSM_PATH = '';
100for($i = count($a) -2;$i > -1; --$i) {
101 $sSM_PATH .= '../';
102 if ($a[$i] === 'src' || $a[$i] === 'plugins') {
103 break;
104 }
105}
106
107$base_uri = implode('/',array_slice($a,0,$i)). '/';
108
202bcbcc 109define('SM_PATH',$sSM_PATH);
6a2a6e44 110define('SM_BASE_URI', $base_uri);
202bcbcc 111/**
112 * global var $bInit is used to check if initialisation took place.
113 * At this moment it's a workarounf for the include of addrbook_search_html
114 * inside compose.php. If we found a better way then remove this. Do only use
115 * this var if you know for sure a page can be called stand alone and be included
116 * in another file.
117 */
118$bInit = true;
119
8e1e2794 120/**
121 * This theme as a failsafe if no themes were found, or if we error
122 * out before anything could be initialised.
123 */
124$color = array();
125$color[0] = '#DCDCDC'; /* light gray TitleBar */
126$color[1] = '#800000'; /* red */
127$color[2] = '#CC0000'; /* light red Warning/Error Messages */
128$color[3] = '#A0B8C8'; /* green-blue Left Bar Background */
129$color[4] = '#FFFFFF'; /* white Normal Background */
130$color[5] = '#FFFFCC'; /* light yellow Table Headers */
131$color[6] = '#000000'; /* black Text on left bar */
132$color[7] = '#0000CC'; /* blue Links */
133$color[8] = '#000000'; /* black Normal text */
134$color[9] = '#ABABAB'; /* mid-gray Darker version of #0 */
135$color[10] = '#666666'; /* dark gray Darker version of #9 */
136$color[11] = '#770000'; /* dark red Special Folders color */
137$color[12] = '#EDEDED';
138$color[13] = '#800000'; /* (dark red) Color for quoted text -- > 1 quote */
139$color[14] = '#ff0000'; /* (red) Color for quoted text -- >> 2 or more */
140$color[15] = '#002266'; /* (dark blue) Unselectable folders */
141$color[16] = '#ff9933'; /* (orange) Highlight color */
142
202bcbcc 143require(SM_PATH . 'functions/global.php');
918fcc1d 144require(SM_PATH . 'functions/arrays.php');
5e68a08e 145
146/* load default configuration */
147require(SM_PATH . 'config/config_default.php');
148/* reset arrays in default configuration */
149$ldap_server = array();
150$plugins = array();
151$fontsets = array();
5e68a08e 152$aTemplateSet = array();
28294310 153$aTemplateSet[0]['ID'] = 'default';
154$aTemplateSet[0]['NAME'] = 'Default';
01fd1d1a 155
5e68a08e 156/* load site configuration */
202bcbcc 157require(SM_PATH . 'config/config.php');
5e68a08e 158/* load local configuration overrides */
159if (file_exists(SM_PATH . 'config/config_local.php')) {
160 require(SM_PATH . 'config/config_local.php');
161}
162
202bcbcc 163require(SM_PATH . 'functions/plugin.php');
164require(SM_PATH . 'include/constants.php');
165require(SM_PATH . 'include/languages.php');
42b5e8aa 166require(SM_PATH . 'class/template/Template.class.php');
5ab684a5 167require(SM_PATH . 'class/error.class.php');
202bcbcc 168
169/**
170 * If magic_quotes_runtime is on, SquirrelMail breaks in new and creative ways.
171 * Force magic_quotes_runtime off.
172 * tassium@squirrelmail.org - I put it here in the hopes that all SM code includes this.
173 * If there's a better place, please let me know.
174 */
175ini_set('magic_quotes_runtime','0');
176
177
178/* if running with magic_quotes_gpc then strip the slashes
179 from POST and GET global arrays */
180if (get_magic_quotes_gpc()) {
181 sqstripslashes($_GET);
182 sqstripslashes($_POST);
183}
184
202bcbcc 185
186/* strip any tags added to the url from PHP_SELF.
187This fixes hand crafted url XXS expoits for any
188 page that uses PHP_SELF as the FORM action */
189$_SERVER['PHP_SELF'] = strip_tags($_SERVER['PHP_SELF']);
190
191$PHP_SELF = php_self();
192
193/**
194 * Initialize the session
195 */
196
e8c4e350 197/** set the name of the session cookie */
198if (!isset($session_name) || !$session_name) {
199 $session_name = 'SQMSESSID';
200}
201
202/**
203 * if session.auto_start is On then close the session
1d537493 204 */
205$sSessionAutostartName = session_name();
206if ((isset($sSessionAutostartName) || $sSessionAutostartName == '') &&
207 $sSessionAutostartName !== $session_name) {
208 $sCookiePath = ini_get('session.cookie_path');
209 $sCookieDomain = ini_get('session.cookie_domain');
e8c4e350 210 // reset the cookie
1d537493 211 setcookie($sSessionAutostartName,'',time() - 604800,$sCookiePath,$sCookieDomain);
e8c4e350 212 @session_destroy();
213 session_write_close();
1d537493 214}
e8c4e350 215
202bcbcc 216/**
217 * includes from classes stored in the session
218 */
219require(SM_PATH . 'class/mime.class.php');
220
202bcbcc 221ini_set('session.name' , $session_name);
222session_set_cookie_params (0, $base_uri);
223sqsession_is_active();
224
5aed95be 225/**
226 * SquirrelMail version number -- DO NOT CHANGE
227 */
228$version = '1.5.2 [CVS]';
229
230/**
231 * SquirrelMail internal version number -- DO NOT CHANGE
232 * $sm_internal_version = array (release, major, minor)
233 */
234$SQM_INTERNAL_VERSION = array(1,5,2);
235
93d67e0d 236
237/* if plugins are disabled only for one user and
238 * the current user is NOT that user, turn them
239 * back on
240 */
241sqgetGlobalVar('username',$username,SQ_SESSION);
242if ($disable_plugins && !empty($disable_plugins_user)
243 && $username != $disable_plugins_user) {
244 $disable_plugins = false;
245}
246
247/* remove all plugins if they are disabled */
248if ($disable_plugins) {
249 $plugins = array();
250}
251
252
5aed95be 253/**
254 * Include Compatibility plugin if available.
255 */
93d67e0d 256if (!$disable_plugins && file_exists(SM_PATH . 'plugins/compatibility/functions.php'))
5aed95be 257 include_once(SM_PATH . 'plugins/compatibility/functions.php');
258
259/**
260 * MAIN PLUGIN LOADING CODE HERE
261 * On init, we no longer need to load all plugin setup files.
262 * Now, we load the statically generated hook registrations here
263 * and let the hook calls include only the plugins needed.
264 */
265$squirrelmail_plugin_hooks = array();
93d67e0d 266if (!$disable_plugins && file_exists(SM_PATH . 'config/plugin_hooks.php')) {
5aed95be 267 require(SM_PATH . 'config/plugin_hooks.php');
268}
269
270/**
271 * allow plugins to override main configuration; hook is placed
272 * here to allow plugins to use session information to do their work
273 */
d849b570 274do_hook('config_override', $null);
5aed95be 275
202bcbcc 276/**
3464e1f4 277 * DISABLED.
202bcbcc 278 * Remove globalized session data in rg=on setups
3464e1f4 279 *
280 * Code can be utilized when session is started, but data is not loaded.
281 * We have already loaded configuration and other important vars. Can't
282 * clean session globals here.
283if ((bool) @ini_get('register_globals') &&
284 strtolower(ini_get('register_globals'))!='off') {
202bcbcc 285 foreach ($_SESSION as $key => $value) {
286 unset($GLOBALS[$key]);
287 }
288}
3464e1f4 289*/
6a2a6e44 290
826ddd72 291sqsession_register(SM_BASE_URI,'base_uri');
6a2a6e44 292
202bcbcc 293/**
294 * Retrieve the language cookie
295 */
296if (! sqgetGlobalVar('squirrelmail_language',$squirrelmail_language,SQ_COOKIE)) {
297 $squirrelmail_language = '';
298}
299
300
301/**
302 * @var $sInitlocation From where do we include.
303 */
304if (!isset($sInitLocation)) {
305 $sInitLocation=NULL;
306}
307
202bcbcc 308switch ($sInitLocation) {
c4e5f61f 309 case 'style':
c4e5f61f 310
2b26084f 311 // need to get the right template set up
28294310 312 //
313 sqGetGlobalVar('templateid', $templateid, SQ_GET);
c4e5f61f 314
2b26084f 315 // sanitize just in case...
28294310 316 //
317 $templateid = preg_replace('/(\.\.\/){1,}/', '', $templateid);
318
319 // make sure given template actually is available
320 //
28294310 321 $found_templateset = false;
322 for ($i = 0; $i < count($aTemplateSet); ++$i) {
323 if ($aTemplateSet[$i]['ID'] == $templateid) {
324 $found_templateset = true;
325 break;
326 }
327 }
c4e5f61f 328
be155e14 329// FIXME: do we need/want to check here for actual (physical) presence of template sets?
28294310 330 // selected template not available, fall back to default template
331 //
332 if (!$found_templateset) {
42b5e8aa 333 $sTemplateID = Template::get_default_template_set();
28294310 334 } else {
335 $sTemplateID = $templateid;
c4e5f61f 336 }
337
2b26084f 338 session_write_close();
339 sqsetcookieflush();
c4e5f61f 340 break;
341
202bcbcc 342 case 'redirect':
4d2f7565 343 /**
826ddd72 344 * directory hashing functions are needed for all setups in case
4d2f7565 345 * plugins use own pref files.
346 */
347 require(SM_PATH . 'functions/prefs.php');
2e616fa4 348 require(SM_PATH . 'functions/auth.php');
4d2f7565 349 /* hook loads custom prefs backend plugins */
d849b570 350 $prefs_backend = do_hook('prefs_backend', $null);
202bcbcc 351 if (isset($prefs_backend) && !empty($prefs_backend) && file_exists(SM_PATH . $prefs_backend)) {
352 require(SM_PATH . $prefs_backend);
353 } elseif (isset($prefs_dsn) && !empty($prefs_dsn)) {
354 require(SM_PATH . 'functions/db_prefs.php');
355 } else {
202bcbcc 356 require(SM_PATH . 'functions/file_prefs.php');
357 }
358 //nobreak;
359 case 'login':
360 require(SM_PATH . 'functions/display_messages.php' );
361 require(SM_PATH . 'functions/page_header.php');
362 require(SM_PATH . 'functions/html.php');
42b5e8aa 363
364 // reset template file cache
365 //
366 $sTemplateID = Template::get_default_template_set();
367 Template::cache_template_file_hierarchy(TRUE);
368
01fd1d1a 369 /**
370 * Make sure icon variables are setup for the login page.
371 */
372 $icon_theme = $icon_themes[$icon_theme_def]['PATH'];
373 /*
374 * NOTE: The $icon_theme_path var should contain the path to the icon
375 * theme to use. If the admin has disabled icons, or the user has
376 * set the icon theme to "None," no icons will be used.
377 */
378 $icon_theme_path = (!$use_icons || $icon_theme=='none') ? NULL : ($icon_theme == 'template' ? SM_PATH . Template::calculate_template_images_directory($sTemplateID) : $icon_theme);
379
1d537493 380 /**
381 * cleanup old cookies with a cookie path the same as the standard php.ini
382 * cookie path. All previous SquirrelMail version used the standard php.ini
383 * cookie path for storing the session name. That behaviour changed.
384 */
385 if ($sCookiePath !== SM_BASE_URI) {
386 /**
387 * do not delete the standard sessions with session.name is i.e. PHPSESSID
388 * because they probably belong to other php apps
389 */
390 if (ini_get('session.name') !== $sSessionAutostartName) {
391 sqsetcookie(ini_get('session.name'),'',0,$sCookiePath);
392 }
393 }
202bcbcc 394 break;
395 default:
396 require(SM_PATH . 'functions/display_messages.php' );
397 require(SM_PATH . 'functions/page_header.php');
398 require(SM_PATH . 'functions/html.php');
399 require(SM_PATH . 'functions/strings.php');
400
401
402 /**
403 * Check if we are logged in
404 */
405 require(SM_PATH . 'functions/auth.php');
406
407 if ( !sqsession_is_registered('user_is_logged_in') ) {
408 // First we store some information in the new session to prevent
409 // information-loss.
410 //
411 $session_expired_post = $_POST;
412 $session_expired_location = $PHP_SELF;
413 if (!sqsession_is_registered('session_expired_post')) {
414 sqsession_register($session_expired_post,'session_expired_post');
415 }
416 if (!sqsession_is_registered('session_expired_location')) {
417 sqsession_register($session_expired_location,'session_expired_location');
418 }
419 // signout page will deal with users who aren't logged
420 // in on its own; don't show error here
421 //
422 if (strpos($PHP_SELF, 'signout.php') !== FALSE) {
423 return;
424 }
425
8efadc6b 426 /**
427 * Initialize the template object (logout_error uses it)
428 */
8efadc6b 429 /*
28294310 430 * $sTemplateID is not initialized when a user is not logged in, so we
431 * will use the config file defaults here. If the neccesary variables
432 * are net set, force a default value.
8efadc6b 433 */
42b5e8aa 434 $sTemplateID = Template::get_default_template_set();
28294310 435 $oTemplate = Template::construct_template($sTemplateID);
8efadc6b 436
202bcbcc 437 set_up_language($squirrelmail_language, true);
438 logout_error( _("You must be logged in to access this page.") );
439 exit;
440 }
441
93d67e0d 442//FIXME: remove next line if the placement of the copy of this line above does not prove to be problematic
202bcbcc 443 sqgetGlobalVar('username',$username,SQ_SESSION);
79524620 444 sqgetGlobalVar('authz',$authz,SQ_SESSION);
202bcbcc 445
446 /**
447 * Setting the prefs backend
448 */
449 sqgetGlobalVar('prefs_cache', $prefs_cache, SQ_SESSION );
450 sqgetGlobalVar('prefs_are_cached', $prefs_are_cached, SQ_SESSION );
451
452 if ( !sqsession_is_registered('prefs_are_cached') ||
453 !isset( $prefs_cache) ||
454 !is_array( $prefs_cache)) {
455 $prefs_are_cached = false;
456 $prefs_cache = false; //array();
457 }
458
c4e5f61f 459 /* see 'redirect' case */
4d2f7565 460 require(SM_PATH . 'functions/prefs.php');
461
d849b570 462 $prefs_backend = do_hook('prefs_backend', $null);
202bcbcc 463 if (isset($prefs_backend) && !empty($prefs_backend) && file_exists(SM_PATH . $prefs_backend)) {
464 require(SM_PATH . $prefs_backend);
465 } elseif (isset($prefs_dsn) && !empty($prefs_dsn)) {
466 require(SM_PATH . 'functions/db_prefs.php');
467 } else {
202bcbcc 468 require(SM_PATH . 'functions/file_prefs.php');
469 }
470
471 /**
472 * initializing user settings
473 */
474 require(SM_PATH . 'include/load_prefs.php');
475
202bcbcc 476// i do not understand the frames language cookie story
477 /**
478 * We'll need this to later have a noframes version
479 *
480 * Check if the user has a language preference, but no cookie.
481 * Send him a cookie with his language preference, if there is
482 * such discrepancy.
483 */
484 $my_language = getPref($data_dir, $username, 'language');
485 if ($my_language != $squirrelmail_language) {
486 sqsetcookie('squirrelmail_language', $my_language, time()+2592000, $base_uri);
487 }
488// /dont understand
489
490 /**
491 * Set up the language.
492 */
493 $err=set_up_language(getPref($data_dir, $username, 'language'));
494 /* this is the last cookie we set so flush it. */
495 sqsetcookieflush();
496
497 // Japanese translation used without mbstring support
498 if ($err==2) {
499 $sError =
500 "<p>You need to have PHP installed with the multibyte string function \n".
501 "enabled (using configure option --enable-mbstring).</p>\n".
502 "<p>System assumed that you accidently switched to Japanese translation \n".
503 "and reverted your language preference to English.</p>\n".
504 "<p>Please refresh this page in order to use webmail.</p>\n";
505 error_box($sError);
506 }
507
508 $timeZone = getPref($data_dir, $username, 'timezone');
509
510 /* Check to see if we are allowed to set the TZ environment variable.
511 * We are able to do this if ...
512 * safe_mode is disabled OR
513 * safe_mode_allowed_env_vars is empty (you are allowed to set any) OR
514 * safe_mode_allowed_env_vars contains TZ
515 */
516 $tzChangeAllowed = (!ini_get('safe_mode')) ||
517 !strcmp(ini_get('safe_mode_allowed_env_vars'),'') ||
518 preg_match('/^([\w_]+,)*TZ/', ini_get('safe_mode_allowed_env_vars'));
519
520 if ( $timeZone != SMPREF_NONE && ($timeZone != "")
521 && $tzChangeAllowed ) {
522
523 // get time zone key, if strict or custom strict timezones are used
524 if (isset($time_zone_type) &&
525 ($time_zone_type == 1 || $time_zone_type == 3)) {
526 /* load time zone functions */
527 require(SM_PATH . 'include/timezones.php');
528 $realTimeZone = sq_get_tz_key($timeZone);
529 } else {
530 $realTimeZone = $timeZone;
531 }
532
533 // set time zone
534 if ($realTimeZone) {
535 putenv("TZ=".$realTimeZone);
536 }
537 }
867fed37 538
539 /**
540 * php 5.1.0 added time zone functions. Set time zone with them in order
541 * to prevent E_STRICT notices and allow time zone modifications in safe_mode.
542 */
543 if (function_exists('date_default_timezone_set')) {
544 if ($timeZone != SMPREF_NONE && $timeZone != "") {
545 date_default_timezone_set($timeZone);
546 } else {
547 // interface runs on server's time zone. Remove php E_STRICT complains
548 $default_timezone = @date_default_timezone_get();
549 date_default_timezone_set($default_timezone);
550 }
551 }
202bcbcc 552 break;
553}
554
202bcbcc 555/*
28294310 556 * $sTemplateID is not initialized when a user is not logged in, so we
557 * will use the config file defaults here. If the neccesary variables
558 * are not set, force a default value.
3aa46abc 559 *
28294310 560 * If the user is logged in, $sTemplateID will be set in load_prefs.php,
561 * so we shouldn't change it here.
202bcbcc 562 */
28294310 563if (!isset($sTemplateID)) {
42b5e8aa 564 $sTemplateID = Template::get_default_template_set();
28294310 565 $icon_theme_path = !$use_icons ? NULL : Template::calculate_template_images_directory($sTemplateID);
3aa46abc 566}
be155e14 567
568// template object may have already been constructed in load_prefs.php
569//
570if (empty($oTemplate)) {
571 $oTemplate = Template::construct_template($sTemplateID);
572}
202bcbcc 573
7aae649d 574// We want some variables to always be available to the template
4b145052 575$always_include = array('sTemplateID', 'icon_theme_path', 'javascript_on');
7aae649d 576foreach ($always_include as $var) {
577 $oTemplate->assign($var, (isset($$var) ? $$var : NULL));
578}
579
202bcbcc 580/**
581 * Initialize our custom error handler object
582 */
202bcbcc 583$oErrorHandler = new ErrorHandler($oTemplate,'error_message.tpl');
584
585/**
586 * Activate custom error handling
587 */
588if (version_compare(PHP_VERSION, "4.3.0", ">=")) {
589 $oldErrorHandler = set_error_handler(array($oErrorHandler, 'SquirrelMailErrorhandler'));
590} else {
591 $oldErrorHandler = set_error_handler('SquirrelMailErrorhandler');
592}
593
594/**
595 * Javascript support detection function
596 * @param boolean $reset recheck javascript support if set to true.
867fed37 597 * @return integer SMPREF_JS_ON or SMPREF_JS_OFF ({@see include/constants.php})
202bcbcc 598 * @since 1.5.1
599 */
202bcbcc 600function checkForJavascript($reset = FALSE) {
601 global $data_dir, $username, $javascript_on, $javascript_setting;
602
603 if ( !$reset && sqGetGlobalVar('javascript_on', $javascript_on, SQ_SESSION) )
604 return $javascript_on;
605
606 if ( $reset || !isset($javascript_setting) )
607 $javascript_setting = getPref($data_dir, $username, 'javascript_setting', SMPREF_JS_AUTODETECT);
608
609 if ( !sqGetGlobalVar('new_js_autodetect_results', $js_autodetect_results) &&
610 !sqGetGlobalVar('js_autodetect_results', $js_autodetect_results) )
611 $js_autodetect_results = SMPREF_JS_OFF;
612
613 if ( $javascript_setting == SMPREF_JS_AUTODETECT )
614 $javascript_on = $js_autodetect_results;
615 else
616 $javascript_on = $javascript_setting;
617
618 sqsession_register($javascript_on, 'javascript_on');
619 return $javascript_on;
620}
621
622function sqm_baseuri() {
623 global $base_uri;
624 return $base_uri;
8e1e2794 625}