See whatsnew
This commit is contained in:
parent
edba0051c7
commit
8301ece4fa
|
@ -411,13 +411,16 @@ Var
|
||||||
Net : LongInt;
|
Net : LongInt;
|
||||||
Node : LongInt;
|
Node : LongInt;
|
||||||
Begin
|
Begin
|
||||||
Net := Orig.Net - Dest.Net;
|
If Dest.Point = 0 Then Begin
|
||||||
Node := Orig.Node - Dest.Node;
|
Net := Orig.Net - Dest.Net;
|
||||||
|
Node := Orig.Node - Dest.Node;
|
||||||
|
|
||||||
If Net < 0 Then Net := 65536 + Net;
|
If Net < 0 Then Net := 65536 + Net;
|
||||||
If Node < 0 Then Node := 65536 + Node;
|
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;
|
End;
|
||||||
|
|
||||||
Function GetFTNFlowName (Dest: RecEchoMailAddr) : String;
|
Function GetFTNFlowName (Dest: RecEchoMailAddr) : String;
|
||||||
|
|
|
@ -131,6 +131,7 @@ FUTURE / IDEAS / WORK IN PROGRESS / NOTES
|
||||||
- Email validation
|
- Email validation
|
||||||
- Recode FCHECK into MUTIL, but also add the option to phsyically delete the
|
- Recode FCHECK into MUTIL, but also add the option to phsyically delete the
|
||||||
file record instead of marking it offline.
|
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
|
- Need ALL mystic servers to hvae the option to auto-ban an IP address if it
|
||||||
connects X amount of times in X seconds.
|
connects X amount of times in X seconds.
|
||||||
- Outbound telnet feature
|
- Outbound telnet feature
|
||||||
|
|
|
@ -3839,4 +3839,11 @@
|
||||||
cased. This was previously only available in FIDOBONE/FIDONET.NA
|
cased. This was previously only available in FIDOBONE/FIDONET.NA
|
||||||
importing but it works under [ImportEchoMail] now too
|
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>
|
<ALPHA 38 RELEASED>
|
||||||
|
|
Loading…
Reference in New Issue