Allow plugins to enable MOTD whenever they want; add note about bug that won't show...
[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 &copy; 1999-2007 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
26header('Pragma: no-cache');
27$location = get_location();
28
29// session_set_cookie_params (0, $base_uri);
30
31sqsession_unregister ('user_is_logged_in');
32sqsession_register ($base_uri, 'base_uri');
33
34/* get globals we me need */
35sqGetGlobalVar('login_username', $login_username);
36sqGetGlobalVar('secretkey', $secretkey);
37if(!sqGetGlobalVar('squirrelmail_language', $squirrelmail_language) || $squirrelmail_language == '') {
38 $squirrelmail_language = $squirrelmail_default_language;
39}
40if (!sqgetGlobalVar('mailtodata', $mailtodata)) {
41 $mailtodata = '';
42}
43
44/* end of get globals */
45
46set_up_language($squirrelmail_language, true);
47/* Refresh the language cookie. */
48sqsetcookie('squirrelmail_language', $squirrelmail_language, time()+2592000,
49 $base_uri);
50
51if (!isset($login_username)) {
52 logout_error( _("You must be logged in to access this page.") );
53 exit;
54}
55
56if (!sqsession_is_registered('user_is_logged_in')) {
57 do_hook('login_before', $null);
58
59 $onetimepad = OneTimePadCreate(strlen($secretkey));
60 $key = OneTimePadEncrypt($secretkey, $onetimepad);
61
62 /* remove redundant spaces */
63 $login_username = trim($login_username);
64
65 /* Verify that username and password are correct. */
66 if ($force_username_lowercase) {
67 $login_username = strtolower($login_username);
68 }
69
70 $imapConnection = sqimap_login($login_username, $key, $imapServerAddress, $imapPort, 0);
71 /* From now on we are logged it. If the login failed then sqimap_login handles it */
72
73 /* regenerate the session id to avoid session hyijacking */
74 sqsession_destroy();
75 @sqsession_is_active();
76 session_regenerate_id();
77 /**
78 * The cookie part. session_start and session_regenerate_session normally set
79 * their own cookie. SquirrelMail sets another cookie which overwites the
80 * php cookies. The sqsetcookie function sets the cookie by using the header
81 * function which gives us full control how the cookie is set. We do that
82 * to add the HttpOnly cookie attribute which blocks javascript access on
83 * IE6 SP1.
84 */
85 sqsetcookie(session_name(),session_id(),false,$base_uri);
86 sqsetcookie('key', $key, false, $base_uri);
87
88 sqsession_register($onetimepad, 'onetimepad');
89
90 $sqimap_capabilities = sqimap_capability($imapConnection);
91
92 /* Server side sorting control */
93 if (isset($sqimap_capabilities['SORT']) && $sqimap_capabilities['SORT'] == true &&
94 isset($disable_server_sort) && $disable_server_sort) {
95 unset($sqimap_capabilities['SORT']);
96 }
97
98 /* Thread sort control */
99 if (isset($sqimap_capabilities['THREAD']) && $sqimap_capabilities['THREAD'] == true &&
100 isset($disable_thread_sort) && $disable_thread_sort) {
101 unset($sqimap_capabilities['THREAD']);
102 }
103
104 sqsession_register($sqimap_capabilities, 'sqimap_capabilities');
105 $delimiter = sqimap_get_delimiter ($imapConnection);
106
107 if (isset($sqimap_capabilities['NAMESPACE']) && $sqimap_capabilities['NAMESPACE'] == true) {
108 $namespace = sqimap_get_namespace($imapConnection);
109 sqsession_register($namespace, 'sqimap_namespace');
110 }
111
112 sqimap_logout($imapConnection);
113 sqsession_register($delimiter, 'delimiter');
114
115 $username = $login_username;
116 sqsession_register ($username, 'username');
117 do_hook('login_verified', $null);
118}
119
120/* Set the login variables. */
121$user_is_logged_in = true;
122$just_logged_in = true;
123
124/* And register with them with the session. */
125sqsession_register ($user_is_logged_in, 'user_is_logged_in');
126sqsession_register ($just_logged_in, 'just_logged_in');
127
128/* parse the accepted content-types of the client */
129$attachment_common_types = array();
130$attachment_common_types_parsed = array();
131sqsession_register($attachment_common_types, 'attachment_common_types');
132sqsession_register($attachment_common_types_parsed, 'attachment_common_types_parsed');
133
134if ( sqgetGlobalVar('HTTP_ACCEPT', $http_accept, SQ_SERVER) &&
135 !isset($attachment_common_types_parsed[$http_accept]) ) {
136 attachment_common_parse($http_accept);
137}
138
139/* Complete autodetection of Javascript. */
140checkForJavascript();
141
142/* Compute the URL to forward the user to. */
143$redirect_url = $location . '/webmail.php';
144
145if ( sqgetGlobalVar('session_expired_location', $session_expired_location, SQ_SESSION) ) {
146 sqsession_unregister('session_expired_location');
147 if ( $session_expired_location == 'compose' ) {
148 $compose_new_win = getPref($data_dir, $username, 'compose_new_win', 0);
149 if ($compose_new_win) {
150 // do not prefix $location here because $session_expired_location is set to the PAGE_NAME
151 // of the last page
152 $redirect_url = $session_expired_location.'.php';
153 } else {
154 $redirect_url = $location.'/webmail.php?right_frame='.urlencode($session_expired_location).'php';
155 }
156 }
157 unset($session_expired_location);
158}
159
160if($mailtodata != '') {
161 $redirect_url = $location . '/webmail.php?right_frame=compose.php&mailtodata=';
162 $redirect_url .= urlencode($mailtodata);
163}
164
165/* Write session data and send them off to the appropriate page. */
166session_write_close();
167header("Location: $redirect_url");
168exit;
169
170/* --------------------- end main ----------------------- */
171
172function attachment_common_parse($str) {
173 global $attachment_common_types, $attachment_common_types_parsed;
174
175 /*
176 * Replace ", " with "," and explode on that as Mozilla 1.x seems to
177 * use "," to seperate whilst IE, and earlier versions of Mozilla use
178 * ", " to seperate
179 */
180
181 $str = str_replace( ', ' , ',' , $str );
182 $types = explode(',', $str);
183
184 foreach ($types as $val) {
185 // Ignore the ";q=1.0" stuff
186 if (strpos($val, ';') !== false)
187 $val = substr($val, 0, strpos($val, ';'));
188
189 if (! isset($attachment_common_types[$val])) {
190 $attachment_common_types[$val] = true;
191 }
192 }
193 sqsession_register($attachment_common_types, 'attachment_common_types');
194
195 /* mark as parsed */
196 $attachment_common_types_parsed[$str] = true;
197}