On Wed, 08 Jan 2014 15:12:43 +0100
Axb wrote:

> On 01/08/2014 02:34 PM, Martin Gregorie wrote:

> > SPAMES describe Spanish info spam
> > SPAMES header   From =~ /Lic\..*\.info/
> > SPAMES score    5
> >
> 
> I'd do:
> 
> header   FROM_NAME_LIC        From:name =~ /^Lic\./
> 
> as Lic. is in the name and not in the email addr. and avoid the .*
> slowness.

I doubt the .* on a header is worst than the overhead of a second regex
test.


> and meta with
> 
> header        __FROM_INFO From =~ /\.info/

or better

header  __FROM_INFO From:addr =~ /\.info$/



Reply via email to