fix for bug #554886
[squirrelmail.git] / src / right_main.php
... / ...
CommitLineData
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
15require_once('../src/validate.php');
16require_once('../functions/imap.php');
17require_once('../functions/date.php');
18require_once('../functions/array.php');
19require_once('../functions/mime.php');
20require_once('../functions/mailbox_display.php');
21require_once('../functions/display_messages.php');
22
23/***********************************************************
24 * incoming variables from URL: *
25 * $sort Direction to sort by date *
26 * values: 0 - descending order *
27 * values: 1 - ascending order *
28 * $startMessage Message to start at *
29 * $mailbox Full Mailbox name *
30 * *
31 * incoming from cookie: *
32 * $username duh *
33 * $key pass *
34 ***********************************************************/
35
36$bob = getHashedFile($username, $data_dir, "username.pref");
37
38/* Open a connection on the imap port (143) */
39
40$imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
41
42global $PG_SHOWNUM;
43if (isset($PG_SHOWALL)) {
44 if ($PG_SHOWALL) {
45 $PG_SHOWNUM=999999;
46 $show_num=$PG_SHOWNUM;
47 session_register('PG_SHOWNUM');
48 }
49 else {
50 session_unregister('PG_SHOWNUM');
51 unset($PG_SHOWNUM);
52 }
53}
54else if( isset( $PG_SHOWNUM ) ) {
55 $show_num = $PG_SHOWNUM;
56}
57
58if (isset($newsort) && $newsort != $sort) {
59 setPref($data_dir, $username, 'sort', $newsort);
60}
61
62
63
64/* If the page has been loaded without a specific mailbox, */
65/* send them to the inbox */
66if (!isset($mailbox)) {
67 $mailbox = 'INBOX';
68 $startMessage = 1;
69}
70
71
72if (!isset($startMessage) || ($startMessage == '')) {
73 $startMessage = 1;
74}
75
76/* compensate for the UW vulnerability. */
77if ($imap_server_type == 'uw' && (strstr($mailbox, '../') ||
78 substr($mailbox, 0, 1) == '/')) {
79 $mailbox = 'INBOX';
80}
81
82/* decide if we are thread sorting or not */
83global $allow_thread_sort;
84if ($allow_thread_sort == TRUE) {
85 if (isset($set_thread)) {
86 if ($set_thread == 1) {
87 setPref($data_dir, $username, "thread_$mailbox", 1);
88 $thread_sort_messages = '1';
89 }
90 elseif ($set_thread == 2) {
91 setPref($data_dir, $username, "thread_$mailbox", 0);
92 $thread_sort_messages = '0';
93 }
94 }
95 else {
96 $thread_sort_messages = getPref($data_dir, $username, "thread_$mailbox");
97 }
98}
99else {
100 $thread_sort_messages = 0;
101}
102
103global $color;
104if( isset($do_hook) && $do_hook ) {
105 do_hook ("generic_header");
106}
107
108sqimap_mailbox_select($imapConnection, $mailbox);
109
110if (isset($composenew)) {
111 $width= getPref($data_dir, $username, 'editor_size', 76);
112 if ($width < 65) {
113 $pix_width = 560;
114 } else {
115 $width = (.9*$width);
116 $pix_width = intval($width).'0';
117 }
118 $features = "toolbar=no, width=$pix_width, height=650, scrollbars=yes, resizable=yes target=_blank";
119 $location = 'compose.php?mailbox='. urlencode($mailbox).'&attachedmessages=true&session='."$session";
120 $onload= "window.open(\"$location\",\"compose_window_$session\", \"$features\");";
121 displayPageHeader($color, $mailbox, $onload);
122} else {
123 displayPageHeader($color, $mailbox);
124}
125echo "<br>\n";
126
127do_hook('right_main_after_header');
128if (isset($note)) {
129 echo "<CENTER><B>$note</B></CENTER><BR>\n";
130}
131
132if ($just_logged_in == true) {
133 $just_logged_in = false;
134
135 if (strlen(trim($motd)) > 0) {
136 echo "<br><table align=center width=\"70%\" cellpadding=0 cellspacing=3 border=0 bgcolor=\"$color[9]\">" .
137 '<tr><td>' .
138 "<table width=\"100%\" cellpadding=5 cellspacing=1 border=0 bgcolor=\"$color[4]\">" .
139 "<tr><td align=center>$motd";
140 do_hook('motd');
141 echo '</td></tr>' .
142 '</table>' .
143 '</td></tr></table>';
144 }
145}
146
147if (isset($newsort)) {
148 $sort = $newsort;
149 session_register('sort');
150}
151
152/*********************************************************************
153 * Check to see if we can use cache or not. Currently the only time *
154 * when you will not use it is when a link on the left hand frame is *
155 * used. Also check to make sure we actually have the array in the *
156 * registered session data. :) *
157 *********************************************************************/
158if (! isset($use_mailbox_cache)) {
159 $use_mailbox_cache = 0;
160}
161
162/* There is a problem with registered vars in 4.1 */
163/*
164if( substr( phpversion(), 0, 3 ) == '4.1' ) {
165 $use_mailbox_cache = FALSE;
166}
167*/
168
169if ($use_mailbox_cache && session_is_registered('msgs')) {
170 showMessagesForMailbox($imapConnection, $mailbox, $numMessages, $startMessage, $sort, $color, $show_num, $use_mailbox_cache);
171} else {
172 if (session_is_registered('msgs')) {
173 unset($msgs);
174 }
175
176 if (session_is_registered('msort')) {
177 unset($msort);
178 }
179
180 if (session_is_registered('numMessages')) {
181 unset($numMessages);
182 }
183
184 $numMessages = sqimap_get_num_messages ($imapConnection, $mailbox);
185
186 showMessagesForMailbox($imapConnection, $mailbox, $numMessages,
187 $startMessage, $sort, $color, $show_num,
188 $use_mailbox_cache);
189
190 if (session_is_registered('msgs') && isset($msgs)) {
191 session_register('msgs');
192 $_SESSION['msgs'] = $msgs;
193 }
194
195 if (session_is_registered('msort') && isset($msort)) {
196 session_register('msort');
197 $_SESSION['msort'] = $msort;
198 }
199
200 session_register('numMessages');
201 $_SESSION['numMessages'] = $numMessages;
202}
203do_hook('right_main_bottom');
204sqimap_logout ($imapConnection);
205
206echo '</BODY></HTML>';
207
208?>