I found a good example at: "http://webscriptsdebugging.wordpress.com/2012/10/04/discard-spam-emails-in-exim/"
Instead of using a copied and pasted rule from the /vfilters/domain.com files, I need to change it a little:
Code:
#viagraonline
if
$header_subject: contains "viagraonline"
then
save "/dev/null" 660
endif
I found this code to be more recommended:
Code:
#viagraonline
if
$header_subject: contains "viagraonline"
then
seen finish
endif
I don't know where the "save "/dev/null" 660" is...

but the "seen finish" seems to be working.
It apparently says the email has been seen and does not deliver it. I am not sure where it is going,

, hopefully to null or the either, but it seems to be working across all my resold accounts in my VPS.
The spam messages I am filtering with this method are getting through spamassassin and have a score of 3.0 or less and I do not want to turn it down any lower to prevent false positives so this is my attempt to further stop spam. I wish a better solution was available I could afford.
I realize this will not stop all spam but the ones that come through multiple times per day/hour with a spamassassin score of 3.0 or less can now be squelched.
Thank You for your time and help. I hope this helps others as well.