X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fleft_main.php;h=112ad87b7aca3dc1a961b526acf28b002e0a17f4;hb=a37f3771b11544a29ebd521a69599381c90e7df2;hp=dea9fd580f7a38c01fddf191a196404784b8be5d;hpb=d3cdb279bd61b172926b51d41d09c8a691d6c347;p=squirrelmail.git diff --git a/src/left_main.php b/src/left_main.php index dea9fd58..112ad87b 100644 --- a/src/left_main.php +++ b/src/left_main.php @@ -1,119 +1,154 @@ - - - 0) { + $unseen_string = "($unseen)"; + $unseen_found = true; + } else if ($unseen_type == 2) { + $numMessages = sqimap_get_num_messages($imapConnection, $real_box); + $unseen_string = "($unseen/$numMessages)"; + $unseen_found = true; + } + } else if ($unseen_notify == 3) { + $unseen = sqimap_unseen_messages($imapConnection, $numUnseen, $real_box); + if ($unseen_type == 1 && $unseen > 0) { + $unseen_string = "($unseen)"; + $unseen_found = true; + } else if ($unseen_type == 2) { + $numMessages = sqimap_get_num_messages($imapConnection, $real_box); + $unseen_string = "($unseen/$numMessages)"; + $unseen_found = true; + } + } - echo ""; - if ($unseen) + $line .= ""; + if ($unseen > 0) $line .= ""; $special_color = false; - for ($i = 0; $i < count($special_folders); $i++) { - if (($special_folders[$i] == $mailbox) && ($use_special_folder_color == true)) - $special_color = true; - } + if ((strtolower($real_box) == "inbox") || + (($real_box == $trash_folder) && ($move_to_trash)) || + (($real_box == $sent_folder) && ($move_to_sent))) + $special_color = true; if ($special_color == true) { - $line .= ""; - $line .= readShortMailboxName($mailbox, $delimeter); + $line .= ""; + $line .= replace_spaces($mailbox); $line .= ""; } else { - $line .= ""; - $line .= readShortMailboxName($mailbox, $delimeter); - $line .= ""; + $line .= ""; + $line .= replace_spaces($mailbox); + $line .= ""; } - if ($unseen) + if ($unseen > 0) $line .= ""; - if ($numUnseen > 0) { - $line .= " ($numUnseen)"; + if ($unseen_found) { + $line .= " $unseen_string"; } - if (($move_to_trash == true) && (trim($mailbox) == $trash_folder)) { - $urlMailbox = urlencode($mailbox); - $line .= ""; - $line .= "    (empty)"; - $line .= "\n"; + if (($move_to_trash == true) && ($real_box == $trash_folder)) { + $urlMailbox = urlencode($real_box); + $line .= "\n\n"; + $line .= "   ("._("purge").")"; + $line .= "\n\n"; } - - echo ""; + $line .= ""; return $line; } - echo ""; - echo ""; // open a connection on the imap port (143) - $imapConnection = loginToImapServer($username, $key, $imapServerAddress, 10); // the 10 is to hide the output + $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 10); // the 10 is to hide the output - getFolderList($imapConnection, $boxes); + /** If it was a successful login, lets load their preferences **/ + include("../src/load_prefs.php"); - echo "
"; - echo "Folders
"; + if (isset($left_refresh) && ($left_refresh != "None") && ($left_refresh != "")) { + echo "\n"; + echo "\n"; + echo "\n"; + } + + echo "\n\n\n"; - echo "(refresh folder list)

"; - echo "\n"; - $delimeter = findMailboxDelimeter($imapConnection); - for ($i = 0;$i < count($boxes); $i++) { - $mailbox = $boxes[$i]["UNFORMATTED"]; - $boxFlags = getMailboxFlags($boxes[$i]["RAW"]); + do_hook("left_main_before"); + + $boxes = sqimap_mailbox_list($imapConnection); + + echo "
"; + echo _("Folders") . "
\n\n"; - $boxCount = countCharInString($mailbox, $delimeter); + echo "("; + echo _("refresh folder list"); + echo ")

"; + $delimeter = sqimap_get_delimiter($imapConnection); + for ($i = 0;$i < count($boxes); $i++) { $line = ""; - // indent the correct number of spaces. - for ($j = 0;$j < $boxCount;$j++) - $line .= "  "; + $mailbox = $boxes[$i]["formatted"]; - if (trim($boxFlags[0]) != "") { + if ($boxes[$i]["flags"]) { $noselect = false; - for ($h = 0; $h < count($boxFlags); $h++) { - if (strtolower($boxFlags[$h]) == "noselect") + for ($h = 0; $h < count($boxes[$i]["flags"]); $h++) { + if (strtolower($boxes[$i]["flags"][$h]) == "noselect") $noselect = true; } - if ($noselect == true) { - $line .= ""; - $line .= readShortMailboxName($mailbox, $delimeter); - $line .= ""; + $line .= ""; + $line .= replace_spaces(readShortMailboxName($mailbox, $delimeter)); + $line .= ""; } else { - $line .= formatMailboxName($imapConnection, $mailbox, $delimeter, $color); + $line .= formatMailboxName($imapConnection, $mailbox, $boxes[$i]["unformatted"], $delimeter, $boxes[$i]["unseen"]); } } else { - $line .= formatMailboxName($imapConnection, $mailbox, $delimeter, $color); + $line .= formatMailboxName($imapConnection, $mailbox, $boxes[$i]["unformatted"], $delimeter, $boxes[$i]["unseen"]); } - echo "$line
"; + echo "\n$line
\n"; } - - echo "
"; - - fclose($imapConnection); - + sqimap_logout($imapConnection); + do_hook("left_main_after"); ?> -
+