On Sat, 22 Feb 2003, Rick Knight wrote:
> sub filter_relay ($$$) {
> my ($ip, $name, $helo) = @_;
> return ('ACCEPT_NO_MORE_FILTERING', "ok") if $ip eq "x.x.x.x";
Right here, you need to add:
return ('CONTINUE', 'OK');
> }
You must *always* return a valid answer from filter_relay.
--
David.