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

Bugfix: don't attempt to use msgbase.cfg for xref field: use selected.newsgroup

instead, which is always valid, even for the "mail" group.
parent 329dae61
No related branches found
No related tags found
No related merge requests found
......@@ -103,9 +103,12 @@ function getReferenceTo(hdr) {
}
// Generate an Xref header
function xref(msgbase, hdr)
function xref(hdr)
{
return(format("%s %s:%u",system.local_host_name, msgbase.cfg.newsgroup, hdr.number));
return(format("%s %s:%u"
,system.local_host_name // "name of the host (with domains omitted)" per RFC1036 sec 2.2.13
,selected.newsgroup
,hdr.number));
}
var username='';
......@@ -375,7 +378,7 @@ while(client.socket.is_connected && !quit) {
,hdr.reply_id // references
,hdr.data_length // byte count
,Math.round(hdr.data_length/79)+1 // line count
,xref(msgbase,hdr)
,xref(hdr)
));
}
writeln("."); // end of list
......@@ -431,7 +434,7 @@ while(client.socket.is_connected && !quit) {
field=Math.round(hdr.data_length/79)+1;
break;
case "xref":
field=xref(msgbase,hdr);
field=xref(hdr);
break;
/* FidoNet header fields */
case "x-ftn-pid":
......
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