X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=functions%2Ftree.php;h=a714d26a889f6f5486394f8aa92be1dc7840e45d;hb=c15e725c751bcc5773d4443ac972eca9a26e2aab;hp=6d79ac15f6033d556c06e6027d547ec535b9bbfc;hpb=47ccfad452e8d345542d09e59112cac317cffed8;p=squirrelmail.git diff --git a/functions/tree.php b/functions/tree.php index 6d79ac15..a714d26a 100644 --- a/functions/tree.php +++ b/functions/tree.php @@ -12,8 +12,6 @@ * @package squirrelmail */ -/** Clearly, this needs the IMAP functions.. */ -require_once(SM_PATH . 'functions/imap.php'); /** * Recursive function to find the correct parent for a new node. @@ -154,24 +152,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); @@ -194,5 +194,3 @@ function simpleWalkTreePre($index, $tree) { echo $tree[$index]['value'] . '
'; } } - -?> \ No newline at end of file