Add ability to filter on the Message body, or if text appears any where in the messag...
[squirrelmail.git] / src / delete_message.php
index b876be57b764fa33df18fc348dc9ad646e07104a..fcde0e72c24f39192778d9a159756242409e6f9f 100644 (file)
@@ -3,7 +3,7 @@
 /**
  * delete_message.php
  *
- * Copyright (c) 1999-2004 The SquirrelMail Project Team
+ * Copyright (c) 1999-2005 The SquirrelMail Project Team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
  * Deletes a meesage from the IMAP server
@@ -75,16 +75,11 @@ $location = get_location();
 if (isset($where) && isset($what)) {
     header("Location: $location/search.php?where=" . $where .
            '&what=' . $what . '&mailbox=' . urlencode($mailbox));
-} else {
-    if (!empty($saved_draft) || !empty($mail_sent)) {
-          header("Location: $location/compose.php?mail_sent=$mail_sent&saved_draft=$saved_draft");
-    }
-    else {
-        header("Location: $location/right_main.php?sort=$sort&startMessage=$startMessage&mailbox=" .
-               urlencode($mailbox));
-    }
 }
 
+header("Location: $location/right_main.php?sort=$sort&startMessage=$startMessage&mailbox=" .
+    urlencode($mailbox));
+
 sqimap_logout($imapConnection);
 
-?>
\ No newline at end of file
+?>