Moved some output, so that page_header.php can send headers.
[squirrelmail.git] / src / right_main.php
1 <?
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 if(!isset($logged_in)) {
11 echo _("You must ");
12 echo "<a href=\"login.php\">";
13 echo _("login");
14 echo "</a>";
15 echo _(" first.");
16 exit;
17 }
18 if(!isset($username) || !isset($key)) {
19 echo _("You need a valid user and password to access this page!");
20 exit;
21 }
22
23 include("../config/config.php");
24 include("../functions/imap.php");
25 include("../functions/strings.php");
26 include("../functions/date.php");
27 include("../functions/page_header.php");
28 include("../functions/array.php");
29 include("../functions/mime.php");
30 include("../functions/mailbox_display.php");
31 include("../functions/display_messages.php");
32 ?>
33 <HTML>
34 <FONT FACE="Arial,Helvetica">
35 <?
36 /////////////////////////////////////////////////////////////////////////////////
37 //
38 // incoming variables from URL:
39 // $sort Direction to sort by date
40 // values: 0 - descending order
41 // values: 1 - ascending order
42 // $startMessage Message to start at
43 // $mailbox Full Mailbox name
44 //
45 // incoming from cookie:
46 // $username duh
47 // $key pass
48 //
49 /////////////////////////////////////////////////////////////////////////////////
50
51 // open a connection on the imap port (143)
52 $imapConnection = sqimap_login($username, $key, $imapServerAddress, 0);
53
54 /** If it was a successful login, lets load their preferences **/
55 include("../src/load_prefs.php");
56 echo "<BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n";
57 echo "<FONT FACE=\"Arial,Helvetica\">";
58
59 // If the page has been loaded without a specific mailbox,
60 // just show a page of general info.
61 if (!isset($mailbox)) {
62 displayPageHeader($color, "None");
63 general_info($motd, $org_logo, $version, $org_name, $color);
64 echo "</BODY></HTML>";
65 exit;
66 }
67
68 sqimap_mailbox_select($imapConnection, $mailbox);
69 $numMessages = sqimap_get_num_messages ($imapConnection, $mailbox);
70 displayPageHeader($color, $mailbox);
71
72 showMessagesForMailbox($imapConnection, $mailbox, $numMessages, $startMessage, $sort, $color);
73
74 // close the connection
75 sqimap_logout ($imapConnection);
76 ?>
77 </FONT>
78 </BODY>
79 </HTML>