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
> > 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
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
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"
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
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
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
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
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