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