WL writes:
> From: Paul Jarc <[EMAIL PROTECTED]>
> > One possible way to do this is by putting something like this at the
> > top of your ~/.qmail:
> > |grep -f .spammers &>/dev/null && exit 99; exit 0
>
> How about having something like this in the Spammers File:
>
> ^Subject:.*\$$$ spamming words like dollars and ��� $$$ etc go here
>
> Would this work?
Yes, though in the case of `$$$', you'd need `\$\$\$'. Remember that
a message will be dropped if it matches *any* rule in the spammer
file; it doesn't have to match them all, and it doesn't have to match
both of a pair that are supposed to work together. If you want to
require that a message match each of a set of rules, you'd need a more
complicated regular expression, or a more complicated .qmail delivery
rule.
paul