This commit is contained in:
Andrew Leary 2018-09-07 05:18:42 -04:00
parent 3ab30c464c
commit f1370425aa
4 changed files with 16 additions and 7 deletions

View File

@ -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

6
configure vendored
View File

@ -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`"

View File

@ -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`"

View File

@ -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: