added a theme
[squirrelmail.git] / src / left_main.php
... / ...
CommitLineData
1<?
2 /**
3 ** left_main.php
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
10 if(!isset($username)) {
11 echo "You need a valid user and password to access this page!";
12 exit;
13 }
14?>
15<HTML>
16<?
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");
25
26 function formatMailboxName($imapConnection, $mailbox, $real_box, $delimeter, $color, $move_to_trash) {
27 require ("../config/config.php");
28
29 $mailboxURL = urlencode($real_box);
30 sqimap_mailbox_select ($imapConnection, $real_box);
31 $unseen = sqimap_unseen_messages($imapConnection, $numUnseen);
32
33 echo "<NOBR>";
34 if ($unseen)
35 $line .= "<B>";
36
37 $special_color = false;
38 for ($i = 0; $i < count($special_folders); $i++) {
39 if (($special_folders[$i] == $real_box) && ($use_special_folder_color == true))
40 $special_color = true;
41 }
42
43 if ($special_color == true) {
44 $line .= "<a href=\"right_main.php?sort=0&startMessage=1&mailbox=$mailboxURL\" target=\"right\" style=\"text-decoration:none\"><FONT FACE=\"Arial,Helvetica\" COLOR=\"$color[11]\">";
45 $line .= replace_spaces($mailbox);
46 $line .= "</font></a>";
47 } else {
48 $line .= "<a href=\"right_main.php?sort=0&startMessage=1&mailbox=$mailboxURL\" target=\"right\" style=\"text-decoration:none\"><FONT FACE=\"Arial,Helvetica\">";
49 $line .= replace_spaces($mailbox);
50 $line .= "</font></a>";
51 }
52
53 if ($unseen)
54 $line .= "</B>";
55
56 if ($numUnseen > 0) {
57 $line .= "&nbsp;<FONT FACE=\"Arial,Helvetica\" SIZE=2>($numUnseen)</FONT>";
58 }
59
60 if (($move_to_trash == true) && (trim($real_box) == $trash_folder)) {
61 $urlMailbox = urlencode($real_box);
62 $line .= "<FONT FACE=\"Arial,Helvetica\" SIZE=2>";
63 $line .= "&nbsp;&nbsp;&nbsp;&nbsp;(<B><A HREF=\"empty_trash.php?numMessages=$numMessages&mailbox=$urlMailbox\" TARGET=right style=\"text-decoration:none\">"._("purge")."</A></B>)";
64 $line .= "</FONT></a>\n";
65 }
66
67 echo "</NOBR>";
68 return $line;
69 }
70
71 // open a connection on the imap port (143)
72 $imapConnection = sqimap_login($username, $key, $imapServerAddress, 10); // the 10 is to hide the output
73
74 /** If it was a successful login, lets load their preferences **/
75 include("../src/load_prefs.php");
76 if (isset($left_refresh) && ($left_refresh != "None") && ($left_refresh != "")) {
77 echo "<META HTTP-EQUIV=\"Expires\" CONTENT=\"Thu, 01 Dec 1994 16:00:00 GMT\">";
78 echo "<META HTTP-EQUIV=\"Pragma\" CONTENT=\"no-cache\">";
79 echo "<META HTTP-EQUIV=\"REFRESH\" CONTENT=\"$left_refresh;URL=left_main.php\">";
80 }
81
82 echo "<BODY BGCOLOR=\"$color[3]\" TEXT=\"$color[6]\" LINK=\"$color[6]\" VLINK=\"$color[6]\" ALINK=\"$color[6]\">";
83 echo "<FONT FACE=\"Arial,Helvetica\">";
84
85 $boxes = sqimap_mailbox_list($imapConnection);
86
87 echo "<FONT FACE=\"Arial,Helvetica\" SIZE=4><B><CENTER>";
88 echo _("Folders") . "</B><BR></FONT>";
89
90 echo "<FONT FACE=\"Arial,Helvetica\" SIZE=2>(<A HREF=\"../src/left_main.php\" TARGET=\"left\">";
91 echo _("refresh folder list");
92 echo "</A>)</FONT></CENTER><BR>";
93 echo "<FONT FACE=\"Arial,Helvetica\">\n";
94 $delimeter = sqimap_get_delimiter($imapConnection);
95
96 for ($i = 0;$i < count($boxes); $i++) {
97 $line = "";
98 $mailbox = $boxes[$i]["formatted"];
99
100 if ($boxes[$i]["flags"]) {
101 $noselect = false;
102 for ($h = 0; $h < count($boxes[$i]["flags"]); $h++) {
103 if (strtolower($boxes[$i]["flags"][$h]) == "noselect")
104 $noselect = true;
105 }
106 if ($noselect == true) {
107 $line .= "<FONT COLOR=\"$color[10]\" FACE=\"Arial,Helvetica\">";
108 $line .= replace_spaces(readShortMailboxName($mailbox, $delimeter));
109 $line .= "</FONT><FONT FACE=\"Arial,Helvetica\">";
110 } else {
111 $line .= formatMailboxName($imapConnection, $mailbox, $boxes[$i]["unformatted"], $delimeter, $color, $move_to_trash);
112 }
113 } else {
114 $line .= formatMailboxName($imapConnection, $mailbox, $boxes[$i]["unformatted"], $delimeter, $color, $move_to_trash);
115 }
116 echo "$line<BR>";
117 }
118
119 echo "</FONT>";
120
121 fclose($imapConnection);
122
123?>
124</FONT></BODY></HTML>