X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=src%2Fleft_main.php;h=0adbd3a7cfc141adc4420c7f31ae7b018603be10;hp=9cbe1b372c498e7d7d3b805627d509c1fd923f81;hb=235a65d5d176a14cfba2284cb2ce898596e5e8f1;hpb=4c34dac57d2863eeffa84bdf81cfdc6af3e60d07 diff --git a/src/left_main.php b/src/left_main.php index 9cbe1b37..0adbd3a7 100644 --- a/src/left_main.php +++ b/src/left_main.php @@ -1,121 +1,207 @@ -', + $color[8], $color[4], $color[7], $color[7], $color[7]); + echo ""; exit; } -?> - -"; - if ($unseen) - $line .= ""; + displayHtmlHeader(); + function formatMailboxName($imapConnection, $box_array, $delimeter) { + global $folder_prefix, $trash_folder, $sent_folder; + global $color, $move_to_sent, $move_to_trash; + global $unseen_notify, $unseen_type, $collapse_folders; + + $real_box = $box_array['unformatted']; + $mailbox = $box_array['formatted']; + $mailboxURL = urlencode($real_box); + + $unseen = 0; + + if (($unseen_notify == 2 && $real_box == "INBOX") || + $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; + } + } + $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; + + $spaces = ''; + $line = ""; + if (ereg("^( *)([^ ]*)$", $mailbox, $regs)) { + $spaces = $regs[1]; + $mailbox = $regs[2]; } - - if ($special_color == true) { - $line .= ""; - $line .= readShortMailboxName($mailbox, $delimeter); - $line .= ""; - } else { - $line .= ""; - $line .= readShortMailboxName($mailbox, $delimeter); - $line .= ""; + + if ($unseen > 0) + $line .= ""; + $line .= str_replace(' ', ' ', $spaces); + + if ($collapse_folders) { + if (isset($box_array['parent'])) + $line .= FoldLink($box_array['unformatted'], $box_array['parent']); + else + $line .= '  '; } - - if ($unseen) + + $line .= ""; + if ($special_color == true) + $line .= ""; + $line .= str_replace(' ', ' ', $mailbox); + if ($special_color == true) + $line .= ""; + $line .= ""; + + if ($unseen > 0) $line .= ""; - if ($numUnseen > 0) { - $line .= " ($numUnseen)"; + if (isset($unseen_found) && $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; } - // open a connection on the imap port (143) - $imapConnection = loginToImapServer($username, $key, $imapServerAddress, 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 "\n"; + echo "\n"; + echo "\n"; } - echo ""; - echo ""; + + echo "\n\n"; + + do_hook("left_main_before"); - getFolderList($imapConnection, $boxes); + $boxes = sqimap_mailbox_list($imapConnection); - echo "
"; - echo "Folders
"; + echo "
"; + echo _("Folders") . "
\n\n"; - echo "("; + echo "("; echo _("refresh folder list"); - echo ")

"; - echo "\n"; - $delimeter = findMailboxDelimeter($imapConnection); + echo ")

"; + $delimeter = sqimap_get_delimiter($imapConnection); + + if (isset($collapse_folders) && $collapse_folders) { + if (isset($fold)) + setPref($data_dir, $username, 'collapse_folder_' . $fold, 1); + if (isset($unfold)) + setPref($data_dir, $username, 'collapse_folder_' . $unfold, 0); + $IAmAParent = array(); + for ($i = 0; $i < count($boxes); $i ++) { + $parts = explode($delimeter, $boxes[$i]['unformatted']); + $box_name = array_pop($parts); + $box_parent = implode($delimeter, $parts); + $hidden = 0; + if (isset($box_parent)) { + $hidden = getPref($data_dir, $username, + 'collapse_folder_' . $box_parent); + $IAmAParent[$box_parent] = $hidden; + } + $boxes[$i]['folded'] = $hidden; + } + } for ($i = 0;$i < count($boxes); $i++) { - $line = ""; - $mailbox = $boxes[$i]["FORMATTED"]; - $boxFlags = getMailboxFlags($imapConnection, $boxes[$i]["RAW"]); - - if (trim($boxFlags[0]) != "") { - $noselect = false; - for ($h = 0; $h < count($boxFlags); $h++) { - if (strtolower($boxFlags[$h]) == "noselect") - $noselect = true; + if (! isset($boxes[$i]['folded']) || ! $boxes[$i]['folded']) + { + $line = ""; + $mailbox = $boxes[$i]["formatted"]; + + if (isset($collapse_folders) && $collapse_folders && isset($IAmAParent[$boxes[$i]['unformatted']])) { + $boxes[$i]['parent'] = $IAmAParent[$boxes[$i]['unformatted']]; } - if ($noselect == true) { - $line .= ""; - $line .= readShortMailboxName($mailbox, $delimeter); - $line .= ""; + + if (in_array('noselect', $boxes[$i]['flags'])) { + $line .= ""; + if (ereg("^( *)([^ ]*)$", $mailbox, $regs)) { + $line .= str_replace(' ', ' ', $regs[1]); + if (isset($boxes[$i]['parent'])) + $line .= FoldLink($boxes[$i]['unformatted'], + $boxes[$i]['parent']); + elseif ($collapse_folders) + $line .= '  '; + $line .= str_replace(' ', ' ', $regs[2]); + } + $line .= ''; } else { - $line .= formatMailboxName($imapConnection, $mailbox, $boxes[$i]["UNFORMATTED"], $delimeter, $color, $move_to_trash); + $line .= formatMailboxName($imapConnection, $boxes[$i], $delimeter); } - } else { - $line .= formatMailboxName($imapConnection, $mailbox, $boxes[$i]["UNFORMATTED"], $delimeter, $color, $move_to_trash); + echo "$line
\n"; } - echo "$line
"; } - - echo "
"; - - fclose($imapConnection); - + sqimap_logout($imapConnection); + do_hook("left_main_after"); + + function FoldLink($mailbox, $folded) { + $mailbox = urlencode($mailbox); + echo '+"; + else + echo "fold=$mailbox\">-"; + echo ' '; + } + ?> -
+