RE: [Declude.JunkMail] PCRE and REVDNS

2007-06-20 Thread David Barker
Maximum line length in a filter is 1024 Characters


David Barker
VP Operations  |  Declude
Your Email Security is our business
O: 978.499.2933  x7007
F: 978.988.1311   
E: [EMAIL PROTECTED]


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Scott
Fisher
Sent: Tuesday, June 19, 2007 10:03 AM
To: declude.junkmail@declude.com
Subject: RE: [Declude.JunkMail] PCRE and REVDNS

OK, now you have me thinking could I use PCRE to replace tons of body
searches for my 419/Lottery filter...

What is the maximum line length for a line in a filter?

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David
Barker
Sent: Monday, June 18, 2007 12:54 PM
To: declude.junkmail@declude.com
Subject: [Declude.JunkMail] PCRE and REVDNS

Just a quick tutorial. As PCRE is much quicker than using regular line
matching I use the following when checking against REVDNS within filters:

Regular Filter line:
---

REVDNS  -5  ENDSWITH.bigfootinteractive.com
REVDNS  -5  ENDSWITH.bluehornet.com
REVDNS  -5  ENDSWITH.constantcontact.com

PCRE Filter line:
---

REVDNS  -5  PCRE
(?i:\.(bigfootinteractive|bluehornet|constantcontact)\.com$)

1. The PCRE expression needs to be in parenthesis (  )

2. ?i: indicates case in-sensitive

3. As . is a special character meaning any character we use the \ to
indicate that it should just be a .

4. The | represents or 

5.The $ is also a special character which used here indicates the end of a
string

The above PCRE will match any of the 3 from the regular filter.

David Barker
VP Operations  |  Declude
Your Email Security is our business
O: 978.499.2933  x7007
F: 978.988.1311   
E: [EMAIL PROTECTED]



---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type unsubscribe Declude.JunkMail.  The archives can be found
at http://www.mail-archive.com.




---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type unsubscribe Declude.JunkMail.  The archives can be found
at http://www.mail-archive.com.



---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type unsubscribe Declude.JunkMail.  The archives can be found
at http://www.mail-archive.com.



RE: [Declude.JunkMail] PCRE and REVDNS

2007-06-19 Thread Scott Fisher
OK, now you have me thinking could I use PCRE to replace tons of body
searches for my 419/Lottery filter...

What is the maximum line length for a line in a filter?

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David
Barker
Sent: Monday, June 18, 2007 12:54 PM
To: declude.junkmail@declude.com
Subject: [Declude.JunkMail] PCRE and REVDNS

Just a quick tutorial. As PCRE is much quicker than using regular line
matching I use the following when checking against REVDNS within filters:

Regular Filter line:
---

REVDNS  -5  ENDSWITH.bigfootinteractive.com
REVDNS  -5  ENDSWITH.bluehornet.com
REVDNS  -5  ENDSWITH.constantcontact.com

PCRE Filter line:
---

REVDNS  -5  PCRE
(?i:\.(bigfootinteractive|bluehornet|constantcontact)\.com$)

1. The PCRE expression needs to be in parenthesis (  )

2. ?i: indicates case in-sensitive

3. As . is a special character meaning any character we use the \ to
indicate that it should just be a .

4. The | represents or 

5.The $ is also a special character which used here indicates the end of a
string

The above PCRE will match any of the 3 from the regular filter.

David Barker
VP Operations  |  Declude
Your Email Security is our business
O: 978.499.2933  x7007
F: 978.988.1311   
E: [EMAIL PROTECTED]



---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type unsubscribe Declude.JunkMail.  The archives can be found
at http://www.mail-archive.com.




---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type unsubscribe Declude.JunkMail.  The archives can be found
at http://www.mail-archive.com.



RE: [Declude.JunkMail] PCRE and REVDNS

2007-06-19 Thread David Barker
I will have to check out the maximum line length and get back to you, I have
modified most of the 419 filter if anyone (with a valid sa) would like a
copy just let me know.

David Barker
VP Operations  |  Declude
Your Email Security is our business
O: 978.499.2933  x7007
F: 978.988.1311   
E: [EMAIL PROTECTED]



-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Scott
Fisher
Sent: Tuesday, June 19, 2007 10:03 AM
To: declude.junkmail@declude.com
Subject: RE: [Declude.JunkMail] PCRE and REVDNS

OK, now you have me thinking could I use PCRE to replace tons of body
searches for my 419/Lottery filter...

What is the maximum line length for a line in a filter?

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David
Barker
Sent: Monday, June 18, 2007 12:54 PM
To: declude.junkmail@declude.com
Subject: [Declude.JunkMail] PCRE and REVDNS

Just a quick tutorial. As PCRE is much quicker than using regular line
matching I use the following when checking against REVDNS within filters:

Regular Filter line:
---

REVDNS  -5  ENDSWITH.bigfootinteractive.com
REVDNS  -5  ENDSWITH.bluehornet.com
REVDNS  -5  ENDSWITH.constantcontact.com

PCRE Filter line:
---

REVDNS  -5  PCRE
(?i:\.(bigfootinteractive|bluehornet|constantcontact)\.com$)

1. The PCRE expression needs to be in parenthesis (  )

2. ?i: indicates case in-sensitive

3. As . is a special character meaning any character we use the \ to
indicate that it should just be a .

4. The | represents or 

5.The $ is also a special character which used here indicates the end of a
string

The above PCRE will match any of the 3 from the regular filter.

David Barker
VP Operations  |  Declude
Your Email Security is our business
O: 978.499.2933  x7007
F: 978.988.1311   
E: [EMAIL PROTECTED]



---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type unsubscribe Declude.JunkMail.  The archives can be found
at http://www.mail-archive.com.




---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type unsubscribe Declude.JunkMail.  The archives can be found
at http://www.mail-archive.com.



---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type unsubscribe Declude.JunkMail.  The archives can be found
at http://www.mail-archive.com.



RE: [Declude.JunkMail] PCRE and REVDNS

2007-06-19 Thread Mark Reimer
David,
I would like a copy.

Mark Reimer
IT System Admin
American CareSource
972-308-6887
 
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David
Barker
Sent: Tuesday, June 19, 2007 9:15 AM
To: declude.junkmail@declude.com
Subject: RE: [Declude.JunkMail] PCRE and REVDNS

I will have to check out the maximum line length and get back to you, I have
modified most of the 419 filter if anyone (with a valid sa) would like a
copy just let me know.

David Barker
VP Operations  |  Declude
Your Email Security is our business
O: 978.499.2933  x7007
F: 978.988.1311   
E: [EMAIL PROTECTED]



-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Scott
Fisher
Sent: Tuesday, June 19, 2007 10:03 AM
To: declude.junkmail@declude.com
Subject: RE: [Declude.JunkMail] PCRE and REVDNS

OK, now you have me thinking could I use PCRE to replace tons of body
searches for my 419/Lottery filter...

What is the maximum line length for a line in a filter?

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David
Barker
Sent: Monday, June 18, 2007 12:54 PM
To: declude.junkmail@declude.com
Subject: [Declude.JunkMail] PCRE and REVDNS

Just a quick tutorial. As PCRE is much quicker than using regular line
matching I use the following when checking against REVDNS within filters:

Regular Filter line:
---

REVDNS  -5  ENDSWITH.bigfootinteractive.com
REVDNS  -5  ENDSWITH.bluehornet.com
REVDNS  -5  ENDSWITH.constantcontact.com

PCRE Filter line:
---

REVDNS  -5  PCRE
(?i:\.(bigfootinteractive|bluehornet|constantcontact)\.com$)

1. The PCRE expression needs to be in parenthesis (  )

2. ?i: indicates case in-sensitive

3. As . is a special character meaning any character we use the \ to
indicate that it should just be a .

4. The | represents or 

5.The $ is also a special character which used here indicates the end of a
string

The above PCRE will match any of the 3 from the regular filter.

David Barker
VP Operations  |  Declude
Your Email Security is our business
O: 978.499.2933  x7007
F: 978.988.1311   
E: [EMAIL PROTECTED]



---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type unsubscribe Declude.JunkMail.  The archives can be found
at http://www.mail-archive.com.




---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type unsubscribe Declude.JunkMail.  The archives can be found
at http://www.mail-archive.com.



---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type unsubscribe Declude.JunkMail.  The archives can be found
at http://www.mail-archive.com.






---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type unsubscribe Declude.JunkMail.  The archives can be found
at http://www.mail-archive.com.



RE: [Declude.JunkMail] PCRE and REVDNS

2007-06-19 Thread David Barker
Email me directly [EMAIL PROTECTED] as to keep the lists relevant

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mark
Reimer
Sent: Tuesday, June 19, 2007 10:35 AM
To: declude.junkmail@declude.com
Subject: RE: [Declude.JunkMail] PCRE and REVDNS

David,
I would like a copy.

Mark Reimer
IT System Admin
American CareSource
972-308-6887
 
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David
Barker
Sent: Tuesday, June 19, 2007 9:15 AM
To: declude.junkmail@declude.com
Subject: RE: [Declude.JunkMail] PCRE and REVDNS

I will have to check out the maximum line length and get back to you, I have
modified most of the 419 filter if anyone (with a valid sa) would like a
copy just let me know.

David Barker
VP Operations  |  Declude
Your Email Security is our business
O: 978.499.2933  x7007
F: 978.988.1311   
E: [EMAIL PROTECTED]



-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Scott
Fisher
Sent: Tuesday, June 19, 2007 10:03 AM
To: declude.junkmail@declude.com
Subject: RE: [Declude.JunkMail] PCRE and REVDNS

OK, now you have me thinking could I use PCRE to replace tons of body
searches for my 419/Lottery filter...

What is the maximum line length for a line in a filter?

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David
Barker
Sent: Monday, June 18, 2007 12:54 PM
To: declude.junkmail@declude.com
Subject: [Declude.JunkMail] PCRE and REVDNS

Just a quick tutorial. As PCRE is much quicker than using regular line
matching I use the following when checking against REVDNS within filters:

Regular Filter line:
---

REVDNS  -5  ENDSWITH.bigfootinteractive.com
REVDNS  -5  ENDSWITH.bluehornet.com
REVDNS  -5  ENDSWITH.constantcontact.com

PCRE Filter line:
---

REVDNS  -5  PCRE
(?i:\.(bigfootinteractive|bluehornet|constantcontact)\.com$)

1. The PCRE expression needs to be in parenthesis (  )

2. ?i: indicates case in-sensitive

3. As . is a special character meaning any character we use the \ to
indicate that it should just be a .

4. The | represents or 

5.The $ is also a special character which used here indicates the end of a
string

The above PCRE will match any of the 3 from the regular filter.

David Barker
VP Operations  |  Declude
Your Email Security is our business
O: 978.499.2933  x7007
F: 978.988.1311   
E: [EMAIL PROTECTED]



---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type unsubscribe Declude.JunkMail.  The archives can be found
at http://www.mail-archive.com.




---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type unsubscribe Declude.JunkMail.  The archives can be found
at http://www.mail-archive.com.



---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type unsubscribe Declude.JunkMail.  The archives can be found
at http://www.mail-archive.com.






---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type unsubscribe Declude.JunkMail.  The archives can be found
at http://www.mail-archive.com.



---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type unsubscribe Declude.JunkMail.  The archives can be found
at http://www.mail-archive.com.



Re: [Declude.JunkMail] PCRE and REVDNS

2007-06-19 Thread Darin Cox
How about adding it to the downloads section?  That seems easier than 
dealing with a lot of individual requests.

Darin.


- Original Message - 
From: David Barker [EMAIL PROTECTED]
To: declude.junkmail@declude.com
Sent: Tuesday, June 19, 2007 10:42 AM
Subject: RE: [Declude.JunkMail] PCRE and REVDNS


Email me directly [EMAIL PROTECTED] as to keep the lists relevant

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mark
Reimer
Sent: Tuesday, June 19, 2007 10:35 AM
To: declude.junkmail@declude.com
Subject: RE: [Declude.JunkMail] PCRE and REVDNS

David,
I would like a copy.

Mark Reimer
IT System Admin
American CareSource
972-308-6887

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David
Barker
Sent: Tuesday, June 19, 2007 9:15 AM
To: declude.junkmail@declude.com
Subject: RE: [Declude.JunkMail] PCRE and REVDNS

I will have to check out the maximum line length and get back to you, I have
modified most of the 419 filter if anyone (with a valid sa) would like a
copy just let me know.

David Barker
VP Operations  |  Declude
Your Email Security is our business
O: 978.499.2933  x7007
F: 978.988.1311
E: [EMAIL PROTECTED]



-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Scott
Fisher
Sent: Tuesday, June 19, 2007 10:03 AM
To: declude.junkmail@declude.com
Subject: RE: [Declude.JunkMail] PCRE and REVDNS

OK, now you have me thinking could I use PCRE to replace tons of body
searches for my 419/Lottery filter...

What is the maximum line length for a line in a filter?

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David
Barker
Sent: Monday, June 18, 2007 12:54 PM
To: declude.junkmail@declude.com
Subject: [Declude.JunkMail] PCRE and REVDNS

Just a quick tutorial. As PCRE is much quicker than using regular line
matching I use the following when checking against REVDNS within filters:

Regular Filter line:
---

REVDNS -5 ENDSWITH .bigfootinteractive.com
REVDNS -5 ENDSWITH .bluehornet.com
REVDNS -5 ENDSWITH .constantcontact.com

PCRE Filter line:
---

REVDNS -5 PCRE
(?i:\.(bigfootinteractive|bluehornet|constantcontact)\.com$)

1. The PCRE expression needs to be in parenthesis (  )

2. ?i: indicates case in-sensitive

3. As . is a special character meaning any character we use the \ to
indicate that it should just be a .

4. The | represents or

5.The $ is also a special character which used here indicates the end of a
string

The above PCRE will match any of the 3 from the regular filter.

David Barker
VP Operations  |  Declude
Your Email Security is our business
O: 978.499.2933  x7007
F: 978.988.1311
E: [EMAIL PROTECTED]



---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type unsubscribe Declude.JunkMail.  The archives can be found
at http://www.mail-archive.com.




---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type unsubscribe Declude.JunkMail.  The archives can be found
at http://www.mail-archive.com.



---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type unsubscribe Declude.JunkMail.  The archives can be found
at http://www.mail-archive.com.






---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type unsubscribe Declude.JunkMail.  The archives can be found
at http://www.mail-archive.com.



---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type unsubscribe Declude.JunkMail.  The archives can be found
at http://www.mail-archive.com.




---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type unsubscribe Declude.JunkMail.  The archives can be found
at http://www.mail-archive.com.



RE: [Declude.JunkMail] PCRE and REVDNS

2007-06-19 Thread David Barker
I will add it but currently requires a separate username and password. I
will see if I can get this done today.

David

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Darin
Cox
Sent: Tuesday, June 19, 2007 11:05 AM
To: declude.junkmail@declude.com
Subject: Re: [Declude.JunkMail] PCRE and REVDNS

How about adding it to the downloads section?  That seems easier than 
dealing with a lot of individual requests.

Darin.


- Original Message - 
From: David Barker [EMAIL PROTECTED]
To: declude.junkmail@declude.com
Sent: Tuesday, June 19, 2007 10:42 AM
Subject: RE: [Declude.JunkMail] PCRE and REVDNS


Email me directly [EMAIL PROTECTED] as to keep the lists relevant

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mark
Reimer
Sent: Tuesday, June 19, 2007 10:35 AM
To: declude.junkmail@declude.com
Subject: RE: [Declude.JunkMail] PCRE and REVDNS

David,
I would like a copy.

Mark Reimer
IT System Admin
American CareSource
972-308-6887

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David
Barker
Sent: Tuesday, June 19, 2007 9:15 AM
To: declude.junkmail@declude.com
Subject: RE: [Declude.JunkMail] PCRE and REVDNS

I will have to check out the maximum line length and get back to you, I have
modified most of the 419 filter if anyone (with a valid sa) would like a
copy just let me know.

David Barker
VP Operations  |  Declude
Your Email Security is our business
O: 978.499.2933  x7007
F: 978.988.1311
E: [EMAIL PROTECTED]



-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Scott
Fisher
Sent: Tuesday, June 19, 2007 10:03 AM
To: declude.junkmail@declude.com
Subject: RE: [Declude.JunkMail] PCRE and REVDNS

OK, now you have me thinking could I use PCRE to replace tons of body
searches for my 419/Lottery filter...

What is the maximum line length for a line in a filter?

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David
Barker
Sent: Monday, June 18, 2007 12:54 PM
To: declude.junkmail@declude.com
Subject: [Declude.JunkMail] PCRE and REVDNS

Just a quick tutorial. As PCRE is much quicker than using regular line
matching I use the following when checking against REVDNS within filters:

Regular Filter line:
---

REVDNS -5 ENDSWITH .bigfootinteractive.com
REVDNS -5 ENDSWITH .bluehornet.com
REVDNS -5 ENDSWITH .constantcontact.com

PCRE Filter line:
---

REVDNS -5 PCRE
(?i:\.(bigfootinteractive|bluehornet|constantcontact)\.com$)

1. The PCRE expression needs to be in parenthesis (  )

2. ?i: indicates case in-sensitive

3. As . is a special character meaning any character we use the \ to
indicate that it should just be a .

4. The | represents or

5.The $ is also a special character which used here indicates the end of a
string

The above PCRE will match any of the 3 from the regular filter.

David Barker
VP Operations  |  Declude
Your Email Security is our business
O: 978.499.2933  x7007
F: 978.988.1311
E: [EMAIL PROTECTED]



---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type unsubscribe Declude.JunkMail.  The archives can be found
at http://www.mail-archive.com.




---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type unsubscribe Declude.JunkMail.  The archives can be found
at http://www.mail-archive.com.



---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type unsubscribe Declude.JunkMail.  The archives can be found
at http://www.mail-archive.com.






---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type unsubscribe Declude.JunkMail.  The archives can be found
at http://www.mail-archive.com.



---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type unsubscribe Declude.JunkMail.  The archives can be found
at http://www.mail-archive.com.




---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type unsubscribe Declude.JunkMail.  The archives can be found
at http://www.mail-archive.com.



---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type unsubscribe Declude.JunkMail.  The archives can be found
at http://www.mail-archive.com.



[Declude.JunkMail] PCRE and REVDNS

2007-06-18 Thread David Barker
Just a quick tutorial. As PCRE is much quicker than using regular line
matching I use the following when checking against REVDNS within filters:

Regular Filter line:
---

REVDNS  -5  ENDSWITH.bigfootinteractive.com
REVDNS  -5  ENDSWITH.bluehornet.com
REVDNS  -5  ENDSWITH.constantcontact.com

PCRE Filter line:
---

REVDNS  -5  PCRE
(?i:\.(bigfootinteractive|bluehornet|constantcontact)\.com$)

1. The PCRE expression needs to be in parenthesis (  )

2. ?i: indicates case in-sensitive

3. As . is a special character meaning any character we use the \ to
indicate that it should just be a .

4. The | represents or 

5.The $ is also a special character which used here indicates the end of a
string

The above PCRE will match any of the 3 from the regular filter.

David Barker
VP Operations  |  Declude
Your Email Security is our business
O: 978.499.2933  x7007
F: 978.988.1311   
E: [EMAIL PROTECTED]



---
This E-mail came from the Declude.JunkMail mailing list.  To
unsubscribe, just send an E-mail to [EMAIL PROTECTED], and
type unsubscribe Declude.JunkMail.  The archives can be found
at http://www.mail-archive.com.