Testing code removed.
[squirrelmail.git] / src / folders_delete.php
CommitLineData
59177427 1<?php
895905c0 2
35586184 3/**
4 * folders_delete.php
5 *
15e6162e 6 * Copyright (c) 1999-2002 The SquirrelMail Project Team
35586184 7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * Deltes folders from the IMAP server.
10 * Called from the folders.php
11 *
12 * $Id$
13 */
14
35586184 15
16require_once('../src/validate.php');
17require_once('../functions/imap.php');
18require_once('../functions/array.php');
19require_once('../functions/tree.php');
2a32fc83 20
1c52ba77 21/*
22* Incoming values:
23* $mailbox - selected mailbox from the form
24*/
25
26$imap_stream = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
27$boxes = sqimap_mailbox_list ($imap_stream);
28global $delimiter;
29
30if (substr($mailbox, -1) == $delimiter)
31 $mailbox_no_dm = substr($mailbox, 0, strlen($mailbox) - 1);
32else
33 $mailbox_no_dm = $mailbox;
34
35/** lets see if we CAN move folders to the trash.. otherwise,
2c1dc652 36 ** just delete them **/
b140c154 37
1c52ba77 38// Courier IMAP doesn't like subfolders of Trash
39if (strtolower($imap_server_type) == "courier") {
40 $can_move_to_trash = false;
41}
b140c154 42
1c52ba77 43// If it's already a subfolder of trash, we'll have to delete it
44else if(eregi("^".$trash_folder.".+", $mailbox)) {
b140c154 45
1c52ba77 46 $can_move_to_trash = false;
b140c154 47
1c52ba77 48}
b140c154 49
1c52ba77 50// Otherwise, check if trash folder exits and support sub-folders
51else {
52 for ($i = 0; $i < count($boxes); $i++) {
53 if ($boxes[$i]["unformatted"] == $trash_folder) {
e54e0b89 54 $can_move_to_trash = !in_array('noinferiors', $boxes[$i]['flags']);
1c52ba77 55 }
56 }
57}
58
59/** First create the top node in the tree **/
60for ($i = 0;$i < count($boxes);$i++) {
61 if (($boxes[$i]["unformatted-dm"] == $mailbox) && (strlen($boxes[$i]["unformatted-dm"]) == strlen($mailbox))) {
62 $foldersTree[0]["value"] = $mailbox;
63 $foldersTree[0]["doIHaveChildren"] = false;
64 continue;
65 }
66}
67// Now create the nodes for subfolders of the parent folder
68// You can tell that it is a subfolder by tacking the mailbox delimiter
69// on the end of the $mailbox string, and compare to that.
70$j = 0;
71for ($i = 0;$i < count($boxes);$i++) {
72 if (substr($boxes[$i]["unformatted"], 0, strlen($mailbox_no_dm . $delimiter)) == ($mailbox_no_dm . $delimiter)) {
73 addChildNodeToTree($boxes[$i]["unformatted"], $boxes[$i]["unformatted-dm"], $foldersTree);
74 }
75}
abddc974 76// simpleWalkTreePre(0, $foldersTree);
b40316f9 77
1c52ba77 78/** Lets start removing the folders and messages **/
79if (($move_to_trash == true) && ($can_move_to_trash == true)) { /** if they wish to move messages to the trash **/
80 walkTreeInPostOrderCreatingFoldersUnderTrash(0, $imap_stream, $foldersTree, $mailbox);
81 walkTreeInPreOrderDeleteFolders(0, $imap_stream, $foldersTree);
82} else { /** if they do NOT wish to move messages to the trash (or cannot)**/
83 walkTreeInPreOrderDeleteFolders(0, $imap_stream, $foldersTree);
84}
85
86/** Log out this session **/
87sqimap_logout($imap_stream);
88
89$location = get_location();
90header ("Location: $location/folders.php?success=delete");
91/*
92echo "<BR><BR><BR><CENTER><B>";
93echo _("Folder Deleted!");
94echo "</B><BR><BR>";
95echo _("The folder has been successfully deleted.");
96echo "<BR><A HREF=\"webmail.php?right_frame=folders.php\" TARGET=_top>";
97echo _("Click here");
98echo "</A> ";
99echo _("to continue.");
100echo "</CENTER>";
101
102echo "</BODY></HTML>";
103*/
525b7ae6 104?>