X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fleft_main.php;h=3d38e173f87a7952661bdc5e8b25c0af08035b76;hb=541506f3bbe3cfc966221c55c35e50e9bda6f181;hp=3b2929e230e602deb6bcc1a5fb54961bd8cd09ec;hpb=ff89ac8a64bfe112bb528df0d143f90a5b73c76e;p=squirrelmail.git diff --git a/src/left_main.php b/src/left_main.php index 3b2929e2..3d38e173 100644 --- a/src/left_main.php +++ b/src/left_main.php @@ -1,86 +1,198 @@ - - - - - - - -
"; - echo "Folders
"; - echo "(refresh folder list)

"; - 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, "."); + $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 10); // the 10 is to hide the output + + displayHtmlHeader(); + + if ($auto_create_special && ! isset($auto_create_done)) { + if (isset ($sent_folder) && $sent_folder != "none") { + if (!sqimap_mailbox_exists ($imapConnection, $sent_folder)) { + sqimap_mailbox_create ($imapConnection, $sent_folder, ""); + } + } + if (isset ($trash_folder) && $trash_folder != "none") { + if (!sqimap_mailbox_exists ($imapConnection, $trash_folder)) { + sqimap_mailbox_create ($imapConnection, $trash_folder, ""); + } + } + $auto_create_done = true; + session_register('auto_create_done'); + } + + 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); - // indent the correct number of spaces. - for ($j = 0;$j < $periodCount;$j++) - echo "  "; + $unseen = 0; + + if (($unseen_notify == 2 && $real_box == "INBOX") || + $unseen_notify == 3) { + $unseen = sqimap_unseen_messages($imapConnection, $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; + 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]; + } - $mailboxURL = urlencode($mailbox); - selectMailbox($imapConnection, $mailbox, $numNessages); - $unseen = unseenMessages($imapConnection, $numUnseen); - if ($unseen) - echo ""; - echo ""; - echo readShortMailboxName($mailbox, "."); - if (($move_to_trash == true) && ($mailbox == $trash_folder)) { - $urlMailbox = urlencode($mailbox); - echo "    (empty)"; + 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 .= '  '; + } + + $line .= ""; + if ($special_color == true) + $line .= ""; + $line .= str_replace(' ', ' ', $mailbox); + if ($special_color == true) + $line .= ""; + $line .= ""; + + if ($unseen > 0) + $line .= ""; + + if (isset($unseen_found) && $unseen_found) { + $line .= " $unseen_string"; } - echo "\n"; - if ($numUnseen > 0) { - echo " ($numUnseen)"; + + if (($move_to_trash == true) && ($real_box == $trash_folder)) { + if (! isset($numMessages)) + $numMessages = sqimap_get_num_messages($imapConnection, $real_box); + + if ($numMessages > 0) + { + $urlMailbox = urlencode($real_box); + $line .= "\n\n"; + $line .= "   ("._("purge").")"; + $line .= "\n\n"; + } } - echo "
\n"; + $line .= "
"; + return $line; } - echo ""; - fclose($imapConnection); - + if (isset($left_refresh) && ($left_refresh != "None") && ($left_refresh != "")) { + echo "\n"; + echo "\n"; + echo "\n"; + } + + echo "\n\n"; + + do_hook("left_main_before"); + + $boxes = sqimap_mailbox_list($imapConnection); + + echo "
"; + echo _("Folders") . "
\n\n"; + + echo "("; + echo _("refresh folder list"); + 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++) { + 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 (in_array('noselect', $boxes[$i]['flags'])) { + $line .= ""; + if (ereg("^( *)([^ ]*)", $mailbox, $regs)) { + $line .= str_replace(' ', ' ', $mailbox); + if (isset($boxes[$i]['parent'])) + $line .= FoldLink($boxes[$i]['unformatted'], $boxes[$i]['parent']); + elseif ($collapse_folders) + $line .= '  '; + } + $line .= ''; + } else { + $line .= formatMailboxName($imapConnection, $boxes[$i], $delimeter); + } + echo "$line
\n"; + } + } + sqimap_logout($imapConnection); + do_hook("left_main_after"); + + function FoldLink($mailbox, $folded) { + $mailbox = urlencode($mailbox); + echo '+"; + else + echo "fold=$mailbox\">-"; + echo ' '; + } + ?> - +