See whatsnew

This commit is contained in:
mysticbbs 2013-09-25 22:39:08 -04:00
parent edba0051c7
commit 8301ece4fa
3 changed files with 16 additions and 5 deletions

View File

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

View File

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

View File

@ -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.
<ALPHA 38 RELEASED>