Stream options were forgot here
[squirrelmail.git] / src / redirect.php
CommitLineData
7392739d 1<?php
895905c0 2
35586184 3/**
4b4abf93 4 * Prevents users from reposting their form data after a successful logout.
5 *
6 * Derived from webmail.php by Ralf Kraudelt <kraude@wiwi.uni-rostock.de>
7 *
353d074a 8 * @copyright 1999-2018 The SquirrelMail Project Team
4b4abf93 9 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
10 * @version $Id$
11 * @package squirrelmail
12 */
35586184 13
ebd2391c 14/** This is the redirect page */
15define('PAGE_NAME', 'redirect');
16
30967a1e 17/**
202bcbcc 18 * Include the SquirrelMail initialization file.
30967a1e 19 */
202bcbcc 20require('../include/init.php');
86725763 21
22/* SquirrelMail required files. */
202bcbcc 23require_once(SM_PATH . 'functions/imap_general.php');
86725763 24require_once(SM_PATH . 'functions/strings.php');
5c3b0995 25
03478654 26// Disable browser caching
27//
28header('Cache-Control: no-cache, no-store, must-revalidate, max-age=0');
5c3b0995 29header('Pragma: no-cache');
03478654 30header('Expires: Sat, 1 Jan 2000 00:00:00 GMT');
5c3b0995 31$location = get_location();
32
202bcbcc 33// session_set_cookie_params (0, $base_uri);
5c3b0995 34
ad839713 35sqsession_unregister ('user_is_logged_in');
36sqsession_register ($base_uri, 'base_uri');
5c3b0995 37
a32985a5 38/* get globals we me need */
5250f7e7 39sqGetGlobalVar('login_username', $login_username);
40sqGetGlobalVar('secretkey', $secretkey);
5250f7e7 41if(!sqGetGlobalVar('squirrelmail_language', $squirrelmail_language) || $squirrelmail_language == '') {
134e4174 42 $squirrelmail_language = $squirrelmail_default_language;
a32985a5 43}
7e2ff844 44if (!sqgetGlobalVar('mailtodata', $mailtodata)) {
45 $mailtodata = '';
c67e4479 46}
5250f7e7 47
a32985a5 48/* end of get globals */
49
5c3b0995 50set_up_language($squirrelmail_language, true);
51/* Refresh the language cookie. */
3a1de9f1 52sqsetcookie('squirrelmail_language', $squirrelmail_language, time()+2592000,
85b454a0 53 $base_uri);
5c3b0995 54
55if (!isset($login_username)) {
91e0dccc 56 logout_error( _("You must be logged in to access this page.") );
5c3b0995 57 exit;
58}
59
9a02b0ef 60do_hook('login_before', $null);
5c3b0995 61
9a02b0ef 62$onetimepad = OneTimePadCreate(strlen($secretkey));
63$key = OneTimePadEncrypt($secretkey, $onetimepad);
5c3b0995 64
9a02b0ef 65/* remove redundant spaces */
66$login_username = trim($login_username);
fd1b516b 67
9a02b0ef 68/* Case-normalise username if so desired */
69if ($force_username_lowercase) {
70 $login_username = strtolower($login_username);
71}
44925ab0 72
9a02b0ef 73/* Verify that username and password are correct. */
a9805897 74global $imap_stream_options; // in case not defined in config
75$imapConnection = sqimap_login($login_username, $key, $imapServerAddress, $imapPort, 0, $imap_stream_options);
9a02b0ef 76/* From now on we are logged it. If the login failed then sqimap_login handles it */
f027a882 77
1f80d9f5 78/**
79 * Regenerate session id to make sure that authenticated session uses
80 * different ID than one used before user authenticated. This is a
81 * countermeasure against session fixation attacks.
82 * NB: session_regenerate_id() was added in PHP 4.3.2 (and new session
83 * cookie is only sent out in this call as of PHP 4.3.3), but PHP 4
84 * is not vulnerable to session fixation problems in SquirrelMail
85 * because it prioritizes $base_uri subdirectory cookies differently
86 * than PHP 5, which is otherwise vulnerable. If we really want to,
87 * we could define our own session_regenerate_id() when one does not
88 * exist, but there seems to be no reason to do so.
89 */
90sqsession_is_active();
91if (function_exists('session_regenerate_id')) {
92 session_regenerate_id();
93}
94
9a02b0ef 95/**
96* The cookie part. session_start and session_regenerate_session normally set
97* their own cookie. SquirrelMail sets another cookie which overwites the
98* php cookies. The sqsetcookie function sets the cookie by using the header
99* function which gives us full control how the cookie is set. We do that
100* to add the HttpOnly cookie attribute which blocks javascript access on
101* IE6 SP1.
102*/
103sqsetcookie(session_name(),session_id(),false,$base_uri);
104sqsetcookie('key', $key, false, $base_uri);
105
106sqsession_register($onetimepad, 'onetimepad');
107
108$sqimap_capabilities = sqimap_capability($imapConnection);
109
110/* Server side sorting control */
111if (isset($sqimap_capabilities['SORT']) && $sqimap_capabilities['SORT'] == true &&
112 isset($disable_server_sort) && $disable_server_sort) {
113 unset($sqimap_capabilities['SORT']);
114}
f027a882 115
9a02b0ef 116/* Thread sort control */
117if (isset($sqimap_capabilities['THREAD']) && $sqimap_capabilities['THREAD'] == true &&
118 isset($disable_thread_sort) && $disable_thread_sort) {
119 unset($sqimap_capabilities['THREAD']);
120}
f027a882 121
9a02b0ef 122sqsession_register($sqimap_capabilities, 'sqimap_capabilities');
123$delimiter = sqimap_get_delimiter ($imapConnection);
44925ab0 124
9a02b0ef 125if (isset($sqimap_capabilities['NAMESPACE']) && $sqimap_capabilities['NAMESPACE'] == true) {
126 $namespace = sqimap_get_namespace($imapConnection);
127 sqsession_register($namespace, 'sqimap_namespace');
128}
6a645613 129
9a02b0ef 130sqimap_logout($imapConnection);
131sqsession_register($delimiter, 'delimiter');
a32985a5 132
9a02b0ef 133$username = $login_username;
134sqsession_register ($username, 'username');
135do_hook('login_verified', $null);
5c3b0995 136
137/* Set the login variables. */
138$user_is_logged_in = true;
139$just_logged_in = true;
140
141/* And register with them with the session. */
a32985a5 142sqsession_register ($user_is_logged_in, 'user_is_logged_in');
143sqsession_register ($just_logged_in, 'just_logged_in');
5c3b0995 144
145/* parse the accepted content-types of the client */
146$attachment_common_types = array();
147$attachment_common_types_parsed = array();
a32985a5 148sqsession_register($attachment_common_types, 'attachment_common_types');
149sqsession_register($attachment_common_types_parsed, 'attachment_common_types_parsed');
5c3b0995 150
1e12d1ff 151if ( sqgetGlobalVar('HTTP_ACCEPT', $http_accept, SQ_SERVER) &&
152 !isset($attachment_common_types_parsed[$http_accept]) ) {
d9f8b0cc 153 attachment_common_parse($http_accept);
9be8198d 154}
5c3b0995 155
ef33def6 156// having just logged in, need to synch the template file cache
157// so the right template set is displayed (per user prefs)
158require(SM_PATH . 'include/load_prefs.php');
d81572f7 159global $sTemplateID;
160Template::cache_template_file_hierarchy($sTemplateID, TRUE);
ef33def6 161
5c3b0995 162/* Complete autodetection of Javascript. */
1a531551 163checkForJavascript();
5c3b0995 164
165/* Compute the URL to forward the user to. */
d7746ca5 166$redirect_url = $location . '/webmail.php';
cab6eaea 167
168if ( sqgetGlobalVar('session_expired_location', $session_expired_location, SQ_SESSION) ) {
169 sqsession_unregister('session_expired_location');
de219480 170 if ( $session_expired_location == 'compose' ) {
c6f28eb1 171 $compose_new_win = getPref($data_dir, $username, 'compose_new_win', 0);
172 if ($compose_new_win) {
de219480 173 // do not prefix $location here because $session_expired_location is set to the PAGE_NAME
c6f28eb1 174 // of the last page
319ad3c0 175 $redirect_url = $location . '/' . $session_expired_location . '.php';
c6f28eb1 176 } else {
319ad3c0 177 $redirect_url = $location . '/webmail.php?right_frame=' . urlencode($session_expired_location . '.php');
c6f28eb1 178 }
ef33def6 179 } else if ($session_expired_location != 'webmail'
180 && $session_expired_location != 'left_main') {
319ad3c0 181 $redirect_url = $location . '/webmail.php?right_frame=' . urlencode($session_expired_location . '.php');
8e54a58b 182 }
cab6eaea 183 unset($session_expired_location);
184}
202bcbcc 185
7e2ff844 186if($mailtodata != '') {
187 $redirect_url = $location . '/webmail.php?right_frame=compose.php&mailtodata=';
188 $redirect_url .= urlencode($mailtodata);
c67e4479 189}
177dde45 190
7bde5272 191/* Write session data and send them off to the appropriate page. */
192session_write_close();
5c3b0995 193header("Location: $redirect_url");
202bcbcc 194exit;
7baf86a9 195
cab99c3a 196/* --------------------- end main ----------------------- */
197
d9f8b0cc 198function attachment_common_parse($str) {
cab99c3a 199 global $attachment_common_types, $attachment_common_types_parsed;
200
91e0dccc 201 /*
202 * Replace ", " with "," and explode on that as Mozilla 1.x seems to
20511953 203 * use "," to seperate whilst IE, and earlier versions of Mozilla use
204 * ", " to seperate
205 */
91e0dccc 206
20511953 207 $str = str_replace( ', ' , ',' , $str );
6c817138 208 $types = explode(',', $str);
cab99c3a 209
210 foreach ($types as $val) {
211 // Ignore the ";q=1.0" stuff
9a02b0ef 212 if (strpos($val, ';') !== false) {
cab99c3a 213 $val = substr($val, 0, strpos($val, ';'));
9a02b0ef 214 }
cab99c3a 215 if (! isset($attachment_common_types[$val])) {
216 $attachment_common_types[$val] = true;
217 }
218 }
39c7209f 219 sqsession_register($attachment_common_types, 'attachment_common_types');
856e58ef 220
221 /* mark as parsed */
222 $attachment_common_types_parsed[$str] = true;
cab99c3a 223}