Moved printing of HTML-header into page_header.php.
[squirrelmail.git] / src / left_main.php
CommitLineData
59177427 1<?php
21c3249f 2 /**
a09387f4 3 ** left_main.php
21c3249f 4 **
5 ** This is the code for the left bar. The left bar shows the folders
6 ** available, and has cookie information.
7 **
8 **/
9
2a32fc83 10 session_start();
11
21c3249f 12 if(!isset($username)) {
13 echo "You need a valid user and password to access this page!";
14 exit;
15 }
142499d4 16
d068c0ec 17 if (!isset($config_php))
18 include("../config/config.php");
19 if (!isset($array_php))
20 include("../functions/array.php");
21 if (!isset($strings_php))
22 include("../functions/strings.php");
23 if (!isset($imap_php))
24 include("../functions/imap.php");
142499d4 25 if (!isset($page_header_php))
26 include("../functions/page_header.php");
9c1852ff 27 if (!isset($i18n_php))
28 include("../functions/i18n.php");
29
142499d4 30
2a833d72 31 displayHtmlHeader();
21c3249f 32
d1941f35 33 function formatMailboxName($imapConnection, $mailbox, $real_box, $delimeter, $unseen) {
1e0628fb 34 global $folder_prefix, $trash_folder, $sent_folder;
35 global $color, $move_to_sent, $move_to_trash;
d92b6f31 36
4c34dac5 37 $mailboxURL = urlencode($real_box);
4bbba0d8 38 if($real_box=="INBOX") {
39 $unseen = sqimap_unseen_messages($imapConnection, $numUnseen, $real_box);
40 }
d92b6f31 41
97be2168 42 echo "<NOBR>";
d1941f35 43 if ($unseen > 0)
d92b6f31 44 $line .= "<B>";
45
7ce342dc 46 $special_color = false;
1e0628fb 47 if ((strtolower($real_box) == "inbox") ||
48 (($real_box == $trash_folder) && ($move_to_trash)) ||
49 (($real_box == $sent_folder) && ($move_to_sent)))
50 $special_color = true;
7ce342dc 51
52 if ($special_color == true) {
9f2215a1 53 $line .= "<a href=\"right_main.php?sort=0&startMessage=1&mailbox=$mailboxURL\" target=\"right\" style=\"text-decoration:none\"><FONT COLOR=\"$color[11]\">";
813eba2f 54 $line .= replace_spaces($mailbox);
7ce342dc 55 $line .= "</font></a>";
56 } else {
9f2215a1 57 $line .= "<a href=\"right_main.php?sort=0&startMessage=1&mailbox=$mailboxURL\" target=\"right\" style=\"text-decoration:none\">";
813eba2f 58 $line .= replace_spaces($mailbox);
7ce342dc 59 $line .= "</font></a>";
d92b6f31 60 }
7ce342dc 61
d1941f35 62 if ($unseen > 0)
7ce342dc 63 $line .= "</B>";
64
d1941f35 65 if ($unseen > 0) {
66 $line .= "&nbsp;<small>($unseen)</small>";
7ce342dc 67 }
68
1e0628fb 69 if (($move_to_trash == true) && ($real_box == $trash_folder)) {
0ab89329 70 $urlMailbox = urlencode($real_box);
aae41ae9 71 $line .= "<small>";
9f2215a1 72 $line .= "&nbsp;&nbsp;&nbsp;&nbsp;(<B><A HREF=\"empty_trash.php?numMessages=$numMessages&mailbox=$urlMailbox\" TARGET=right style=\"text-decoration:none\">"._("purge")."</A></B>)";
aae41ae9 73 $line .= "</small></a>\n";
d92b6f31 74 }
75 return $line;
081a01e7 76 echo "</NOBR>";
d92b6f31 77 }
78
21c3249f 79 // open a connection on the imap port (143)
e1469126 80 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 10); // the 10 is to hide the output
21c3249f 81
f3d17401 82 /** If it was a successful login, lets load their preferences **/
83 include("../src/load_prefs.php");
9c1852ff 84
4c34dac5 85 if (isset($left_refresh) && ($left_refresh != "None") && ($left_refresh != "")) {
aff57ea5 86 echo "<META HTTP-EQUIV=\"Expires\" CONTENT=\"Thu, 01 Dec 1994 16:00:00 GMT\">";
87 echo "<META HTTP-EQUIV=\"Pragma\" CONTENT=\"no-cache\">";
9f2215a1 88 echo "<META HTTP-EQUIV=\"REFRESH\" CONTENT=\"$left_refresh;URL=left_main.php\">";
469eb37b 89 }
813eba2f 90
f3d17401 91 echo "<BODY BGCOLOR=\"$color[3]\" TEXT=\"$color[6]\" LINK=\"$color[6]\" VLINK=\"$color[6]\" ALINK=\"$color[6]\">";
f3d17401 92
813eba2f 93 $boxes = sqimap_mailbox_list($imapConnection);
21c3249f 94
aae41ae9 95 echo "<FONT SIZE=4><B><CENTER>";
813eba2f 96 echo _("Folders") . "</B><BR></FONT>";
97afcee9 97
9f2215a1 98 echo "<small>(<A HREF=\"../src/left_main.php\" TARGET=\"left\">";
ad6f805c 99 echo _("refresh folder list");
aae41ae9 100 echo "</A>)</small></CENTER><BR>";
813eba2f 101 $delimeter = sqimap_get_delimiter($imapConnection);
4c34dac5 102
7ce342dc 103 for ($i = 0;$i < count($boxes); $i++) {
d92b6f31 104 $line = "";
813eba2f 105 $mailbox = $boxes[$i]["formatted"];
d92b6f31 106
813eba2f 107 if ($boxes[$i]["flags"]) {
7ce342dc 108 $noselect = false;
813eba2f 109 for ($h = 0; $h < count($boxes[$i]["flags"]); $h++) {
110 if (strtolower($boxes[$i]["flags"][$h]) == "noselect")
7ce342dc 111 $noselect = true;
d92b6f31 112 }
7ce342dc 113 if ($noselect == true) {
aae41ae9 114 $line .= "<FONT COLOR=\"$color[10]\">";
813eba2f 115 $line .= replace_spaces(readShortMailboxName($mailbox, $delimeter));
aae41ae9 116 $line .= "</FONT>";
7ce342dc 117 } else {
d1941f35 118 $line .= formatMailboxName($imapConnection, $mailbox, $boxes[$i]["unformatted"], $delimeter, $boxes[$i]["unseen"]);
d92b6f31 119 }
7ce342dc 120 } else {
d1941f35 121 $line .= formatMailboxName($imapConnection, $mailbox, $boxes[$i]["unformatted"], $delimeter, $boxes[$i]["unseen"]);
d92b6f31 122 }
7ce342dc 123 echo "$line<BR>";
d92b6f31 124 }
125
21c3249f 126
127 fclose($imapConnection);
128
129?>
aae41ae9 130</BODY></HTML>