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

It's now up to nntpservice.js to add the local system to the path header.

parent 7f88c6d9
No related branches found
No related tags found
No related merge requests found
......@@ -438,7 +438,9 @@ while(client.socket.is_connected) {
break;
if(cmd[0].toUpperCase()!="BODY") {
writeln("Path: " + hdr.path);
if(hdr.path==undefined)
hdr.path="not-for-mail";
writeln("Path: " + system.inetaddr + "!" + hdr.path);
if(!hdr.from_net_type) /* local message */
writeln(format("From: \"%s\" <%s@%s>"
,hdr.from
......
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