[Mimedefang] Still outbound messages are getting blocked by s pamassassin

Matthew.van.Eerde at hbinc.com Matthew.van.Eerde at hbinc.com
Fri Jul 9 14:47:04 EDT 2004


> From: Jim McCullars [mailto:jim at info.uah.edu]
> On Fri, 9 Jul 2004, Vivek Kumar wrote:
> 
> > Hi Matthew,
> >
> > I tried both the following syntax you suggested but I got 
> compliation
> > error.
> 
>    How about just:
> 
>    if ($hostip =~ /^191\.0\.(?:0|1)/) {
>     return("ACCEPT_AND_NO_MORE_FILTERING","OK")
>    }

That would aslo match 191.0.12.38, for example.

This might work though:
    if ($hostip =~ /^(?:191\.0\.(?:0|1)|127\.0\.0)\./) {
     return("ACCEPT_AND_NO_MORE_FILTERING","OK")
    }

Matthew.van.Eerde at hbinc.com                      805.964.4554 x902
Hispanic Business Inc./HireDiversity.com         Software Engineer
perl -e"map{y/a-z/l-za-k/;print}shift" "Jjhi pcdiwtg Ptga wprztg,"



More information about the MIMEDefang mailing list