no comments :-(
[squirrelmail.git] / src / right_main.php
CommitLineData
59177427 1<?php
895905c0 2
c57b0888 3/**
4 * right_main.php
5 *
15e6162e 6 * Copyright (c) 1999-2002 The SquirrelMail Project Team
c57b0888 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
3392dc86 36$bob = getHashedFile($username, $data_dir, "username.pref");
37
c57b0888 38/* Open a connection on the imap port (143) */
6f223ace 39
c57b0888 40$imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
41
cf710efe 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 ) ) {
bdfb67f8 55 $show_num = $PG_SHOWNUM;
56}
57
c57b0888 58if (isset($newsort) && $newsort != $sort) {
59 setPref($data_dir, $username, 'sort', $newsort);
60}
61
e372ee8c 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
7c612fdd 82/* decide if we are thread sorting or not */
83global $allow_thread_sort;
794d59c0 84if ($allow_thread_sort == TRUE) {
7c612fdd 85 if (isset($set_thread)) {
86 if ($set_thread == 1) {
78cc4b12 87 setPref($data_dir, $username, "thread_$mailbox", 1);
7c612fdd 88 $thread_sort_messages = '1';
89 }
90 elseif ($set_thread == 2) {
78cc4b12 91 setPref($data_dir, $username, "thread_$mailbox", 0);
7c612fdd 92 $thread_sort_messages = '0';
93 }
94 }
95 else {
78cc4b12 96 $thread_sort_messages = getPref($data_dir, $username, "thread_$mailbox");
7c612fdd 97 }
98}
99else {
100 $thread_sort_messages = 0;
101}
102
e372ee8c 103global $color;
104if( isset($do_hook) && $do_hook ) {
105 do_hook ("generic_header");
c57b0888 106}
7c612fdd 107
c57b0888 108sqimap_mailbox_select($imapConnection, $mailbox);
6f223ace 109
31b32433 110if (isset($composenew) && $composenew) {
111 displayPageHeader($color, $mailbox, 'comp_in_new();');
6f223ace 112} else {
113 displayPageHeader($color, $mailbox);
114}
c57b0888 115echo "<br>\n";
116
117do_hook('right_main_after_header');
c57b0888 118if (isset($note)) {
119 echo "<CENTER><B>$note</B></CENTER><BR>\n";
120}
121
122if ($just_logged_in == true) {
123 $just_logged_in = false;
124
125 if (strlen(trim($motd)) > 0) {
bd9bbfef 126 echo "<br><table align=center width=\"70%\" cellpadding=0 cellspacing=3 border=0 bgcolor=\"$color[9]\">" .
c57b0888 127 '<tr><td>' .
bd9bbfef 128 "<table width=\"100%\" cellpadding=5 cellspacing=1 border=0 bgcolor=\"$color[4]\">" .
c57b0888 129 "<tr><td align=center>$motd";
130 do_hook('motd');
131 echo '</td></tr>' .
132 '</table>' .
133 '</td></tr></table>';
23d6bd09 134 }
c57b0888 135}
136
7c612fdd 137if (isset($newsort)) {
138 $sort = $newsort;
139 session_register('sort');
140}
141
c57b0888 142/*********************************************************************
143 * Check to see if we can use cache or not. Currently the only time *
144 * when you will not use it is when a link on the left hand frame is *
145 * used. Also check to make sure we actually have the array in the *
146 * registered session data. :) *
147 *********************************************************************/
148if (! isset($use_mailbox_cache)) {
149 $use_mailbox_cache = 0;
150}
151
d46fbcf8 152/* There is a problem with registered vars in 4.1 */
88cb1b4d 153/*
ae7c2608 154if( substr( phpversion(), 0, 3 ) == '4.1' ) {
d46fbcf8 155 $use_mailbox_cache = FALSE;
156}
88cb1b4d 157*/
d46fbcf8 158
c57b0888 159if ($use_mailbox_cache && session_is_registered('msgs')) {
160 showMessagesForMailbox($imapConnection, $mailbox, $numMessages, $startMessage, $sort, $color, $show_num, $use_mailbox_cache);
161} else {
162 if (session_is_registered('msgs')) {
163 unset($msgs);
23d6bd09 164 }
165
c57b0888 166 if (session_is_registered('msort')) {
167 unset($msort);
23d6bd09 168 }
a37f3771 169
c57b0888 170 if (session_is_registered('numMessages')) {
171 unset($numMessages);
2016e645 172 }
e452ce9b 173
c57b0888 174 $numMessages = sqimap_get_num_messages ($imapConnection, $mailbox);
23d6bd09 175
c57b0888 176 showMessagesForMailbox($imapConnection, $mailbox, $numMessages,
177 $startMessage, $sort, $color, $show_num,
178 $use_mailbox_cache);
23d6bd09 179
c57b0888 180 if (session_is_registered('msgs') && isset($msgs)) {
181 session_register('msgs');
b831fe0b 182 $_SESSION['msgs'] = $msgs;
c57b0888 183 }
1108e8bb 184
c57b0888 185 if (session_is_registered('msort') && isset($msort)) {
186 session_register('msort');
b831fe0b 187 $_SESSION['msort'] = $msort;
c57b0888 188 }
9f2215a1 189
c57b0888 190 session_register('numMessages');
b831fe0b 191 $_SESSION['numMessages'] = $numMessages;
c57b0888 192}
c57b0888 193do_hook('right_main_bottom');
194sqimap_logout ($imapConnection);
23d6bd09 195
bd9bbfef 196echo '</BODY></HTML>';
21c3249f 197
b831fe0b 198?>