From 8301ece4faafd4a0ff85efc790141363573785cd Mon Sep 17 00:00:00 2001 From: mysticbbs Date: Wed, 25 Sep 2013 22:39:08 -0400 Subject: [PATCH] See whatsnew --- mystic/mutil_common.pas | 13 ++++++++----- mystic/todo.pas | 1 + mystic/whatsnew.txt | 7 +++++++ 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/mystic/mutil_common.pas b/mystic/mutil_common.pas index 771726a..b049c94 100644 --- a/mystic/mutil_common.pas +++ b/mystic/mutil_common.pas @@ -411,13 +411,16 @@ Var Net : LongInt; Node : LongInt; Begin - Net := Orig.Net - Dest.Net; - Node := Orig.Node - Dest.Node; + If Dest.Point = 0 Then Begin + Net := Orig.Net - Dest.Net; + Node := Orig.Node - Dest.Node; - If Net < 0 Then Net := 65536 + Net; - If Node < 0 Then Node := 65536 + Node; + If Net < 0 Then Net := 65536 + Net; + If Node < 0 Then Node := 65536 + Node; - Result := strI2H((Net SHL 16) OR Node, 8); + Result := strI2H((Net SHL 16) OR Node, 8); + End Else + Result := strI2H(Dest.Point, 8); End; Function GetFTNFlowName (Dest: RecEchoMailAddr) : String; diff --git a/mystic/todo.pas b/mystic/todo.pas index 06b0516..9c062b7 100644 --- a/mystic/todo.pas +++ b/mystic/todo.pas @@ -131,6 +131,7 @@ FUTURE / IDEAS / WORK IN PROGRESS / NOTES - Email validation - Recode FCHECK into MUTIL, but also add the option to phsyically delete the file record instead of marking it offline. +- multiple add export in globa msg base editor - Need ALL mystic servers to hvae the option to auto-ban an IP address if it connects X amount of times in X seconds. - Outbound telnet feature diff --git a/mystic/whatsnew.txt b/mystic/whatsnew.txt index fdccd76..b8e23bf 100644 --- a/mystic/whatsnew.txt +++ b/mystic/whatsnew.txt @@ -3839,4 +3839,11 @@ cased. This was previously only available in FIDOBONE/FIDONET.NA importing but it works under [ImportEchoMail] now too + ! When hubbing FTN point systems, if you had multiple point systems their + PKTs were all getting stuffed into one bundle. Fixed. + + + FIDOPOLL's FTP send client will now list echomail packets on the remote + server and automatically increment packet names (ie we1->we2) until it + finds an unused packet name on the remote server. +