minor - corrected gettext support.
[squirrelmail.git] / src / right_main.php
CommitLineData
21c3249f 1<?
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
10 if(!isset($logged_in)) {
b581fa60 11 echo _("You must ");
12 echo "<a href=\"login.php\">";
13 echo _("login");
14 echo "</a>";
9ee3e401 15 echo _(" first.");
21c3249f 16 exit;
17 }
18 if(!isset($username) || !isset($key)) {
b581fa60 19 echo _("You need a valid user and password to access this page!");
21c3249f 20 exit;
21 }
22?>
23<HTML>
21c3249f 24<FONT FACE="Arial,Helvetica">
25<?
a09387f4 26 include("../config/config.php");
27 include("../functions/imap.php");
28 include("../functions/strings.php");
29 include("../functions/date.php");
30 include("../functions/page_header.php");
31 include("../functions/array.php");
32 include("../functions/mailbox.php");
33 include("../functions/mailbox_display.php");
34 include("../functions/display_messages.php");
21c3249f 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
21c3249f 51 // open a connection on the imap port (143)
2aa12d5e 52 $imapConnection = loginToImapServer($username, $key, $imapServerAddress);
21c3249f 53
f3d17401 54 /** If it was a successful login, lets load their preferences **/
55 include("../src/load_prefs.php");
f3d17401 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
21c3249f 59 // If the page has been loaded without a specific mailbox,
60 // just show a page of general info.
61 if (!isset($mailbox)) {
f8f9bed9 62 displayPageHeader($color, "None");
63 general_info($motd, $org_logo, $version, $org_name, $color);
aa32c5e4 64 echo "</BODY></HTML>";
21c3249f 65 exit;
66 }
67
21c3249f 68 // switch to the mailbox, and get the number of messages in it.
69 selectMailbox($imapConnection, $mailbox, $numMessages);
21c3249f 70
926da13e 71 // Display the header at the top of the page
f8f9bed9 72 displayPageHeader($color, $mailbox);
21c3249f 73
926da13e 74 // Get the list of messages for this mailbox
d3cdb279 75 showMessagesForMailbox($imapConnection, $mailbox, $numMessages, $startMessage, $sort, $color);
21c3249f 76
926da13e 77 // close the connection
4c2d69ac 78 fputs($imapConnection, "1 logout\n");
21c3249f 79 fclose($imapConnection);
80?>
81</FONT>
82</BODY>
83</HTML>