[Mimedefang] Bypassing outgoing mail - filter_relay blocking all incomming mail

David F. Skoll dfs at roaringpenguin.com
Sat Feb 22 16:25:01 EST 2003


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.



More information about the MIMEDefang mailing list