On 9/7/07 5:29 PM, "Peter J. Holzer" <[EMAIL PROTECTED]> wrote:
> On 2007-09-08 00:22:35 +0200, Peter J. Holzer wrote: >> On 2007-09-07 14:10:34 -0500, Chris Garrigues wrote: >>> Are there any others worth looking at? >> >> There was at least one variant which uses an SQL database instead of the >> DB file, but the URL is dead. > > And immediately after sending this mail I see that the author of that > plugin not only is still on the list but has written the mail > immediately before Chris'. So Ed will probably speak up if he thinks his > plugin is worth looking at :-). I'm not Ed, but I'm using this: CREATE TABLE `greylisting` ( `remote_ip` varchar(16) NOT NULL, `sender` varchar(60) NOT NULL, `recipient` varchar(60) NOT NULL, `ts` int(11) NOT NULL, `new` int(11) NOT NULL, `black` int(11) NOT NULL, `white` int(11) NOT NULL, KEY `greylisting01` (`remote_ip`,`sender`,`recipient`) ); I use the crude converted plugin http://peter.boku.net/greylisting.mysql with success -- accessing it from multiple systems simultaneously. It's "crude" because the documentation is clearly wrong and the 'use' declarations aren't as friendly as they should be. peter