This is possible to do with a quick filechange... please note that this will place a thread into your "trash" forum whether it is closed or opened.
Open
postings.php and find:
PHP Code:
$DB_site->query("UPDATE thread SET open=$threadinfo[open],notes='".addslashes($threadinfo[notes])."' WHERE threadid='$threadid'");
Change it to:
PHP Code:
$DB_site->query("UPDATE thread SET open=$threadinfo[open],forumid='xxx',notes='".addslashes($threadinfo[notes])."' WHERE threadid='$threadid'");
Replacing
xxx with the forumid of your "Trash" forum.
Good luck.