Skip to content
Snippets Groups Projects
Commit 5f6d0d8e authored by rswindell's avatar rswindell
Browse files

Expand non-standard or unsupporetd FTN Kludge lines (stored in SMB as a

FIDOCTRL header fields) into X-FTN-Kludge: header fields in NNTP article
headers. I *think* this is what access_d was asking for.
parent 5616bb4a
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,7 @@
if(!js.global || js.global.mail_get_name==undefined)
load("mailutil.js");
FIDOCTRL = 0xa0 // from smbdefs.h
RFC822HEADER = 0xb0 // from smbdefs.h
function write_news_header(hdr,writeln)
......@@ -52,12 +53,14 @@ function write_news_header(hdr,writeln)
var content_type;
if(hdr.field_list!=undefined) {
for(i in hdr.field_list)
for(i in hdr.field_list) {
if(hdr.field_list[i].type==RFC822HEADER) {
if(hdr.field_list[i].data.toLowerCase().indexOf("content-type:")==0)
content_type = hdr.field_list[i].data;
writeln(hdr.field_list[i].data);
}
} else if(hdr.field_list[i].type==FIDOCTRL)
writeln("X-FTN-Kludge: " + hdr.field_list[i].data);
}
}
if(content_type==undefined) {
/* No content-type specified, so assume IBM code-page 437 (full ex-ASCII) */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment