X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=functions%2Ftree.php;h=d00107e7201a545a130a0c33e3664cfbf1e5e9f4;hb=cc51047fc1b0a21a0491c34487661698567c2100;hp=d7e111227ae70e2f1c74e2e231b72dc8f98057e8;hpb=79577722d9d294e8161cc33a1953cff7ca6b7acd;p=squirrelmail.git diff --git a/functions/tree.php b/functions/tree.php index d7e11122..d00107e7 100644 --- a/functions/tree.php +++ b/functions/tree.php @@ -3,17 +3,15 @@ /** * tree.php * - * Copyright (c) 1999-2005 The SquirrelMail Project Team - * Licensed under the GNU GPL. For full terms see the file COPYING. - * * This file provides functions to walk trees of folders, for * instance to delete a whole tree. * + * @copyright © 1999-2007 The SquirrelMail Project Team + * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @version $Id$ * @package squirrelmail */ -/** Clearly, this needs the IMAP functions.. */ require_once(SM_PATH . 'functions/imap.php'); /** @@ -155,24 +153,26 @@ function walkTreeInPostOrderCreatingFoldersUnderTrash($index, $imap_stream, $tre $subFolderName = substr($tree[$index]['value'], $position); if ($tree[$index]['doIHaveChildren']) { - sqimap_mailbox_create($imap_stream, $trash_folder . $delimiter . $subFolderName, ""); + // create new trash subfolder only if it does not exist. + if (!sqimap_mailbox_exists($imap_stream, $trash_folder . $delimiter . $subFolderName)) + sqimap_mailbox_create($imap_stream, $trash_folder . $delimiter . $subFolderName, ""); + $mbx_response = sqimap_mailbox_select($imap_stream, $tree[$index]['value']); $messageCount = $mbx_response['EXISTS']; if ($messageCount > 0) { - // FIXME: broken call - sqimap_messages_copy($imap_stream, 1, '*', $trash_folder . $delimiter . $subFolderName); + sqimap_msgs_list_copy($imap_stream, '1:*', $trash_folder . $delimiter . $subFolderName); } // after copy close the mailbox to get in unselected state sqimap_run_command($imap_stream,'CLOSE',false,$response,$message); for ($j = 0;$j < count($tree[$index]['subNodes']); $j++) walkTreeInPostOrderCreatingFoldersUnderTrash($tree[$index]['subNodes'][$j], $imap_stream, $tree, $topFolderName); } else { - sqimap_mailbox_create($imap_stream, $trash_folder . $delimiter . $subFolderName, ''); + if (!sqimap_mailbox_exists($imap_stream, $trash_folder . $delimiter . $subFolderName)) + sqimap_mailbox_create($imap_stream, $trash_folder . $delimiter . $subFolderName, ''); $mbx_response = sqimap_mailbox_select($imap_stream, $tree[$index]['value']); $messageCount = $mbx_response['EXISTS']; if ($messageCount > 0) { - // FIXME: broken call - sqimap_messages_copy($imap_stream, 1, '*', $trash_folder . $delimiter . $subFolderName); + sqimap_msgs_list_copy($imap_stream, '1:*', $trash_folder . $delimiter . $subFolderName); } // after copy close the mailbox to get in unselected state sqimap_run_command($imap_stream,'CLOSE',false,$response,$message); @@ -195,5 +195,3 @@ function simpleWalkTreePre($index, $tree) { echo $tree[$index]['value'] . '
'; } } - -?> \ No newline at end of file