* Got bored and copied all the validate.php and define() stuff to 1.1
[squirrelmail.git] / src / right_main.php
1 <?php
2 /**
3 ** right_main.php
4 **
5 ** Copyright (c) 1999-2000 The SquirrelMail development team
6 ** Licensed under the GNU GPL. For full terms see the file COPYING.
7 **
8 ** This is where the mailboxes are listed. This controls most of what
9 ** goes on in SquirrelMail.
10 **
11 ** $Id$
12 **/
13
14 include('../src/validate.php');
15 include('../functions/i18n.php');
16 include('../functions/strings.php');
17 include('../config/config.php');
18 include('../functions/imap.php');
19 include('../functions/date.php');
20 include('../functions/page_header.php');
21 include('../functions/array.php');
22 include('../functions/mime.php');
23 include('../functions/mailbox_display.php');
24 include('../functions/display_messages.php');
25
26 ?>
27 <?php
28 /////////////////////////////////////////////////////////////////////////////////
29 //
30 // incoming variables from URL:
31 // $sort Direction to sort by date
32 // values: 0 - descending order
33 // values: 1 - ascending order
34 // $startMessage Message to start at
35 // $mailbox Full Mailbox name
36 //
37 // incoming from cookie:
38 // $username duh
39 // $key pass
40 //
41 /////////////////////////////////////////////////////////////////////////////////
42
43 // open a connection on the imap port (143)
44 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
45
46 /** If it was a successful login, lets load their preferences **/
47 include('../src/load_prefs.php');
48
49 if (isset($newsort) && $newsort != $sort) {
50 setPref($data_dir, $username, 'sort', $newsort);
51 }
52
53 // If the page has been loaded without a specific mailbox,
54 // send them to the inbox
55 if (!isset($mailbox)) {
56 $mailbox = 'INBOX';
57 $startMessage = 1;
58 }
59
60 // compensate for the UW vulnerability
61 if ($imap_server_type == 'uw' && (strstr($mailbox, '../') !== false ||
62 substr($mailbox, 0, 1) == '/')) {
63 $mailbox = 'INBOX';
64 }
65
66 sqimap_mailbox_select($imapConnection, $mailbox);
67 displayPageHeader($color, $mailbox);
68
69 do_hook('right_main_after_header');
70
71 if (isset($just_logged_in) && $just_logged_in == 1 &&
72 strlen(trim($motd)) > 0) {
73 echo "<center><br>\n";
74 echo "<table width=70% cellpadding=0 cellspacing=0 border=0><tr><td bgcolor=\"$color[9]\">\n";
75 echo "<table width=100% cellpadding=5 cellspacing=1 border=0><tr><td bgcolor=\"$color[4]\">\n";
76 echo "$motd\n";
77 echo "</td></tr></table>\n";
78 echo "</td></tr></table>\n";
79 echo "</center><br>\n";
80 }
81
82 if (isset($newsort)) {
83 $sort = $newsort;
84 session_register('sort');
85 }
86
87 // Check to see if we can use cache or not. Currently the only time when you wont use it is
88 // when a link on the left hand frame is used. Also check to make sure we actually have the
89 // array in the registered session data. :)
90 if (! isset($use_mailbox_cache))
91 $use_mailbox_cache = 0;
92 if ($use_mailbox_cache && session_is_registered('msgs')) {
93 showMessagesForMailbox($imapConnection, $mailbox, $numMessages, $startMessage, $sort, $color, $show_num, $use_mailbox_cache);
94 } else {
95 if (session_is_registered('msgs'))
96 unset($msgs);
97 if (session_is_registered('msort'))
98 unset($msort);
99 if (session_is_registered('numMessages'))
100 unset($numMessages);
101
102 $numMessages = sqimap_get_num_messages ($imapConnection, $mailbox);
103
104 showMessagesForMailbox($imapConnection, $mailbox, $numMessages, $startMessage, $sort, $color, $show_num, $use_mailbox_cache);
105
106 if (session_is_registered('msgs') && isset($msgs))
107 session_register('msgs');
108 if (session_is_registered('msort') && isset($msort))
109 session_register('msort');
110 session_register('numMessages');
111 }
112
113 do_hook('right_main_bottom');
114 sqimap_logout ($imapConnection);
115 ?>
116 </FONT>
117 </BODY>
118 </HTML>