On Thu, 12 Feb 2004, Lucas Albers wrote: > I noticed a listed bug report against the debian package for the regular > expression for file name matching in mimedefang. > not sure if this applies to 2.39, but it appeared to apply to 2.38.
That was not a bug. It was an attempt to guard against malformed MIME like this: Content-Type: appliaction/octet-stream; name=foobar.exe .txt vs. Content-Type: appliaction/octet-stream; name=foobar.txt .exe Who knows what various MUA's will do with this? If you anchor the regexp, you might cause unsafe behavior in one case. If you don't anchor the regexp, you might cause overly-paranoid behavior in the other. However, the old behavior was so unpopular that as of 2.39, I anchored the regexp. Regards, David. _______________________________________________ Visit http://www.mimedefang.org and http://www.canit.ca MIMEDefang mailing list [EMAIL PROTECTED] http://lists.roaringpenguin.com/mailman/listinfo/mimedefang

