Untested, but the quickest way to get it to stop adding the content of the posts would be to edit libs/mailer.inc.php

About line 153 you'll see this:

Code
function add_post($postername,$subject.....) {

Right after that, add this:

Code
return;

That should prevent it from adding the body of the post. However, I think this will prevent it from being added when using the Email Post feature as well. If it does and you want that to work, then you can grep for "add_post" in the scripts directory and comment that line out in all of the scripts except for domailthread.inc.php

Edit: Actually I know it will prevent the mail post from working. There are only a handful of scripts that call the add_post function, so probably best to just grep for it, and then edit those scripts.

Last edited by Rick; 07/25/2009 5:40 PM.