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