From f1370425aa7004d0211a4ad36a990ddbd52cefc9 Mon Sep 17 00:00:00 2001 From: Andrew Leary Date: Fri, 7 Sep 2018 05:18:42 -0400 Subject: [PATCH] v1.0.7.6 --- ChangeLog | 7 +++++++ configure | 6 +++--- configure.ac | 6 +++--- mbfido/post.c | 4 +++- 4 files changed, 16 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0ef45180..691f26bc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +v1.0.7.6 06-Mar-2018 - Andrew Leary + + 1. Fixed bug that caused netmails posted by MBMSG post to + have a destination address of 0:0/0. + + 2. Updated copyright notices to 2018. + v1.0.7.5 31-Dec-2017 - Andrew Leary/Vince Coen 1. Fixed bug causing the -v option (disable virus check) to diff --git a/configure b/configure index 03ae8976..2b28b607 100755 --- a/configure +++ b/configure @@ -2309,10 +2309,10 @@ SUBDIRS="lib mbcico mbfido mbmon mbsebbs mbutils mbnntp mbtask mbsetup unix lang PACKAGE="mbsebbs" MAJOR="1" MINOR="0" -REVISION="7.5" +REVISION="7.6" VERSION="$MAJOR.$MINOR.$REVISION" -COPYRIGHT="Copyright (C) 1997-2017 MBSE Development Team, All Rights Reserved" -SHORTRIGHT="Copyright (C) 1997-2017 MBSE DevTm" +COPYRIGHT="Copyright (C) 1997-2018 MBSE Development Team, All Rights Reserved" +SHORTRIGHT="Copyright (C) 1997-2018 MBSE DevTm" GROUP="bbs" OWNER="mbse" ROWNER="`id -un root`" diff --git a/configure.ac b/configure.ac index 90a23618..9ecb5d11 100644 --- a/configure.ac +++ b/configure.ac @@ -12,10 +12,10 @@ AC_SUBST(SUBDIRS) PACKAGE="mbsebbs" MAJOR="1" MINOR="0" -REVISION="7.5" +REVISION="7.6" VERSION="$MAJOR.$MINOR.$REVISION" -COPYRIGHT="Copyright (C) 1997-2017 MBSE Development Team, All Rights Reserved" -SHORTRIGHT="Copyright (C) 1997-2017 MBSE DevTm" +COPYRIGHT="Copyright (C) 1997-2018 MBSE Development Team, All Rights Reserved" +SHORTRIGHT="Copyright (C) 1997-2018 MBSE DevTm" GROUP="bbs" OWNER="mbse" ROWNER="`id -un root`" diff --git a/mbfido/post.c b/mbfido/post.c index a506db12..ddb70ff3 100644 --- a/mbfido/post.c +++ b/mbfido/post.c @@ -199,7 +199,9 @@ int Post(char *To, int Area, char *Subj, char *File, char *Flavor) case NETMAIL: Msg.Netmail = TRUE; - snprintf(Msg.ToAddress, 101, "%s", ascfnode(parsefaddr(To), 0xff)); + temp = strchr(To, '@'); + temp++; + snprintf(Msg.ToAddress, 101, "%s", ascfnode(parsefaddr(temp), 0xff)); break; case ECHOMAIL: