\n"; // According to RFC2060, a DELETE command should NOT remove inferiors (sub folders) // so lets go through the list of subfolders and remove them before removing the // parent. // BUG??? - what if a subfolder has a subfolder?? need to start at lowest level // and work up. for ($i = 0; $i < count($boxes); $i++) { // if (($boxes[$i]["UNFORMATTED"] == $mailbox) || // (substr($boxes[$i]["UNFORMATTED"], 0, strlen($mailbox . $dm)) == $mailbox . $dm)) { if (($boxes[$i]["UNFORMATTED"] != $mailbox) && (substr($boxes[$i]["UNFORMATTED"], 0, strlen($mailbox . $dm)) == $mailbox . $dm)) { removeFolder($imapConnection, $boxes[$i]["UNFORMATTED"]); echo "removing " . $boxes[$i]["UNFORMATTED"] . "
"; } } // now lets remove the top level trash folder removeFolder($imapConnection, $mailbox); createFolder($imapConnection, "$trash_folder", ""); selectMailbox($imapConnection, $trash_folder, $numMessages); echo "\n"; displayPageHeader($color, $mailbox); messages_deleted_message($trash_folder, $sort, $startMessage, $color); fputs($imapConnection, "1 logout"); ?>