X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fmove_messages.php;h=ae7155c4bcb526524734b4275d5457a41796810e;hb=ca29b81004eea3cff3f249e95235ba544730a4e7;hp=8b7b7cf802770ac1c1c61041ed2fdf131a90f3ac;hpb=1809bad8f78a708bd2df0c535a29b94ae21a24d1;p=squirrelmail.git diff --git a/src/move_messages.php b/src/move_messages.php index 8b7b7cf8..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,7 +102,7 @@ $i++; } if ($auto_expunge) { - sqimap_mailbox_expunge($imapConnection, $mailbox); + sqimap_mailbox_expunge($imapConnection, $mailbox, true); } $location = get_location(); if ($where && $what) @@ -95,7 +131,7 @@ $i++; } if ($auto_expunge == true) - sqimap_mailbox_expunge($imapConnection, $mailbox); + sqimap_mailbox_expunge($imapConnection, $mailbox, true); $location = get_location(); if ($where && $what) @@ -109,6 +145,7 @@ } // Log out this session + sqimap_mailbox_close($imapConnection); sqimap_logout($imapConnection); ?>