Added minimum GNU License
[squirrelmail.git] / src / empty_trash.php
CommitLineData
59177427 1<?php
ef870322 2 /**
3 ** empty_trash.php
4 **
5 ** Copyright (c) 1999-2000 The SquirrelMail development team
6 ** Licensed under the GNU GPL. For full terms see the file COPYING.
7 **
8 ** Handles deleting messages from the trash folder without
9 ** deleting subfolders.
10 **/
11
2a32fc83 12 session_start();
13
7a783442 14 include("../config/config.php");
7a783442 15 include("../functions/strings.php");
16 include("../functions/page_header.php");
17 include("../functions/display_messages.php");
2aa12d5e 18 include("../functions/imap.php");
7ce342dc 19 include("../functions/array.php");
7a783442 20
97dd6a62 21 if (!isset($tree_php))
22 include("../functions/tree.php");
23
d3cdb279 24 include("../src/load_prefs.php");
25
e1469126 26 $imap_stream = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
7a783442 27
97dd6a62 28 sqimap_mailbox_list($imap_stream, $boxes);
d92b6f31 29
30 $mailbox = $trash_folder;
97dd6a62 31 $boxes = sqimap_mailbox_list($imap_stream);
32 $dm = sqimap_get_delimiter($imap_stream);
7cad6205 33
0a1d5f3a 34 // According to RFC2060, a DELETE command should NOT remove inferiors (sub folders)
35 // so lets go through the list of subfolders and remove them before removing the
36 // parent.
0a1d5f3a 37
97dd6a62 38 /** First create the top node in the tree **/
39 for ($i = 0;$i < count($boxes);$i++) {
40 if (($boxes[$i]["unformatted"] == $mailbox) && (strlen($boxes[$i]["unformatted"]) == strlen($mailbox))) {
41 $foldersTree[0]["value"] = $mailbox;
42 $foldersTree[0]["doIHaveChildren"] = false;
43 continue;
44 }
45 }
46 // Now create the nodes for subfolders of the parent folder
47 // You can tell that it is a subfolder by tacking the mailbox delimiter
48 // on the end of the $mailbox string, and compare to that.
49 $j = 0;
50 for ($i = 0;$i < count($boxes);$i++) {
51 if (substr($boxes[$i]["unformatted"], 0, strlen($mailbox . $dm)) == ($mailbox . $dm)) {
c5f5cd59 52 addChildNodeToTree($boxes[$i]["unformatted"], $boxes[$i]["unformatted-dm"], $foldersTree);
97dd6a62 53 }
54 }
55
56 // now lets go through the tree and delete the folders
294bf31a 57 walkTreeInPreOrderEmptyTrash(0, $imap_stream, $foldersTree);
a11899fd 58
97dd6a62 59 sqimap_mailbox_select($imap_stream, $trash_folder, $numMessages);
f8f9bed9 60 displayPageHeader($color, $mailbox);
d92b6f31 61 messages_deleted_message($trash_folder, $sort, $startMessage, $color);
97dd6a62 62 sqimap_logout($imap_stream);
2aa12d5e 63?>