>The issue at hand is whether or not you can specify multiple blackhole
>lists with one call, or if you have to chain calls to rblsmtpd.
With the help of the folks here, I've managed to implement multiple RBLs --
RBL, RSS, and DUL. I use tcpserver and rblsmtpd with qmail under Linux
2.2.18 (Slackware 7.1).
The solution is multiple -r commands:
rblsmtpd -r blah1.rbl.org -r blah2.rbl.org -r blah3.rbl.org
This setup blocks the test messages at crynwr successfully. My full
command line is:
/usr/local/bin/tcpserver -x /etc/tcprules/tcp.smtp.cdb \
-u 1004 -g 2108 0 smtp /usr/local/bin/rblsmtpd -r
blackholes.mail-abuse.org \
-r dialups.mail-abuse.org \
-r 'relays.mail-abuse.org:Open relay problem - see
<URL:http://www.mail-abuse.org/cgi-bin/nph-rss?%IP%>' \
/var/qmail/bin/qmail-smtpd 2>&1 | /var/qmail/bin/splogger smtpd 3 &
I've also installed the Alan Curry patch at
http://itcentrx.com/mirrors/qmail/ucspi-rss.diff to resolve the issue of
RSS not having TXT records anymore.
Works perfectly.
ag