[Greylist-users] manually adding a triplet

Todd Weaver todd at m2n.com
Wed Apr 21 10:49:03 PDT 2004


On Wed, Apr 21, 2004 at 10:26:09AM -0400, chris at chrisbaker.net wrote:
> How can I manually add a triplet to the whitelist part of graylisting?
> I am using Exim 4.30 on Debian 3.0.

You could just manually add it to your mysql db...
(assuming you're using the stock relaydelay.sql)

<relay_ip> is the host ip
<mail_from> is the sender address
<rcpt_to> is the recipients address

55 is the default interval

The important field is really just the passed_count;
(the second '1')

mysql
use relaydelay;
INSERT INTO relaytofrom VALUES (NULL, '<relay_ip>, '<mail_from>', '<rcpt_to>', DATE_ADD(NOW()+0, INTERVAL 55 MINUTE), DATE_ADD(NOW()+0, INTERNAL 36 DAY), 1, 1, 0, 'AUTO', NOW()+0, NULL);

> Thanks.

Additionally I just wrote greylisting
for Exim 3.35 in a debian package.
So that version is on Debian's stable tree
(rather than Exim 4 which is on testing/unstable).

It is working well, just wanting to burn it in a little before releasing it.


More information about the Greylist-users mailing list