Skip to content
Snippets Groups Projects
Commit bdf72516 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

In-Reply-To is not a valid NNTP article header field

... so this was just redundant noise. Altough "References" is a valid header
field *both* for email and nntp articles, "In-Reply-To" is for email only.
per RFC 5536
parent e904206b
Branches
Tags
No related merge requests found
......@@ -33,10 +33,6 @@ function write_news_header(hdr,writeln)
if(hdr.replyto!=undefined)
writeln("Reply-To: " + hdr.replyto);
if(hdr.reply_id!=undefined)
writeln("In-Reply-To: " + hdr.reply_id);
if(hdr.references!=undefined)
writeln("References: " + hdr.references);
else if(hdr.reply_id!=undefined)
writeln("References: " + hdr.reply_id);
/* FidoNet header fields */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment