From cefd9187b5b7943897a4e7bddff20f0d607aaf64 Mon Sep 17 00:00:00 2001 From: Michiel Broek Date: Thu, 18 Apr 2002 21:42:44 +0000 Subject: [PATCH] Approved kludge in rfc2ftn now becomes a kludge --- ChangeLog | 2 ++ mbfido/rfc2ftn.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 60c1d9e1..7d048f0d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4718,6 +4718,8 @@ v0.33.20 10-Feb-2002 supressed because there is no key for this header. This looks like a new kind of M$ standard. mbnews crashed on this one. Fixed a small problem in magic filename testing. + In rfc2ftn the Approved: header now becomes a kludge instead + of plain passed. mbfile: The mbfile index command now creates the html pages using the diff --git a/mbfido/rfc2ftn.c b/mbfido/rfc2ftn.c index 8a9d5f89..3836609f 100644 --- a/mbfido/rfc2ftn.c +++ b/mbfido/rfc2ftn.c @@ -887,7 +887,7 @@ int needputrfc(rfcmsg *msg) } if (!strcasecmp(msg->key,"Return-Path")) return 1; if (!strcasecmp(msg->key,"Xref")) return 0; - if (!strcasecmp(msg->key,"Approved")) return removeapproved ? -1:2; + if (!strcasecmp(msg->key,"Approved")) return removeapproved ? -1:1; // Was -1:2 18-04-2002 MB. if (!strcasecmp(msg->key,"X-URL")) return 0; if (!strcasecmp(msg->key,"Return-Receipt-To")) return removereturnto? 0:1; if (!strcasecmp(msg->key,"Notice-Requested-Upon-Delivery-To")) return 0;