summaryrefslogtreecommitdiff
path: root/mail/anomy-sanitizer
diff options
context:
space:
mode:
authorkim <kim>2004-01-18 23:40:12 +0000
committerkim <kim>2004-01-18 23:40:12 +0000
commit64317795f09d16417d5561d7fb3a8fa7f6f81405 (patch)
treefd93bc1fcb7d289fd66aa2f2ec2e2a255048ca32 /mail/anomy-sanitizer
parent101edbae9a8c5dbc70565f52ff1da0804bb1b31e (diff)
downloadpkgsrc-64317795f09d16417d5561d7fb3a8fa7f6f81405.tar.gz
Upgrade to 1.66:
- fix issue with "all mail gets deleted", which was caused by looking at Content-ID for filenames (new feature in 1.61); this resulted in mail from ".com" domains to be considered ".com" attachments (patch-aa) - fixes "PDF corruption problem" (1.64)
Diffstat (limited to 'mail/anomy-sanitizer')
-rw-r--r--mail/anomy-sanitizer/Makefile4
-rw-r--r--mail/anomy-sanitizer/distinfo7
-rw-r--r--mail/anomy-sanitizer/patches/patch-aa15
3 files changed, 21 insertions, 5 deletions
diff --git a/mail/anomy-sanitizer/Makefile b/mail/anomy-sanitizer/Makefile
index 7bc39a51f71..4679cdd6d5d 100644
--- a/mail/anomy-sanitizer/Makefile
+++ b/mail/anomy-sanitizer/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.9 2004/01/06 07:17:57 jlam Exp $
+# $NetBSD: Makefile,v 1.10 2004/01/18 23:40:12 kim Exp $
#
-DISTNAME= anomy-sanitizer-1.63
+DISTNAME= anomy-sanitizer-1.66
WRKSRC= ${WRKDIR}/anomy
CATEGORIES= mail
MASTER_SITES= http://mailtools.anomy.net/dist/
diff --git a/mail/anomy-sanitizer/distinfo b/mail/anomy-sanitizer/distinfo
index 36c6d83e09d..cf8088d5114 100644
--- a/mail/anomy-sanitizer/distinfo
+++ b/mail/anomy-sanitizer/distinfo
@@ -1,4 +1,5 @@
-$NetBSD: distinfo,v 1.5 2003/08/31 13:51:20 mjl Exp $
+$NetBSD: distinfo,v 1.6 2004/01/18 23:40:12 kim Exp $
-SHA1 (anomy-sanitizer-1.63.tar.gz) = bf730b3397a08b63a086de4db316eefbf95a7489
-Size (anomy-sanitizer-1.63.tar.gz) = 140098 bytes
+SHA1 (anomy-sanitizer-1.66.tar.gz) = 6cfc86ebd3a8da9961a7eea2ce8b0a0d7e703ec4
+Size (anomy-sanitizer-1.66.tar.gz) = 142149 bytes
+SHA1 (patch-aa) = c765c8aa8a22bf173cb0a34f8868617e9ef66572
diff --git a/mail/anomy-sanitizer/patches/patch-aa b/mail/anomy-sanitizer/patches/patch-aa
new file mode 100644
index 00000000000..f06e47ab7c4
--- /dev/null
+++ b/mail/anomy-sanitizer/patches/patch-aa
@@ -0,0 +1,15 @@
+$NetBSD: patch-aa,v 1.1 2004/01/18 23:40:12 kim Exp $
+
+--- bin/Anomy/MIMEStream.pm.orig 2003-12-08 19:57:49.000000000 -0500
++++ bin/Anomy/MIMEStream.pm 2004-01-18 18:26:17.000000000 -0500
+@@ -418,7 +418,9 @@
+ $reader->ParseContentHeader("; _encoding=", "content-transfer-encoding", $header_log);
+ $reader->ParseContentHeader("; _disposition=", "content-disposition", $header_log);
+ $reader->ParseContentHeader("; _description=", "content-description", $header_log);
+- $reader->ParseContentHeader("; _id=", "content-id", $header_log);
++ # commented out next, because it causes mail from ".com" domains
++ # to be considered ".com" attachments -- kim at tac.nyc.ny.us
++ #$reader->ParseContentHeader("; _id=", "content-id", $header_log);
+
+ # Set content decoder and encoder
+ my $enc = lc($reader->{"mime"}->{"_encoding"} || "8bit");