Quote:
Originally Posted by Dave-ahfb
Is there a way to make this work with the community bulletin hack? Currently bounced emails bounce to the root email address. I changed the settings(temp) to collect from the root mailbox and it only forund 16 out of over 2000 bounced emails.
1- need to make comm-bull bounce to the specified bounce addy
2- need to make it recognize comm-bull bounces
Dave
|
Just took a look, and I think it can be done this way (you need to test it to make sure, just send to a new group with bogus emails)
Find these two lines:
PHP Code:
mail($user[email],$subject,$HTML_mailbody,$htmlEmailHeader);
mail($user[email],$subject,$mailbody,"From: \"$bbtitle Mailer\"<$webmasteremail>");
Replace each respective line with:
PHP Code:
mail($user[email],$subject,$HTML_mailbody,$htmlEmailHeader, '-f' . $vboptions['vbouncer_spool_account']);
mail($user[email],$subject,$mailbody,"From: \"$bbtitle Mailer\"<$webmasteremail>", '-f' . $vboptions['vbouncer_spool_account']);