|
How to get rid of SPAM:
- The easiest way to filter out spammers, especially the notorious ones is to use
procmail to filter your mail.
- To get rid of a message, simply write a rule, that would store it in
/dev/null, which is a special file, a bit-bucket, silently discarding anything you write into it.
- An alternate, and more resource expensive solution is to forward the offending messages to
devnull@binary.net, which will also silently discard the message.
- A sample
.procmailrc rule, that would filter out anything, coming from friend@public.com would look like this:
:0 h
* ^[Ff]rom:.*riend@.*public.com
/dev/null
- See
procmail documentation for details.
Please contact support@binary.net if you have any further questions.
|