From e21924c5a1c4834c1dfab173714a6b86f9cd144b Mon Sep 17 00:00:00 2001 From: Michiel Broek Date: Sun, 25 Jul 2004 18:55:53 +0000 Subject: [PATCH] Fixed netmail bit for local messages --- mbfido/msg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mbfido/msg.c b/mbfido/msg.c index fdcf4d8d..f4a487f8 100644 --- a/mbfido/msg.c +++ b/mbfido/msg.c @@ -295,7 +295,6 @@ int toss_onemsg(char *msgname) /* * Message is local, make the message appear as a received netmail */ - Msg.Netmail = TRUE; islocal = TRUE; if ((strncasecmp(toUserName, "sysop", 5) == 0) || (strncasecmp(toUserName, "postmaster", 10) == 0) || @@ -311,6 +310,7 @@ int toss_onemsg(char *msgname) } Syslog('m', "Netmail is %s", islocal ? "Local":"for export"); Msg.Private = TRUE; + Msg.Netmail = TRUE; if (origPoint) sprintf(Msg.FromAddress, "%d:%d/%d.%d@%s", origZone, origNet, origNode, origPoint, fidonet.domain);