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