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

Adds "reply-to" header to exported messages (if present in SMB header).

Fixed bug in Tracker1's "-auto" mod that restricts QNET accounts.
parent fa47f88e
No related branches found
No related tags found
No related merge requests found
......@@ -163,7 +163,7 @@ while(client.socket.is_connected) {
for (var i=1; i<=system.stats.total_users; i++) {
oUser.number = i;
if (oUser.ip_address == client.ip_address)
if (!(oUser.exemptions&UFLAG_Q)) //don't count qnet users
if (!(oUser.security.restrictions&UFLAG_Q)) //don't count qnet users
if (oUser.stats.laston_date > iLastOn) { //more recent than last match
iLastOn = oUser.stats.laston_date;
sUser = oUser.alias;
......@@ -437,6 +437,8 @@ while(client.socket.is_connected) {
else
writeln("Newsgroups: " + selected.newsgroup);
if(hdr.replyto!=undefined)
writeln("Reply-To: " + hdr.replyto);
if(hdr.reply_id!=undefined)
writeln("References: " + hdr.reply_id);
/* FidoNet header */
......
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