home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 2 BBS / 02-BBS.zip / bos2_259.lzh / whatsnew.259 < prev   
Text File  |  1993-12-21  |  34KB  |  764 lines

  1.   (Hey, he took out that nasty preamble!)
  2.  
  3.   Hey everyone,
  4.  
  5.   We intend for this to be a really short-lived test version. So if you
  6.   encounter problems, be really upfront about reporting them in the
  7.   BINKLEY conference or to your nearest Bink tester if you know one.
  8.  
  9.   We hope this version (and the subsequent release version) serves you
  10.   well.
  11.  
  12.   Enjoy the holidays.
  13.  
  14.   Regards,
  15.  
  16.   The BinkleyTerm Development and Testing Team.
  17.  
  18.  
  19.         Changes in BinkleyTerm 2.59 from 2.58
  20.         -------------------------------------
  21.  
  22.         Take out the MilqueToast conditionals. Milq was a good idea and
  23.         we wish it had really come to term. Maybe sometime soon we'll
  24.         get to try this again.
  25.  
  26.         Fix the famous 7200 problem.
  27.  
  28.         Put the unknown EMSI string logging back to debug mode. It was
  29.         distracting too many people and not leading us to a fix.
  30.  
  31.         Add ability to have "external mail sessions". This is accomplished
  32.         using "ExtSession mask programname". (mask) should be a hex mask
  33.         which corresponds to a "modem type" in the nodelist. When Bink
  34.         attempts to "call" a system, it will use the external mail facility
  35.         if the modem type masked with the mask is nonzero. Bink will then
  36.         turn off everything and, for every file to send to this system, it
  37.         will call "programname full-address tasknumber filename". When Bink
  38.         regains control it will look for a file in the current directory
  39.         named "programname.tasknumber". If this file exists it will continue
  40.         the mail session; if this file does not exist it will interpret this
  41.         as a session failure and will handle it like any other session
  42.         failure (bad flags, etc). When the session ends, one way or the
  43.         other, Bink will restart itself and proceed.
  44.  
  45.         By way of example: using my nodelist compiler, let's say I define
  46.         my point 2 as having modem flag 64 (0x40). With a private list, I
  47.         could do this by putting a "UGATE" flag on the node, then with
  48.         XLAXNODE, "MODEMTRANS 7 UGATE". I then put 
  49.  
  50.                   extsession 40 points
  51.  
  52.         in BINKLEY.CFG and create points.bat as follows:
  53.  
  54.                   echo %0 %1 %2 %3 >> points.log
  55.                   if "%1%" == "1:343/491.2@fidonet" copy %3 m:\point2
  56.                   if errorlevel 1 goto end
  57.                   touch points.%2%
  58.                   :end
  59.  
  60.         The result: all sessions with my .2 put the mail into m:\point2.
  61.  
  62.         Note that this mechanism is designed mostly for callout. However, 
  63.         you can poll for mail by creating a dummy packet and "sending" it,
  64.         and your batch file can copy files into your inbound.
  65.  
  66.  
  67.         Fix problem with exiting on FAX result code. Turned out we weren't
  68.         saving the modem result code for the uucp exit comparison!!
  69.  
  70.         Change DOS C compiler from Visual C++ 1.0 to Visual C++ 1.5. This
  71.         probably won't affect the generated code much, but it does allow
  72.         me to build for all platforms on my Windows NT system.
  73.  
  74.         Support for an additional set of baudrates, afforded by an
  75.         extension in Ray Gwinn's X00 driver (and hopefully soon to be
  76.         supported by some other FOSSIL drivers), as below:
  77.  
  78.           Function 1Eh - Extended line control initialization.
  79.  
  80.           This  function is intended to exactly emulate the PS/2's BIOS INT
  81.           14 services, function 4.  Some  or all of the functions  provided
  82.           here are duplicated by other X00 functions.
  83.  
  84.                Input:    AH = 1Eh
  85.  
  86.                          AL = Break, Where:
  87.                             = 00h, No break and/or turn off break
  88.                             = 01h, Start send of break.
  89.  
  90.                          BH = Parity, where:
  91.                             = 00h, No parity
  92.                             = 01h, Odd parity
  93.                             = 02h, Even parity
  94.                             = 03h, Mark parity (always 1)
  95.                             = 04h, Space parity (always 0)
  96.  
  97.                          BL = Stop bits, where:
  98.                             = 00h, One stop bit
  99.                             = 01h, Two stop  bits for 6,  7 and 8  bit word
  100.                                    length, 1  and 1/2  stop bits for  5 bit
  101.                                    word length.
  102.  
  103.                          CH = Word length, where:
  104.                             = 00h, 5 bits
  105.                             = 01h, 6 bits
  106.                             = 02h, 7 bits
  107.                             = 03h, 8 bits
  108.  
  109.                          CL = Baud rate, where:
  110.                             = 00h, 110 baud
  111.                             = 01h, 150 baud
  112.                             = 02h, 300 baud
  113.                             = 03h, 600 baud
  114.                             = 04h, 1200 baud
  115.                             = 05h, 2400 baud
  116.                             = 06h, 4800 baud
  117.                             = 07h, 9600 baud
  118.                             = 08h, 19200 baud
  119.                             = 80h, 28800 baud
  120.                             = 81h, 38400 baud
  121.                             = 82h, 57600 baud
  122.                             = 83h, 76800 baud (really sets 115200)
  123.                             = 84h, 115200 baud
  124.  
  125.                          DX = Port number
  126.  
  127.                Output:   AX = Port status (see function 03h)
  128.  
  129.           If  locked at X00 load  time, the appropriate  parameters of this
  130.           function are ignored.
  131.  
  132.           Once function 1Eh has been used, function 0 will no longer set the
  133.           baud rate.  A deinit/init sequence will reenable function 0 to set
  134.           the baud rate.  Also, CL set to 0FFh in function 1Eh will NOT
  135.           change the baud rate, but WILL reenable function 0 to change the
  136.           baud rate. This is to allow a fossil app that is aware of this
  137.           function to coexist with a less-aware fossil app, where the
  138.           lesser app will work with the higher baudrates without knowing
  139.           that it is doing so.
  140.  
  141.         Using this change, BinkleyTerm can support up to 115200 baud. But
  142.         because it's not formally into a standard yet, we need to tell Bink
  143.         to do this. This is accomplished by putting "ExtBaudRates" into
  144.         BINKLEY.CFG. Only do this if your FOSSIL supports this function, or
  145.         you will regret it! PUT THIS LINE IN YOUR CONFIG FILE BEFORE ANY
  146.         LINE THAT DEALS WITH BAUD RATES!!!!!
  147.  
  148.         Add time to dialout interval to deal with the elapsed time of
  149.         incoming traffic. This helps make sure we don't dial out right
  150.         on the heels of a call.
  151.  
  152.         Did some tinkering with the Win32 async code and now have been
  153.         able to repeatedly call into a NT Bink, hit ESC and get to the
  154.         MaxNT alpha I have, and log into the BBS!!!!
  155.  
  156.         Add a config to define connect suffixes for which MNP filter
  157.         can be disabled. "NoFilter /Arq" will disable MNP filtering
  158.         for any "Connect xxxxx/arq". Up to 16 of these suffixes can
  159.         be defined, one per line. Note that if you have a lot of strings
  160.         starting with /ARQ, you only need the /ARQ line.
  161.  
  162.         Now that we have a kinder, gentler way of starting a session
  163.         without MNP filtering, make it sit on the line longer waiting
  164.         for it to settle. This helps with some missed session negotiation
  165.         problems I saw.
  166.  
  167.         Doc fix: FORCEXIT doesn't work without a flags directory. The
  168.         original description is wrong.
  169.  
  170.         Add an extended FORCEXIT capability: if there is a flags dir,
  171.         Bink will look there for files of the form BTEXIT??.??. Then, if
  172.         a file matching the task number in the extension is found, Bink
  173.         will exit using the hex errorlevel specified in the filename.
  174.         By way of example, BTEXIT10.B0 will make a Bink with tasknumber
  175.         176 exit with errorlevel 16. BTEXIT20.00 will make a Bink with
  176.         no task number exit with errorlevel 32.
  177.  
  178.         Add ability to externally force rescan by putting BTRESCAN.??
  179.         in the flags directory. To make Bink with tasknumber 64 rescan
  180.         its outbound, put BTRESCAN.40 there.
  181.  
  182.         Zoomed outbound includes age of oldest packet/request/arcmail
  183.         file (in days from current time).
  184.  
  185.         Fix problem with cleanup of mail for aka's in outbound window.
  186.  
  187.         Take some 32-bit fixes from Michael Buenter.
  188.  
  189.         Incoming .REQ files are now automatically renamed to .Rxx, where
  190.         xx is the "task number" in hex.
  191.  
  192.         Task numbers are automatically truncated to 2 hex digits to avoid
  193.         overflow in various processing scenarios.
  194.  
  195.         Unblanking in the non-key case will only happen at end of event,
  196.         or a ring, connect or fax modem response.
  197.  
  198.         "Hydra (mythology), in Greek mythology, nine-headed monster that 
  199.         dwelled in a marsh near Lerna, Greece. A menace to all of Argos, 
  200.         it had fatally poisonous breath and when one head was severed, 
  201.         grew two in its place; its central head was immortal. Hercules,
  202.         sent to kill the serpent as the second of his 12 labors, succeeded
  203.         in slaying it by burning off the eight mortal heads and burying 
  204.         the ninth, immortal head under a huge rock. The term hydra is 
  205.         commonly applied to any complex situation or problem that 
  206.         continually poses compounded difficulties."
  207.  
  208.         "Hydra (mythology)," Microsoft (R) Encarta. 
  209.         Copyright (c) 1993 Microsoft Corporation.
  210.         Copyright (c) 1993 Funk & Wagnall's Corporation"
  211.  
  212.         Arjen Lentz' and Joaquim Homrighausen's Hydra protocol is now in
  213.         the sources. Because we had to rev the com support for it, only
  214.         the OS/2 and DOS versions support it at present; in another alpha
  215.         this comment will be changed to reflect support on NT.
  216.  
  217.         Config lines "NoJanus" and "NoHydra" have been added so that either
  218.         protocol can be explicitly disabled. The old JanusOK and JanusBaud
  219.         config lines are augmented by "BiDiOK" and "BiDiBaud", which do the
  220.         same thing -- both the old and new ones control Janus and Hydra.
  221.  
  222.         Add ability to build and send a packet back instead of a .RSP file.
  223.         This is enabled using "pktrsp" in BINKLEY.CFG. Note that you must
  224.         have a flags directory for this feature to operate, as the flags
  225.         directory is the "staging area" for the packet as it is being built.
  226.  
  227.         Add a special after-call modem string, which Bink will send after
  228.         any call, incoming or outgoing, and will wait for some number of
  229.         responses from the modem. This is specified by "aftercall n string"
  230.         in BINKLEY.CFG, where n is the number of responses you expect to
  231.         get back from the modem. For Vince's 14.4K USR DS, we find that
  232.         "aftercall 16 ATI6|" is a cool thing to have; we get modem stats
  233.         after every call, right there in the log.
  234.  
  235.         Various fax modems behave differently with respect to baudrate
  236.         after a fax connection. BinkleyTerm's former behavior was to set
  237.         the baudrate to 19200 (subject to lock) on a fax connection. Now
  238.         Bink will leave the baudrate alone by default after a fax connect
  239.         but will set to a user-specified rate if "FaxBaud nnnnn" is set
  240.         in BINKLEY.CFG.
  241.  
  242.  
  243.  
  244.         Changes in BinkleyTerm 2.58 from 2.57
  245.         -------------------------------------
  246.  
  247.  
  248.         In addition to several changes to the EMSI logic, log any EMSI
  249.         keyword we don't understand. This will be instrumental in
  250.         figuring out why we still occasionally have EMSI parsing problems
  251.         with some D'Bridge systems.
  252.  
  253.         Adopt the costlog stuff and European-style cost calculation that
  254.         Holger Schurig did so long ago and which both Tobias Burchhardt
  255.         and Michael Buenter adopted for their versions. To do this, we
  256.         added a "CostLog <filename>" config command and a "CostUnit"
  257.         command. The European version defaults to 23 for cost unit. We
  258.         default to 2, which seems much more like the US value. The only
  259.         part of the logging which we don't fully support is the error
  260.         stuff. We log errors but we never accumulate any so it always
  261.         says zero.
  262.  
  263.         Since this other cost calculation is a real departure from the
  264.         US per-minute tariff calculation, we left the old calculation as
  265.         the default. The European style is turned on using "EuroCost" in
  266.         BINKLEY.CFG.
  267.  
  268.         We figured it adds value to put this into the history record, so
  269.         we did. New structure is:
  270.  
  271.         typedef struct _history
  272.         {
  273.             short which_day;    /* Day number for this record        */
  274.             short bbs_calls;    /* Number of BBS callers             */
  275.             short mail_calls;    /* Number of mail calls              */
  276.             short calls_made;    /* Number of outgoing calls made     */
  277.             short connects;        /* Number of outbound call successes */
  278.             short files_in;        /* Number of files received          */
  279.             short files_out;    /* Number of files sent              */
  280.             short last_caller;    /* Type of last call                 */
  281.             ADDR last_addr;        /* Address of last, excl. Domain     */
  282.             char last_Domain[32]; /* Domain of last                  */
  283.             long last_Elapsed;    /* Time of last outbound session     */
  284.             ADDR next_addr;        /* Address of next, excl. Domain     */
  285.             char next_Domain[32]; /* Domain of next                  */
  286.             long callcost;        /* Cumulative of call costs          */
  287.             long size_in;        /* Size of files received            */
  288.             long time_in;        /* Time of files received            */
  289.             long err_in;        /* Errors while receiving files      */
  290.             long size_out;        /* Size of files sent                */
  291.             long time_out;        /* Time of files sent                */
  292.             long err_out;        /* Errors while sending files        */
  293.         } HISTORY, *HISTORYP;
  294.  
  295.         Add some end-of-session reporting, leveraging the work done to
  296.         make the above work.
  297.  
  298.         Michael Buenter found the obvious thing to do about modem result
  299.         codes: just take what we already have and let the user populate
  300.         the resultcode array. We bow to his wisdom and add the same config
  301.         keywords: "ModemFailure" can be used to define a result string
  302.         from the modem which outgoing dial should consider a failure code;
  303.         "ModemIgnore" to define strings to ignore; "ModemConnect" to
  304.         define the prefix for a modem connect string (the remainder is
  305.         parsed to determine connection speed, etc); "ModemRinging" to
  306.         identify the result code for INCOMING ring; "ModemIncoming" for
  307.         results which the outdialer should interpret as a collision with
  308.         an incoming call; "ModemFax" to identify incoming FAX connect.
  309.         The first prefix match will be taken, so ordering the config lines
  310.         so that the correct match is taken is important!
  311.  
  312.         Bink will default these to the old hardcoded settings if there is
  313.         no user input. The values in BINKLEY.CFG which would produce the
  314.         defaults are:
  315.  
  316.                 ModemIgnore RINGING
  317.                 ModemIgnore RING RESPONSE
  318.                 ModemRinging RING
  319.                 ModemConnect CONNECT
  320.                 ModemIgnore RRING
  321.                 ModemFailure BUSY
  322.                 ModemFailure VOICE
  323.                 ModemFailure ERROR
  324.                 ModemFailure OK
  325.                 ModemFailure NO CARRIER
  326.                 ModemIncoming NO DIAL
  327.                 ModemIgnore DIALING
  328.                 ModemFailure NO ANSWER
  329.                 ModemIgnore DIAL TONE
  330.                 ModemFax +FCO
  331.  
  332.         Change processing of FAX result codes so that you can define a
  333.         FAX using the UUCP stuff and a "ModemFax" line in BINKLEY.CFG. This
  334.         allows the creation of two modes of operation:
  335.  
  336.         1) Bink receives the fax into a raw file.
  337.  
  338.                 ModemFax <fax connection result>
  339.                 FaxInDir <fax directory>
  340.  
  341.         This tells Bink that when it sees this result code, it should
  342.         receive the fax into the specified directory.
  343.  
  344.         2) Bink shells out to external program for fax
  345.  
  346.                 ModemFax <fax connection result>
  347.                 ExtrnMail <code> <fax connection result>
  348.  
  349.                 (optional)
  350.                 Extern Spawn
  351.  
  352.         When Bink gets the fax connection result and FaxInDir is not
  353.         set, it will try to find an external mail string and if it
  354.         finds one it will dispatch as specified by the user. Unlike
  355.         2.56, we'll do this even if DCD hasn't been set (which is the
  356.         usual case between +FCO and CONNECT).
  357.  
  358.         Add 'K' option to zoomed outbound window. This is the same as
  359.         Alt-K in unattended mode -- used to "kill" all mail to a node.
  360.  
  361.         Add 'K' to zoom help and 'Alt-Z' to unattended help.
  362.  
  363.         Add a facility to disable callout to nodes with a particular
  364.         modem type. This is achieved using "ModemTrans xxx" with no
  365.         prefix or suffix in Binkley.Cfg. This allows sharing Bink
  366.         between lines with particular modem types.
  367.  
  368.         Add call and bad call columns to zoomed outbound display.
  369.  
  370.  
  371.  
  372.         Changes in BinkleyTerm 2.57 from 2.56
  373.         -------------------------------------
  374.  
  375.         Reformat source using INDENT. Looks great if your editor supports
  376.         tabstops of 4.
  377.  
  378.         Change all internal baudrate stuff from unsigned short to unsigned
  379.         long so as to better handle new modems.
  380.  
  381.         Add definitions for 57600 baud and 115200 baud for NT and OS/2
  382.         versions. Note that for this to work with the OS/2 version, you
  383.         must have a version of MAXCOMM.DLL which supports 57600 and 115200.
  384.         I think that version 2.2 (which most people have) supports 57600;
  385.         you need version 2.5 or above to support 115200 baud.
  386.  
  387.         Fix bug in BBS code for case where mode wasn't set by user.
  388.  
  389.         Alt-P in unattended mode creates a .CLO file for polling.
  390.  
  391.         Fold in some work from Bill Andrus, including a fix for mixed
  392.         case file extensions. Do the same thing for the Win32 version.
  393.  
  394.         This is sad: update the copyright notice to 1993. Sad because I
  395.         have two "update copyright notice" notes in here. Time to figure
  396.         out what's going to get released and do it...
  397.  
  398.         Finally adopt the Zoom Outbound window code. ALT-Z in unattended
  399.         mode will get you there. Comments welcome on format. Note that
  400.         this is not a BONK replacement nor is this level of functionality
  401.         currently planned. I'd like to hear specific comments from anyone
  402.         who used Michael Buenter's version (on which this is based).
  403.  
  404.         Add support for 32-bitness to the code. The result is a 32-bit
  405.         native NT version and a 32-bit OS/2 2.0 version.
  406.  
  407.         Fold in Michael Buenter's code to receive incoming Fax. Turned
  408.         on by adding a directory spec for fax: "FaxInDir dirname". For
  409.         now we've left the code as is but expect to change to PCX format.
  410.  
  411.         Add a special errorlevel for fax reception. This is per-event,
  412.         specified as "EF=errorlevel" in the event file. In the absence of
  413.         this errorlevel, fax reception will be considered a received mail
  414.         condition for purposes of determining exit errorlevel.
  415.  
  416.         Support for associating sounds with particular events. Right now
  417.         this only works on NT, but we'll expand it. On NT it works as
  418.         follows: 6 new BINKLEY.CFG parameters have been added: "MailSound"
  419.         is the sound that BinkleyTerm will play on a E2 mail exit,
  420.         "FileSound" will be played on a E3 or user-specified mail exit,
  421.         "BBSSound" will be played when BinkleyTerm exits to a BBS,
  422.         "EXTSound" will be played on exit to an external (UUCP) mailer,
  423.         "StartSound" will be played at the start of unattended mode.
  424.         "FAXSound" will be played on a FAX exit.
  425.  
  426.         The parameter looks like this: 
  427.  
  428.                      StartSound happy.wav
  429.  
  430.         On Vince's machine, this plays the "Happy Happy Joy Joy" song when
  431.         BinkleyTerm starts unattended mode.
  432.  
  433.         The ZModem receiver now will send ZFERR for disk-full situations.
  434.         The transmitter will treat this as an error. The result should be
  435.         that files will no longer be lost in transit due to disk-full.
  436.  
  437.         Add a new event flag, '$'. This flag will cause BinkleyTerm to
  438.         delete all the bad-call files in the outbound areas.
  439.  
  440.         Add file count to outbound window. This option works in
  441.         conjunction with the file size stuff, so if you have "NoSize"
  442.         set, you won't get it. 
  443.  
  444.         Because of the amount of real estate in the outbound window, 
  445.         we won't display domain information when "NoSize" is off.
  446.  
  447.         Correct the event logic so that the "cleanup" program isn't
  448.         dependent on the "packer" program.
  449.  
  450.         Correct a bug in the Xmodem receiver for when we start to receive
  451.         a file but never open it (this happens when we start up but then
  452.         error out before data is received).
  453.  
  454.         Correct a bug in handling of outbound area when it doesn't exist
  455.         and when we are running points direct instead of using privatenet.
  456.  
  457.         Fix a super ugly bug in YooHoo state tables. I have no idea
  458.         how this one has gotten by us for so long, but it's fixed now.
  459.  
  460.         Fix a REALLY long-standing bug in TeLink timestamps. We were
  461.         low by 10 on the year and high by 1 on the month in the
  462.         TeLink receiver.
  463.  
  464.         State machine code finally compiles with no warnings!
  465.  
  466.         Correct the 8-bit ExtMail check.
  467.  
  468.         Fix bracket-escaping code in EMSI.
  469.  
  470.         Substantial cleanup on EMSI code preparatory to FSM version.
  471.  
  472.         Fix boundary condition in Version 7 nodelist search.
  473.  
  474.         MAYBE we have fixed the "Password override" bug in EMSI.
  475.  
  476.         Open FLO files in Deny-None mode when estimating mail size. This
  477.         helps avoid collisions with Max.
  478.  
  479.  
  480.         Changes in BinkleyTerm 2.56 from 2.55
  481.         -------------------------------------
  482.  
  483.  
  484.         Cleanup to make the sucker compile on Zortech and Borland
  485.         compilers.
  486.  
  487.         Put all the mailers from FTSC product code list into table and
  488.         remove all the packers.
  489.  
  490.         Security improvements for EMSI:
  491.  
  492.           1) Password mismatch on outgoing call will only be allowed
  493.              on the first AKA. All others will be discarded
  494.  
  495.           2) Bug fix for remote with no pickup: number of AKA's would
  496.              be set to 1. If all AKA's had been knocked out on password
  497.              errors or curmudgeon mode, this bug allowed the session to
  498.              proceed.
  499.  
  500.         Close a hole in Curmudgeon mode where other domain wasn't known.
  501.  
  502.         Shut down MOVE (Microsoft overlay facility) before swapping out
  503.         and start it up again after swapping back in.
  504.  
  505.         Fix bug in extmail string comparison that made 8-bit characters
  506.         impossible.
  507.  
  508.         Correct problem with 2x outbound sizes caused by outbound called
  509.         "mydomain[0].myzone[0]" (e.g. "OUTBOUND.001").
  510.  
  511.         Support for domain kludging to zone numbers. Lines of the form
  512.         "DomainKludge ZoneNumber DomainName" 
  513.         (e.g. "DomainKludge 7 alternet.ftn") will fill in a domain if
  514.         addresses are without domain specification, either from local
  515.         entry or in FidoNet handshaking. These lines must follow the
  516.         "Domain" lines, and if you set a domainkludge without having 
  517.         previously defined a domain, it will not be processed. Here is
  518.         an example:
  519.  
  520.         Domain fidonet.org fidonet nodex
  521.         Domain alternet.ftn alternet nodex
  522.         Domain eggnet eggnet nodex
  523.  
  524.         DomainKludge 7 alternet.ftn
  525.         DomainKludge 99 eggnet
  526.  
  527.         REMEMBER, THE DOMAINKLUDGE LINES *MUST* FOLLOW THE DOMAIN LINES!
  528.  
  529.         Increase stack size. This fixed almost every inexplicable problem
  530.         with 2.55.
  531.  
  532.         Fix crash bug with END in pending outbound window when there was
  533.         nothing actually pending.
  534.  
  535.         Remove wrap from outbound window, and limit downward movement to
  536.         list end.
  537.  
  538.         Fix stupid signal stuff in BT.C
  539.  
  540.         Don't disable com port on shell to command prompt in terminal mode.
  541.  
  542.         Set BBS default to "spawn" in OS/2.
  543.  
  544.  
  545.         Changes in BinkleyTerm 2.55 from 2.54
  546.         -------------------------------------
  547.  
  548.  
  549.         Fold in code from Michael Buenter to support using MAXFILES.IDX
  550.         for file request searches. Here is the description in his own
  551.         words:
  552.  
  553.           * OKFile extension:                                    
  554.              Adding                                              
  555.                   *path\MAXFILES.IDX                             
  556.  
  557.              in OKFILES.TXT lets BT search through this database when 
  558.              processing file requests.
  559.              This is much faster than seeking through whole a partition 
  560.              (and it's more "multitasking friendly", too!).
  561.           
  562.              You will have to add following keywords to your BINKLEY.CFG:
  563.                  FileSec  n
  564.                  KnownSec n   (optional)
  565.                  ProtSec  n   (optional)
  566.  
  567.              where n is the following security level:
  568.                0=Disgrace, 1=Limited, 2=Normal, 3=Worthy,     4=Privil,  
  569.                5=Favored,  6=Extra,   7=Clerk,  8=Asstsysop, 10=Sysop,  
  570.               11=Hidden,  -2=Twit
  571.  
  572.              Following line has to be added to your BINKLEY.CFG, too:
  573.                  MaxAreas d:\max\area.dat
  574.  
  575.              Each caller will be assigned a "user level" (security) 
  576.              depending on their caller level (default, known, prot).
  577.              This security will be compared to the access rights in the
  578.              Maximus file area. If the security is too low, the caller
  579.              will get a password error.
  580.  
  581.              Access to 5000-8000 files is very fast: it takes about _one_
  582.              second on my setup! This won't be very much longer on slower
  583.              systems because the file access time will stay about the same.
  584.  
  585.              There will appear some new entries in the log with details to 
  586.              each search if you have LogLevel +/-5 defined in yout setup.
  587.  
  588.              I got many nice comments about this new features. Some people
  589.              have been very happy about the fast file finds even with 
  590.              wildcards!
  591.  
  592.         The entire "Connect" line will now be treated as a potential
  593.         external mail string. This allows Bink to shell out to an external
  594.         program for funny FAX modems. OS/2 users, don't forget to use the
  595.         "extern spawn" option and set up a EXTOPT.CMD file!
  596.  
  597.         Add C7 time_t correction to Janus file request logic.
  598.  
  599.         Turn off DEBUG flag in state machine logic. This will make state
  600.         table code (YooHoo, SendSync, RecvSync, all FTS-0001/7/8 code
  601.         including Sealink) MUCH faster.
  602.  
  603.         Clean up EMSI .BSY file stuff.
  604.  
  605.         Minor tweaks to domain stuff (which were needed for the EMSI
  606.         domain code to work right)
  607.  
  608.         Clean up conflict between session elapsed time indicator and
  609.         new task number display in settings window.
  610.  
  611.         "WinSlice" no longer needed for timeslice release in OS/2 DOS box.
  612.  
  613.  
  614.         Changes in BinkleyTerm 2.54 from 2.53
  615.         -------------------------------------
  616.  
  617.         Fix WHATSNEW file to correct documentation error: EXTopt was
  618.         not the name of the option which forced a spawn. EXTern was
  619.         the name of the option.
  620.  
  621.         Correct for differences between C7's ANSI time_t (0 is 12/31/1899) 
  622.         and UNIX time (0 is 1/1/1970), where transmitted values in
  623.         file requests, SEAlink block zero, ZMODEM headers, EMSI packets
  624.         are based on UNIX time but RTL is based on ANSI time_t. FYI ...
  625.         the difference is 2209075200L.
  626.  
  627.         As you might have guessed, this means that Microsoft C 7.0 is
  628.         now the standard compiler for BinkleyTerm on DOS. C 6.0 is still
  629.         the standard for the OS/2 version.
  630.  
  631.         Several fixes in EMSI.
  632.  
  633.         Change language from "WaZOO method:" to "Session method:" and
  634.         similar changes elsewhere, to reflect dual WaZOO/EMSI state.
  635.  
  636.         Michael Buenter's fix to the outbound window stuff.
  637.  
  638.         Support '\s' in the language file (btlng change).
  639.  
  640.         If you've defined "TaskNumber", display it along with the
  641.         multitasker name.
  642.  
  643.         Changes to session logic as follows:
  644.  
  645.           1) Nodelist lookup returns 0 for failure, -1 for curmudgeon
  646.              instead of performing curmudgeon disconnect
  647.  
  648.           2) FTSC and YooHoo logic now perform curmudgeon disconnect
  649.  
  650.           3) EMSI mods:
  651.  
  652.             a) KNOWN only set on known address if no pw error
  653.             b) PROT only set on prot address
  654.             c) curmudgeon return or pw error causes aka to be skipped
  655.             d) failure to create flagfile causes aka to be skipped
  656.             e) at end of aka handling, hang up if no aka's remain
  657.  
  658.         DOS version greater than or equal to 10 is considered to be
  659.         the OS/2 DOS box, and if so the "WinSlice" verb can be used to
  660.         release the timeslice to OS/2. We will probably make this the
  661.         default in the next beta, but I want to play it safe this time.
  662.  
  663.  
  664.  
  665.         Changes in BinkleyTerm 2.53 from 2.51
  666.         -------------------------------------
  667.  
  668.         NOEMSI now works on both inbound and outbound sessions.
  669.  
  670.         Script verb "NoEMSI" disables EMSI for the session associated
  671.         with the script.
  672.  
  673.         Consolidate EMSI session logic and WaZOO session logic.
  674.  
  675.         Update copyright notices to 1992 and internal version refs
  676.         to 2.60
  677.  
  678.         Bug fix in file request password checking, courtesy of Scott Dudley.
  679.  
  680.         V6 support will internally truncate oversized nodelists (though
  681.         that code will break when nodelist reaches just under 64K nodes)
  682.  
  683.  
  684.         Changes in BinkleyTerm 2.51 from 2.50
  685.         -------------------------------------
  686.  
  687.         Complete new YooHoo (FTS-0006 handshake) logic. Seems to work
  688.         much better in Belgium.
  689.  
  690.         Don't flush status log prior to spawn if it's not open. This
  691.         gave the OS/2 side fits. Sorry, Bill.
  692.  
  693.         Correction to snoop logic to handle conflict between snoop
  694.         specification in config file and environment variable.
  695.  
  696.         Use terminal mode init for modem hang-up if in terminal mode
  697.         and we have a terminal mode init.
  698.  
  699.         HEY!!! READ THIS!! IT MIGHT BREAK YOUR CURRENT CONFIGURATION!!
  700.         Bink now matches modem types exactly rather than using a bitwise
  701.         AND. This allows lots more modem types, but requires that you
  702.         change your nodelist generation and config stuff (if you're using
  703.         ModemTrans).
  704.  
  705.         Added Ron Bemis' change to allow an external mail exit to be a
  706.         "spawn". This is accomplished by putting "EXTern spawn" in your
  707.         config file. Note: if you enable this option, all external mail
  708.         is spawned. The arguments to EXTMAIL are exactly the same as
  709.         the exit case, so you can find the "errorlevel" from the command
  710.         line if you need it.
  711.  
  712.         Added Ron Bemis' change to allow an external process to force
  713.         BinkleyTerm to exit. This is enabled by putting "ForcExit n" in
  714.         the config file, where (n) is the errorlevel you wish to use on
  715.         exit. Bink will periodically check the flag directory (or the
  716.         directory you're running Bink from if no flag directory) for a
  717.         file called FORCEXIT (or FORCEXIT.xxx if task number is set).
  718.         When it sees the file, it will delete it and exit with the user
  719.         specified errorlevel.
  720.  
  721.         Improved Zmodem transmitter startup (mostly important for 
  722.         function requests).
  723.  
  724.         Merged in Tobias Burchhardt's EMSI mods. This includes some
  725.         additional config verbs:
  726.  
  727.             NoEMSI disables EMSI
  728.             MyLocation defines nodelist location \
  729.             MyPhone            phone number       \ In nodelist
  730.             MyListFlags        nodelist flags     / format
  731.             MyMaxBaud          max baud rate     /
  732.             PickUpAll          enables all pick ups in EMSI
  733.  
  734.         Example:
  735.  
  736.         MyLocation Redmond, WA
  737.         MyPhone 1-206-868-7581
  738.         MyListFlags CM,XA,V32B,HST
  739.         MyMaxBaud 9600
  740.  
  741.         Logs:
  742.  
  743.         * 08 Dec 03:52:27 BINK Bink Beer Consumed Here (1:343/491)
  744.         : 08 Dec 03:52:27 BINK Aka: 1:132/491 1:141/491 7:491/0 
  745.         * 08 Dec 03:52:27 BINK Remote Uses BinkleyTerm 2.51/(UNREGISTERED)
  746.         : 08 Dec 03:52:27 BINK SysOp: Vince Perriello from Redmond, WA
  747.           08 Dec 03:52:27 BINK Phone: 1-206-868-7581
  748.           08 Dec 03:52:27 BINK Flags: CM,XA,V32B,V42B,HST,MO
  749.         : 08 Dec 03:52:27 BINK Tranx: 294196F9 / ACED66F8
  750.         : 08 Dec 03:52:27 BINK EMSI method: ZedZap
  751.  
  752.         Note: This EMSI logic doesn't handle private nets for points. If
  753.         any of your points will be running this beta, make really sure 
  754.         that they all show their point addresses as AKA's. This 
  755.         limitation will be fixed soon.
  756.  
  757.         I expect it to take us a while to sort out the implications of 
  758.         EMSI. We'll get it down. Hang loose and keep them problem reports
  759.         comin' in!
  760.  
  761.         Merged in Pete Fitzsimmons' improvements to OS/2 comm code and
  762.         additional time_release in areas that had been overlooked. I'm
  763.         told that his multithreaded comm DLL really works great.
  764.