> -----Original Message-----
> From: Theo Van Dinter [mailto:[EMAIL PROTECTED] 
> Sent: Friday, May 12, 2006 10:17
> To: users@spamassassin.apache.org
> Subject: Re: So, when do we start handling [dot] in a URI
> 
> On Fri, May 12, 2006 at 10:12:40AM -0500, Dallas L. Engelken wrote:
> > well, i dont consider them FPs, because i'm not writing any rules 
> > around it.  its just so get_uri_list() picks them up as uris, and 
> > checks them against rhsbls.
> 
> Except the reason you don't want to change $_ in that loop is 
> because it'll modify it for everything else that uses that 
> array, including body rules, etc. ;)
> 

true, but it doesnt alter the actual output of the mail.  it just alters
the body text stored in M::SA:Message->{text_rendered} which the body
rules work on.  it may be smarter to do

s/([a-z0-9])[^a-z0-9\.]dot[^a-z0-9\.]([a-z]{2,7})/$1\.$2/gi;

to account for dot subdomains.

dallas

Reply via email to