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