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