Added basic support for message highlighting. Note that this needs quite
[squirrelmail.git] / src / right_main.php
CommitLineData
59177427 1<?php
21c3249f 2 /**
a09387f4 3 ** right_main.php
21c3249f 4 **
5 ** This is where the mailboxes are listed. This controls most of what
6 ** goes on in SquirrelMail.
7 **
8 **/
9
dc54c9f2 10
2a32fc83 11 session_start();
12
21c3249f 13 if(!isset($logged_in)) {
138f26f6 14 echo _("You must login first.");
21c3249f 15 exit;
16 }
17 if(!isset($username) || !isset($key)) {
b581fa60 18 echo _("You need a valid user and password to access this page!");
21c3249f 19 exit;
20 }
44139266 21
d068c0ec 22 if (!isset($config_php))
23 include("../config/config.php");
24 if (!isset($imap_php))
25 include("../functions/imap.php");
26 if (!isset($strings_php))
27 include("../functions/strings.php");
28 if (!isset($date_php))
29 include("../functions/date.php");
30 if (!isset($page_header_php))
31 include("../functions/page_header.php");
32 if (!isset($array_php))
33 include("../functions/array.php");
34 if (!isset($mime_php))
35 include("../functions/mime.php");
36 if (!isset($mailbox_display_php))
37 include("../functions/mailbox_display.php");
38 if (!isset($display_messages_php))
39 include("../functions/display_messages.php");
44139266 40?>
59177427 41<?php
21c3249f 42 /////////////////////////////////////////////////////////////////////////////////
43 //
44 // incoming variables from URL:
45 // $sort Direction to sort by date
46 // values: 0 - descending order
47 // values: 1 - ascending order
48 // $startMessage Message to start at
49 // $mailbox Full Mailbox name
50 //
51 // incoming from cookie:
52 // $username duh
53 // $key pass
54 //
55 /////////////////////////////////////////////////////////////////////////////////
56
21c3249f 57 // open a connection on the imap port (143)
e1469126 58 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
21c3249f 59
f3d17401 60 /** If it was a successful login, lets load their preferences **/
61 include("../src/load_prefs.php");
f3d17401 62
21c3249f 63 // If the page has been loaded without a specific mailbox,
64 // just show a page of general info.
65 if (!isset($mailbox)) {
f8f9bed9 66 displayPageHeader($color, "None");
67 general_info($motd, $org_logo, $version, $org_name, $color);
aa32c5e4 68 echo "</BODY></HTML>";
21c3249f 69 exit;
70 }
71
813eba2f 72 sqimap_mailbox_select($imapConnection, $mailbox);
f8f9bed9 73 displayPageHeader($color, $mailbox);
21c3249f 74
e452ce9b 75 if (isset($newsort)) {
76 $sort = $newsort;
77 session_register("sort");
78 }
79
9f2215a1 80 // Check to see if we can use cache or not. Currently the only time when you wont use it is
81 // when a link on the left hand frame is used. Also check to make sure we actually have the
82 // array in the registered session data. :)
90033b64 83 if ($use_mailbox_cache && session_is_registered("msgs")) {
dc54c9f2 84 showMessagesForMailbox($imapConnection, $mailbox, $numMessages, $startMessage, $sort, $color, $show_num, $use_mailbox_cache);
90033b64 85 } else {
86 if (session_is_registered("msgs"))
87 unset($msgs);
dc54c9f2 88 if (session_is_registered("msort"))
89 unset($msort);
1108e8bb 90 if (session_is_registered("numMessages"))
91 unset($numMessages);
92
93 $numMessages = sqimap_get_num_messages ($imapConnection, $mailbox);
9f2215a1 94
dc54c9f2 95 showMessagesForMailbox($imapConnection, $mailbox, $numMessages, $startMessage, $sort, $color, $show_num, $use_mailbox_cache);
90033b64 96
97 if (session_is_registered("msgs") && isset($msgs))
98 session_register("msgs");
dc54c9f2 99 if (session_is_registered("msort") && isset($msort))
100 session_register("msort");
1108e8bb 101 session_register("numMessages");
90033b64 102 }
21c3249f 103
926da13e 104 // close the connection
813eba2f 105 sqimap_logout ($imapConnection);
21c3249f 106?>
107</FONT>
108</BODY>
109</HTML>