Re: [Exim] RBL feature not working

Top Page
Delete this message
Reply to this message
Author: Tim Jackson
Date:  
To: exim-users
Subject: Re: [Exim] RBL feature not working
Hi Hiep, on Mon, 1 Mar 2004 12:14:29 -0600 you wrote:

> heres the output i get when i run exim -bh
> # ./exim -bh 80.117.16.25

<snip>
> 220 sp1.varsityspirit.com ESMTP Exim 4.14 Mon, 01 Mar 2004 12:13:12
> -0600


You need to do a bit more than that! The DNSBLs in your config don't kick
in until RCPT time, so you need to run through a sample SMTP session up to
that stage. Try:

HELO blah

<wait for response; should be 2xx>

MAIL FROM:<some.valid@address>

<wait for response; should be 2xx>

RCPT TO:<some.user@???>

The response should be 5xx if the IP address you are using to test is
listed in one of the DNSBLs you are using.


Tim