bugfixes
[squirrelmail.git] / src / right_main.php
1 <?php
2 /**
3 ** right_main.php
4 **
5 ** This is where the mailboxes are listed. This controls most of what
6 ** goes on in SquirrelMail.
7 **
8 **/
9
10
11 session_start();
12
13 if(!isset($logged_in)) {
14 echo _("You must login first.");
15 exit;
16 }
17 if(!isset($username) || !isset($key)) {
18 echo _("You need a valid user and password to access this page!");
19 exit;
20 }
21
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");
40 ?>
41 <HTML>
42 <FONT FACE="Arial,Helvetica">
43 <?php
44 /////////////////////////////////////////////////////////////////////////////////
45 //
46 // incoming variables from URL:
47 // $sort Direction to sort by date
48 // values: 0 - descending order
49 // values: 1 - ascending order
50 // $startMessage Message to start at
51 // $mailbox Full Mailbox name
52 //
53 // incoming from cookie:
54 // $username duh
55 // $key pass
56 //
57 /////////////////////////////////////////////////////////////////////////////////
58
59 // open a connection on the imap port (143)
60 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
61
62 /** If it was a successful login, lets load their preferences **/
63 include("../src/load_prefs.php");
64 echo "<BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n";
65
66 // If the page has been loaded without a specific mailbox,
67 // just show a page of general info.
68 if (!isset($mailbox)) {
69 displayPageHeader($color, "None");
70 general_info($motd, $org_logo, $version, $org_name, $color);
71 echo "</BODY></HTML>";
72 exit;
73 }
74
75 sqimap_mailbox_select($imapConnection, $mailbox);
76 displayPageHeader($color, $mailbox);
77
78 if (isset($newsort)) {
79 $sort = $newsort;
80 session_register("sort");
81 }
82
83 // Check to see if we can use cache or not. Currently the only time when you wont use it is
84 // when a link on the left hand frame is used. Also check to make sure we actually have the
85 // array in the registered session data. :)
86 if ($use_mailbox_cache && session_is_registered("msgs")) {
87 showMessagesForMailbox($imapConnection, $mailbox, $numMessages, $startMessage, $sort, $color, $show_num, $use_mailbox_cache);
88 } else {
89 if (session_is_registered("msgs"))
90 unset($msgs);
91 if (session_is_registered("msort"))
92 unset($msort);
93 if (session_is_registered("numMessages"))
94 unset($numMessages);
95
96 $numMessages = sqimap_get_num_messages ($imapConnection, $mailbox);
97
98 showMessagesForMailbox($imapConnection, $mailbox, $numMessages, $startMessage, $sort, $color, $show_num, $use_mailbox_cache);
99
100 if (session_is_registered("msgs") && isset($msgs))
101 session_register("msgs");
102 if (session_is_registered("msort") && isset($msort))
103 session_register("msort");
104 session_register("numMessages");
105 }
106
107 // close the connection
108 sqimap_logout ($imapConnection);
109 ?>
110 </FONT>
111 </BODY>
112 </HTML>