[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] SPAM FILTER ON A RAQ4
- Subject: Re: [cobalt-users] SPAM FILTER ON A RAQ4
- From: Jerry K <cobalt@xxxxxxxxxxx>
- Date: Fri Jul 11 08:53:01 2003
- List-id: Mailing list for users to share thoughts on Sun Cobalt products. <cobalt-users.list.cobalt.com>
Jeroen,
I looked at your script, and also the file that you download. I have a
question that I would like to ask. In the file that you download, all
of the reject messages (2nd field) has a value of either SPAMMER or
JUNK. In my limited sendmail understanding, I though that accepted
values were either OK, RELAY, REJECT or some 550 error message. I also
do not see any sed or other shell scripting that would replace
JUNK/SPAMMER with a 550 message.
How does sendmail deal with these values?
Thanks,
Jerry K
On Thursday, July 10, 2003, at 09:40 AM, Jeroen Wunnink wrote:
Another nice addition to do somewhere from the cron at night:
Make a script like:
#!/bin/bash
wget http://basic.wirehub.net/spamlist.txt
touch access.new
cat access >> access.new
cat spamlist.txt >> access.new
rm -f spamlist.txt
makemap hash access.db < access.new
rm -f access.new
<<much delete here>>