How about

sub filter_recipient() {
    my ($recip, $sender, $ip, $hostname, $first, $helo, @rcpt) = @_;

    return ('ACCEPT_AND_NO_MORE_FILTERING','ok') if
        lc($recip) =~ /<[EMAIL PROTECTED]>?/;

    return ('CONTINUE', "ok");
}

I'm assuming that ACCEPT_AND_NO_MORE_FILTERING is a valid response
from filter_recipient based on my reading of the man page. You will
also have to turn on filtering by recipient in your start script if
you have not already done so.

- rick

On Wed, 28 Jan 2004 [EMAIL PROTECTED] wrote:

> greetings, I have found myself with the need to prevent virus scanning and
> defanging on one inbound address, our honeypot and auto  blacklist address.
>
> does anyone have a quick way to say
> if the recipient is [EMAIL PROTECTED]
> exit from the filter completely and deliver as-is?
>
> Thanks in advance,
>
> Mark
>
>
> _______________________________________________
> Visit http://www.mimedefang.org and http://www.canit.ca
> MIMEDefang mailing list
> [EMAIL PROTECTED]
> http://lists.roaringpenguin.com/mailman/listinfo/mimedefang
>
_______________________________________________
Visit http://www.mimedefang.org and http://www.canit.ca
MIMEDefang mailing list
[EMAIL PROTECTED]
http://lists.roaringpenguin.com/mailman/listinfo/mimedefang

Reply via email to