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] Vulnerability in RPC on Windows DNS Server Could Allow Remote Code Execution

2007-04-13 Thread Mark Reimer
You could do Microsoft's registry workaround if you are not using the remote
management.

Mark Reimer
IT System Admin
American CareSource
972-308-6887
 
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Matt
Sent: Friday, April 13, 2007 10:58 AM
To: [EMAIL PROTECTED]
Subject: Re: [Declude.JunkMail] Vulnerability in RPC on Windows DNS Server
Could Allow Remote Code Execution


 However, for ISP's that use MS DNS servers and do remote management 
 from the inside - their customers could potentially exploit them.
 I have worked with folks who run services other than mail on their DNS 
 servers.  One example is FTP.  With passive ftp high ports 1024+ need 
 to be open both ways.  So if they are using standard ACL's and not a 
 firewall this could lead to some trouble as well.
Stateful firewalls don't need to open these ports for passive FTP.  The 
FTP connection is established on the standard port after which the 
passive port is shared with the client and the firewall tracks this and 
allows the connection.

As a rule of thumb, RPC should never be exposed to untrusted IP space.  
It is also odd and possibly grossly incompetent of Microsoft to choose 
to use ports 1024+ for such purposes, but I'm thinking that they have 
some weakly justifiable reason to do this as a feature.

Matt


---
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] Vulnerability in RPC on Windows DNS Server Could Allow Remote Code Execution

2007-04-13 Thread Mark Reimer
While we are on the topic of vulnerabilities I just saw 2 new
vulnerabilities found in clamav.

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

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mark
Reimer
Sent: Friday, April 13, 2007 12:26 PM
To: [EMAIL PROTECTED]
Subject: RE: [Declude.JunkMail] Vulnerability in RPC on Windows DNS Server
Could Allow Remote Code Execution

You could do Microsoft's registry workaround if you are not using the remote
management.

Mark Reimer
IT System Admin
American CareSource
972-308-6887
 
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Matt
Sent: Friday, April 13, 2007 10:58 AM
To: [EMAIL PROTECTED]
Subject: Re: [Declude.JunkMail] Vulnerability in RPC on Windows DNS Server
Could Allow Remote Code Execution


 However, for ISP's that use MS DNS servers and do remote management 
 from the inside - their customers could potentially exploit them.
 I have worked with folks who run services other than mail on their DNS 
 servers.  One example is FTP.  With passive ftp high ports 1024+ need 
 to be open both ways.  So if they are using standard ACL's and not a 
 firewall this could lead to some trouble as well.
Stateful firewalls don't need to open these ports for passive FTP.  The 
FTP connection is established on the standard port after which the 
passive port is shared with the client and the firewall tracks this and 
allows the connection.

As a rule of thumb, RPC should never be exposed to untrusted IP space.  
It is also odd and possibly grossly incompetent of Microsoft to choose 
to use ports 1024+ for such purposes, but I'm thinking that they have 
some weakly justifiable reason to do this as a feature.

Matt


---
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] Vulnerability in RPC on Windows DNS Server Could Allow Remote Code Execution

2007-04-13 Thread Mark Reimer
http://secunia.com/advisories/24891/

Mark Reimer
IT System Admin
American CareSource
972-308-6887
 
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Darrell
([EMAIL PROTECTED])
Sent: Friday, April 13, 2007 12:51 PM
To: [EMAIL PROTECTED]
Subject: Re: [Declude.JunkMail] Vulnerability in RPC on Windows DNS Server
Could Allow Remote Code Execution

Mark,

You have a link for those?

Darrell

Check out http://www.invariantsystems.com for utilities for Declude And 
Imail.  IMail/Declude Overflow Queue Monitoring, SURBL/URI integration, MRTG

Integration, and Log Parsers.

- Original Message - 
From: Mark Reimer [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, April 13, 2007 1:29 PM
Subject: RE: [Declude.JunkMail] Vulnerability in RPC on Windows DNS Server 
Could Allow Remote Code Execution


While we are on the topic of vulnerabilities I just saw 2 new
vulnerabilities found in clamav.

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


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mark
Reimer
Sent: Friday, April 13, 2007 12:26 PM
To: [EMAIL PROTECTED]
Subject: RE: [Declude.JunkMail] Vulnerability in RPC on Windows DNS Server
Could Allow Remote Code Execution

You could do Microsoft's registry workaround if you are not using the remote
management.

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

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Matt
Sent: Friday, April 13, 2007 10:58 AM
To: [EMAIL PROTECTED]
Subject: Re: [Declude.JunkMail] Vulnerability in RPC on Windows DNS Server
Could Allow Remote Code Execution


 However, for ISP's that use MS DNS servers and do remote management
 from the inside - their customers could potentially exploit them.
 I have worked with folks who run services other than mail on their DNS
 servers.  One example is FTP.  With passive ftp high ports 1024+ need
 to be open both ways.  So if they are using standard ACL's and not a
 firewall this could lead to some trouble as well.
Stateful firewalls don't need to open these ports for passive FTP.  The
FTP connection is established on the standard port after which the
passive port is shared with the client and the firewall tracks this and
allows the connection.

As a rule of thumb, RPC should never be exposed to untrusted IP space.
It is also odd and possibly grossly incompetent of Microsoft to choose
to use ports 1024+ for such purposes, but I'm thinking that they have
some weakly justifiable reason to do this as a feature.

Matt


---
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] Clam AV Updates

2006-11-10 Thread Mark Reimer
I have noticed for two days in a row that when freshclam runs it errors out
and deletes the daily folder. After that I get constant synchronization
errors. Does anyone have any ideas on how to fix this?

Mark Reimer
IT System Admin
American CareSource
972-308-6887
 
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Don
Brown
Sent: Friday, November 10, 2006 12:02 AM
To: declude.junkmail@declude.com
Subject: Re: [Declude.JunkMail] Clam AV Updates

We've been running Clam for Windows and getting a lot of time-outs and
'unable to delete - file in use . . ..  The C:\Temp folder fills up with
left over vir files.  We also have synch problems for updates.

We took it out of production today, since it was keeping dual xeon
CPU's continuously at 100% and we didn't have time to drop everything
to trouble-shoot it.

Any input is appreciated.



Thursday, November 9, 2006, 7:07:01 PM, Darrell
([EMAIL PROTECTED]) [EMAIL PROTECTED] wrote:
Dsic   
Dsic  
Dsic I tend to have clamav update issues.  For some  reason
Dsic freshclam will start taking 100% cpu and just run on.  This
Dsic caused a  few queue backups all caught early thanks to
Dsic QueueMon.  I changed the  task to kill it after 5 minutes.  When
Dsic watching the server its not uncommon  to see clam sync issues with the
daily.inc folder.
Dsic  
Dsic  
Dsic  
Dsic Darrell
Dsic  
Dsic

Dsic Check  out http://www.invariantsystems.com for  utilities for
Dsic Declude And Imail.  IMail/Declude Overflow Queue Monitoring, 
Dsic SURBL/URI integration, MRTG Integration, and Log Parsers.
Dsic  
Dsic   
Dsic - Original Message - 
Dsic   
Dsic From:  MarkReimer 
Dsic   
Dsic To: Declude JunkMail 
Dsic   
Dsic Sent: Thursday, November 09, 2006 5:52PM
Dsic   
Dsic Subject: [Declude.JunkMail] Clam AVUpdates
Dsic   

Dsic   
Dsic   
Dsic Today I noticed that my daily.incfolder was gone and when I
Dsic ran freshclam it gave me a mirror is notsynchronized error. Anyone
else see this?
Dsic   
Dsic  
Dsic   
Dsic MarkReimer
Dsic   
Dsic IT System Admin
Dsic   
Dsic American CareSource
Dsic   
Dsic 972-308-6887
Dsic   
Dsic  

Dsic ---
Dsic ThisE-mail came from the Declude.JunkMail mailing list. To
Dsic unsubscribe, justsend an E-mail to [EMAIL PROTECTED], and
Dsic typeunsubscribe Declude.JunkMail. The archives can be found
Dsic athttp://www.mail-archive.com. 

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



Don Brown - Dallas, Texas USA Internet Concepts, Inc.
[EMAIL PROTECTED]   http://www.inetconcepts.net
(972) 788-2364Fax: (972) 788-5049





---
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] Clam AV Updates

2006-11-09 Thread Mark Reimer








Today I noticed that my daily.inc folder was gone and when I
ran freshclam it gave me a mirror is not synchronized error. Anyone else see
this?



Mark Reimer

IT System Admin

American CareSource

972-308-6887









---This E-mail came from the Declude.JunkMail mailing list.  Tounsubscribe, just send an E-mail to [EMAIL PROTECTED], andtype "unsubscribe Declude.JunkMail".  The archives can be foundat http://www.mail-archive.com.


RE: [Declude.JunkMail] Clam AV Updates

2006-11-09 Thread Mark Reimer








My daily.inc folder is missing from the
clam directory. Could anyone please help me?





Mark Reimer

IT System Admin

American CareSource

972-308-6887













From:
[EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mark Reimer
Sent: Thursday, November 09, 2006
4:53 PM
To: Declude
 JunkMail
Subject: [Declude.JunkMail] Clam
AV Updates





Today I noticed that my daily.inc folder was gone and when I
ran freshclam it gave me a mirror is not synchronized error. Anyone else see
this?



Mark Reimer

IT System Admin

American CareSource

972-308-6887








---This E-mail came from the Declude.JunkMail mailing list.  Tounsubscribe, just send an E-mail to [EMAIL PROTECTED], andtype "unsubscribe Declude.JunkMail".  The archives can be foundat http://www.mail-archive.com.
---This E-mail came from the Declude.JunkMail mailing list.  Tounsubscribe, just send an E-mail to [EMAIL PROTECTED], andtype "unsubscribe Declude.JunkMail".  The archives can be foundat http://www.mail-archive.com.


[Declude.JunkMail] Bad Traffic

2006-10-31 Thread Mark Reimer








Is anyone seeing tons of bad traffic trying to come in on
udp ports 63550 and 23303?



Mark Reimer

IT System Admin

American CareSource

972-308-6887









---This E-mail came from the Declude.JunkMail mailing list.  Tounsubscribe, just send an E-mail to [EMAIL PROTECTED], andtype "unsubscribe Declude.JunkMail".  The archives can be foundat http://www.mail-archive.com.


[Declude.JunkMail] SPF in Imail

2006-10-26 Thread Mark Reimer








I was looking through my settings and noticed that SPF is
enabled for Imails anti-spam but all other tests are disabled. I am
using Declude junkmail so is there any reason to have SPF enabled for Imail?



Mark Reimer

IT System Admin

American CareSource

972-308-6887









---This E-mail came from the Declude.JunkMail mailing list.  Tounsubscribe, just send an E-mail to [EMAIL PROTECTED], andtype "unsubscribe Declude.JunkMail".  The archives can be foundat http://www.mail-archive.com.


RE: SPAM-WARN: Re: [Declude.JunkMail] RE: On RFC Violation - Declude allows attachments and Virus to pass through untouched and unscanned

2006-10-24 Thread Mark Reimer
So does the NONSTANDARDHDR vulnerability test protect us from both of these
problems?

Mark Reimer
IT System Admin
American CareSource
972-308-6887
 
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Matt
Sent: Monday, October 23, 2006 5:23 PM
To: declude.junkmail@declude.com
Subject: Re: SPAM-WARN: Re: [Declude.JunkMail] RE: On RFC Violation -
Declude allows attachments and Virus to pass through untouched and unscanned

David,

Thanks to both you and the other Dave for taking another look at this.

Matt



David Barker wrote:
 Darin,

 Our engineer Dave Franco is looking at a way to rewrite every message to
 standardize the format in order to overcome the incorrect line terminator
 issue. As there are several other things he is working on I do not have a
 definitive release date for this, I am looking at moving around some
 additional resources to further expedite a solution.

 David Barker
 Director of Product Development
 Your Email security is our business
 978.499.2933 office
 978.988.1311 fax
 [EMAIL PROTECTED]
  

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Darin
 Cox
 Sent: Monday, October 23, 2006 9:38 AM
 To: declude.junkmail@declude.com
 Subject: Re: SPAM-WARN: Re: [Declude.JunkMail] RE: On RFC Violation -
 Declude allows attachments and Virus to pass through untouched and
unscanned

 David Barker,  Can you tell us the status of this old case?  What progress
 has been made on this seemingly critical issue?

 Darin.


 - Original Message -
 From: Michael Thomas - Mathbox [EMAIL PROTECTED]
 To: declude.junkmail@declude.com
 Sent: Monday, October 23, 2006 1:09 AM
 Subject: RE: SPAM-WARN: Re: [Declude.JunkMail] RE: On RFC Violation -
 Declude allows attachments and Virus to pass through untouched and
unscanned


 Hi All,

 I said in my original email that Declude had been notified of LF only
issue.
 I just looked back through my email and found the report. It was Declude
 case [06D-0BBF1866-F5A3] on Thu, 30 Mar 2006 22:29:58 -0500.

 Michael Thomas
 Mathbox
 978-683-6718
 1-877-MATHBOX (Toll Free)





 ---
 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: SPAM-WARN: Re: [Declude.JunkMail] RE: On RFC Violation - Declude allows attachments and Virus to pass through untouched and unscanned

2006-10-24 Thread Mark Reimer
Just curious. Are many people using Michael's RFC violations test? If so how
is it working out?

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, October 24, 2006 12:43 PM
To: declude.junkmail@declude.com
Subject: RE: SPAM-WARN: Re: [Declude.JunkMail] RE: On RFC Violation -
Declude allows attachments and Virus to pass through untouched and unscanned

Hi Mark,

Yes to a certain extent we are checking for no standard line terminators,
however this problem is more evasive and requires additional functionality
to correct.

David 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mark
Reimer
Sent: Tuesday, October 24, 2006 12:40 PM
To: declude.junkmail@declude.com
Subject: RE: SPAM-WARN: Re: [Declude.JunkMail] RE: On RFC Violation -
Declude allows attachments and Virus to pass through untouched and unscanned

So does the NONSTANDARDHDR vulnerability test protect us from both of these
problems?

Mark Reimer
IT System Admin
American CareSource
972-308-6887
 
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Matt
Sent: Monday, October 23, 2006 5:23 PM
To: declude.junkmail@declude.com
Subject: Re: SPAM-WARN: Re: [Declude.JunkMail] RE: On RFC Violation -
Declude allows attachments and Virus to pass through untouched and unscanned

David,

Thanks to both you and the other Dave for taking another look at this.

Matt



David Barker wrote:
 Darin,

 Our engineer Dave Franco is looking at a way to rewrite every message 
 to standardize the format in order to overcome the incorrect line 
 terminator issue. As there are several other things he is working on I 
 do not have a definitive release date for this, I am looking at moving 
 around some additional resources to further expedite a solution.

 David Barker
 Director of Product Development
 Your Email security is our business
 978.499.2933 office
 978.988.1311 fax
 [EMAIL PROTECTED]
  

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of 
 Darin Cox
 Sent: Monday, October 23, 2006 9:38 AM
 To: declude.junkmail@declude.com
 Subject: Re: SPAM-WARN: Re: [Declude.JunkMail] RE: On RFC Violation - 
 Declude allows attachments and Virus to pass through untouched and
unscanned

 David Barker,  Can you tell us the status of this old case?  What 
 progress has been made on this seemingly critical issue?

 Darin.


 - Original Message -
 From: Michael Thomas - Mathbox [EMAIL PROTECTED]
 To: declude.junkmail@declude.com
 Sent: Monday, October 23, 2006 1:09 AM
 Subject: RE: SPAM-WARN: Re: [Declude.JunkMail] RE: On RFC Violation - 
 Declude allows attachments and Virus to pass through untouched and
unscanned


 Hi All,

 I said in my original email that Declude had been notified of LF only
issue.
 I just looked back through my email and found the report. It was 
 Declude case [06D-0BBF1866-F5A3] on Thu, 30 Mar 2006 22:29:58 -0500.

 Michael Thomas
 Mathbox
 978-683-6718
 1-877-MATHBOX (Toll Free)





 ---
 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] 4.3 Upgrade

2006-07-24 Thread Mark Reimer








Have many people upgraded to 4.3 yet. I was
wondering if anyone had experienced any problems with the new version.



Mark Reimer

IT Project Manager

American CareSource

214-596-2464









---This E-mail came from the Declude.JunkMail mailing list.  Tounsubscribe, just send an E-mail to [EMAIL PROTECTED], andtype "unsubscribe Declude.JunkMail".  The archives can be foundat http://www.mail-archive.com.


[Declude.JunkMail] Has a 3. version been released with the same fixes as 4.2 build 20

2006-07-11 Thread Mark Reimer








David,

Has a 3. version been released with the same fixes as in 4.2
build 20?





Mark Reimer

IT Project Manager

American CareSource

214-596-2464









---This E-mail came from the Declude.JunkMail mailing list.  Tounsubscribe, just send an E-mail to [EMAIL PROTECTED], andtype "unsubscribe Declude.JunkMail".  The archives can be foundat http://www.mail-archive.com.


RE: [Declude.JunkMail] Has a 3. version been released with the same fixes as 4.2 build 20

2006-07-11 Thread Mark Reimer








So 3.10 does not have a buffer overflow in
BANEXT for EVA?





Mark Reimer

IT Project Manager

American CareSource

214-596-2464













From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of David
Barker
Sent: Tuesday, July 11, 2006 3:07
PM
To: declude.junkmail@declude.com
Subject: RE: [Declude.JunkMail]
Has a 3. version been released with the same fixes as 4.2 build 20





No version 3 is still 3.10 are you
experiencing any of the same problems exhibited by 4 ?


David B

www.declude.com









From:
[EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mark Reimer
Sent: Tuesday, July 11, 2006 4:01
PM
To: declude.junkmail@declude.com
Subject: [Declude.JunkMail] Has a
3. version been released with the same fixes as 4.2 build 20

David,

Has a 3. version been released with the same fixes as in 4.2
build 20?





Mark Reimer

IT Project Manager

American CareSource

214-596-2464




---
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.  Tounsubscribe, just send an E-mail to [EMAIL PROTECTED], andtype "unsubscribe Declude.JunkMail".  The archives can be foundat http://www.mail-archive.com.
---This E-mail came from the Declude.JunkMail mailing list.  Tounsubscribe, just send an E-mail to [EMAIL PROTECTED], andtype "unsubscribe Declude.JunkMail".  The archives can be foundat http://www.mail-archive.com.


[Declude.JunkMail] Cannot Access DNSSTUFF

2006-04-24 Thread Mark Reimer
I cannot access dnsstuff.com from my network. I think my IP may be banned 
but I'm not sure how that would happen. How to I get in contact with someone 
to see if I've been banned?


Mark Reimer 



---
[This E-mail has been scanned for viruses]

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