speed optomizations and less imap commands
[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
31 echo "<HTML>";
21c3249f 32
1e0628fb 33 function formatMailboxName($imapConnection, $mailbox, $real_box, $delimeter, $color) {
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);
813eba2f 38 sqimap_mailbox_select ($imapConnection, $real_box);
39 $unseen = sqimap_unseen_messages($imapConnection, $numUnseen);
d92b6f31 40
97be2168 41 echo "<NOBR>";
d92b6f31 42 if ($unseen)
43 $line .= "<B>";
44
7ce342dc 45 $special_color = false;
1e0628fb 46 if ((strtolower($real_box) == "inbox") ||
47 (($real_box == $trash_folder) && ($move_to_trash)) ||
48 (($real_box == $sent_folder) && ($move_to_sent)))
49 $special_color = true;
7ce342dc 50
51 if ($special_color == true) {
9f2215a1 52 $line .= "<a href=\"right_main.php?sort=0&startMessage=1&mailbox=$mailboxURL\" target=\"right\" style=\"text-decoration:none\"><FONT COLOR=\"$color[11]\">";
813eba2f 53 $line .= replace_spaces($mailbox);
7ce342dc 54 $line .= "</font></a>";
55 } else {
9f2215a1 56 $line .= "<a href=\"right_main.php?sort=0&startMessage=1&mailbox=$mailboxURL\" target=\"right\" style=\"text-decoration:none\">";
813eba2f 57 $line .= replace_spaces($mailbox);
7ce342dc 58 $line .= "</font></a>";
d92b6f31 59 }
7ce342dc 60
61 if ($unseen)
62 $line .= "</B>";
63
d92b6f31 64 if ($numUnseen > 0) {
aae41ae9 65 $line .= "&nbsp;<small>($numUnseen)</small>";
7ce342dc 66 }
67
1e0628fb 68 if (($move_to_trash == true) && ($real_box == $trash_folder)) {
0ab89329 69 $urlMailbox = urlencode($real_box);
aae41ae9 70 $line .= "<small>";
9f2215a1 71 $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 72 $line .= "</small></a>\n";
d92b6f31 73 }
74 return $line;
081a01e7 75 echo "</NOBR>";
d92b6f31 76 }
77
21c3249f 78 // open a connection on the imap port (143)
e1469126 79 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 10); // the 10 is to hide the output
21c3249f 80
f3d17401 81 /** If it was a successful login, lets load their preferences **/
82 include("../src/load_prefs.php");
9c1852ff 83
4c34dac5 84 if (isset($left_refresh) && ($left_refresh != "None") && ($left_refresh != "")) {
aff57ea5 85 echo "<META HTTP-EQUIV=\"Expires\" CONTENT=\"Thu, 01 Dec 1994 16:00:00 GMT\">";
86 echo "<META HTTP-EQUIV=\"Pragma\" CONTENT=\"no-cache\">";
9f2215a1 87 echo "<META HTTP-EQUIV=\"REFRESH\" CONTENT=\"$left_refresh;URL=left_main.php\">";
469eb37b 88 }
813eba2f 89
f3d17401 90 echo "<BODY BGCOLOR=\"$color[3]\" TEXT=\"$color[6]\" LINK=\"$color[6]\" VLINK=\"$color[6]\" ALINK=\"$color[6]\">";
f3d17401 91
813eba2f 92 $boxes = sqimap_mailbox_list($imapConnection);
21c3249f 93
aae41ae9 94 echo "<FONT SIZE=4><B><CENTER>";
813eba2f 95 echo _("Folders") . "</B><BR></FONT>";
97afcee9 96
9f2215a1 97 echo "<small>(<A HREF=\"../src/left_main.php\" TARGET=\"left\">";
ad6f805c 98 echo _("refresh folder list");
aae41ae9 99 echo "</A>)</small></CENTER><BR>";
813eba2f 100 $delimeter = sqimap_get_delimiter($imapConnection);
4c34dac5 101
7ce342dc 102 for ($i = 0;$i < count($boxes); $i++) {
d92b6f31 103 $line = "";
813eba2f 104 $mailbox = $boxes[$i]["formatted"];
d92b6f31 105
813eba2f 106 if ($boxes[$i]["flags"]) {
7ce342dc 107 $noselect = false;
813eba2f 108 for ($h = 0; $h < count($boxes[$i]["flags"]); $h++) {
109 if (strtolower($boxes[$i]["flags"][$h]) == "noselect")
7ce342dc 110 $noselect = true;
d92b6f31 111 }
7ce342dc 112 if ($noselect == true) {
aae41ae9 113 $line .= "<FONT COLOR=\"$color[10]\">";
813eba2f 114 $line .= replace_spaces(readShortMailboxName($mailbox, $delimeter));
aae41ae9 115 $line .= "</FONT>";
7ce342dc 116 } else {
1e0628fb 117 $line .= formatMailboxName($imapConnection, $mailbox, $boxes[$i]["unformatted"], $delimeter, $color);
d92b6f31 118 }
7ce342dc 119 } else {
1e0628fb 120 $line .= formatMailboxName($imapConnection, $mailbox, $boxes[$i]["unformatted"], $delimeter, $color);
d92b6f31 121 }
7ce342dc 122 echo "$line<BR>";
d92b6f31 123 }
124
21c3249f 125
126 fclose($imapConnection);
127
128?>
aae41ae9 129</BODY></HTML>