v1.0.7.6
This commit is contained in:
parent
3ab30c464c
commit
f1370425aa
@ -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
6
configure
vendored
@ -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`"
|
||||
|
@ -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`"
|
||||
|
@ -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:
|
||||
|
Reference in New Issue
Block a user