X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fleft_main.php;h=a6702f23d4ca2082d4a057ac27f067bb647102bc;hb=e146912692c921160f93dcb6da97dc6246bf95d2;hp=2c13f745d6624b3be25b35e4dcb757cd65710a02;hpb=e2370222dc6e0e9ec897575778ec5eec6c337ade;p=squirrelmail.git diff --git a/src/left_main.php b/src/left_main.php index 2c13f745..a6702f23 100644 --- a/src/left_main.php +++ b/src/left_main.php @@ -11,70 +11,113 @@ echo "You need a valid user and password to access this page!"; exit; } -?> - - - - - - -"; + + if ($numUnseen > 0) { + $line .= " ($numUnseen)"; + } + + if (($move_to_trash == true) && (trim($real_box) == $trash_folder)) { + $urlMailbox = urlencode($real_box); + $line .= ""; + $line .= "    ("._("purge").")"; + $line .= "\n"; + } + + echo ""; + return $line; + } // open a connection on the imap port (143) - $imapConnection = loginToImapServer($username, $key, $imapServerAddress); - - fputs($imapConnection, "1 list \"\" *\n"); - $str = imapReadData($imapConnection); - - echo ""; - echo "
$org_name
"; - echo "Folders
"; - echo "
"; - echo "\n"; - for ($i = 0;$i < count($str); $i++) { - $mailbox = Chop($str[$i]); - $mailbox = findMailboxName($mailbox); - - // find the quote at the begining of the mailbox name. - // i subtract 1 from the strlen so it doesn't find the quote at the end of the mailbox name. - $periodCount = countCharInString($mailbox, "."); - - // indent the correct number of spaces. - for ($j = 0;$j < $periodCount;$j++) - echo "  "; - - $mailboxURL = urlencode($mailbox); - echo ""; - echo readShortMailboxName($mailbox, "."); - if (($move_to_trash == true) && ($mailbox == $trash_folder)) { - $urlMailbox = urlencode($mailbox); - selectMailbox($imapConnection, $mailbox, $numNessages); - echo "    (empty)"; + $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 10); // the 10 is to hide the output + + /** If it was a successful login, lets load their preferences **/ + include("../src/load_prefs.php"); + if (isset($left_refresh) && ($left_refresh != "None") && ($left_refresh != "")) { + echo ""; + echo ""; + echo ""; + } + + echo ""; + + $boxes = sqimap_mailbox_list($imapConnection); + + echo "
"; + echo _("Folders") . "
"; + + echo "("; + echo _("refresh folder list"); + echo ")

"; + $delimeter = sqimap_get_delimiter($imapConnection); + + for ($i = 0;$i < count($boxes); $i++) { + $line = ""; + $mailbox = $boxes[$i]["formatted"]; + + if ($boxes[$i]["flags"]) { + $noselect = false; + for ($h = 0; $h < count($boxes[$i]["flags"]); $h++) { + if (strtolower($boxes[$i]["flags"][$h]) == "noselect") + $noselect = true; + } + if ($noselect == true) { + $line .= ""; + $line .= replace_spaces(readShortMailboxName($mailbox, $delimeter)); + $line .= ""; + } else { + $line .= formatMailboxName($imapConnection, $mailbox, $boxes[$i]["unformatted"], $delimeter, $color, $move_to_trash); + } + } else { + $line .= formatMailboxName($imapConnection, $mailbox, $boxes[$i]["unformatted"], $delimeter, $color, $move_to_trash); } - echo "

\n"; + echo "$line
"; } - echo "
"; + fclose($imapConnection); ?> -
+