On Fri, Mar 02, 2001 at 10:54:56PM -0800, Todd A. Jacobs wrote:
> I'm running the following script as /var/qmail/supervise/qmail-smtpd/run.
> As you can see, rblsmtpd is setup to query all three mail-abuse.org
> services. However, when testing using [EMAIL PROTECTED], the RSS
> lookup is apparently failing. Has anyone else had a similar problem, or
> have some ideas about how I can debug this further?
> 
> #!/bin/sh
> # This is /var/qmail/supervise/qmail-smtpd/run
> QMAILDUID=`id -u qmaild`
> NOFILESGID=`id -g qmaild`
> MAXSMTPD=`cat /var/qmail/control/concurrencyincoming`
> exec /usr/local/bin/softlimit -m 2000000 \
>       /usr/local/bin/tcpserver -v -p -x /etc/tcp.smtp.cdb -c "$MAXSMTPD" \
>       -u $QMAILDUID -g $NOFILESGID 0 smtp /usr/local/bin/rblsmtpd \
>       /usr/local/bin/rblsmtpd -rdialups.mail-abuse.org \
>       /usr/local/bin/rblsmtpd -rrelays.mail-abuse.org \
>       /var/qmail/bin/qmail-smtpd 2>&1

Well, first, you could try simplifying it a bit....

exec /usr/local/bin/softlimit -m 2000000 \
        /usr/local/bin/tcpserver -v -p -x /etc/tcp.smtp.cdb -c "$MAXSMTPD" \
        -u $QMAILDUID -g $NOFILESGID 0 smtp /usr/local/bin/rblsmtpd \
        -rdialups.mail-abuse.org -rrelays.mail-abuse.org -rblackholes.mail-abuse.org \
        /var/qmail/bin/qmail-smtpd 2>&1

You don't need three invocations of rblsmtpd. 

Next, you need to get a patch for rblsmtpd. MAPS removed all the TXT
records in the RSS zone and now only replies to A record queries.
rblsmtpd only understands TXT records. See the second bullet at
http://www.qmail.org/top.html#spam

Tim

Reply via email to