|
Let's run things in debug mode with a dry run and see what we get:
# /usr/local/sbin/spamd-setup -nd
Getting http://www.openbsd.org/spamd/traplist.gz
blacklist uatraps 51165 entries
Getting http://www.openbsd.org/spamd/nixspam.gz
blacklist nixspam 40000 entries
Getting http://www.openbsd.org/spamd/SBL.cidr.gz
ftp: Error retrieving file - `404 Not Found'
blacklist spamhaus 0 entries
Getting http://www.openbsd.org/spamd/spews_list_level1.txt.gz
ftp: Error retrieving file - `404 Not Found'
blacklist spews1 0 entries
That's pretty clear. SBL and SPEWS are not there. /usr/local/etc/spamd.conf
contains the problem lines:
all:\
:uatraps:nixspam:spamhaus:spews1
Changing it to this solves the problem:
all:\
:uatraps:nixspam
There are other such lists availble at the OpenBSD website, but
those are the two I use.
|