* Added several hooks
[squirrelmail.git] / src / empty_trash.php
index ecc1ef18a2e08cb7ea116a3054312b02e098fc2e..486b15e6d96883a1e00fb09f364a47e411b32a69 100644 (file)
@@ -1,21 +1,27 @@
 <?php
-   session_start();
-
-   include("../config/config.php");
-   include("../functions/strings.php");
+   /**
+    **  empty_trash.php
+    **
+    **  Copyright (c) 1999-2000 The SquirrelMail development team
+    **  Licensed under the GNU GPL. For full terms see the file COPYING.
+    **
+    **  Handles deleting messages from the trash folder without
+    **  deleting subfolders.
+    **
+    **  $Id$
+    **/
+
+   include('../src/validate.php');
    include("../functions/page_header.php");
    include("../functions/display_messages.php");
    include("../functions/imap.php");
    include("../functions/array.php");
-
-   if (!isset($tree_php))
-      include("../functions/tree.php");
-
+   include("../functions/tree.php");
    include("../src/load_prefs.php");
 
    $imap_stream = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
 
-   sqimap_mailbox_list($imap_stream, $boxes);
+   sqimap_mailbox_list($imap_stream);
 
    $mailbox = $trash_folder;
    $boxes = sqimap_mailbox_list($imap_stream);
@@ -46,8 +52,8 @@
    // now lets go through the tree and delete the folders
    walkTreeInPreOrderEmptyTrash(0, $imap_stream, $foldersTree);
 
-   sqimap_mailbox_select($imap_stream, $trash_folder, $numMessages);
-   displayPageHeader($color, $mailbox);
-   messages_deleted_message($trash_folder, $sort, $startMessage, $color);
+   $location = get_location();
+   header ("Location: $location/left_main.php");
+
    sqimap_logout($imap_stream);
 ?>