Began rework of options page. Also added 3 plugins (filters, translate, and squirrels...
[squirrelmail.git] / src / delete_message.php
index 8c1a12dec0bbf26124143df567f82b5267944c8c..69b46bce3e5327c4d4ae19ad8020c95d55cf10f4 100644 (file)
@@ -1,20 +1,32 @@
-<?
-   include("../config/config.php");
-   include("../functions/strings.php");
-   include("../functions/page_header.php");
-   include("../functions/display_messages.php");
-   include("../functions/imap.php");
+<?php
+   /**
+    **  delete_message.php
+    **
+    **  Copyright (c) 1999-2000 The SquirrelMail development team
+    **  Licensed under the GNU GPL. For full terms see the file COPYING.
+    **
+    **  Deletes a meesage from the IMAP server 
+    **
+    **  $Id$
+    **/
 
-   include("../src/load_prefs.php");
+   require_once('../src/validate.php');
+   require_once('../functions/display_messages.php');
+   require_once('../functions/imap.php');
 
-   echo "<HTML><BODY TEXT=\"$color[8]\" BGCOLOR=\"$color[4]\" LINK=\"$color[7]\" VLINK=\"$color[7]\" ALINK=\"$color[7]\">\n";
+   $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
 
-   $imapConnection = sqimap_login($username, $key, $imapServerAddress, 0);
    sqimap_mailbox_select($imapConnection, $mailbox);
+   
+   sqimap_messages_delete($imapConnection, $message, $message, $mailbox);
+   if ($auto_expunge)
+      sqimap_mailbox_expunge($imapConnection, $mailbox, true);
 
-   displayPageHeader($color, $mailbox);
+   $location = get_location();
+   if (isset($where) && isset($what))
+      header ("Location: $location/search.php?where=".urlencode($where)."&what=".urlencode($what)."&mailbox=".urlencode($mailbox));
+   else   
+      header ("Location: $location/right_main.php?sort=$sort&startMessage=$startMessage&mailbox=".urlencode($mailbox));
 
-   sqimap_message_delete($imapConnection, $message, $message, $mailbox);
-   messages_deleted_message($mailbox, $sort, $startMessage, $color);
-?>
-</BODY></HTML>
+   sqimap_logout($imapConnection);
+?>
\ No newline at end of file