Fixed more links that needed security tokens
[squirrelmail.git] / src / empty_trash.php
CommitLineData
59177427 1<?php
895905c0 2
35586184 3/**
4 * empty_trash.php
5 *
35586184 6 * Handles deleting messages from the trash folder without
7 * deleting subfolders.
8 *
d4e46166 9 * @copyright &copy; 1999-2009 The SquirrelMail Project Team
4b4abf93 10 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
30967a1e 11 * @version $Id$
8f6f9ba5 12 * @package squirrelmail
35586184 13 */
ef870322 14
ebd2391c 15/** This is the empty_trash page */
16define('PAGE_NAME', 'empty_trash');
17
30967a1e 18/**
202bcbcc 19 * Include the SquirrelMail initialization file.
30967a1e 20 */
202bcbcc 21require('../include/init.php');
86725763 22
202bcbcc 23require(SM_PATH . 'functions/imap_general.php');
24require(SM_PATH . 'functions/imap_messages.php');
25require(SM_PATH . 'functions/tree.php');
d3cdb279 26
a32985a5 27/* get those globals */
28
f38b7cf0 29sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION);
a32985a5 30
31/* finished globals */
32
906f7e9f 33$imap_stream = sqimap_login($username, false, $imapServerAddress, $imapPort, 0);
65c3ec94 34
65c3ec94 35$mailbox = $trash_folder;
36$boxes = sqimap_mailbox_list($imap_stream);
d92b6f31 37
65c3ec94 38/*
39 * According to RFC2060, a DELETE command should NOT remove inferiors (sub folders)
40 * so lets go through the list of subfolders and remove them before removing the
41 * parent.
42 */
43
44/** First create the top node in the tree **/
c9acef51 45$numboxes = count($boxes);
46for ($i = 0; $i < $numboxes; $i++) {
47 if (($boxes[$i]['unformatted'] == $mailbox) && (strlen($boxes[$i]['unformatted']) == strlen($mailbox))) {
48 $foldersTree[0]['value'] = $mailbox;
49 $foldersTree[0]['doIHaveChildren'] = false;
65c3ec94 50 continue;
51 }
52}
53/*
54 * Now create the nodes for subfolders of the parent folder
55 * You can tell that it is a subfolder by tacking the mailbox delimiter
56 * on the end of the $mailbox string, and compare to that.
57 */
58$j = 0;
c9acef51 59for ($i = 0; $i < $numboxes; $i++) {
60 if (substr($boxes[$i]['unformatted'], 0, strlen($mailbox . $delimiter)) == ($mailbox . $delimiter)) {
61 addChildNodeToTree($boxes[$i]['unformatted'], $boxes[$i]['unformatted-dm'], $foldersTree);
65c3ec94 62 }
63}
0a1d5f3a 64
65c3ec94 65// now lets go through the tree and delete the folders
66walkTreeInPreOrderEmptyTrash(0, $imap_stream, $foldersTree);
0d2130f5 67// update mailbox cache
68$mailboxes=sqimap_get_mailboxes($imap_stream,true,$show_only_subscribed_folders);
a1eb6f89 69sqimap_logout($imap_stream);
70
71// close session properly before redirecting
72session_write_close();
a11899fd 73
65c3ec94 74$location = get_location();
dcc1cc82 75header ("Location: $location/left_main.php");
e9f8ea4e 76