X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=src%2Fmove_messages.php;h=cd1056e4e5f06f5fe2023747d4320567a4bdcfbd;hp=0dc83b96f9b96bf7dc10b51a88fa3a318e04311a;hb=3604c641607660243271429041e78d03a9c5d268;hpb=2aa12d5e029f04fa8c778ec1d3487418d0c3b62d diff --git a/src/move_messages.php b/src/move_messages.php index 0dc83b96..cd1056e4 100644 --- a/src/move_messages.php +++ b/src/move_messages.php @@ -1,42 +1,151 @@ -"; - displayPageHeader($mailbox); + if ($where && $what) + header ("Location: $location/search.php?mailbox=".urlencode($mailbox)."&what=".urlencode($what)."&where=".urlencode($where)); + else + header ("Location: $location/right_main.php?sort=$sort&startMessage=$startMessage&mailbox=". urlencode($mailbox)); + } else { + displayPageHeader($color, $mailbox); + error_message(_("No messages were selected."), $mailbox, $sort, $startMessage, $color); + } + } + // If the delete button was pressed, the moveButton variable will not be set. + elseif (!$moveButton) { + if (is_array($msg) == 1) { + // Marks the selected messages ad 'Deleted' + $j = 0; + $i = 0; + + // If they have selected nothing msg is size one still, but will be an infinite + // loop because we never increment j. so check to see if msg[0] is set or not to fix this. + while ($j < count($msg)) { + if ($msg[$i]) { + sqimap_messages_delete($imapConnection, $msg[$i], $msg[$i], $mailbox); + $j++; + } + $i++; + } + if ($auto_expunge) { + sqimap_mailbox_expunge($imapConnection, $mailbox, true); + } + $location = get_location(); + if ($where && $what) + header ("Location: $location/search.php?mailbox=".urlencode($mailbox)."&what=".urlencode($what)."&where=".urlencode($where)); + else + header ("Location: $location/right_main.php?sort=$sort&startMessage=$startMessage&mailbox=". urlencode($mailbox)); + } else { + displayPageHeader($color, $mailbox); + error_message(_("No messages were selected."), $mailbox, $sort, $startMessage, $color); + } + } else { // Move messages + // lets check to see if they selected any messages + if (is_array($msg) == 1) { + $j = 0; + $i = 0; + + // If they have selected nothing msg is size one still, but will be an infinite + // loop because we never increment j. so check to see if msg[0] is set or not to fix this. + while ($j < count($msg)) { + if ($msg[$i]) { + /** check if they would like to move it to the trash folder or not */ + sqimap_messages_copy($imapConnection, $msg[$i], $msg[$i], $targetMailbox); + sqimap_messages_flag($imapConnection, $msg[$i], $msg[$i], "Deleted"); + $j++; + } + $i++; + } + if ($auto_expunge == true) + sqimap_mailbox_expunge($imapConnection, $mailbox, true); + + $location = get_location(); + if ($where && $what) + header ("Location: $location/search.php?mailbox=".urlencode($mailbox)."&what=".urlencode($what)."&where=".urlencode($where)); + else + header ("Location: $location/right_main.php?sort=$sort&startMessage=$startMessage&mailbox=". urlencode($mailbox)); + } else { + displayPageHeader($color, $mailbox); + error_message(_("No messages were selected."), $mailbox, $sort, $startMessage, $color); + } + } + + // Log out this session + sqimap_logout($imapConnection); - messages_deleted_message($mailbox, $sort, $startMessage); ?> +