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

Handle internet-style reply-to addresses even if the reply-to net type was not

set.
parent f6d1e90c
No related branches found
No related tags found
No related merge requests found
......@@ -364,7 +364,7 @@ void sbbs_t::readmail(uint usernumber, int which)
else if(msg.from_net.type==NET_FIDO) /* FidoNet type */
SAFEPRINTF2(str,"%s@%s",msg.from
,smb_faddrtoa((faddr_t *)msg.from_net.addr,tmp));
else if(msg.from_net.type==NET_INTERNET) {
else if(msg.from_net.type==NET_INTERNET || strchr((char*)msg.from_net.addr,'@')!=NULL) {
if(msg.replyto_net.type==NET_INTERNET)
SAFECOPY(str,(char *)msg.replyto_net.addr);
else
......
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