I moved the filter update on folder rename/delete
[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) */
39$imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
40
bdfb67f8 41if( isset( $PG_SHOWNUM ) ) {
42 $show_num = $PG_SHOWNUM;
43}
44
c57b0888 45if (isset($newsort) && $newsort != $sort) {
46 setPref($data_dir, $username, 'sort', $newsort);
47}
48
49/* If the page has been loaded without a specific mailbox, */
50/* send them to the inbox */
51if (!isset($mailbox)) {
52 $mailbox = 'INBOX';
53 $startMessage = 1;
54}
55
56if (!isset($startMessage) || ($startMessage == '')) {
57 $startMessage = 1;
58}
59
60/* compensate for the UW vulnerability. */
61if ($imap_server_type == 'uw' && (strstr($mailbox, '../') ||
62 substr($mailbox, 0, 1) == '/')) {
63 $mailbox = 'INBOX';
64}
65
66sqimap_mailbox_select($imapConnection, $mailbox);
610ded64 67displayPageHeader($color, $mailbox);
c57b0888 68echo "<br>\n";
69
70do_hook('right_main_after_header');
71
72if (isset($note)) {
73 echo "<CENTER><B>$note</B></CENTER><BR>\n";
74}
75
76if ($just_logged_in == true) {
77 $just_logged_in = false;
78
79 if (strlen(trim($motd)) > 0) {
bd9bbfef 80 echo "<br><table align=center width=\"70%\" cellpadding=0 cellspacing=3 border=0 bgcolor=\"$color[9]\">" .
c57b0888 81 '<tr><td>' .
bd9bbfef 82 "<table width=\"100%\" cellpadding=5 cellspacing=1 border=0 bgcolor=\"$color[4]\">" .
c57b0888 83 "<tr><td align=center>$motd";
84 do_hook('motd');
85 echo '</td></tr>' .
86 '</table>' .
87 '</td></tr></table>';
23d6bd09 88 }
c57b0888 89}
90
91if (isset($newsort)) {
92 $sort = $newsort;
93 session_register('sort');
94}
95
96/*********************************************************************
97 * Check to see if we can use cache or not. Currently the only time *
98 * when you will not use it is when a link on the left hand frame is *
99 * used. Also check to make sure we actually have the array in the *
100 * registered session data. :) *
101 *********************************************************************/
102if (! isset($use_mailbox_cache)) {
103 $use_mailbox_cache = 0;
104}
105
d46fbcf8 106/* There is a problem with registered vars in 4.1 */
88cb1b4d 107/*
ae7c2608 108if( substr( phpversion(), 0, 3 ) == '4.1' ) {
d46fbcf8 109 $use_mailbox_cache = FALSE;
110}
88cb1b4d 111*/
d46fbcf8 112
c57b0888 113if ($use_mailbox_cache && session_is_registered('msgs')) {
114 showMessagesForMailbox($imapConnection, $mailbox, $numMessages, $startMessage, $sort, $color, $show_num, $use_mailbox_cache);
115} else {
116 if (session_is_registered('msgs')) {
117 unset($msgs);
23d6bd09 118 }
119
c57b0888 120 if (session_is_registered('msort')) {
121 unset($msort);
23d6bd09 122 }
a37f3771 123
c57b0888 124 if (session_is_registered('numMessages')) {
125 unset($numMessages);
2016e645 126 }
e452ce9b 127
c57b0888 128 $numMessages = sqimap_get_num_messages ($imapConnection, $mailbox);
23d6bd09 129
c57b0888 130 showMessagesForMailbox($imapConnection, $mailbox, $numMessages,
131 $startMessage, $sort, $color, $show_num,
132 $use_mailbox_cache);
23d6bd09 133
c57b0888 134 if (session_is_registered('msgs') && isset($msgs)) {
135 session_register('msgs');
b831fe0b 136 $_SESSION['msgs'] = $msgs;
c57b0888 137 }
1108e8bb 138
c57b0888 139 if (session_is_registered('msort') && isset($msort)) {
140 session_register('msort');
b831fe0b 141 $_SESSION['msort'] = $msort;
c57b0888 142 }
9f2215a1 143
c57b0888 144 session_register('numMessages');
b831fe0b 145 $_SESSION['numMessages'] = $numMessages;
c57b0888 146}
2016e645 147
c57b0888 148do_hook('right_main_bottom');
149sqimap_logout ($imapConnection);
23d6bd09 150
bd9bbfef 151echo '</BODY></HTML>';
21c3249f 152
b831fe0b 153?>