summaryrefslogtreecommitdiff
path: root/news/tin
diff options
context:
space:
mode:
authordillo <dillo>2001-05-31 07:16:59 +0000
committerdillo <dillo>2001-05-31 07:16:59 +0000
commit9e2ee470aa840cde2e82141a42b9aeb1bedd12ac (patch)
treeedff99730d1447342cae4d6202b7320039b6af8e /news/tin
parentfae89b9494fb655647aae4afdb0cd54cac2b37cf (diff)
downloadpkgsrc-9e2ee470aa840cde2e82141a42b9aeb1bedd12ac.tar.gz
Added patch: Don't treat To: headers in articles as From: headers.
(Patch sent to maintainers, will be in next version.)
Diffstat (limited to 'news/tin')
-rw-r--r--news/tin/distinfo3
-rw-r--r--news/tin/patches/patch-ad16
2 files changed, 18 insertions, 1 deletions
diff --git a/news/tin/distinfo b/news/tin/distinfo
index 655c37a0001..2a736815028 100644
--- a/news/tin/distinfo
+++ b/news/tin/distinfo
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.4 2001/05/23 13:15:34 dillo Exp $
+$NetBSD: distinfo,v 1.5 2001/05/31 07:16:59 dillo Exp $
SHA1 (tin-1.4.5.tar.bz2) = e28e05e080cf05ed9576cacbc96ad984633f8a87
Size (tin-1.4.5.tar.bz2) = 690031 bytes
SHA1 (patch-aa) = da46ab8dee8c3319a5e8fd18580cd573b611cbca
SHA1 (patch-ab) = 31d7ce5fa40cff4ec34e87d5547e0943ca58a8a1
SHA1 (patch-ac) = 072fc6aab131e515262e204bb87ef0cf999d7c68
+SHA1 (patch-ad) = b2e59c5fb3863341a507e87818cea600e0bb89c5
diff --git a/news/tin/patches/patch-ad b/news/tin/patches/patch-ad
new file mode 100644
index 00000000000..c8e6310da36
--- /dev/null
+++ b/news/tin/patches/patch-ad
@@ -0,0 +1,16 @@
+$NetBSD: patch-ad,v 1.1 2001/05/31 07:16:59 dillo Exp $
+
+--- src/art.c.orig Mon Jul 3 13:17:46 2000
++++ src/art.c
+@@ -733,10 +733,8 @@
+ }
+ break;
+ case 'F': /* From: mandatory */
+- case 'T': /* To: mandatory (mailbox) */
+ if (!got_from) {
+- if ((match_header (ptr+1, "rom", (char*)0, buf, HEADER_LEN) ||
+- match_header (ptr+1, "o", (char*)0, buf, HEADER_LEN)) &&
++ if (match_header (ptr+1, "rom", (char*)0, buf, HEADER_LEN) &&
+ *buf != '\0') {
+ h->gnksa_code = parse_from (buf, art_from_addr, art_full_name);
+ h->from = hash_str (art_from_addr);