X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fleft_main.php;h=c8bc624aa7411bed2e8ed2e7e22318c46236c61b;hb=e1c11171cd580d0d27e1a596ab53afac90075bf3;hp=086ec0821fefb7bfd170ee3af4e0742ff76f4571;hpb=2aa12d5e029f04fa8c778ec1d3487418d0c3b62d;p=squirrelmail.git diff --git a/src/left_main.php b/src/left_main.php index 086ec082..c8bc624a 100644 --- a/src/left_main.php +++ b/src/left_main.php @@ -1,4 +1,4 @@ - - - - - - - -"; + } // 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]); - // 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. - $mailbox = findMailboxName($mailbox); - $periodCount = countCharInString($mailbox, "."); - - // indent the correct number of spaces. - for ($j = 0;$j < $periodCount;$j++) - echo "  "; - - $mailboxURL = urlencode($mailbox); - echo ""; - echo readShortMailboxName($mailbox, "."); - echo "
\n"; + $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, $boxes[$i]["unseen"]); + } + } else { + $line .= formatMailboxName($imapConnection, $mailbox, $boxes[$i]["unformatted"], $delimeter, $boxes[$i]["unseen"]); + } + echo "$line
"; } - echo "
"; + fclose($imapConnection); ?> -
+