Re: Personal rule matching ToCc

2006-02-07 Thread hamann . w
Hi, I was experimenting with something similar, although as a client of a big ISP I need full match rather than domain match. My experience so far: some mail that does not have me in To or Cc is definitely spam, or worse. The other part is legit mail, mostly from mailinglists or other mail for

Re: Personal rule matching ToCc

2006-02-07 Thread Loren Wilton
> > header __TO_DOMAIN_NETToCc =~ /[EMAIL PROTECTED]/i > > > > But the above rule would match "@domain.net" as well as > > "@domain.net.in" > > You have not tried it, have you? The \b assures that it will not match > on @domain.net.in. Well, no, it will. The dot is a wordbreak, and \b is onl

Re: Personal rule matching ToCc

2006-02-07 Thread Matt Kettler
jdow wrote: > From: "Ramprasad" <[EMAIL PROTECTED]> > >> Hi, >> I want to write a personal domain-wise rule The rule I am using now is >> header __TO_DOMAIN_NETToCc =~ /[EMAIL PROTECTED]/i >> >> But the above rule would match "@domain.net" as well as >> "@domain.net.in" > > You have not trie

Re: Personal rule matching ToCc

2006-02-07 Thread Ramprasad
On Tue, 2006-02-07 at 00:15 -0800, jdow wrote: > From: "Ramprasad" <[EMAIL PROTECTED]> > > > Hi, > > I want to write a personal domain-wise rule > > The rule I am using now is > > > > header __TO_DOMAIN_NETToCc =~ /[EMAIL PROTECTED]/i > > > > But the above rule would match "@domain.net"

Re: Personal rule matching ToCc

2006-02-07 Thread jdow
From: "Ramprasad" <[EMAIL PROTECTED]> Hi, I want to write a personal domain-wise rule The rule I am using now is header __TO_DOMAIN_NETToCc =~ /[EMAIL PROTECTED]/i But the above rule would match "@domain.net" as well as "@domain.net.in" You have not tried it, have you? The \b assur

Personal rule matching ToCc

2006-02-06 Thread Ramprasad
Hi, I want to write a personal domain-wise rule The rule I am using now is header __TO_DOMAIN_NETToCc =~ /[EMAIL PROTECTED]/i But the above rule would match "@domain.net" as well as "@domain.net.in" Which is the best way to match only @domain.net and not @domain.net.in Thanks Ram

Re: Personal rule matching ToCc

2006-02-04 Thread mouss
Matt Kettler a écrit : > Ramprasad wrote: > >>Hi, >> I want to write a personal rule to match recipients of a particular >>domain >>The rule I am using now is >> >> header __TO_DOMAIN_NETToCc =~ /[EMAIL PROTECTED]/i >> >>But the above rule would match "@domain.net" as well as >>"@domain.ne

Re: Personal rule matching ToCc

2006-02-04 Thread Matt Kettler
Ramprasad wrote: > Hi, >I want to write a personal rule to match recipients of a particular > domain > The rule I am using now is > > header __TO_DOMAIN_NETToCc =~ /[EMAIL PROTECTED]/i > > But the above rule would match "@domain.net" as well as > "@domain.net.in" > Which is the best way

Personal rule matching ToCc

2006-02-03 Thread Ramprasad
Hi, I want to write a personal rule to match recipients of a particular domain The rule I am using now is header __TO_DOMAIN_NETToCc =~ /[EMAIL PROTECTED]/i But the above rule would match "@domain.net" as well as "@domain.net.in" Which is the best way to match only @domain.net and not