Approved kludge in rfc2ftn now becomes a kludge

This commit is contained in:
Michiel Broek 2002-04-18 21:42:44 +00:00
parent 8876336125
commit cefd9187b5
2 changed files with 3 additions and 1 deletions

View File

@ -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

View File

@ -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;