----- Original Message -----
From: "Brad Dameron" <[EMAIL PROTECTED]>
> Anyone have a good example of using the tcpserver rblsmtpd with qmail?
>
> I am currently using "/usr/local/bin/tcpserver -c 120 -D -x
> /mail/etc/tcp.smtp.cdb -u 501 -g 500 0 smt
> p /var/qmail/bin/qmail-smtpd 2>&1 | /var/qmail/bin/splogger smtpd 3 &" as
my
> start line in my rc.local file.
I use a LWQ style - vpopmail enbabled supervised run script
#!/bin/sh
# Note: concurrencyincoming is a feature of this script.
QMAILDUID=`id -u qmaild`
NOFILESGID=`id -g qmaild`
MAXSMTPD=`cat /var/qmail/control/concurrencyincoming`
exec /usr/local/bin/softlimit -m 4000000 \
tcpserver -v -p -x /home/vpopmail/etc/tcp.smtp.cdb -c "$MAXSMTPD" \
-u "$QMAILDUID" -g "$NOFILESGID" 0 smtp \
/usr/local/bin/rblsmtpd \
-r relays.orbs.org \
-r rbl.maps.vix.com \
-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%>' \
qmail-smtpd 2>&1
Hope this helps
Rick Up