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