0f225eca1ea134082738bdc1209e126b3ae54e07
4 * init.php -- initialisation file
6 * File should be loaded in every file in src/ or plugins that occupate an entire frame
8 * @copyright © 2006 The SquirrelMail Project Team
9 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
11 * @package squirrelmail
15 * This is a development version so in order to track programmer mistakes we
16 * set the error reporting to E_ALL
18 error_reporting(E_ALL
);
22 * If register_globals are on, unregister globals.
23 * Code requires PHP 4.1.0 or newer.
24 * Second test covers boolean set as string (php_value register_globals off).
26 if ((bool
) @ini_get('register_globals') &&
27 strtolower(ini_get('register_globals'))!='off') {
29 * Remove all globals from $_GET, $_POST, and $_COOKIE.
31 foreach ($_REQUEST as $key => $value) {
32 unset($GLOBALS[$key]);
35 * Remove globalized $_FILES variables
36 * Before 4.3.0 $_FILES are included in $_REQUEST.
37 * Unglobalize them in separate call in order to remove dependency
40 foreach ($_FILES as $key => $value) {
41 unset($GLOBALS[$key]);
42 // there are three undocumented $_FILES globals.
43 unset($GLOBALS[$key.'_type']);
44 unset($GLOBALS[$key.'_name']);
45 unset($GLOBALS[$key.'_size']);
48 * Remove globalized environment variables.
50 foreach ($_ENV as $key => $value) {
51 unset($GLOBALS[$key]);
54 * Remove globalized server variables.
56 foreach ($_SERVER as $key => $value) {
57 unset($GLOBALS[$key]);
62 * [#1518885] session.use_cookies = off breaks SquirrelMail
64 * When session cookies are not used, all http redirects, meta refreshes,
65 * src/download.php and javascript URLs are broken. Setting must be set
66 * before session is started.
68 if (!(bool
)ini_get('session.use_cookies') ||
69 ini_get('session.use_cookies') == 'off') {
70 ini_set('session.use_cookies','1');
74 * calculate SM_PATH and calculate the base_uri
75 * assumptions made: init.php is only called from plugins or from the src dir.
76 * files in the plugin directory may not be part of a subdirectory called "src"
79 if (isset($_SERVER['SCRIPT_NAME'])) {
80 $a = explode('/',$_SERVER['SCRIPT_NAME']);
81 } elseif (isset($HTTP_SERVER_VARS['SCRIPT_NAME'])) {
82 $a = explode('/',$_SERVER['SCRIPT_NAME']);
85 for($i = count($a) -2;$i > -1; --$i) {
87 if ($a[$i] === 'src' ||
$a[$i] === 'plugins') {
92 $base_uri = implode('/',array_slice($a,0,$i)). '/';
94 define('SM_PATH',$sSM_PATH);
95 define('SM_BASE_URI', $base_uri);
97 * global var $bInit is used to check if initialisation took place.
98 * At this moment it's a workarounf for the include of addrbook_search_html
99 * inside compose.php. If we found a better way then remove this. Do only use
100 * this var if you know for sure a page can be called stand alone and be included
105 require(SM_PATH
. 'functions/global.php');
106 require(SM_PATH
. 'config/config.php');
107 require(SM_PATH
. 'functions/plugin.php');
108 require(SM_PATH
. 'include/constants.php');
109 require(SM_PATH
. 'include/languages.php');
112 * If magic_quotes_runtime is on, SquirrelMail breaks in new and creative ways.
113 * Force magic_quotes_runtime off.
114 * tassium@squirrelmail.org - I put it here in the hopes that all SM code includes this.
115 * If there's a better place, please let me know.
117 ini_set('magic_quotes_runtime','0');
120 /* if running with magic_quotes_gpc then strip the slashes
121 from POST and GET global arrays */
122 if (get_magic_quotes_gpc()) {
123 sqstripslashes($_GET);
124 sqstripslashes($_POST);
128 /* strip any tags added to the url from PHP_SELF.
129 This fixes hand crafted url XXS expoits for any
130 page that uses PHP_SELF as the FORM action */
131 $_SERVER['PHP_SELF'] = strip_tags($_SERVER['PHP_SELF']);
133 $PHP_SELF = php_self();
136 * Initialize the session
139 /** set the name of the session cookie */
140 if (!isset($session_name) ||
!$session_name) {
141 $session_name = 'SQMSESSID';
145 * if session.auto_start is On then close the session
147 $sSessionAutostartName = session_name();
148 if ((isset($sSessionAutostartName) ||
$sSessionAutostartName == '') &&
149 $sSessionAutostartName !== $session_name) {
150 $sCookiePath = ini_get('session.cookie_path');
151 $sCookieDomain = ini_get('session.cookie_domain');
153 setcookie($sSessionAutostartName,'',time() - 604800,$sCookiePath,$sCookieDomain);
155 session_write_close();
159 * includes from classes stored in the session
161 require(SM_PATH
. 'class/mime.class.php');
163 ini_set('session.name' , $session_name);
164 session_set_cookie_params (0, $base_uri);
165 sqsession_is_active();
169 * Remove globalized session data in rg=on setups
171 * Code can be utilized when session is started, but data is not loaded.
172 * We have already loaded configuration and other important vars. Can't
173 * clean session globals here.
174 if ((bool) @ini_get('register_globals') &&
175 strtolower(ini_get('register_globals'))!='off') {
176 foreach ($_SESSION as $key => $value) {
177 unset($GLOBALS[$key]);
182 sqsession_register(SM_BASE_URI
,'base_uri');
185 * SquirrelMail version number -- DO NOT CHANGE
187 $version = '1.5.2 [CVS]';
190 * SquirrelMail internal version number -- DO NOT CHANGE
191 * $sm_internal_version = array (release, major, minor)
193 $SQM_INTERNAL_VERSION = array(1,5,2);
196 * Retrieve the language cookie
198 if (! sqgetGlobalVar('squirrelmail_language',$squirrelmail_language,SQ_COOKIE
)) {
199 $squirrelmail_language = '';
204 * @var $sInitlocation From where do we include.
206 if (!isset($sInitLocation)) {
211 * MAIN PLUGIN LOADING CODE HERE
215 * Include Compatibility plugin if available.
217 if (file_exists(SM_PATH
. 'plugins/compatibility/functions.php'))
218 include_once(SM_PATH
. 'plugins/compatibility/functions.php');
219 $squirrelmail_plugin_hooks = array();
221 /* On init, register all plugins configured for use. */
222 if (isset($plugins) && is_array($plugins)) {
223 // turn on output buffering in order to prevent output of new lines
225 foreach ($plugins as $name) {
228 // get output and remove whitespace
229 $output = trim(ob_get_contents());
231 // if plugins output more than newlines and spacing, stop script execution.
232 if (!empty($output)) {
238 switch ($sInitLocation) {
239 case 'style': session_write_close(); sqsetcookieflush(); break;
242 * directory hashing functions are needed for all setups in case
243 * plugins use own pref files.
245 require(SM_PATH
. 'functions/prefs.php');
246 /* hook loads custom prefs backend plugins */
247 $prefs_backend = do_hook_function('prefs_backend');
248 if (isset($prefs_backend) && !empty($prefs_backend) && file_exists(SM_PATH
. $prefs_backend)) {
249 require(SM_PATH
. $prefs_backend);
250 } elseif (isset($prefs_dsn) && !empty($prefs_dsn)) {
251 require(SM_PATH
. 'functions/db_prefs.php');
253 require(SM_PATH
. 'functions/file_prefs.php');
257 require(SM_PATH
. 'functions/display_messages.php' );
258 require(SM_PATH
. 'functions/page_header.php');
259 require(SM_PATH
. 'functions/html.php');
261 * cleanup old cookies with a cookie path the same as the standard php.ini
262 * cookie path. All previous SquirrelMail version used the standard php.ini
263 * cookie path for storing the session name. That behaviour changed.
265 if ($sCookiePath !== SM_BASE_URI
) {
267 * do not delete the standard sessions with session.name is i.e. PHPSESSID
268 * because they probably belong to other php apps
270 if (ini_get('session.name') !== $sSessionAutostartName) {
271 sqsetcookie(ini_get('session.name'),'',0,$sCookiePath);
276 require(SM_PATH
. 'functions/display_messages.php' );
277 require(SM_PATH
. 'functions/page_header.php');
278 require(SM_PATH
. 'functions/html.php');
279 require(SM_PATH
. 'functions/strings.php');
283 * Check if we are logged in
285 require(SM_PATH
. 'functions/auth.php');
287 if ( !sqsession_is_registered('user_is_logged_in') ) {
288 // First we store some information in the new session to prevent
291 $session_expired_post = $_POST;
292 $session_expired_location = $PHP_SELF;
293 if (!sqsession_is_registered('session_expired_post')) {
294 sqsession_register($session_expired_post,'session_expired_post');
296 if (!sqsession_is_registered('session_expired_location')) {
297 sqsession_register($session_expired_location,'session_expired_location');
299 // signout page will deal with users who aren't logged
300 // in on its own; don't show error here
302 if (strpos($PHP_SELF, 'signout.php') !== FALSE
) {
307 * Initialize the template object (logout_error uses it)
309 require(SM_PATH
. 'class/template/template.class.php');
311 * $sTplDir is not initialized when a user is not logged in, so we will use
312 * the config file defaults here. If the neccesary variables are net set,
313 * force a default value.
315 $aTemplateSet = ( !isset($aTemplateSet) ?
array() : $aTemplateSet );
316 $templateset_default = ( !isset($templateset_default) ?
0 : $templateset_default );
318 $sTplDir = ( !isset($aTemplateSet[$templateset_default]['PATH']) ?
319 SM_PATH
. 'templates/default/' :
320 $aTemplateSet[$templateset_default]['PATH'] );
321 $oTemplate = new Template($sTplDir);
323 set_up_language($squirrelmail_language, true
);
324 logout_error( _("You must be logged in to access this page.") );
328 sqgetGlobalVar('username',$username,SQ_SESSION
);
331 * Setting the prefs backend
333 sqgetGlobalVar('prefs_cache', $prefs_cache, SQ_SESSION
);
334 sqgetGlobalVar('prefs_are_cached', $prefs_are_cached, SQ_SESSION
);
336 if ( !sqsession_is_registered('prefs_are_cached') ||
337 !isset( $prefs_cache) ||
338 !is_array( $prefs_cache)) {
339 $prefs_are_cached = false
;
340 $prefs_cache = false
; //array();
343 /* see 'redirect' switch */
344 require(SM_PATH
. 'functions/prefs.php');
346 $prefs_backend = do_hook_function('prefs_backend');
347 if (isset($prefs_backend) && !empty($prefs_backend) && file_exists(SM_PATH
. $prefs_backend)) {
348 require(SM_PATH
. $prefs_backend);
349 } elseif (isset($prefs_dsn) && !empty($prefs_dsn)) {
350 require(SM_PATH
. 'functions/db_prefs.php');
352 require(SM_PATH
. 'functions/file_prefs.php');
356 * initializing user settings
358 require(SM_PATH
. 'include/load_prefs.php');
361 // i do not understand the frames language cookie story
363 * We'll need this to later have a noframes version
365 * Check if the user has a language preference, but no cookie.
366 * Send him a cookie with his language preference, if there is
369 $my_language = getPref($data_dir, $username, 'language');
370 if ($my_language != $squirrelmail_language) {
371 sqsetcookie('squirrelmail_language', $my_language, time()+
2592000, $base_uri);
376 * Set up the language.
378 $err=set_up_language(getPref($data_dir, $username, 'language'));
379 /* this is the last cookie we set so flush it. */
382 // Japanese translation used without mbstring support
385 "<p>You need to have PHP installed with the multibyte string function \n".
386 "enabled (using configure option --enable-mbstring).</p>\n".
387 "<p>System assumed that you accidently switched to Japanese translation \n".
388 "and reverted your language preference to English.</p>\n".
389 "<p>Please refresh this page in order to use webmail.</p>\n";
393 $timeZone = getPref($data_dir, $username, 'timezone');
395 /* Check to see if we are allowed to set the TZ environment variable.
396 * We are able to do this if ...
397 * safe_mode is disabled OR
398 * safe_mode_allowed_env_vars is empty (you are allowed to set any) OR
399 * safe_mode_allowed_env_vars contains TZ
401 $tzChangeAllowed = (!ini_get('safe_mode')) ||
402 !strcmp(ini_get('safe_mode_allowed_env_vars'),'') ||
403 preg_match('/^([\w_]+,)*TZ/', ini_get('safe_mode_allowed_env_vars'));
405 if ( $timeZone != SMPREF_NONE
&& ($timeZone != "")
406 && $tzChangeAllowed ) {
408 // get time zone key, if strict or custom strict timezones are used
409 if (isset($time_zone_type) &&
410 ($time_zone_type == 1 ||
$time_zone_type == 3)) {
411 /* load time zone functions */
412 require(SM_PATH
. 'include/timezones.php');
413 $realTimeZone = sq_get_tz_key($timeZone);
415 $realTimeZone = $timeZone;
420 putenv("TZ=".$realTimeZone);
425 * php 5.1.0 added time zone functions. Set time zone with them in order
426 * to prevent E_STRICT notices and allow time zone modifications in safe_mode.
428 if (function_exists('date_default_timezone_set')) {
429 if ($timeZone != SMPREF_NONE
&& $timeZone != "") {
430 date_default_timezone_set($timeZone);
432 // interface runs on server's time zone. Remove php E_STRICT complains
433 $default_timezone = @date_default_timezone_get();
434 date_default_timezone_set($default_timezone);
441 * Initialize the template object
443 require(SM_PATH
. 'class/template/template.class.php');
445 * $sTplDir is not initialized when a user is not logged in, so we will use
446 * the config file defaults here. If the neccesary variables are net set,
447 * force a default value.
449 $aTemplateSet = ( !isset($aTemplateSet) ?
array() : $aTemplateSet );
450 $templateset_default = ( !isset($templateset_default) ?
0 : $templateset_default );
452 $sTplDir = ( !isset($aTemplateSet[$templateset_default]['PATH']) ?
453 SM_PATH
. 'templates/default/' :
454 $aTemplateSet[$templateset_default]['PATH'] );
455 $oTemplate = new Template($sTplDir);
458 * Initialize our custom error handler object
460 require(SM_PATH
. 'class/error.class.php');
461 $oErrorHandler = new ErrorHandler($oTemplate,'error_message.tpl');
464 * Activate custom error handling
466 if (version_compare(PHP_VERSION
, "4.3.0", ">=")) {
467 $oldErrorHandler = set_error_handler(array($oErrorHandler, 'SquirrelMailErrorhandler'));
469 $oldErrorHandler = set_error_handler('SquirrelMailErrorhandler');
473 * Javascript support detection function
474 * @param boolean $reset recheck javascript support if set to true.
475 * @return integer SMPREF_JS_ON or SMPREF_JS_OFF ({@see include/constants.php})
478 function checkForJavascript($reset = FALSE
) {
479 global $data_dir, $username, $javascript_on, $javascript_setting;
481 if ( !$reset && sqGetGlobalVar('javascript_on', $javascript_on, SQ_SESSION
) )
482 return $javascript_on;
484 if ( $reset ||
!isset($javascript_setting) )
485 $javascript_setting = getPref($data_dir, $username, 'javascript_setting', SMPREF_JS_AUTODETECT
);
487 if ( !sqGetGlobalVar('new_js_autodetect_results', $js_autodetect_results) &&
488 !sqGetGlobalVar('js_autodetect_results', $js_autodetect_results) )
489 $js_autodetect_results = SMPREF_JS_OFF
;
491 if ( $javascript_setting == SMPREF_JS_AUTODETECT
)
492 $javascript_on = $js_autodetect_results;
494 $javascript_on = $javascript_setting;
496 sqsession_register($javascript_on, 'javascript_on');
497 return $javascript_on;
500 function sqm_baseuri() {