----- Original Message -----
From: "Chris Masters" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, March 21, 2004 4:07 AM
Subject: [Mimedefang] Attachment blocking regexp
> We had a legitimate attachment blocked last week
> called "something.com and something.xls".
This is intentional in the suggested-minimum-filter-for-windows-clients
filter found in MIMEDefang 2.38 and below. In MIMEDefang 2.39, the regexp
in the filter was changed because so many people were complaining about that
exact problem.
# Do not allow:
# - CLSIDs {foobarbaz}
# - bad extensions (possibly with trailing dots) at end or
# followed by non-alphanum
$re = '\.' . $bad_exts . '\.*([^-A-Za-z0-9_.,]|$)';
became
# Do not allow:
# - CLSIDs {foobarbaz}
# - bad extensions (possibly with trailing dots) at end
$re = '\.' . $bad_exts . '\.*$';
Chris Myers
Networks By Design
_______________________________________________
Visit http://www.mimedefang.org and http://www.canit.ca
MIMEDefang mailing list
[EMAIL PROTECTED]
http://lists.roaringpenguin.com/mailman/listinfo/mimedefang