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
|
v1.0.7.5 31-Dec-2017 - Andrew Leary/Vince Coen
|
||||||
|
|
||||||
1. Fixed bug causing the -v option (disable virus check) to
|
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"
|
PACKAGE="mbsebbs"
|
||||||
MAJOR="1"
|
MAJOR="1"
|
||||||
MINOR="0"
|
MINOR="0"
|
||||||
REVISION="7.5"
|
REVISION="7.6"
|
||||||
VERSION="$MAJOR.$MINOR.$REVISION"
|
VERSION="$MAJOR.$MINOR.$REVISION"
|
||||||
COPYRIGHT="Copyright (C) 1997-2017 MBSE Development Team, All Rights Reserved"
|
COPYRIGHT="Copyright (C) 1997-2018 MBSE Development Team, All Rights Reserved"
|
||||||
SHORTRIGHT="Copyright (C) 1997-2017 MBSE DevTm"
|
SHORTRIGHT="Copyright (C) 1997-2018 MBSE DevTm"
|
||||||
GROUP="bbs"
|
GROUP="bbs"
|
||||||
OWNER="mbse"
|
OWNER="mbse"
|
||||||
ROWNER="`id -un root`"
|
ROWNER="`id -un root`"
|
||||||
|
@ -12,10 +12,10 @@ AC_SUBST(SUBDIRS)
|
|||||||
PACKAGE="mbsebbs"
|
PACKAGE="mbsebbs"
|
||||||
MAJOR="1"
|
MAJOR="1"
|
||||||
MINOR="0"
|
MINOR="0"
|
||||||
REVISION="7.5"
|
REVISION="7.6"
|
||||||
VERSION="$MAJOR.$MINOR.$REVISION"
|
VERSION="$MAJOR.$MINOR.$REVISION"
|
||||||
COPYRIGHT="Copyright (C) 1997-2017 MBSE Development Team, All Rights Reserved"
|
COPYRIGHT="Copyright (C) 1997-2018 MBSE Development Team, All Rights Reserved"
|
||||||
SHORTRIGHT="Copyright (C) 1997-2017 MBSE DevTm"
|
SHORTRIGHT="Copyright (C) 1997-2018 MBSE DevTm"
|
||||||
GROUP="bbs"
|
GROUP="bbs"
|
||||||
OWNER="mbse"
|
OWNER="mbse"
|
||||||
ROWNER="`id -un root`"
|
ROWNER="`id -un root`"
|
||||||
|
@ -199,7 +199,9 @@ int Post(char *To, int Area, char *Subj, char *File, char *Flavor)
|
|||||||
|
|
||||||
case NETMAIL:
|
case NETMAIL:
|
||||||
Msg.Netmail = TRUE;
|
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;
|
break;
|
||||||
|
|
||||||
case ECHOMAIL:
|
case ECHOMAIL:
|
||||||
|
Reference in New Issue
Block a user