Fixed how folder names are formatted in a hierarchy of folders.
[squirrelmail.git] / src / left_main.php
1 <?php
2 /**
3 ** left_main.php
4 ** Copyright (c) 1999-2000 The SquirrelMail development team
5 ** Licensed under the GNU GPL. For full terms see the file COPYING.
6 **
7 ** This is the code for the left bar. The left bar shows the folders
8 ** available, and has cookie information.
9 **
10 **/
11
12 session_start();
13
14 if (!isset($i18n_php))
15 include ("../functions/i18n.php");
16
17 if(!isset($username)) {
18 set_up_language($squirrelmail_language, true);
19 echo "You need a valid user and password to access this page!";
20 exit;
21 }
22
23
24 if (!isset($config_php))
25 include("../config/config.php");
26 if (!isset($array_php))
27 include("../functions/array.php");
28 if (!isset($strings_php))
29 include("../functions/strings.php");
30 if (!isset($imap_php))
31 include("../functions/imap.php");
32 if (!isset($page_header_php))
33 include("../functions/page_header.php");
34 if (!isset($i18n_php))
35 include("../functions/i18n.php");
36 if (!isset($plugin_php))
37 include("../functions/plugin.php");
38
39 // open a connection on the imap port (143)
40 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 10); // the 10 is to hide the output
41
42 /** If it was a successful login, lets load their preferences **/
43 include("../src/load_prefs.php");
44
45 displayHtmlHeader();
46
47 function formatMailboxName($imapConnection, $mailbox, $real_box, $delimeter, $unseen) {
48 global $folder_prefix, $trash_folder, $sent_folder;
49 global $color, $move_to_sent, $move_to_trash;
50 global $unseen_notify, $unseen_type;
51
52 $mailboxURL = urlencode($real_box);
53
54 if ($unseen_notify == 2 && $real_box == "INBOX") {
55 $unseen = sqimap_unseen_messages($imapConnection, $numUnseen, $real_box);
56 if ($unseen_type == 1 && $unseen > 0) {
57 $unseen_string = "($unseen)";
58 $unseen_found = true;
59 } else if ($unseen_type == 2) {
60 $numMessages = sqimap_get_num_messages($imapConnection, $real_box);
61 $unseen_string = "<font color=\"$color[11]\">($unseen/$numMessages)</font>";
62 $unseen_found = true;
63 }
64 } else if ($unseen_notify == 3) {
65 $unseen = sqimap_unseen_messages($imapConnection, $numUnseen, $real_box);
66 if ($unseen_type == 1 && $unseen > 0) {
67 $unseen_string = "($unseen)";
68 $unseen_found = true;
69 } else if ($unseen_type == 2) {
70 $numMessages = sqimap_get_num_messages($imapConnection, $real_box);
71 $unseen_string = "<font color=\"$color[11]\">($unseen/$numMessages)</font>";
72 $unseen_found = true;
73 }
74 }
75
76 $line .= "<NOBR>";
77 if ($unseen > 0)
78 $line .= "<B>";
79
80 $special_color = false;
81 if ((strtolower($real_box) == "inbox") ||
82 (($real_box == $trash_folder) && ($move_to_trash)) ||
83 (($real_box == $sent_folder) && ($move_to_sent)))
84 $special_color = true;
85
86 if ($special_color == true) {
87 $line .= "<a href=\"right_main.php?sort=0&startMessage=1&mailbox=$mailboxURL\" target=\"right\" style=\"text-decoration:none\"><FONT COLOR=\"$color[11]\">";
88 $line .= replace_spaces($mailbox);
89 $line .= "</font></a>";
90 } else {
91 $line .= "<a href=\"right_main.php?sort=0&startMessage=1&mailbox=$mailboxURL\" target=\"right\" style=\"text-decoration:none\">";
92 $line .= replace_spaces($mailbox);
93 $line .= "</a>";
94 }
95
96 if ($unseen > 0)
97 $line .= "</B>";
98
99 if ($unseen_found) {
100 $line .= "&nbsp;<small>$unseen_string</small>";
101 }
102
103 if (($move_to_trash == true) && ($real_box == $trash_folder)) {
104 $urlMailbox = urlencode($real_box);
105 $line .= "\n<small>\n";
106 $line .= " &nbsp;&nbsp;(<B><A HREF=\"empty_trash.php\" style=\"text-decoration:none\">"._("purge")."</A></B>)";
107 $line .= "\n</small>\n";
108 }
109 $line .= "</NOBR>";
110 return $line;
111 }
112
113 if (isset($left_refresh) && ($left_refresh != "None") && ($left_refresh != "")) {
114 echo "<META HTTP-EQUIV=\"Expires\" CONTENT=\"Thu, 01 Dec 1994 16:00:00 GMT\">\n";
115 echo "<META HTTP-EQUIV=\"Pragma\" CONTENT=\"no-cache\">\n";
116 echo "<META HTTP-EQUIV=\"REFRESH\" CONTENT=\"$left_refresh;URL=left_main.php\">\n";
117 }
118
119 echo "\n<BODY BGCOLOR=\"$color[3]\" TEXT=\"$color[6]\" LINK=\"$color[6]\" VLINK=\"$color[6]\" ALINK=\"$color[6]\">\n";
120
121 do_hook("left_main_before");
122
123 $boxes = sqimap_mailbox_list($imapConnection);
124
125 echo "<CENTER><FONT SIZE=4><B>";
126 echo _("Folders") . "</B><BR></FONT>\n\n";
127
128 echo "<small>(<A HREF=\"../src/left_main.php\" TARGET=\"left\">";
129 echo _("refresh folder list");
130 echo "</A>)</small></CENTER><BR>";
131 $delimeter = sqimap_get_delimiter($imapConnection);
132
133 for ($i = 0;$i < count($boxes); $i++) {
134 $line = "";
135 $mailbox = $boxes[$i]["formatted"];
136
137 if ($boxes[$i]["flags"]) {
138 $noselect = false;
139 for ($h = 0; $h < count($boxes[$i]["flags"]); $h++) {
140 if (strtolower($boxes[$i]["flags"][$h]) == "noselect")
141 $noselect = true;
142 }
143 if ($noselect == true) {
144 $line .= "<FONT COLOR=\"$color[10]\">";
145 $line .= replace_spaces($mailbox);
146 $line .= "</FONT>";
147 } else {
148 $line .= formatMailboxName($imapConnection, $mailbox, $boxes[$i]["unformatted"], $delimeter, $boxes[$i]["unseen"]);
149 }
150 } else {
151 $line .= formatMailboxName($imapConnection, $mailbox, $boxes[$i]["unformatted"], $delimeter, $boxes[$i]["unseen"]);
152 }
153 echo "$line<BR>\n";
154 }
155 sqimap_logout($imapConnection);
156 do_hook("left_main_after");
157 ?>
158 </BODY></HTML>