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