[Declude.JunkMail] OT - Outlook Junk Mail Folder

2007-06-19 Thread Dean Lawrence

Hi All,

I have a client that we generate mailings for and one of their
messages is for some reason being placed in the Outlook Junkmail
Folder. There is very little to the email and there aren't any Buy
nows or anything like that in the message. Declude and Sniffer have
no problem with it either. However, Outlook keeps flagging it as junk
mail.

Does anyone have any ideas as to finding out why Outlook is doing this
or how to get around it?

Thanks,

Dean

--
__
Dean Lawrence, CIO/Partner
Internet Data Technology
888.GET.IDT1 ext. 701 * fax: 888.438.4381
http://www.idatatech.com/
Corporate Internet Development and Marketing Specialists


---
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] APEWS test results

2007-06-19 Thread Scott Fisher
I ran the 2 apews lists for about a week, and they are quite a bit scary.

 

APEWS-L1-RHSBL   4329 total hits   3537 spam  792 ham

 

 

APEWS-L1-DNSBL  21364 total hits20070 spam  1294  ham

 

 

False positives on companies: admworld.com, amazon.com, godaddy.com,
marketwire.com, Purina.com, state.ny.us

False positives on email companies: bluehornet.com, constantcontact.com

False positives on ISPs: aol.com, bellnet.ca, charter.net, Comcast.net,
earthlink.net, hotmail.com, sbcglobal.com, yahoo.com, tiscali.co.uk,
sina.com

 

Scott Fisher

Dir of IT

Farm Progress Companies

191 S Gary Ave

Carol Stream, IL 60188

Tel: 630-462-2323

 

This email message, including any attachments, is for the sole use of the
intended recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or distribution is
prohibited. If you are not the intended recipient, please contact the sender
by reply email and destroy all copies of the original message. Although Farm
Progress Companies has taken reasonable precautions to ensure no viruses are
present in this email, the company cannot accept responsibility for any loss
or damage arising from the use of this email or attachments.

 



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