Notes for others trying this hack:
To allow people to hit reply on the email instead of cutting and pasting you must edit a couple of items.
First, in mailreply.php find:
list($check,$threadid)=explode("-",$letter->subject);
if ($check!="[thread") {
replace by:
list($check,$threadid)=explode("-",$letter->subject);
$check = substr($check, -7);
if ($check!="[thread") {
Next, edit your emailsubject_notify to:
Reply to post '$threadinfo[title]' [thread-$threadinfo[threadid]]
I'm working on getting the server to strip everything but the reply but its uphill, if anyone wants to help, I'd sure appreciate it......
JC