X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fmove_messages.php;h=ae7155c4bcb526524734b4275d5457a41796810e;hb=ca29b81004eea3cff3f249e95235ba544730a4e7;hp=de17ca937dfc12b213684b0d2b7cdabeb0da1930;hpb=ef8703220ec8e7573417b08881f636082e4b8d58;p=squirrelmail.git diff --git a/src/move_messages.php b/src/move_messages.php index de17ca93..ae7155c4 100644 --- a/src/move_messages.php +++ b/src/move_messages.php @@ -49,8 +49,44 @@ $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0); sqimap_mailbox_select($imapConnection, $mailbox); + // expunge-on-demand if user isn't using move_to_trash or auto_expunge + if($expungeButton) { + 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)); + } + // undelete messages if user isn't using move_to_trash or auto_expunge + elseif($undeleteButton) { + if (is_array($msg) == 1) { + // Removes \Deleted flag from selected messages + $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_remove_flag ($imapConnection, $msg[$i], $msg[$i], "Deleted"); + $j++; + } + $i++; + } + $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); + } + } // If the delete button was pressed, the moveButton variable will not be set. - if (!$moveButton) { + elseif (!$moveButton) { if (is_array($msg) == 1) { // Marks the selected messages ad 'Deleted' $j = 0; @@ -66,14 +102,13 @@ $i++; } if ($auto_expunge) { - sqimap_mailbox_expunge($imapConnection, $mailbox); - } - if ($auto_forward) { - header ("Location: right_main.php"); - } else { - displayPageHeader($color, $mailbox); - messages_deleted_message($mailbox, $sort, $startMessage, $color); + 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); @@ -96,14 +131,13 @@ $i++; } if ($auto_expunge == true) - sqimap_mailbox_expunge($imapConnection, $mailbox); + sqimap_mailbox_expunge($imapConnection, $mailbox, true); - if ($auto_forward) { - header ("Location: right_main.php"); - } else { - displayPageHeader($color, $mailbox); - messages_moved_message($mailbox, $sort, $startMessage, $color); - } + $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); @@ -111,6 +145,7 @@ } // Log out this session + sqimap_mailbox_close($imapConnection); sqimap_logout($imapConnection); ?>