Updated translation file.
[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");
a09387f4 32 include("../functions/mailbox_display.php");
33 include("../functions/display_messages.php");
21c3249f 34
35 /////////////////////////////////////////////////////////////////////////////////
36 //
37 // incoming variables from URL:
38 // $sort Direction to sort by date
39 // values: 0 - descending order
40 // values: 1 - ascending order
41 // $startMessage Message to start at
42 // $mailbox Full Mailbox name
43 //
44 // incoming from cookie:
45 // $username duh
46 // $key pass
47 //
48 /////////////////////////////////////////////////////////////////////////////////
49
21c3249f 50 // open a connection on the imap port (143)
813eba2f 51 $imapConnection = sqimap_login($username, $key, $imapServerAddress, 0);
21c3249f 52
f3d17401 53 /** If it was a successful login, lets load their preferences **/
54 include("../src/load_prefs.php");
f3d17401 55 echo "<BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n";
56 echo "<FONT FACE=\"Arial,Helvetica\">";
57
21c3249f 58 // If the page has been loaded without a specific mailbox,
59 // just show a page of general info.
60 if (!isset($mailbox)) {
f8f9bed9 61 displayPageHeader($color, "None");
62 general_info($motd, $org_logo, $version, $org_name, $color);
aa32c5e4 63 echo "</BODY></HTML>";
21c3249f 64 exit;
65 }
66
813eba2f 67 sqimap_mailbox_select($imapConnection, $mailbox);
68 $numMessages = sqimap_get_num_messages ($imapConnection, $mailbox);
f8f9bed9 69 displayPageHeader($color, $mailbox);
21c3249f 70
d3cdb279 71 showMessagesForMailbox($imapConnection, $mailbox, $numMessages, $startMessage, $sort, $color);
21c3249f 72
926da13e 73 // close the connection
813eba2f 74 sqimap_logout ($imapConnection);
21c3249f 75?>
76</FONT>
77</BODY>
78</HTML>