XXS fixes, as in stable
[squirrelmail.git] / src / right_main.php
1 <?php
2
3 /**
4 * right_main.php
5 *
6 * Copyright (c) 1999-2002 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * This is where the mailboxes are listed. This controls most of what
10 * goes on in SquirrelMail.
11 *
12 * $Id$
13 */
14
15 /* Path for SquirrelMail required files. */
16 define('SM_PATH','../');
17
18 /* SquirrelMail required files. */
19 require_once(SM_PATH . 'include/validate.php');
20 require_once(SM_PATH . 'functions/imap.php');
21 require_once(SM_PATH . 'functions/date.php');
22 require_once(SM_PATH . 'functions/mime.php');
23 require_once(SM_PATH . 'functions/mailbox_display.php');
24 require_once(SM_PATH . 'functions/display_messages.php');
25 require_once(SM_PATH . 'functions/html.php');
26
27 /***********************************************************
28 * incoming variables from URL: *
29 * $sort Direction to sort by date *
30 * values: 0 - descending order *
31 * values: 1 - ascending order *
32 * $startMessage Message to start at *
33 * $mailbox Full Mailbox name *
34 * *
35 * incoming from cookie: *
36 * $key pass *
37 * incoming from session: *
38 * $username duh *
39 * *
40 ***********************************************************/
41
42
43 /* lets get the global vars we may need */
44 $username = $_SESSION['username'];
45 $key = $_COOKIE['key'];
46 $onetimepad = $_SESSION['onetimepad'];
47 $base_uri = $_SESSION['base_uri'];
48 $delimiter = $_SESSION['delimiter'];
49
50 if (isset($_GET['startMessage'])) {
51 $startMessage = (int) $_GET['startMessage'];
52 } elseif (isset($_POST['startMessage'])) {
53 $startMessage = (int) $_POST['startMessage'];
54 }
55 if (isset($_GET['mailbox'])) {
56 $mailbox = $_GET['mailbox'];
57 } else if (isset($_POST['mailbox'])) {
58 $mailbox = $_POST['mailbox'];
59 }
60 if (isset($_GET['PG_SHOWNUM'])) {
61 $PG_SHOWNUM = (int) $_GET['PG_SHOWNUM'];
62 }
63 elseif (isset($_SESSION['PG_SHOWNUM'])) {
64 $PG_SHOWNUM = (int) $_SESSION['PG_SHOWNUM'];
65 }
66 if (isset($_GET['PG_SHOWALL'])) {
67 $PG_SHOWALL = (int) $_GET['PG_SHOWALL'];
68 }
69 if (isset($_GET['newsort'])) {
70 $newsort = (int) $_GET['newsort'];
71 }
72 if (isset($_GET['composenew'])) {
73 $composenew = $_GET['composenew'];
74 } else {
75 $composenew = false;
76 }
77
78 if (isset($_GET['checkall'])) {
79 $checkall = (int) $_GET['checkall'];
80 }
81 if (isset($_GET['set_thread'])) {
82 $set_thread = (int) $_GET['set_thread'];
83 }
84 if (isset($_SESSION['lastTargetMailbox'])) {
85 $lastTargetMailbox =$_SESSION['lastTargetMailbox'];
86 }
87
88 if (isset($_GET['session'])) {
89 $session = $_GET['session'];
90 }
91
92
93 /* end of get globals */
94
95
96 /* Open a connection on the imap port (143) */
97
98 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
99
100 if (isset($PG_SHOWALL)) {
101 if ($PG_SHOWALL) {
102 $PG_SHOWNUM=999999;
103 $show_num=$PG_SHOWNUM;
104 sqsession_register($PG_SHOWNUM, 'PG_SHOWNUM');
105 }
106 else {
107 sqsession_unregister('PG_SHOWNUM');
108 unset($PG_SHOWNUM);
109 }
110 }
111 else if( isset( $PG_SHOWNUM ) ) {
112 $show_num = $PG_SHOWNUM;
113 }
114
115 if (isset($newsort) && $newsort != $sort) {
116 setPref($data_dir, $username, 'sort', $newsort);
117 }
118
119
120
121 /* If the page has been loaded without a specific mailbox, */
122 /* send them to the inbox */
123 if (!isset($mailbox)) {
124 $mailbox = 'INBOX';
125 $startMessage = 1;
126 }
127
128
129 if (!isset($startMessage) || ($startMessage == '')) {
130 $startMessage = 1;
131 }
132
133 /* compensate for the UW vulnerability. */
134 if ($imap_server_type == 'uw' && (strstr($mailbox, '../') ||
135 substr($mailbox, 0, 1) == '/')) {
136 $mailbox = 'INBOX';
137 }
138
139 /* decide if we are thread sorting or not */
140 if ($allow_thread_sort == TRUE) {
141 if (isset($set_thread)) {
142 if ($set_thread == 1) {
143 setPref($data_dir, $username, "thread_$mailbox", 1);
144 $thread_sort_messages = '1';
145 }
146 elseif ($set_thread == 2) {
147 setPref($data_dir, $username, "thread_$mailbox", 0);
148 $thread_sort_messages = '0';
149 }
150 }
151 else {
152 $thread_sort_messages = getPref($data_dir, $username, "thread_$mailbox");
153 }
154 }
155 else {
156 $thread_sort_messages = 0;
157 }
158
159 do_hook ('generic_header');
160
161 sqimap_mailbox_select($imapConnection, $mailbox);
162
163 if ($composenew) {
164 $comp_uri = SM_PATH . 'src/compose.php?mailbox='. urlencode($mailbox).
165 "&session=$session";
166 displayPageHeader($color, $mailbox, "comp_in_new('$comp_uri');", false);
167 } else {
168 displayPageHeader($color, $mailbox);
169 }
170 do_hook('right_main_after_header');
171 if (isset($note)) {
172 echo html_tag( 'div', '<b>' . $note .'</b>', 'center' ) . "<br>\n";
173 }
174
175 if (isset($_SESSION['just_logged_in'])) {
176 $just_logged_in = $_SESSION['just_logged_in'];
177 if ($just_logged_in == true) {
178 $just_logged_in = false;
179
180 if (strlen(trim($motd)) > 0) {
181 echo html_tag( 'table',
182 html_tag( 'tr',
183 html_tag( 'td',
184 html_tag( 'table',
185 html_tag( 'tr',
186 html_tag( 'td', $motd, 'center' )
187 ) ,
188 '', $color[4], 'width="100%" cellpadding="5" cellspacing="1" border="0"' )
189 )
190 ) ,
191 'center', $color[9], 'width="70%" cellpadding="0" cellspacing="3" border="0"' );
192 }
193 }
194 }
195
196 if (isset($newsort)) {
197 $sort = $newsort;
198 sqsession_register($sort, 'sort');
199 }
200
201 /*********************************************************************
202 * Check to see if we can use cache or not. Currently the only time *
203 * when you will not use it is when a link on the left hand frame is *
204 * used. Also check to make sure we actually have the array in the *
205 * registered session data. :) *
206 *********************************************************************/
207 if (! isset($use_mailbox_cache)) {
208 $use_mailbox_cache = 0;
209 }
210
211 if ($use_mailbox_cache && sqsession_is_registered('msgs')) {
212 showMessagesForMailbox($imapConnection, $mailbox, $numMessages, $startMessage, $sort, $color, $show_num, $use_mailbox_cache);
213 } else {
214 if (sqsession_is_registered('msgs')) {
215 unset($msgs);
216 }
217
218 if (sqsession_is_registered('msort')) {
219 unset($msort);
220 }
221
222 if (sqsession_is_registered('numMessages')) {
223 unset($numMessages);
224 }
225
226 $numMessages = sqimap_get_num_messages ($imapConnection, $mailbox);
227
228 showMessagesForMailbox($imapConnection, $mailbox, $numMessages,
229 $startMessage, $sort, $color, $show_num,
230 $use_mailbox_cache);
231
232 if (sqsession_is_registered('msgs') && isset($msgs)) {
233 sqsession_register($msgs, 'msgs');
234 $_SESSION['msgs'] = $msgs;
235 }
236
237 if (sqsession_is_registered('msort') && isset($msort)) {
238 sqsession_register($msort, 'msort');
239 $_SESSION['msort'] = $msort;
240 }
241
242 sqsession_register($numMessages, 'numMessages');
243 $_SESSION['numMessages'] = $numMessages;
244 }
245 do_hook('right_main_bottom');
246 sqimap_logout ($imapConnection);
247
248 echo '</body></html>';
249
250 ?>