v1.0.4 Release - 2014-09-05 - Andrew Leary.

- Added Binkp CRC support (FSP-1020).
	- Changed the "No Binkp/1.1" setting for nodes to only be effective on
	  outgoing calls.  It was causing issues for other mailers (including
	  BinkD) on incoming calls because mbcico was reporting Binkp/1.1 in
	  the VER string but then falling back to Binkp/1.0.
	- Updated the Internet Rex Binkp/1.1 bug workaround to reflect that
	  versions 2.31 and 2.67 are also affected.
This commit is contained in:
Andrew Leary
2014-09-05 17:35:37 -04:00
parent 4e4431f755
commit 880eb115d4
22 changed files with 408 additions and 149 deletions

View File

@@ -296,3 +296,7 @@
16FF,RNtrack,Linux/BSD/AIX/Solaris/MacOSX/OS2/DOS/Win32,Packer,Alex_Soukhotine,2:5030/1157,20050115
17FF,Msg2Pkt,DOS/OS2/Win32,Packer/Tools/ClpLib,Ulrich_Schroeter,2:244/1120,20080607
18FF,Marena,DOS,Repacker/Echotag_renamer,Michiel_van_der_Vlist,2:280/5555,20080608
19FF,jNode,Java_Virtual_Machine,Binkp_mailer/tosser/tracker,Ivan_Agarkov,2:5020/848,20120921
1AFF,mfreq,Linux,File_Request_Processor,Markus_Reschke,2:240/1661,20131116
1BFF,AfterShock,Android_>=V2.3,Binkp_Mailer/Tosser/Editor,Anatoly_Vdovichev,2:5000/26.180,20131128
1CFF,FTN::Packet,Perl,Tosser,Robert_James_Clay,1:120/419,20131219

View File

@@ -1188,7 +1188,7 @@ struct sysconfig {
unsigned NoFreqs : 1; /* Don't allow requests */
unsigned NoCall : 1; /* Don't call */
unsigned NoMD5 : 1; /* Don't do MD5 */
unsigned xNoCRC32 : 1;
unsigned NoCRC32 : 1; /* Don't do Binkp CRC32 */
unsigned NoEMSI : 1; /* Don't do EMSI */
unsigned NoWazoo : 1; /* Don't do Yooho/2U2 */
unsigned NoZmodem : 1; /* Don't do Zmodem */
@@ -1699,7 +1699,7 @@ struct _nodes {
unsigned WrongEscape : 1; /* Binkp wrong escape */
unsigned NoBinkp11 : 1; /* No binkp/1.1 mode */
unsigned IgnHold : 1; /* Ignore Hold/Down status */
char xExtra[94];
int32_t StartDate; /* Node start date */
int32_t LastDate; /* Last action date */
@@ -1737,6 +1737,7 @@ struct _nodes {
unsigned Dir_in_waitclr : 1; /* Inbound wait for clear */
unsigned Dir_in_mklck : 1; /* Inbound create lock */
unsigned Tic4d : 1; /* 4d addresses in ticfile */
unsigned DoCRC : 1; /* Enable Binkp CRC check */
/* FTP transfers */
char FTP_site[65]; /* Site name or IP address */