home *** CD-ROM | disk | FTP | other *** search
/ World of Ham Radio 1994 January / AMSOFT_1994.iso / packet / pbbs / cbbs / prog / manual.bbs < prev    next >
Encoding:
File List  |  1993-12-31  |  138.1 KB  |  3,290 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17.                           ***************************
  18.                           ***  THE C-BBS MAILBOX  ***
  19.                           ***    Version 6.4      ***
  20.                           ***************************
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.       1.   Getting Started, What to look for
  31.       2.   The Configuration File
  32.       3.   The Forward File
  33.       3.1  Hierarchical forwarding
  34.       3.2  Using STATES.EXE
  35.       4.   Commands (user and sysop)
  36.       5.   Prtlog, Printer, and Files used
  37.       6.   Log, List, and Distributation Files
  38.       7.   Protocols (bid's, zip's, sid's, sending)
  39.       8.   Desqview operation
  40.       9.   Modem usage
  41.       10.  Restoring the mail file, Mail format, Listing messages
  42.       11.  Archiving messages
  43.       12.  Sysop Maintenance
  44.  
  45.       Appendix A. Changes.mb
  46.       Appendix B. Config.mb
  47.  
  48.                       INTRODUCTION AND PURPOSE
  49.  
  50.     This is the documentation  for the  C-BBS Mailbox system.   It  is
  51.     based on code originally  written by  Hank Oredson.   It is  being
  52.     continued by a small  group of packet  programmers so that  sysops
  53.     will have the source  code available.   The purpose  is simply  to
  54.     allow sysops to  use, learn,  and understand  the "C"  programming
  55.     language and it's use in running  the C-BBS Mailbox system.   This
  56.     way the code can be customized to suit sysop needs.  Also, as bugs
  57.     are found, it allows the sysop to  search the source code for  the
  58.     necessary corrections. The use of any module or  section  of  code
  59.     for any distribution beyond the  C-BBS mailbox is prohibited.  All
  60.     the modules are copyrighted by the  CBBS GROUP.  It may  be copied
  61.     for non-commerical  use  as  long  as  all  copyright  notices are
  62.     included.
  63.  
  64.     Be forewarned that only the RELEASE versions of this software will
  65.     be supported.  Bug reports and enhancements are appreciated.  This
  66.     is a group  effort  and  as  such,  more  time  is  available  for
  67.     comments.
  68.  
  69. Chapter 1 ------------------ GETTING STARTED ------------------------- Page 1
  70.  
  71.        ************************************************************
  72.        ***  C-BBS MailBox and GateWay   Version 6.4 - 7/14/89   ***
  73.        ************************************************************
  74.  
  75. A: [CBBS-6.4-H$]
  76.  
  77.      This code was initially created for packet community by:
  78.  
  79.           Hank Oredson, W0RLI
  80.  
  81.     Hank, however, no longer supports the  CBBS code.  He is  allowing
  82.     it to  be  developed  by  others  interested  in  furthering  this
  83.     version.  He is developing a new code that is not associated  with
  84.     this CBBS program.  Dave, VE3GYQ had released version 4.4 of  this
  85.     code and K3RLI  and AG3F  have released versions  4.6 and  beyond.
  86.     This is the latest version.
  87.  
  88.     You may obtain versions of the code in several ways.
  89.  
  90.      1. Download from Compuserve HamNet or
  91.  
  92.      2. Send a diskette mailer to
  93.   
  94.         Edward T. Picchetti, K3RLI
  95.         355 Ridge Road
  96.         Wilkes-Barre, Pa. 18702
  97.  
  98.  
  99.     A special thanks to those who send little chunks of code with bug
  100.     fixes or new  features.
  101.  
  102.     Thanks also to VE3GYQ for the GateWay code, AA4RE and WA7MBL  for
  103.     the IBM port drivers.
  104.  
  105.     The code will run  under DOS  for for single  user application  or
  106.     under DESQview for multiple  user applications.   DoubleDos is  no
  107.     longer supported for multiple  user setups.   Under DESQview  103k
  108.     window size  is required  unless the  bbs dos  command feature  is
  109.     desired then 150k window  size is  necessary.  A  640k pc/xt  will
  110.     support   3   windows   without    the   dos   command    feature.
  111.  
  112.     This version of  the  code represents  a significant  change  from
  113.     previous issues.   The   method  of  handling  the  mailfile   and
  114.     individual message files is all new and the communication  between
  115.     copies of the BBS is  now done  without the need  for the  "pipe".
  116.     These changes result in  the ability to  reconstruct the  mailfile
  117.     from the individual messages thus providing security from  crashes
  118.     and failures.  The use of mailfiles  and user files common to  all
  119.     copies provides many conveniences.
  120.  
  121.  
  122.     Please read  the following  documentation  to get  things  set  up
  123.     properly.  This code will not run using previously successful file
  124.     and directories.  Appendix A  will  give  more  detail  as to  the
  125.     revisions from previous versions of the code.
  126.  
  127. Chapter 1 ---------------- GETTING STARTED --------------------------- Page 2
  128.  
  129.  
  130. B: CODE DISTRIBUTION
  131.  
  132.     The code as distributed is broken  down into sections so that  you
  133.     can select the areas  that you  need for your  requirements.   For
  134.     normal operation of the bbs the modules RUNxx.ARC and IOxx.ARC are
  135.     all that are necessary.  The other modules provide the source code
  136.     for those interested  in  making their  own modifications  to  the
  137.     code.  All  modules, both  run  and source,  are provided  in  ARC
  138.     format and must be uncompressed by use of PKXARC.
  139.  
  140. C: WORKING WITH THE SOURCE CODE
  141.  
  142.     It is expected the those  using the provided sources are  familiar
  143.     with "C" language, 8088 assembler  notation and the  manuipulating
  144.     of compilers, assemblers and linker.
  145.  
  146.     All developement work has been done with the Microsoft C  compiler
  147.     version 4.10.  Some Microsoft specific library functions are used,
  148.     these functions should exist  with  any C  compiler.   The  names,
  149.     arguments, and required header files for these functions might  be
  150.     different with other compilers.  All  of these differences  should
  151.     appear in the module MBIBM.C.   The Microsoft  C compiler  version
  152.     5.01 has also been used successfully but the distributed code  was
  153.     produced with version 4.10.  Turbo  C and Quick  C have also  been
  154.     used by others with good success  after some syntax  modification.
  155.  
  156.     File MB.BLD has been  provided to utilize  the Microsoft  MAKE.EXE
  157.     file maintance utility to compile, assemble  and link the  various
  158.     modules that make up the bbs code.  It is recommended that this be
  159.     utilize but CC.BAT has also been supplied to permit compiling of a
  160.     single module and  LINK.MB is  provided to work  with LINK.EXE  to
  161.     form the entire linked package.
  162.  
  163.     Microsoft MASM  versions 4.0  and  higher have  been  utilized  to
  164.     assemble the I/O and other modules that require it.
  165.  
  166. D: USING THE RUN CODE
  167.  
  168.     The following  steps will  be required  to get  the bbs  operating
  169.     using the provided run  code.   Please notice that  you have  many
  170.     options for configuring the hardware and  software.  The  examples
  171.     shown are only illustrative and are not the only way to do this.
  172.  
  173.  1: Extract the files from the ARC files if this has not already  been
  174.     done.  This is accomplished  by using the  command PKXARC -e RUN64
  175.     for the run files and PKARC -x  IO51 for the  I/O routines.   This
  176.     will produce numerous files from which you will select only a  few
  177.     depending upon your desired system configuration.  PKXARC can also
  178.     be used for this  task and  is faster  if you  have it  available.
  179.  
  180.  2: Decide how your system will be configured.  How many tncs will you
  181.     have? Will the tncs be arranged so  that each can be connected  to
  182.     independantly of the others or when one is in use will the  others
  183.     be unavailable for a connect or  is a combination of both  methods
  184.     desired? As an example we  can have  3 tncs,  A, B, and C.  If  we
  185.     decide that only one tnc at a time is to be connected, then we can
  186.     configure to run under DOS without multi- tasking enviornment.  If
  187.     we would prefer  all tncs  to operate independantly  then we  must
  188.     configure for DESQview and  provide 3 windows,  one for each  tnc.
  189.  
  190. Chapter 1 ---------------- GETTING STARTED --------------------------- Page 3
  191.  
  192.  
  193.     We can also decide to have tnc A be  independant and B and C  work
  194.     as a pair.  This arangement requires 2 DESQview windows with tnc A
  195.     operating from one and tncs B  and C operating  out of the  other.
  196.     This setup  will permit  connects  on tnc  A  and either  B  or  C
  197.     simultaneously.  Many  other combinations  are possible  depending
  198.     upon the number of tncs, serial ports  and system memory.  In  any
  199.     case, decide upon this arangement now.
  200.  
  201.  3: Setup a directory structure based upon your system  configuration.
  202.     This is  discussed   in  more  detail   in  another  section   but
  203.     essentially you must have the following files included:
  204.  
  205.     mb.exe
  206.     bios.com based upon the number of tncs(eg. br3bios.com for 3 ports)
  207.     mbmode.exe
  208.     hand.com
  209.     share.exe  **
  210.     config.mb for each window (eg. config.a, config.b, etc)
  211.     mail.dat & user.dat (Converted files from older version)
  212.     fwd.mb
  213.     states.mb
  214.     info.mb
  215.     help.mb
  216.     mon.mb for each window (Created by the mailbox)
  217.     log.mb for each window (Created by the mailbox)
  218.     calls.mb for each window (Created by the mailbox)
  219.  
  220.     A typical setup for the example above would be the following
  221.     directories and their files:
  222.  
  223.     \mb                     \mb\bbs                      \mb\msgs
  224.     mb.exe                  mail.dat
  225.     mbmode.exe              user.dat                        all
  226.     br3bios.com             info.mb                      message
  227.     config.a                help.mb                        text
  228.     config.bc               fwd.mb                         files
  229.     hand.com                mon.a
  230.     share.exe               mon.bc                       mbrestm.exe
  231.                             calls.a
  232.                             calls.bc
  233.                             log.a
  234.                             log.bc
  235.                             states.mb
  236.     ** share.exe is on your dos distribution disk for dos 3.0+
  237.  
  238.  4: Prepare the configuration or configurations based upon the desired
  239.     system setup.  Detail of how to do this follows in another section
  240.     but make sure the file specification section of the configurations
  241.     follows the directory structure  decided upon above  and the  port
  242.     section also follows the system setup.
  243.  
  244.  5: Setup the directory structure and  copy the proper files to  these
  245.     locations.  If  you are  a new  user  only the  files in  the  \mb
  246.     directory and info.mb  and help.mb  in \mb\bbs  will be  required.
  247.     The bbs program will create the necessary other files.  For  those
  248.     of you with operating older versions of the code, the mail,  user,
  249.     fwd, log, msg, etc files should be copied to the proper  directory
  250.     and renamed if necessary.  Even if there are no message files,  as
  251.     in the case of a new  user, make sure  the \mb\msgs directory  has
  252.     been created.
  253.  
  254. Chapter 1 ----------------- GETTING STARTED -------------------------- Page 4
  255.  
  256.  
  257.  6: Prepare a suitable batch file to initialze the serial port(s)  and
  258.     bring up the bbs.  A possible  file for a single window  operation
  259.     might be for the example of 3 tncs:
  260.  
  261.     TIMER -> Your time and date program.         CONFIG.SYS
  262.     BR3BIOS                                        FILES = 20
  263.     MBMODE COM1:4800,N,8,1                         BUFFERS = 20
  264.     MBMODE COM2:4800,N,8,1
  265.     MBMODE COM3:4800,N,8,1
  266.     CD \MB
  267.     MB
  268.  
  269.     An example of this file when used with Desqview (Multi-windows):
  270.  
  271.     DATETIME -> Your time and date program.         CONFIG.SYS
  272.     BR3BIOS                                        FILES = 30
  273.     MBMODE COM1:4800,N,8,1                         BUFFERS = 20
  274.     MBMODE COM2:4800,N,8,1
  275.     MBMODE COM3:4800,N,8,1
  276.     HAND
  277.     SHARE
  278.     CD \DV
  279.     DV
  280.  
  281.     These batch  files  can  exist  independantly  and  be  called  by
  282.     AUTOEXEC.BAT or can be made part of AUTOEXEC.BAT.  In either  case
  283.     the bbs will reboot upon power  outages.  If  this is not  desired
  284.     keep this batch file independant of AUTOEXEC.BAT.
  285.     The cable between the tnc  and computer should have pins  2,3,4,5,
  286.     6,7,8, and 20 connected.   Hardware flow control  is used in  both
  287.     directions.  Configure the TNC's using the appropriate .SET  file,
  288.     TNC1.SET for a tnc1, TNC2.SET for  a tnc2, PK232.SET for a  pk232.
  289.     The parameters differ depending on the type of tnc you are  using.
  290.     
  291.  8: If you are not using DESQview and  are using only a single  window
  292.     disregard the rest of this section.  Add a copy of the mb  program
  293.     for each window used.  This is done with the AP selection from the
  294.     open window menu.  Enter  the path, program  name and  parameters,
  295.     plus set correctly all of the options on both normal and  advanced
  296.     options.  See the section  on use of  DESQview for those  details.
  297.     In addition in the advanced menu set the window heigth, width, row
  298.     and column  to place  the bbs  copy in  the desired  place on  the
  299.     screen.  For a 1 or  2 window  system the defaults  are ok  (split
  300.     screen) but for more than 2 copies consideration must be given  to
  301.     this.  For the 2 window 3 tnc example of above the main AP entries
  302.     are:
  303.  
  304.     window 1
  305.     Program name   <A--145.01>
  306.     Key  M1          Memory size  150
  307.     Program  MB
  308.     Parameters  config.a
  309.     Directory   C:\MB
  310.  
  311.     window 2
  312.     Program name   <BC--145.07, 221.11>
  313.     Key  M2          Memory size  150
  314.     Program  MB
  315.     Parameters  config.bc
  316.     Directory   C:\MB
  317.  
  318. Chapter 1 ----------------- GETTING STARTED -------------------------- Page 5
  319.  
  320.     Prepare the DESQview startup script file  and place it in the  \DV
  321.     directory.  This  file  is desqview.dvs  and  should  contain  the
  322.     proper  scripts  to  open  the  number  of  windows  used  by  the
  323.     configuration.  The section describing the use of DESQview  covers
  324.     this technique.  In our example above for the 2 windows the script
  325.     should open M1 pause 30 and then open M2 before finishing.
  326.  
  327. 10: Convert the  mailfile  and message  files  if you  have  an  older
  328.     version running.  If you are a 1st  time user this section can  be
  329.     bypasssed.  This  represents  the  most  significant  change  from
  330.     version  4.6  of  the  code  and  should  be  followed  carefully.
  331.  
  332.     If you are now running  a version  prior to 4.0  you must  convert
  333.     your  existing  message  and  user  files  to  version  4  format.
  334.       First, backup all files in the directory used by the MailBox. In
  335.     case something goes wrong, you will be able to restore  everything
  336.     to where it was without loss of messages.
  337.  
  338.     The conversion  from earlier  versions  to version  4 is  done  by
  339.     MBCONV.  Set the default directory to the directory containing the
  340.     MAIL.DAT and USER.DAT files.  Then run MBCONV.
  341.       If you are running a version prior to  3.0 you  must first  make
  342.     certain that the message text has been moved to individual  files.
  343.     Do this by executing the GF command.
  344.  
  345.     ** FOR VER 4.6 **** and prior converted versions do the following:
  346.  
  347.       From the operating bbs DO a GM and then quit the board. Now  the
  348.     final conversion to the new format can be performed.  This version
  349.     of the CBBS  code requires  that the individual  message files  be
  350.     converted to a new format.  The program MBCONVM.EXE is provided to
  351.     do this conversion.
  352.       The program expects the mailfile, MAIL.DAT to exist in directory
  353.     \mb\bbs and that  the  individual message  files be  in  directory
  354.     \mb\msgs.
  355.  
  356.     Copy MBCONVM.EXE into the \mb\msgs directory  and then invoke  the
  357.     program by typing MBCONVM <return>.   This program  will read  the
  358.     MAIL.DAT file and the  corresponding message files  and produce  a
  359.     converted MAIL.DAT as  well  as converted  message  files.    When
  360.     completed the new MAIL.DAT  will reside in  \mb\bbs directory  and
  361.     the modified message files in \mb\msgs as was the case previously.
  362.       If MAIL.DAT wasn't found in \mb\bbs the program will ask for the
  363.     directory containing MAIL.DAT.   You  can then  enter  the  proper
  364.     directory name.  The program will procede  with the conversion  if
  365.     it does find  MAIL.DAT.    If  it  does  not  it  will  abort  the
  366.     conversion and report that it could not find the file.  You should
  367.     check the directory setup  and the location  of MAIL.DAT and  then
  368.     start the conversion  again using the  invocation MBCONVM  \xx\sss
  369.     where \xx\sss  is  the  actual  directory  location  of  MAIL.DAT.
  370.  
  371.     If the mail file had already been converted the program will abort
  372.     the conversion and report accordingly.
  373.  
  374. 11: All should be  ready  now.   Either  reboot the  computer  if  the
  375.     startup batch file  is associated  with autoexec.bat  or type  the
  376.     name of the batch file.
  377.  
  378. Chapter 1 ---------------- WHAT TO LOOK FOR -------------------------- Page 6
  379. (BBS LOADING)
  380.  
  381.  When you load the bbs program your screen should look something like this:
  382.  
  383.        TNC commands on                                TNC commands off
  384.  
  385.  <A>   Window 1 portflag 1                            <- same
  386.  <B>   C                                              aAbB for two ports
  387.  <B>   Link state is DISCONNECTED
  388.  <B>   cmd:
  389.  <C>   XX calls in \mb\bbs\CALLS.MB                   <- same
  390.  <D>   XX users in \mb\bbs\USER.DAT                   <- same
  391.  <E>   [MM] XXXXX free space, XXXXX used.             <- same
  392.  <F>   Set for DESQview.
  393.  <G>   m on
  394.  <G>   MONITOR was off                                 ABABAB
  395.  <G>   cmd:cono on
  396.  <G>   CONOK was off
  397.  <G>   cmd:
  398.  
  399.  
  400.      <A> This line is used by the handshaking program to detect ports
  401.          active, and total ports used by the bbs. If you are using  a
  402.          single bbs, it is not necessary.
  403.      <B> This takes a tnc state, and insures the tnc is  disconnected.
  404.          A line appears for each port used by the bbs.
  405.      <C> This line indicates the number of calls in the CALLS.MB  file
  406.          up to the max listed in the config. When you hit the  maximum
  407.          it will also say (file is full).
  408.      <D> This line indicates the number of users in USER.DAT
  409.      <E> Tells the amount of free space of memory, and the  amount  to
  410.          be used by the mailbox. If you are using DESQview, you  might
  411.          want to adjust the window size to not waste memory space.
  412.      <F> Only shows up if you are set for DESQview in the config.mb If
  413.          this line shows up and you are not using DESQview, change the
  414.          DESQview line in the config to OFF.
  415.      <G> Shows the monitor and conok being turned on to allow monitor-
  416.          ing and connects for each port used by the bbs.
  417.  
  418.     NOTES:
  419.     <B><G> If you have the port configuration line  in  the  config.mb
  420.            set with a '3' ( don't monitor tnc commands )  in it, these
  421.            lines will only show as a lower or upper case letter.
  422.            If you hang at this point, your tnc is not setup right,  or
  423.            your cable is not connected properly. You  need  at  least,
  424.            ECHO OFF, MONITOR OFF, AUTOLF OFF, AWLEN 8,and PARITY 0 set
  425.            into the tnc.
  426.     <E>    If you display "Too little memory available." You need more
  427.            memory. Add in 4k increments to window. [MM] = log month.
  428.  
  429.     At this point  the  bbs  is  active, and  ready  for  connects  or
  430.     monitoring the frequency.  You can  now hit a  ^E (control E)  and
  431.     log onto the bbs.  the bbs will turn off the monitor and turn  off
  432.     conok in the tnc and show you the sysop prompt.
  433.  
  434.     880711/0350, 1011, 100 msgs>
  435.  
  436.     You are now ready to enter any commands. The prompt line shows you
  437.     the DATE/TIME,  the  highest  message  number,  and  the number of
  438.     messages on the bbs if you use the one in the sample config.
  439.  
  440. Chapter 2 ---------------- CONFIGURATION FILE ------------------------ Page 1
  441.  
  442.  
  443.                   ********************************
  444.                   ***  The Configuration File. ***
  445.                   ********************************
  446.  
  447.     The file CONFIG.MB is a text file that contains all  site-specific
  448.     parameters.  Edit it to have the proper parameters for your  site.
  449.     
  450.     The form $x is a variable text field.  The "$x" is replaced by the
  451.     current value for that text. These variables can be used  anywhere
  452.     in the configuration file.
  453.  
  454.      $A - @ BBS of the current message.
  455.      $B - Type of current message.
  456.      $C - Next available message number.
  457.      $D - The current date.
  458.      $E - The message title (used for RFC822 headers)
  459.      $F - Name of "other port", as used in the M, U, and C commands.
  460.      $G - TO of the current message.
  461.      $H - Hang at end of line (suppress carriage return).
  462.           Use at end of line only. DO NOT USE on lines that go to tnc.
  463.      $I - Users name, from user file.
  464.      $J - Date from current msg header
  465.      $K - Time from current msg header.
  466.      $L - Number of the last message.
  467.      $M - Message number from current msg header.
  468.      $N - Number of active messages.
  469.      $O - Sysops callsign.
  470.      $P - FROM from current msg header.
  471.      $Q - Sysops QTH
  472.      $R - Call in a "connect request:" from either TNC.
  473.      $S - Call of the end node station connected via the slave TNC.
  474.           Seen initially in "*** CONNECTED to:" when the adjacent node
  475.           connects, may be seen in "*** LINKED to:" from the adjacent node.
  476.      $T - The current time.
  477.      $U - User callsign.
  478.      $V - Display the software version.
  479.      $W - Name of the "other user" in GateWay mode. (See $F and $S).
  480.      $X - Date user last logged in.
  481.      $Y - Time user last logged in.
  482.      $Z - Last message number when user last logged in.
  483.      $a - BBS of origination of message.
  484.      $j - Date message was entered at originating BBS.
  485.      $h - Hierarchical forwarding list.
  486.      $k - Time message was entered at originating BBS.
  487.      $m - Message number at originating BBS.
  488.  
  489.                      *************************
  490.                      ***  CONFIG.MB  LINES ***
  491.                      *************************
  492.               *** LOOK at the sample in Appendix B ***
  493.  
  494.  
  495. The first section (to the first *** EOF) is the port configuration info.
  496. Two lines per port.
  497. The first line contains the port definition, the second line the port name.
  498. The port definition line is made of several fields, seperated by spaces:
  499.  
  500. Chapter 2 ------------------ CONFIGURATION FILE ---------------------- Page 2
  501. (Continued)
  502.  
  503. Field 1:
  504.   The first character is the Port ID,
  505.   the second and following characters give information about the port:
  506.  
  507.     B - BBS only may connect.
  508.     C - This port is the local console.
  509.     D - File download allowed from this port.
  510.     E - This port requires echo. (True only for the console.)
  511.     G - GateWay use is allowed to this port.
  512.     I - Kick off user that connects using illegal call.
  513.     L - This port requires LF after CR.
  514.     M - Monitoring is allowed to this port.
  515.     R - Remote sysop allowed on this port (if user marked as sysop).
  516.     S - This is a raw serial port (another system or a terminal).
  517.     T - This port has a TNC with TAPR commands connected.
  518.     U - File upload allowed from this port.
  519.     X - TNC can use transparent mode for connects.
  520.     1 - Echo monitored packets to the console.
  521.     2 - Echo user data and forwarding to the console.
  522.     3 - Echo TNC commands to the console.
  523.  
  524. Field 2: Connect timeout, in seconds.
  525. Field 3: Disconnect timeout, in seconds.
  526. Field 4: Monitor timeout, in seconds.
  527. Field 5: Max lines allowed in monitor.
  528. Field 6: Number of entries retained in J list.
  529. Field 7: Number of digipeaters allowed on connect.
  530. Field 8: Minute of the hour to attempt forwarding.
  531. Field 9: Number of command errors allowed before user kicked off.
  532. Field10: Seconds to wait in forward when a timeout occurs before continuing.
  533.  
  534. The second section (to the second *** EOF) is directory path definitions.
  535.   Three lines per path.
  536.  
  537.   The first line is a single character path ID,
  538.   followed by "D" if downloading is allowed, and "U" if uploading is allowed.
  539.   The second line is the path, with trailing '\'.
  540.   The third line is the name of the path, as shown to the user.
  541.  
  542. The third section (to the third *** EOF) is the "@ BBS" translation list.
  543.   Each line has two fields, the first is the @ BBS as received,
  544.   the second is what to translate it to.
  545.   For example; to remove your own call from the @ BBS field of all messages,
  546.   simply include one line with just your call on it.
  547.  
  548. The fourth section (to the fourth *** EOF) is the "hold calls" list.
  549.   Any message entered TO, FROM, or AT one of these calls will
  550.   be held (not forwarded) until the status is changed to N by the sysop.
  551.  
  552. The fifth section (to the fifth *** EOF) is the login message.
  553.   Keep it short. Maximum is 255 characters.
  554.  
  555. The next line is the "bbs and expert user" prompt. Keep it SHORT!
  556. The next line is the remote sysop prompt. Keep it SHORT!
  557. The next line is the normal MailBox prompt.
  558. The next line is your call.
  559. The next line is your QTH.
  560. The next line is the call of your local WP server. (Place a blank line
  561.                   ( here if you do not wish to generate updates to WP.)
  562.  
  563. Chapter 2 ------------------ CONFIGURATION FILE ---------------------- Page 3
  564. (Continued)
  565.  
  566.  
  567. The next line is the file name to use for the help (H) text.
  568. The next line is the file name to use for the info (I) text.
  569. The next line is the file name to use for the auto-forwarding file.
  570. The next line is the file name to use for the log file for each window.
  571. The next line is the file name to use for the "J" list file for each window.
  572. The next line is the file name to use for the mail file.
  573. The next line is the file name to use for the mail backup file.
  574. The next line is the file name to use for the user file.
  575. The next line is the file name to use for the user backup file.
  576. The next line is the directory to put the message files in.
  577. The next line is the file name to use for the BID file.
  578. The next line is the file to put monitored calls into for each window.
  579. The next line is the file name to use for states.mb
  580.  
  581. The next line is the maximum number of monitored calls to save.
  582. YES xx Where xx is the time to compress the mail file.
  583. YES Using DesqView. NO to NOT give idle time.
  584.  
  585. The next 3 lines control prompting for user information.
  586. YES to prompt user to enter his name.
  587. YES to prompt user to enter his home MailBox.
  588. YES to prompt user to enter his ZIP or postal code.
  589.  
  590. The next five lines control logging. (what goes into LOG.MB).
  591. YES to turn on logging. Only connects/disconnects are logged.
  592. YES to turn on GateWay event logging.
  593. YES to turn on file transfer logging.
  594. YES to turn on message event logging.
  595. YES to turn on logging of local commands.
  596.  
  597. The control character to use to kick user off system.
  598. The control character to use to return from talk.
  599. The control character to use to interrupt and go to talk.
  600. The control character to use to take the MailBox off-line.
  601.  
  602. Prompt before continue at end of page of output.
  603.  
  604. The next line is sent to the console each time a prompt is sent to the user.
  605. The next line is sent to the user when a connect request occurs.
  606.  
  607. The next line is the message to send when
  608. you break into a MailBox session to talk to the user.
  609.  
  610. The next line is the response to the user when he wants to talk to you.
  611.  
  612. The next line is the message to send when
  613. you are not available to talk to the user.
  614.  
  615. The next line is the message to the console when the user wants
  616. to talk to you.
  617. The next section, one line per message, is the GateWay messages:
  618. Message when GateWay not available.
  619. Message going into unproto mode.
  620. Message when attempting a connect.
  621. Message when connect fails.
  622. Message to master tnc when connect succeeds.
  623. Message when connect attempt aborted by user.
  624. Message to send to master when entering monitor mode.
  625.  
  626. Chapter 2 ------------------ CONFIGURATION FILE ---------------------- Page 4
  627. (Continued)
  628.  
  629. The next section, one line per message, is the message and file prompts.
  630. Prompt for title of message.
  631. Prompt for message text.
  632. Message to send at login if user has new mail.
  633. Message list header. Observe columns if you change.
  634. Line to pre-pend to a forwarded message.
  635. Message to send to console when untangle and file empty.
  636. Message to send to console when starting an untangle.
  637. Message to send as each msg deleted with KM.
  638. Prompt to edit TO.
  639. Prompt to edit AT BBS.
  640. Prompt to edit TITLE.
  641. Prompt to edit TYPE.
  642. "This message is not NTS traffic".
  643. Max # of calls in BT "unread mail" list. (Use 1 for no beacon.)
  644. Max # of calls in forwarding "unread mail" list.
  645. YES to enable auto-kill of normal messages after auto-forward.
  646.      (NO leaves the message with status set to 'F').
  647. YES to enable auto-kill of "F" & "B" type messages after auto-forward.
  648. YES to generate a service message on KT.
  649. YES to enable the ET command.
  650. Number of days a bulletin is when it is called old. Follow by YES if auto-kill.
  651. Number of days a NTS message is when it is called old.  ""    ""        ""
  652. Number of days a user message is when it is called old.  ""    ""       ""
  653. Prompt for file text.
  654. Default user name.
  655. Message when compress user file.
  656. Header for list of user records.
  657. Prompt to delete user record.
  658. The next section, one line per message, is the error/status messages:
  659. Reminder to user that he has not entered his name.
  660. Reminder to user that he has not entered his home MailBox.
  661. Reminder to user that he has not entered his ZIP or postal code.
  662.  
  663. Message for I/O error.
  664. Message for "can't find it".
  665. Message for protection violation (tried to read private msg etc.).
  666. Message for "file exists, and you can't erase it".
  667. Message for timout.
  668. Message for "I didn't understand the command you gave".
  669. Message for done (command completed).
  670. Message for "There ain't no such port".
  671. Message for "There ain't no such directory".
  672. Message for "No such file."
  673. Message for "No such message."
  674. Message for "Port is in use."
  675. Password ( 64 characters for remote sysop use )
  676.  
  677. NOTES
  678. -----
  679. FIRST SECTION --  PORT PARAMETERS - a space defines fields.
  680.                    The console must be the last configuration line.
  681. Field 1:
  682.     Any number of characters  can  be used.   Certain  characters  are
  683.     necessary, such as 'T' for tnc ports, 'C' and 'E' for the  console
  684.     port.  'B', 'D', 'U', 'G',  'I', 'L', 'M',  and 'R' are  optional.
  685.     The '1,2,3' are  used for  display purposes, and  control what  is
  686.     echo'd to the screen.   IF  you are using  DESQview, TNC  commands
  687.     should be  turned off  to speed  up the  display, therefore  there
  688.     should be no '3' in the line.
  689.  
  690. Chapter 2 ------------------ CONFIGURATION FILE ---------------------- Page 5
  691. (Field 1 Continued)
  692.  
  693.     The 'R' must be in  the line if the  PORT is to  used by a  remote
  694.     sysop.  Additionally a remote sysop must be designated in the user
  695.     file.   The  'S'  is  used  for  a  serial  port-modem  operation.
  696.     Auto-answer must be set in the  modem, and  the user  signs on  by
  697.     typing '*** Connected to <user call>. (See Chapter 9)
  698.  
  699. Field 2:
  700.     The timeout for the  bbs waiting  for a  response from  a user  or
  701.     another bbs.  It should be  long enough to handle mail  forwarding
  702.     thru net/rom's to receive the  other bbs's prompt after a  message
  703.     is sent.
  704.  
  705. Field 3:
  706.     The timeout to wait after a disconnect has been issued to the  tnc,
  707.     and the bbs going back on-line.
  708.  
  709. Field 4:
  710.     The amount of time to spend in the Gateway while monitoring another
  711.     port.
  712.  
  713. Field 5:
  714.     The maximum amount of lines monitored while in the Gateway.
  715.  
  716. Field 6:
  717.     The number of calls shown in the  'J' lists.(Must be at least 1)
  718.  
  719. Field 7:
  720.     The maximum number of digipeaters that a user can use for  connects
  721.     to the bbs. This only applies for users and not for bbs's & sysop's
  722.     marked in the user file.
  723.  
  724. Field 8:
  725.     The minute of the hour to start forwarding. It is also  the  minute
  726.     that an auto-compress (GM) will take place. This should be slightly
  727.     different between windows for smooth DESQview operation.
  728.  
  729. Field 9:
  730.     The number of errors that a user can make before the bbs disconnects
  731.     him. (i.e. Number of *** WHATS?)
  732.  
  733. Field 10:
  734.     The number of seconds for the bbs to wait when forwarding to a  bbs
  735.     and your disconnected, and then start to forward  to  another  bbs.
  736.     Allows the tnc to dump all of the data that it has loaded into it.
  737.  
  738.  
  739.               *****************************************
  740.               *** ALTERNATE DISPLAY OF TNC COMMANDS ***
  741.               *****************************************
  742.  
  743.     If you leave out the 3 in the port configuration in config.mb, you
  744.     will not see the tnc commands on the  bbs.  What  you will see  is
  745.     the PORT Configuration LETTER (a,b,c) of where the tnc command  is
  746.     going.  If the tnc accepts the command  it will be in upper  case;
  747.     if not it will be  in lower  case.   This is  useful when  running
  748.     multiple copies of  the bbs  under desqview, as it speeds  up  the
  749.     screen display, and makes things work faster.
  750.  
  751. Chapter 2 ----------------- CONFIGURATION FILE ----------------------- Page 6
  752. (Continued)
  753.  
  754.  
  755. THE THIRD SECTION --  @BBS TRANSLATION LIST
  756.  
  757.     The @ bbs translation list a list of calls to be translated by the
  758.     bbs whenever a message is entered.  This will happen if a user  is
  759.     entering a message or you are being forwarded a message by another
  760.     bbs.
  761.  
  762.     K3RLI            ---> K3RLI is changed to spaces.
  763.     PAWEST  NEPBBS   ---> PAWEST is changed to NEPBBS.
  764.     RT2N    NEPBBS   ---> RT2N is changed to NEPBBS.
  765.     ALLPA   NEPBBS   ---> ALLPA is changed to NEPBBS.
  766.     K3AAA   AG3F     ---> K3AAA is changed to AG3F.
  767.     98*     AG3F     ---> Zip 98xxx is changed to AG3F.
  768.     *** EOF
  769.  
  770.  
  771.     You can make the list as long as  you want, and include wild  card
  772.     matching.  What happens  is that  the @BBS field  is changed  from
  773.     whatever is in the first field to whatever is in the second field.
  774.     This  can  be  helpful  in  redirecting  certain  bulletins  to  a
  775.     distribution list.  In the example above, PAWEST, RT2N, and  ALLPA
  776.     are all changed to  NEPBBS when  the message is  received, and  if
  777.     NEPBBS was a distribution list,  then ALL PAWEST, RT2N, and  ALLPA
  778.     would follow that distribution.
  779.  
  780.     By having your call changed to spaces will allow the bbs to  strip
  781.     off your call  in  the  @BBS  field  and  then  have  the  message
  782.     forwarded to the TO field if it is in your forward file.
  783.  
  784.  
  785. THE FOURTH SECTION -- HOLD CALLS LIST
  786.  
  787.     This section is  a list  of calls  or  just the  word hold.    Any
  788.     message entered on the bbs with one of these calls will be  marked
  789.     with a status of 'H'.   Sysop intervention  is necessary to  clear
  790.     this message  with the  edit  message command  to remove  the  'H'
  791.     status.
  792.  
  793. Chapter 3 ------------------ FORWARD FILE ---------------------------- Page 1
  794.  
  795.  
  796.      Automatic forwarding of messages to other MailBox systems.
  797.  
  798.     The file  FWD.MB contains  information that  drives the  automatic
  799.     forwarding of messages.  If the file does not exist, no forwarding
  800.     is done.
  801.     The file contains several kinds of information:
  802.  
  803.     1) Command scripts.
  804.  
  805.     Command scripts are supported through C, S, and R items.
  806.     The command script precedes the F or G list that uses it.
  807.  
  808.     A C item gives the connect string to send to the local TNC:
  809.     CC W6AMT
  810.  
  811.     An S item is a line to send:
  812.     SC W6AMT-3
  813.  
  814.     An R item is a match for a partial expected response:
  815.     RW6AMT} Connected to W6AMT-3 ---> It can be whole line or
  816.     RConn                        ---> a partial response.
  817.  
  818.     In the case that ANY response is valid use:
  819.     R!
  820.  
  821.     There can only be one C item in a script, but may be as many R and
  822.     S items as are required.  As an  example, the script for W0RLI  in
  823.     Santa Cruz using NET/ROM to connect  with KA6IQA in San Diego  is:
  824.  
  825.     CC W6AMT                       (This connects me to the local PAD)
  826.     SC W6AMT-3                     (Connects to the PAD closest to KA6IQA)
  827.     RConn                          (Expected partial PAD response)
  828.     SC W6AMT-4                     (Connects to next PAD)
  829.     RConn                          (Expected partial PAD response)
  830.     SC KA6IQA                      (This connects me to KA6IQA)
  831.     RConn                          (Expected partial PAD response)
  832.     GF0023C KA6IQA                 (Forward mail to KA6IQA from 00 to 23)
  833.     KA6IQA                         (The usual forwarding list)
  834.     K6AMT
  835.     W6ICU
  836.     *** EOF                        (End of list marker, MUST be all CAPS)
  837.  
  838.     2) Routing lists.
  839.  
  840.     E, F, G, and H lists  are lists  of stations for  whom you  should
  841.     forward mail.  They  are grouped  by the  call of  the MailBox  to
  842.     which the messages  will be  forwarded.   Each list  has a  header
  843.     line, any number of callsigns or sublists, and the list terminator
  844.     ("*** EOF").
  845.     A "G" list is used to do conventional forwarding.  All BBS systems
  846.     will respond correctly if you use a "G" list.  An "F" list is used
  847.     when the system you will connect  to supports reverse  forwarding.
  848.     If you do not wish to use reverse forwarding simply always use "G"
  849.     An "H" list acts the same as an "F" list.  except that the connect
  850.     and probe for reverse  forwarding will  occur even if  you do  not
  851.     have any messages to forward.  A  "E" list acts  like a "G"  list,
  852.     except the forwarding  is not  done, the  list is  only used  when
  853.     someone requests reverse forwarding.
  854.  
  855. Chapter 3 ------------------ FORWARD FILE ---------------------------- Page 2
  856. (Continued)
  857.  
  858.     The header of each list looks like:
  859.     Columns     Data
  860.     1         "E", "F", "G", or "H"
  861.     2         Port identifier. "A" = COM1, "B" = COM2, etc.
  862.     3-4       Hour to activate forwarding to this station.
  863.     5-6       Hour to de-activate forwading to this station.
  864.     7-end     Callsign of the MailBox to forward to.
  865.  
  866.     Forwarding will  occur  at  the  minute  given  for  the  port  in
  867.     CONFIG.MB, on those hours given in FWD.MB.
  868.  
  869.     3) TNC paramter changes.
  870.     "P" lists are commands to be sent to the TNC.  The character after
  871.     the P is which port ("A" for COM1, etc.).  The list is  terminated
  872.     with "*** EOF".  One of these lists might preceed each "G" list to
  873.     set the TNC parameters to be used for the forward attempt.   There
  874.     should be a "P" list at the end  of the FWD.MB  file to reset  TNC
  875.     parameters back to default.   Example follows:
  876.  
  877.     PA0004
  878.     retry 3
  879.     frack 7
  880.     *** EOF
  881.     PA0523
  882.     retry 5
  883.     frack 9
  884.     *** EOF
  885.  
  886.     4) DOS commands.
  887.     A "!" list is a list of DOS commands.   It acts  very much like  a
  888.     .BAT file.  The second character of the list header must be a port
  889.     that exists or the commands  are not  executed.  This  is done  so
  890.     that a single FWD.MB may be used by several copies of the  MailBox
  891.     running under DESQview.  The  commands  will only  be executed  by
  892.     the copy that owns the port.   The  time window is  honored.   All
  893.     files used by the  MailBox are "cleaned"  before the DOS  commands
  894.     are executed.   Be  very  careful  what  commands  you  use  here;
  895.     anything that might CHANGE one  of the files  used by the  MailBox
  896.     will cause TROUBLE! You must also  run the MailBox in a  partition
  897.     large enough to allow for COMMAND.COM (25k) plus whatever commands
  898.     you run.   This feature  is  useful, for  example, to  backup  the
  899.     MailBox files from RAM disk to hard disk or floppy once each hour.
  900.  
  901.     EXAMPLE:   !A0023  -----------------> Do dos shell command 00-23
  902.                COPY \MB\BBS\FWD.MB A: --> Dos Command Line
  903.                *** EOF -----------------> EOF line
  904.  
  905.                Copies FWD.MB to the A drive every forward.
  906.  
  907.     5) Bulletin distribution lists.
  908.     If a  message  has  a destination  MailBox  specified,  then  that
  909.     designator may also be used  as the name  of a distribution  list.
  910.     When the message is entered, the messages directory path (normally
  911.     \mb\msgs\) is checked  for  a  file  with the  same  name  as  the
  912.     designator and an extension of .DIS.   If the file is found,  then
  913.     the messge will be forwarded too ALL the destinations found in the
  914.     file.  One destination   per  line.    16  destinations   maximum.
  915.     As an  example,  for  my  local  sub-net  distribution  I  have  a
  916.     designator NCNET (Northern California Net),  and a file  NCNET.DIS
  917.     containing:
  918.  
  919. Chapter 3 ------------------ FORWARD FILE ---------------------------- Page 3
  920. NCNET.DIS (Continued)
  921.                       KB6IRS
  922.                       N6IYA
  923.                       N6IIU
  924.     A message sent as:  SB ALL @ NCNET
  925.     Will be forwarded to all three of the stations in the NCNET.DIS file.
  926.  
  927.     The message is not forwarded in any special order, if a station is
  928.     busy  then   the  MailBox   will   try  again   the   next   hour.
  929.  
  930.     An "L ;" listing of a message  with a distribution list shows  the
  931.     status of forwarding to each station on a second "cc:" line.   The
  932.     calls to which the message have been sent have an asterisk  before
  933.     them.
  934.  
  935.     6) Wildcards.
  936.     When the designator in FWD.MB is compared to the TO or @ BBS call,
  937.     the characters  "?" and  "*" appearing  in the  designator act  as
  938.     wildcards.  "?" will  match   any  character.    "*"  causes   the
  939.     remaining characters to match.
  940.     FOR EXAMPLE: Using ZIP code  routing, to route all South  Carolina
  941.     NTS traffic to wa4szk, you would put "NTS4*" or "4*".  Any message
  942.     sent to a destination starting with  "NTS4" or "4" would route  to
  943.     wa4szk.  wa4szk  could  then continue  the  routing  breakdown  by
  944.     forwarding "NTS41*" or "41*" to one station, "NTS42*" or "42*"  to
  945.     another, etc.
  946.  
  947.     7) Sublists.
  948.  
  949.     At any place in the FWD.MB file you can refer to another file.  In
  950.     effect what  happens  is that  the  contents of  the  sublist  are
  951.     treated exactly as if they were in the FWD.MB file.  This  feature
  952.     is very useful when you  have several alternate  paths to a  given
  953.     location.  FWD.MB need  only contain the  connect information  for
  954.     the different paths.  You can refer to a single file that contains
  955.     the list of  calls for  forward.   A sublist  is given  by a  line
  956.     starting with "@".  The rest of the line is the device, path,  and
  957.     file name of the sublist.
  958.  
  959.     Example:
  960.  
  961.                        GC0023C N4CHV
  962.                        N4CHV
  963.                        N7FSP
  964.                        @C:\MB\BBS\HF111.FWD
  965.                        @C:\MB\BBS\SILICON.FWD
  966.                        *** EOF
  967.                        GD0023C W6AMT
  968.                        @C:\MB\BBS\SILICON.FWD
  969.                        *** EOF
  970.  
  971.      Sublists can now use a time window just  like  a  routing  list.
  972.  
  973.      EXAMPLE:  @ 0221C:\MB\BBS\SPECIAL.FWD
  974.  
  975.      The space after the '@' specifys that this is a  timed  sublist.
  976.      The 0221 is the start and end of the time window. So SPECIAL.FWD
  977.      ( in this example ) will only be checked from 02 to 21  for  any
  978.      calls. At any other time this file will be bypassed.
  979.  
  980. Chapter 3 ------------------ FORWARD FILE ---------------------------- Page 4
  981. FWD.MB (Continued)
  982.  
  983.      The following is an example of a few lines of the  FORWARD file:
  984.  
  985.      (Forward to K1BC every hour)
  986.      GA0023C K1BC VIA KD2S-1 <Function, port ID, Time, MailBox, path>
  987.      W1XR    <Call of station whose mail should be forwarded>
  988.      N1AWX
  989.      K1BC
  990.      *** EOF          <Marks the end of list>
  991.      PB1023        <Set TNC params for next connection>
  992.      FRACK 6
  993.      MAXFRAME 2
  994.      *** EOF
  995.  
  996.      (Forward to K7PYK only from 1200 to 0259 GMT)
  997.      GB1202C K7PYK     <The next MailBox to forward to>
  998.      K7PYK
  999.      W7KB
  1000.      *** EOF
  1001.      PB1023              <Set TNC params back to normal>
  1002.      FRACK 4
  1003.      MAXFRAME 4
  1004.      *** EOF
  1005.  
  1006.     There is no limit to the number of lists or the number of calls in
  1007.     each list.  Your MailBox will do  the connect and send the  messge
  1008.     onward.  It will  either delete  it  or mark  it with  'F'  status
  1009.     depending on the setting of the YES/NO (Kill on forward) flags  in
  1010.     CONFIG.MB.  Auto forwarding is attempted each  hour at the  minute
  1011.     specified in  CONFIG.MB,  or  when  you use  the  "X"  menu  item.
  1012.  
  1013.     The special  call "*"  (a  single *)  can  be used  to  force  the
  1014.     forwarding of all mail not  addressed to the  system owner.   This
  1015.     could be used by someone who would like to run this software,  but
  1016.     would not like to maintain an active MailBox.  They would get  all
  1017.     their own mail locally, but  any mail deposited onto their  system
  1018.     would be automatically forwarded.
  1019.  
  1020.     The forwarding of messages counts on  the remote MailBox  behaving
  1021.     correctly.  It must have a menu with  '>' at the  end of the  last
  1022.     line.  The command  for sending  messages must have  the form  "Sx
  1023.     call".  It  must prompt  for message  title, and  then prompt  for
  1024.     message text.  Message text is terminated by ^Z.
  1025.  
  1026.  
  1027.  
  1028.                        *** TRANSPARENT MODE ***
  1029.  
  1030.     You can now use transparent mode for all connects and  for  reverse
  1031.     forwarding. This will do two things.First it will stop the inbedded
  1032.     *** CONNECT REQUESTS from appearing in messages on your bbs. Second
  1033.     you will now be able to setup your tnc parameters so that users can
  1034.     get information off the bbs faster. Like setting MAXFRAME = 4,  and
  1035.     PACLEN = 128, will allow the tnc to send out 512 bytes  at  a  time
  1036.     when a user is using the bbs.
  1037.     Regular forwarding will still take place in converse mode.  If  you
  1038.     want to block forward, then you can setup 'P' type commands in  the
  1039.     forward file.
  1040.  
  1041. Chapter 3 ------------------- FORWARD FILE -------------------------- Page 5
  1042. Transparent mode (Continued)
  1043.  
  1044.     Set things up at the beginning of the forward file.
  1045.  
  1046.          PA0024    Out to the A tnc.
  1047.          MAX 2     Maxframe of 2.
  1048.          FRAC 6    Frack of 6.
  1049.          CP ON     {               }
  1050.          CR OFF    { block forward }
  1051.          SE $10    {               }
  1052.  
  1053.     Then restore things back to normal  at the end of the forward file.
  1054.  
  1055.          PA0024    Out the A tnc.
  1056.          MAX 4     Maxframe back to 4
  1057.          FRAC 4    Frack back to 4
  1058.          CP OFF
  1059.          CR ON
  1060.          SE $0D
  1061.  
  1062.     It is important that you use the BRBIOS with transparent  mode.  It
  1063.     incorporates the send break command for the tnc. Also  important is
  1064.     that you have the DCD line (pin 8 ) connected between the  tnc  and
  1065.     the comm port. The TNC must change this line when it gets connected.
  1066.     Otherwise, you will lock up the bbs. Note: TNC1's must be  modified
  1067.     for the DCD line. MBBIOS should also work.
  1068.  
  1069.                        *** FORWARD FILE ***
  1070.  
  1071.     If using multiple windows, you can use different Forward files with
  1072.     each window, or you can use one master forward  file.  If  you  are
  1073.     using different forward files for each window, you must  name  them
  1074.     differently in each config. (Example - FWD.A, FWD.B, ect) Otherwise
  1075.     FWD.MB can be used for all windows and all config's.
  1076.  
  1077.     The forward minute should also be  different  between  windows  for
  1078.     best operation. A one or two minute  difference  between  ports  in
  1079.     different windows works out nicely, and allows the display  to  run
  1080.     smoothly.
  1081.  
  1082. Chapter 3.1 ----------- HIERARCHICAL FORWARDING ---------------------- Page 1
  1083.  
  1084.  
  1085.                        HIERARCHICAL FOWARDING
  1086.  
  1087.     Version 6.0  of  the code  now  supports  hierarchical  fowarding.
  1088.     Hierarchical fowarding was introduced to  the packet bbs  networks
  1089.     in the RLI code and in the recently distributed  4RE program.  The
  1090.     method used by the CBBS should be compatable with these programs.
  1091.     
  1092.     Hierarchical fowarding is a method by which the @ bbs field of the
  1093.     message address  may contain  information beyond  the 6  character
  1094.     call sign or route designation that is  now commonly used.  The  @
  1095.     bbs field may  be expanded  to 64  characters containing  numerous
  1096.     fields separated  by   periods.     A  typical   field  might   be
  1097.     AG3F.PA.USA.NA indicating  station AG3F  is located  in state  PA,
  1098.     country USA  and  continent   NA  (North  America).     The   only
  1099.     limitations to  this is  that  the 64  character total  cannot  be
  1100.     exceeded and the section of  the field prior  to the first  period
  1101.     must not  exceed  6 characters  in  order to  be  compatable  with
  1102.     existing bbs's.
  1103.  
  1104.     The actual convention for naming the  sub fields (hierarchies)  in
  1105.     the @ bbs  field has  not  been firmly  established but  N6VV  has
  1106.     proposed a  system of  hierarchies  which has  been adopted  as  a
  1107.     pseudo standard by many stations. This we attach for information.
  1108.     
  1109.     In the method chosen to implement hierarchical fowarding, the CBBS
  1110.     is able to receive extended @ bbs  fields from a  local user or  a
  1111.     fowarding bbs  by the  addition of  the extra  information to  the
  1112.     S(end) line.  A typical line could  be  SP AG3F @ AG3F.PA.USA.NA <
  1113.     K3RLI $1234_BID  which  will be recognized  as "standard"  in  all
  1114.     respects except for the field following the @.  It should be noted
  1115.     that the normal @ field is still  acceptable since it is a  subset
  1116.     of the larger field.
  1117.  
  1118.     During the fowarding process the 6.0 bbs will transmit the full  @
  1119.     field only to stations that request it.  This request must come in
  1120.     the form of a sid that contains  the letter H  in the last  field.
  1121.     The CBBS requests this by transmitting [CBBS-6.0-H$].  The RLI and
  1122.     4RE programs do similiar with their  sid's.  Stations that do  not
  1123.     have the H in their sid will receive  the truncated form of the  @
  1124.     field containing only the normal 6 character call field.
  1125.  
  1126.     The foward  file still  retains its  original format  but now  can
  1127.     contain entries that match the  various sub fields in the  routing
  1128.     lists to fully utilize the hierarchical feature.   In the  example
  1129.     above if we were to route  that message normally, AG3F would  have
  1130.     to appear in a routing section.  Now AG3F or  PA or USA or NA  can
  1131.     be inserted in to the lists and  the bbs will  now match these  to
  1132.     those contained in  the  message and  foward  accordingly.    This
  1133.     permits rather long lists of calls  to be replaced with a  general
  1134.     hierarchial designator in the foward file.   Additionally, a  user
  1135.     can assist the bbs sysop by appending the state designator to  the
  1136.     bbs field.  This would assure fowarding in particular in the  case
  1137.     of a new bbs not present in  the user  file.  @  W6XYZ.CA will  be
  1138.     fowarded but @ W6XYZ may or may not depending upon if W6XYZ was in
  1139.     the foward file.  If multiple  matches are possible in the  foward
  1140.     file, the first one found is used.   This means generally that  if
  1141.     the call is found it is used followed by the state, country, etc.
  1142.  
  1143. Chapter 3.1 ------------ HIERARCHICAL FORWARDING --------------------- Page 2
  1144. (Hierarchical Forwarding)
  1145.  
  1146.  
  1147.     An example of a routing list might be:
  1148.  
  1149.           FA0023C K3RLI V K3RLI-2
  1150.           K3RLI
  1151.           WA3EBG
  1152.           KB3UD
  1153.           AK3P
  1154.           188*
  1155.           187*
  1156.           PA   <- State Designator - Pennsylvania
  1157.           MD   <-  "     "
  1158.           WV   <-  "     "
  1159.           NJ   <-  "     "
  1160.           CAN  <- Country Designator - Canada
  1161.           SA   <- Continental Designator - South America
  1162.           NTSDE
  1163.           NTSMD
  1164.           NTSNY
  1165.           NTSVA
  1166.           *** EOF
  1167.  
  1168.     Note sections of the  hierarchical list are  inserted only,  never
  1169.     anything containing a period. PA.USA is not acceptable!
  1170.  
  1171.     This fowarding method will only  become a very valuable tool  when
  1172.     more stations employ the  software that utilizes  it and when  the
  1173.     system users, the originators of the messages, start to insert the
  1174.     hierarchical information.  Now, any bbs not utilizing this  system
  1175.     breaks the chain and the hierarchial data is lost.  Hopefully  all
  1176.     of the software writers will  incorporate this into their code  in
  1177.     the near furure.  For now it can assist in the routing of  locally
  1178.     originated traffic.
  1179.  
  1180.  
  1181.  
  1182.    = Suggested abbreviations for use with hierarcical routing bbs lists =
  1183.  
  1184.  
  1185.  
  1186.                     ** Continental Abreviations **
  1187.  
  1188.  
  1189.         AF - Africa         AS - Asia            AU - Australia
  1190.         EU - Europe         NA - North America   SA - South America
  1191.  
  1192.  
  1193.  
  1194.                     **   Country Abreviations   **
  1195.  
  1196.  
  1197.      Argentina                ARG      Japan                     JPN
  1198.      Australia                AUS      Korea,North               PRK
  1199.      Austria                  AUT      Korea,South               KOR
  1200.      Belgium                  BEL      Liberia                   LIB
  1201.      Bermuda                  BMU      Liechtenstein             LIE
  1202.      Bolivia                  BOL      Luxembourg                LUX
  1203.  
  1204. Chapter 3.1 -------------- HIERARCHICAL FORWARDING ------------------- Page 3
  1205.  
  1206.  
  1207.                    **  Country Abreviations  ** (Continued)
  1208.  
  1209.      Brazil                   BRA      Malaysia                  MYS
  1210.      Brunei                   BRN      Mexico                    MEX
  1211.      Bulgaria                 BGR      Monaco                    MCO
  1212.      Canada                   CAN      Morocco                   MAR
  1213.      Chile                    CHL      Netherlands               NLD
  1214.      China                    CHN      New Zealand               NZL
  1215.      Colombia                 COL      Nicaragua                 NIC
  1216.      Costa Rica               CRI      Norway                    NOR
  1217.      Cuba                     CUB      Pakistan                  PAK
  1218.      Denmark                  DNK      Panama                    PAN
  1219.      Dominican Republic       DOM      Paraguay                  PRY
  1220.      Ecuador                  ECU      Peru                      PER
  1221.      Egypt                    EGY      Phillipines               PHL
  1222.      El Salvador              SLV      Poland                    POL
  1223.      Finland                  FIN      Portugal                  PRT
  1224.      France                   FRA      Romania                   ROM
  1225.      French Polynesia         PYF      Saudi Arabia              SAU
  1226.      German Demo. Rep.        DDR      Singapore                 SGP
  1227.      Germany, Federal Rep.    DEU      South Africa              ZAF
  1228.      Greece                   GRC      Spain                     ESP
  1229.      Greenland                GRL      Sweden                    SWE
  1230.      Guatemala                GTM      Switzerland               CHE
  1231.      Haiti                    HTI      Syria                     SYR
  1232.      Honduras                 HND      Taiwan                    TWN
  1233.      Hong Kong                HKG      Thailand                  THA
  1234.      Hungary                  HUN      Turkey                    TUR
  1235.      Iceland                  ISL      United Kingdom            GBR
  1236.      India                    IND      United States             USA
  1237.      Indonesia                IDN      Uruguay                   URY
  1238.      Ireland                  IRL      USSR                      SUN
  1239.      Israel                   ISR      Venezuela                 VEN
  1240.      Italy                    ITA      Yugoslavia                YUG
  1241.  
  1242.  
  1243.            **  State and Canadian province abreviations  **
  1244.  
  1245.     AL - Alabama      AK - Alaska      AZ - Arizona       AR - Arkansas
  1246.     CA - California   CO - Colorado    CT - Connecticut   DE - Delaware
  1247.     DC - District of Columbia          FL - Florida       GA - Georgia
  1248.     GU - Guam         HI - Hawaii      ID - Idaho         IL - Illinois
  1249.     IN - Indiana      IA - Iowa        KS - Kansas        KY - Kentucky
  1250.     LA - Louisiana    ME - Maine       MD - Maryland      MA - Massachusetts
  1251.     MI - Michigan     MN - Minnesota   MS - Mississippi   MO - Missouri
  1252.     MT - Montana      NE - Nebraska    NV - Nevada        NH - New Hampshire
  1253.     NJ - New Jersey   NM - New Mexico  NY - New York      NC - N. Carolina
  1254.     ND - N. Dakota    OH - Ohio        OK - Oklahoma      OR - Oregon
  1255.     PA - Pennsylvania PR - Puerto Rico RI - Rhode Island  SC - S. Carolina
  1256.     SD - S. Dakota    TN - Tennessee   TX - Texas         UT - Utah
  1257.     VT - Vermont      VA - Virginia    VI - Virgin Island WA - Washington
  1258.     WV - W. Virginia  WI - Wisconsin   WY - Wyoming       AB - Alberta
  1259.     BC - British Col. MB - Manitoba    NB - New Brunswick NF - Newfoundland
  1260.     NT - NW Territory NS - Nova Scotia ON - Ontario       PE - Prince Edward
  1261.     PQ - Quebec       SK - Saskatchewan                   YT - Yukon Territ.
  1262.  
  1263.     Examples:    VE3YZX.ON.CAN.NA    AG3F.PA.USA.NA
  1264.                  EL8C.LIB.AF
  1265.  
  1266. Chapter 3.2 ---------------- USING STATES.MB ------------------------- Page 4
  1267.  
  1268.                      *** USING STATES.MB ***
  1269.  
  1270.  
  1271.     STATES,MB is  a file  with the  hierarchical routes  for most  USA
  1272.     bbs's.  It is made by using one of the lists distributed by W9ZRX,
  1273.     and running STATES.EXE.  If it is not on the disk,  the  bbs  will
  1274.     disregard adding any hierarchical routes, and continue normally.
  1275.  
  1276.     STATES.EXE can be run by itself  or with the  use of command  line
  1277.     arguments.  Running it  by  itself requires  that W9ZRX's  file  -
  1278.     LUSA0489.SRT be the file on the disk for  the source.  Or you  can
  1279.     use any other file name as a command line argument, such as:
  1280.  
  1281.     [ STATES SUSA0489.LST ] <- will use SUSA0489.LST as the input file.
  1282.  
  1283.     Syntax:  STATES [Input File] [Country Code] [Continental Code]
  1284.  
  1285.     Example of LUSA0489.SRT:
  1286.  
  1287. KL7AA-7   ANCHORAGE          AK 99510  B  145.01                      [O   ]
  1288. KL7GNG    FAIRBANKS          AK 99710  A  145.01                      [O   ]
  1289. KL7GNG    FAIRBANKS          AK 99710  A  10.146 14.109               [OC  ]
  1290. KL7HFI    JUNEAU             AK 99821  B  145.01                      [O   ]
  1291. KL7HFI    JUNEAU             AK 99821  B  14.109                      [C   ]
  1292.  
  1293.     Example of STATES.MB:
  1294.  
  1295.      KL7AA.AK.USA.NA
  1296.      KL7GNG.AK.USA.NA
  1297.      KL7HFI.AK.USA.NA
  1298.      KA4ZXL.AL.USA.NA
  1299.      WB4GNA.AL.USA.NA
  1300.      W4CUE.AL.USA.NA
  1301.  
  1302.     Here is an example of what is done here.  I take the  SUSA0489.LST
  1303.     file and sort it by call number. SORT is a dos file.
  1304.     [ TYPE SUSA0489.LST | SORT /+3 > TEMP.FIL ]  This makes  the  file
  1305.     TEMP.FIL with a sorted list. Then run [ STATES TEMP.FIL]. You will
  1306.     end up with a sorted STATES.MB, and it will be easy to edit,   and
  1307.     add hierarchical routes to.
  1308.  
  1309.     You can edit STATES.MB  to include  any route  you want  to.   For
  1310.     foreign calls you might add something like this:
  1311.  
  1312.      G3XXX.GBR.EU  or I5SGG.ITA.EU
  1313.  
  1314.     You  can  also edit in local designators  to  aid  in  your  local
  1315.     forwarding:
  1316.  
  1317.      KB3X.#WPA.PA.USA.NA  <-- The #WPA being a special designator
  1318.  
  1319.     Now all you have to do is make up a new forward file with the  use
  1320.     of the different designators.   No  longer will you  have to  keep
  1321.     callsigns of bbs's in the forward file lists.  State codes  should
  1322.     handle most of the forward matches, and you can add any new  bbs's
  1323.     to STATES.MB as they become known.  As new lists become  available
  1324.     from W9ZRX,  you can  update your  list  or just  use a  new  one.
  1325.     You can also use Canadian or foreign lists if they are available.
  1326.  
  1327. Chapter 3.2 ------------- USING STATES.MB ---------------------------- Page 2
  1328.  
  1329.                     *** WILD-CARD USAGE ***
  1330.  
  1331.     Wild cards are allowed in the STATES.MB  file.  Just be sure  that
  1332.     your wild cards match proper routes.  The following is an  example
  1333.     of wild cards in STATES.MB.
  1334.  
  1335.        4X4IP.MD.USA.NA
  1336.        4X*.ISR.EU
  1337.  
  1338.     The 4X4IP is a bbs located in Maryland, but any other 4X call will
  1339.     have the .ISR.EU route attached to  it.  Just  make sure that  ALL
  1340.     exceptions are listed first, and the  wild card match last.   This
  1341.     will work for all KNOWN routes to any bbs's.  This should help  to
  1342.     keep STATES.MB at a miminum size.
  1343.  
  1344.  
  1345. Chapter 4 ------------------ COMMANDS -------------------------------- Page 1
  1346.  
  1347.  
  1348. *******************************
  1349. *** @ REMOTE SYSOP Password ***
  1350. *******************************
  1351.  
  1352.   SYSOP only Command:
  1353.  
  1354.     The last  line  of  the  config.mb  must  contain  a  line  of  64
  1355.     characters.  This can be a  sentence or just 64 ascii  characters.
  1356.     Upper or lower case  can be  used and is  considered as  different
  1357.     characters.
  1358.     EXAMPLE:
  1359.  
  1360.     NowisthetimeFORallgoodpacketeerstocometotheaidoftheirparty.T
  1361.  
  1362.     When a remote sysop sends a "@" to the bbs the bbs will prompt the
  1363.     remote sysop with 4 numbers..  The four numbers will correspond to
  1364.     the positions of the characters in the key.  The remote sysop will
  1365.     then reply with the 4  characters that correspond to the  relative
  1366.     positions in the key.
  1367.     EXAMPLE:
  1368.  
  1369.     BBS --- 4 16 23 64
  1370.  
  1371.     Remote Sysop enters: iapT  and hits <cr>.
  1372.  
  1373.     He will then be allowed entry as a remote sysop..
  1374.  
  1375. *********************
  1376. *** ! DOS Command ***
  1377. *********************
  1378.  
  1379.   SYSOP only Command:
  1380.  
  1381.     This ! command allows the use of the dos shell.  You can do almost
  1382.     any dos command, as long as you  don't disturb any of the  mailbox
  1383.     dat files.
  1384.  
  1385.   SYNTAX - ! COPY A:TEXT.TXT C:\MB\PACKET
  1386.  
  1387.            Copies the file text.txt from the A drive to the C drive in
  1388.            the subdirectory packet.
  1389.  
  1390.     This command can also be used in  the FWD file  to do Batch  files
  1391.     during a forward.
  1392.  
  1393. *****************
  1394. *** A Command ***
  1395. *****************
  1396.  
  1397.   SYSOP only Command:
  1398.  
  1399.     A  - Does an autoforward on all windows.
  1400.     AI - Does an autoforward on all windows ignoring the time.
  1401.  
  1402. *****************
  1403. *** B Command ***
  1404. *****************
  1405.  
  1406.              B <cr> -  Logs off the mailbox.
  1407.                        For a user, disconnecting does the same thing.
  1408.  
  1409. Chapter 4 ------------------ COMMANDS -------------------------------- Page 2
  1410.  
  1411.  
  1412.  
  1413. *****************
  1414. *** C Command ***
  1415. *****************
  1416.  
  1417.              C CALL  - Connects to user from path and port in the user file.
  1418.              Cp CALL - Connects to call using port p. Digipeater routing may
  1419.                        also be given.
  1420.  
  1421.                        EXAMPLES:  CA K3QFW V AK3P-5
  1422.                                   C AG3F
  1423.    SYSOP only Commands:
  1424.  
  1425.              CM CALL #### [@ BBS] [< CALL] - Copies message #### and makes
  1426.                                              new message addressed to CALL.
  1427.              C YYMMDD HHMM  -  Sets the clock.
  1428.  
  1429. *****************
  1430. *** D Command ***
  1431. *****************
  1432.  
  1433.    USER only Command:
  1434.  
  1435.              Dd Filename - Download a file from the mailbox.
  1436.                            'd' is the directory identifier.
  1437.  
  1438.    SYSOP only Commands:
  1439.  
  1440.              D C:\path\Filename - Downloads filename in drive C, with
  1441.                                   path to the console with pageing.
  1442.              DA C:\path\Filename - Downloads filename out the A port to
  1443.                                    the tnc. Continues till eof of file.
  1444.              DU - Lists all users.
  1445.              DM - Lists all users marked as bbs's.
  1446.              DS - Lists all sysops.
  1447.              DL - Lists all local users.
  1448.              DX - Lists all excluded users.
  1449.                   For the above commands if a filename is added as an
  1450.                   argument the list will be put into a ascii text file.
  1451.  
  1452.     DW Command - creates a WP message if any new users use the bbs.
  1453.                  Used by sysop when the bbs does not make up a message.
  1454.                  For this command to work, you must have a WP server
  1455.                  call in your config.
  1456.     SYNTAX - DW
  1457.              DW A - creats a WP message with all users.
  1458.  
  1459. *** White Pages ***
  1460.  
  1461.     As users check into your bbs, they will be automatically asked for
  1462.     their name and home bbs.  When  the user file  was updated to  the
  1463.     latest version on first starting the bbs, A new field was  created
  1464.     to note when a user  puts in his name  and home bbs.   It is  this
  1465.     field that will create a white  paper message to  whatever bbs  is
  1466.     keeping track of  calls and  homebbs's.   Here  is how  it  works.
  1467.     First in the config.mb there is a line for the WHITE PAGES  SERVER
  1468.     CALL.  If you leave this line  blank, no white paper message  will
  1469.     be generated.   This  line  is  located  under  your  QTH  in  the
  1470.     config.mb.
  1471.  
  1472. Chapter 4 ------------------- COMMANDS ------------------------------- Page 3
  1473. (White Pages Continued)
  1474.  
  1475.     If you put a bbs on this line, he will receive a message every  so
  1476.     often addressed to WP, from your bbs, @ WP Server Call, TITLE: "WP
  1477.     Update".  In the message text will be  a list of the latest  users
  1478.     using the bbs  for the  first time,  or updateing  their name  and
  1479.     homebbs.  So a central bbs or user can  now keep track of all  the
  1480.     users with their home  bbs's  for a  given  area.   Sort  of  like
  1481.     keeping a white pages telephone book with calls of packeteers  and
  1482.     their home bbs. Zip codes are now added.
  1483.  
  1484.  
  1485. *****************
  1486. *** E Command ***
  1487. *****************
  1488.  
  1489.     SYNTAX - ET <message number> - USED by ALL
  1490.  
  1491.     The ET command allows users to  edit Traffic messages on the  bbs.
  1492.     A  Traffic  message  is defined  as having  a TYPE of  "T" or  the
  1493.     letters "NTSxxx" in the TO field of a  message.  Any user can  use
  1494.     the ET command.  Probably it would be a good idea to let your  NTS
  1495.     users know of this feature, so that they could track your NTS type
  1496.     messages.
  1497.  
  1498.     EXAMPLE: Message 8873 is a Traffic message.
  1499.  
  1500.      ET 8873  <- Entered by user or sysop.
  1501.         BBS response:New TO or (cr) to retain:
  1502.      User responds with a new call or <cr>
  1503.         BBS response:New @ BBS or (cr) to retain:
  1504.      User responds with a new @ BBS or <cr>
  1505.         BBS response:New TITLE or  (cr) to retain:
  1506.      User responds with new title or <cr>
  1507.         BBS response:New TYPE or (cr) to retain:
  1508.      User responds with new type or (cr) to retain
  1509.         BBS will now respond with the edited message header.
  1510.  
  1511.     If you enter a message  number that wasn't  a traffic message  the
  1512.     bbs will respond with a  message: ***  Sorry, this is  not an  NTS
  1513.     traffic message.  If you change the type of message from a "T"  to
  1514.     something else, The message header  will be changed, and since  it
  1515.     will not fit the qualifiers of an  NTS message, you won't be  able
  1516.     to change it back!
  1517.  
  1518.    SYSOP only Commands:
  1519.  
  1520.     E #### - Edit message ####. This command looks for the message, and then
  1521.              displays the header from that message. Next comes the input
  1522.              prompt: t(Y)pe, (S)tatus, (T)o, (F)rom, (B)bs, t(I)tle, bi(D)
  1523.              To change:   The TYPE field ---- Y <type> <cr>
  1524.                           The STATUS field -- S <status> <cr>
  1525.                           The TO field ------ T <new to call> <cr>
  1526.                           The FROM field ---- F <new from call> <cr>
  1527.                           The @BBS field ---- B <new bbs call> <cr>
  1528.                           The TITLE field --- I <new title> <cr>
  1529.                           The BID field ----- D <new bid> <cr>
  1530.              To exit edit message, just hit a <cr> from the prompt.
  1531.  
  1532. Chapter 4 ------------------- COMMANDS ------------------------------- Page 4
  1533. E COMMAND (Continued)
  1534.  
  1535.  
  1536.  
  1537.     EP p - Edit port parameters. <p> is the port to edit.
  1538.     ES   - Edit system parameters.
  1539.     EU   - Sweep thru all users asking for Delete or Quit,
  1540.  
  1541.     EU CALL - Edit a user's record or create a new user record. This command
  1542.               will find a user's record or create a null  user's record, and
  1543.               then display a prompt line:
  1544.                 PRIVILEGE: (D)elete, (E)xpert, (B)bbs, (S)ysop, e(X)clude
  1545.                 DATA: (C)all, s(I)d, (N)ame, por(T), (H)ome, (Z)ip
  1546.  
  1547.               To delete a user: Type D <cr>
  1548.  
  1549.               To change:  Is an EXPERT ---- Type E <cr>
  1550.                           Is a BBS? ------- Tyoe B <cr>
  1551.                           Can be SYSOP ---- Type S <cr>
  1552.                           To EXCLUDE ------ Type X <cr>
  1553.                           New CALL -------- Type C <new call> <cr>
  1554.                           New SSID -------- Type I <new ssid> <cr>
  1555.                           New NAME -------- Type N <new name> <cr>
  1556.                           New PORT -------- Type T <new port> <cr>
  1557.                           New HOME BBS ---- Type H <home bbs> <cr>
  1558.                           New ZIP --------- Type Z <new zip> <cr>
  1559.               To exit edit user, just hit a <cr> from the prompt.
  1560.  
  1561.  
  1562.  
  1563. *****************
  1564. *** F Command ***
  1565. *****************
  1566.  
  1567.    SYSOP only Command:
  1568.  
  1569.      Fd ##### Filename [AN] - Make a file from a message. The 'd' determines
  1570.                               what subdirectory Filename go to. The A at the
  1571.                               end will append this message to the file. The
  1572.                               N at the end will NOT put the message header
  1573.                               into the file.
  1574.  
  1575.        EXAMPLES:   F 12340 A:text.txt - Makes file TEXT.TXT on the A drive
  1576.                                         from message 12340; Includes header.
  1577.  
  1578.                    FD 1200 amsat.010 - Makes file AMSAT.010 in subdirectory
  1579.                                        D from message 1200.
  1580.  
  1581.                    FD 1300 amsat.010 A - Appends message 1300 to file
  1582.                                          AMSAT.010 in subdirectory D.
  1583.  
  1584.                    F 12300 c:Save.txt N - Makes file SAVE.TXT on C drive
  1585.                                           with no header.
  1586.  
  1587. Chapter 4 ------------------- COMMANDS ------------------------------- Page 5
  1588.  
  1589.  
  1590. *****************
  1591. *** G Command ***
  1592. *****************
  1593.  
  1594.    SYSOP only Commands: Will LOCK up other windows using DESQview.
  1595.                         If other windows are busy, will not allow
  1596.                         any operation.
  1597.  
  1598.              GM - Untangles the mail file.
  1599.              GR <number> - Untangles the mail file and renumbers
  1600.                            starting at number.
  1601.              GU - Untangles the user file, deleteing marked users.
  1602.  
  1603. ********************
  1604. *** HELP Command ***
  1605. ********************
  1606.  
  1607.              H   - Gives a summary of the help subsystem.
  1608.              H x - Gives a detailed explanation of command x.
  1609.              H ? - Gives a detailed explanation of all commands.
  1610.              ?   - Gaves a list of mailbox commands
  1611.              ? x - Gives a summary of command x.
  1612.              ? ? - Gives a summary of all mailbox commands.
  1613.  
  1614. ********************
  1615. *** INFO Command ***
  1616. ********************
  1617.  
  1618.              I - Reads out the INFO.MB file.
  1619.  
  1620. *****************
  1621. *** J Command ***
  1622. *****************
  1623.  
  1624.              Jp - Gives a list of stations heard on port 'p'.
  1625.                   The special port 'L' shows calls of stations
  1626.                   recently connected to the mailbox.
  1627.  
  1628.  
  1629. *****************
  1630. *** K Command ***
  1631. *****************
  1632.  
  1633.              K ##### - Kill message number #####.
  1634.              KM      - Kill messages addressed to you that have been read.
  1635.              KT #### - Kill traffic message and generate a service message.
  1636.  
  1637.    SYSOP only Commands:
  1638.  
  1639.              K #### #### #### #### - Kill up to 4 messages.
  1640.              KA #### - Kill message #### but don't archive.
  1641.              KF ------ Kill all forwarded messages.
  1642.              KO ------ Kill all stale messages.
  1643.              KY ------ Kills all messages that have been read.
  1644.              KF CALL - Kills all forwarded messages addressed to CALL.
  1645.              KY CALL - Kills all messages addressed to CALL that have been read
  1646.  
  1647. Chapter 4 ------------------- COMMANDS ------------------------------- Page 6
  1648.  
  1649.  
  1650. ********************
  1651. *** LIST COMMAND ***
  1652. ********************
  1653.  
  1654.  
  1655.              L ------- List all new messages since your last login.
  1656.              L #### -- List messages back to ####.
  1657.              LE ##  -- List last ## mail headers in MAIL file.
  1658.              LL ##  -- List last ## messages.
  1659.              L> CALL - List all mail TO Call.
  1660.              L< CALL - List all mail FROM Call.
  1661.              L@ CALL - List all mail @BBS Call.
  1662.              LA ------ List all type 'A' messages.
  1663.              LE ------ List all mail headers since your last login.
  1664.              LF ------ List all forwarded messages.
  1665.              LH ------ List all messages that are marked HOLD.
  1666.              LK ------ List all KILLED messages.
  1667.              LM ------ List all messages TO or FROM you.
  1668.              LO ------ List all stale messages.
  1669.              LU ------ List all unforwarded messages.
  1670.              LY ------ List all messages that have been read.
  1671.  
  1672.  
  1673.  
  1674.     If you add a ';' after your normal list command, you will be  able
  1675.     to see any cc: line or Hierarchical list and any bid line attached
  1676.     to a header. This will work with any  command.   Example  follows:
  1677.  
  1678.  
  1679.              LL 4    Will list the last 4 line.
  1680.  
  1681.       9989 PN  1247 KA3DWA WA3DQI        0109/1212 ARC NETWORK
  1682.       9986 AN   978 ALL    W1AW   PAWEST 0109/1034 ARRL 54: News
  1683.       9985 BN  2367 ALL    KC3BQ         0109/0956 Hamfest news
  1684.       9984 PN  1545 K3RLI  AG3F   N2EZG  0109/0945 TNC WORKS
  1685.  
  1686.  
  1687.              LL 4 ; List last 4 lines and  cc:, ef:, and bid: lines
  1688.  
  1689.       9989 PN  1247 KA3DWA WA3DQI        0109/1212 ARC NETWORK
  1690.       9986 AN   978 ALL    W1AW   PAWEST 0109/1034 ARRL 54: News
  1691.          cc: *WA3DQI AG3F HOLD
  1692.         BID: ARLP010
  1693.       9985 BN  2367 ALL    KC3BQ         0109/0956 Hamfest news
  1694.         BID: KC3BQ_7789
  1695.       9984 PN  1545 K3RLI  AG3F   N2EZG  0109/0945 TNC WORKS
  1696.          EF: N2EZG.NY.USA.NA
  1697.  
  1698.  
  1699.     This will work for all list commands.  Like LL 10 ; or L ; or LM ;
  1700.     or LA ; .  This command  is only available  for sysops and  allows
  1701.     you to  see  the messages  without  the clutter  of  extra  lines.
  1702.  
  1703. Chapter 4 ------------------- COMMANDS ------------------------------- Page 7
  1704.  
  1705.  
  1706.  
  1707. *****************
  1708. *** M Command ***
  1709. *****************
  1710.  
  1711.              Mp - Monitor the packets on port 'p'. You must have the
  1712.                   gateway enabled for the port.
  1713.  
  1714.  
  1715.  
  1716.    SYSOP only Command:
  1717.  
  1718.  
  1719.              MM <listfile> <textfile>
  1720.  
  1721.     The MM command does the same thing as the SM command but it uses a
  1722.     text file for the message content.
  1723.  
  1724.  
  1725.     EXAMPLE: MM LIST1 \mb\oscar\amsatnws.140
  1726.                  BBS response: Enter Title for Message:
  1727.              Sysop enters TITLE
  1728.  
  1729.     The bbs will now make  messages  for  each  call  in the list, but
  1730.     the message content will be from the file AMSATNWS.140.  Since the
  1731.     mail file in now in files and  not in a  database, you could  also
  1732.     use a message file instead of a text file for the message content.
  1733.     ( See also Chapter 6 - List file )
  1734.  
  1735.  
  1736.  
  1737.              Mx <call> <textfile> [<@> <bbscall> <bid>]
  1738.  
  1739.     The 'x' represents the type of message. The 'call' is the TO field
  1740.     of the message. Textfile is the file used; It may include a  drive
  1741.     and path information.  The 'bbscall'  is  the  BBS  field  of  the
  1742.     message. The 'bid' is the bid attached to the message.
  1743.  
  1744.  
  1745.     EXAMPLE: MP AG3F A:TEXT.TXT @ AG3F
  1746.  
  1747.     The bbs will make a private message to AG3F @ AG3F with the message
  1748.     being from the file TEXT.TXT
  1749.  
  1750.  
  1751.     EXAMPLE: MB ALL A:NEWS.BUL @ PANET $123_NEWS
  1752.  
  1753.     The bbs will make a bulletin to ALL @ PANET with the message being
  1754.     from the file NEWS.BUL with a BID of 123_NEWS.  This is  handy  to
  1755.     make bulletins from a text file to a distribution list.
  1756.  
  1757. Chapter 4 ------------------- COMMANDS ------------------------------- Page 8
  1758.  
  1759.  
  1760. *****************
  1761. *** N Command ***
  1762. *****************
  1763.  
  1764.    USER only Commands:
  1765.  
  1766.              N NAME -- Enter your name into the user file.
  1767.              NE ------ Makes you an expert user.
  1768.              NH CALL - Enter home bbs into user file.
  1769.              NZ ZIP -- Enter zip code into the user file.
  1770.  
  1771.    SYSOP only Commands:
  1772.  
  1773.              N C:\path\FILENAME.OLD FILENAME.NEW
  1774.  
  1775.              Renames filename from old to new. Drive type need not be used
  1776.              unless using other than current drive. Path information is
  1777.              only necessary when going outside current directory.
  1778.  
  1779. *****************
  1780. *** P Command ***
  1781. *****************
  1782.  
  1783.              P Call - Lists information about user. Port connected,
  1784.                       name, path, last message number, home bbs.
  1785.  
  1786. ********************
  1787. *** QUIT Command ***
  1788. ********************
  1789.  
  1790.              Q - Quits the mailbox. Asks "Are you sure (Y/N)?
  1791.                  For local sysop only.
  1792.  
  1793. *****************
  1794. *** R Command ***
  1795. *****************
  1796.  
  1797.              R #### - Read message number ####.
  1798.              RH ### - Read message number ###, showing routing headers.
  1799.              RM ----- Read all unread messages addressed to you.
  1800.  
  1801.  
  1802. *****************
  1803. *** S Command ***
  1804. *****************
  1805.  
  1806.              Sx CALL @ BBS - Send type 'x' to call @ bbscall.
  1807.                              The mailbox will prompt you for title
  1808.                              and to enter subject. End message text
  1809.                              entry with a <ctrl z>, /ex, or /EX.
  1810.  
  1811.              If type 'x' is not entered, and the TO field is to a valid
  1812.              callsign, the type will become private.
  1813.              If type 'x' is 'A', 'B', 'F' and the  TO field is not a valid
  1814.              callsign, (ALL, ect) a BID will be created for the message.
  1815.  
  1816.              SB ALL @ BBS $ARLB010 - Creats a bulletin message to all at
  1817.                                      bbscall with BID of ARLB010.
  1818.  
  1819. Chapter 4 ------------------- COMMANDS ------------------------------- Page 9
  1820.  
  1821.              SM <listfile> - Used by SYSOP
  1822.       For Example lets say that all these stations shared the same
  1823.       interests. a message could be made to send to all of them.
  1824.  
  1825.              SM LIST1  <- Entered by sysop
  1826.                 BBS response: Enter Title for Message:
  1827.              Sysop enters TITLE
  1828.                 BBS response: Enter message, ect...
  1829.              Sysop enters message, ending with a control Z...
  1830.  
  1831.       The bbs now will make the headers for each  call in the list.   In
  1832.       this Example you would end up with many message headers.  Each  as
  1833.       defined in the LIST1 file.   So many duplicate messages would  now
  1834.       be on the bbs.  Each will forward out as  if they were put on  the
  1835.       bbs individually. ( See Chapter 6 - List file )
  1836.  
  1837. *****************
  1838. *** T Command ***
  1839. *****************
  1840.  
  1841.    USER only Commands:
  1842.  
  1843.              T - Chat to the sysop. Any command or return before the
  1844.                  request times out will return you to the mailbox.
  1845.  
  1846.    SYSOP only Commands:
  1847.  
  1848.              Tp ---------- Go to terminal mode on port 'p'.
  1849.              Tp Filename - Go to terminal mode  on port 'p', and open
  1850.                            filename save file.
  1851. *****************
  1852. *** U Command ***
  1853. *****************
  1854.  
  1855.    USER only Commands:
  1856.  
  1857.              Ud Filename - Upload filename to subdirectory 'd'.
  1858.  
  1859.           EXAMPLE: UA AMSAT.011    You will be prompted to enter the file
  1860.                                    <ctrl z> to end.
  1861. *****************
  1862. *** V Command ***
  1863. *****************
  1864.  
  1865.              V  - Used by ALL
  1866.  
  1867.                Using the "V" command will cause the bbs to print out the
  1868.                current version of the mailbox code.
  1869.  
  1870.    SYSOP only Command:
  1871.  
  1872.              V A:text.txt C:\AMSAT\TEXT.TXT - Copies text.txt from drive
  1873.                         A to subdirectory AMSAT on drive C. You can rename
  1874. *****************       file on copy.
  1875. *** W Command ***
  1876. *****************
  1877.  
  1878.              W -------- Gives a list of subdirectory area's available
  1879.              Wd ------- Gives a list of the files in subdirectory 'd'.
  1880.              Wd *.DOC - Gives a list of *.DOC files in subdirectory 'd'.
  1881.                 (For sysop use, drive, path, and filespec can be used.)
  1882.  
  1883. Chapter 4 ------------------- COMMANDS ------------------------------- Page 10
  1884.  
  1885.  
  1886. *****************
  1887. *** X Command ***
  1888. *****************
  1889.  
  1890.    SYSOP only Commands:
  1891.  
  1892.              X ------- Trigger an auto-forward.
  1893.              XI ------ Auto-forward, ignore time window.
  1894.              X CALL -- Forward only for call.
  1895.              XI CALL - Forward only for call, ignore time window.
  1896.  
  1897.  
  1898. *****************
  1899. *** Y Command ***
  1900. *****************
  1901.  
  1902.    SYSOP only Command:
  1903.  
  1904.              YF - Displays present forward file name.
  1905.              YF Filename - Change name of forward file to use.
  1906.  
  1907. *****************
  1908. *** Z Command ***
  1909. *****************
  1910.  
  1911.    SYSOP only Commands:
  1912.  
  1913.              Z Filename - Delete the file.
  1914.              Zd Filename - Delete filename in subdirectory 'd'.
  1915.              Z \mb\bbs\FORWARD.MB - Deletes FORWARD.MB with path \mb\bbs.
  1916.  
  1917. Chapter 5 ------------------ PRTLOG ---------------------------------- Page 1
  1918.  
  1919.  
  1920. ************************
  1921. *** PRINTER FUNCTION ***
  1922. ************************
  1923.  
  1924.     A print function is now in the software.   All you  have to do  is
  1925.     Hit control P from  the bbs  menu and everything  listed and  read
  1926.     will be printed out the parallel port.  Use control P to shut  the
  1927.     print off when done. Putting the bbs back on-line will  also  shut
  1928.     the print off.
  1929.  
  1930. ******************
  1931. ***** PRTLOG *****
  1932. ******************
  1933.  
  1934.         PRTLOG -L LOG.MB   Will display LOG.MB at the console.
  1935.         PRTLOG  LOG.MB > LST:  Will put the summery on the printer.
  1936. -->     PRTLOG  LOG.MB > LOG.JAN  Will output to file LOG.JAN.
  1937.  
  1938.         If you leave out the -L field, only the summary is printed.
  1939.  
  1940.     Note that the BBS will now create a file  to hold the BIDs.   Each
  1941.     line includes the date that your system received the message  with
  1942.     that BID.
  1943.  
  1944.     The proper setup parameters for the tnc are in .SET files,
  1945.     TNC1.SET is for tnc1 or clones - converse mode only,
  1946.     TNC2.SET is for tnc2 or clones,
  1947.     PK232.SET is for the PK-232 and PK-87.
  1948.  
  1949.     The file CONFIG.MB is a text file that contains all  site-specific
  1950.     parameters.  Edit it to have the proper parameters for your  site.
  1951.     
  1952.     The default directory must contain MB.EXE and CONFIG.MB
  1953.  
  1954.     The file CONFIG.MB has  sections that specify  what ports to  use,
  1955.     and where to  find various  files.   Ports are  identified by  the
  1956.     first letter of the first line of the port information.  "A" means
  1957.     COM1, "B" means COM2 etc.  "L" means the system console  (keyboard
  1958.     and display).
  1959.  
  1960.  
  1961.     Files used by the MailBox.  - The Mailbox and Gateway
  1962.  
  1963.       MB.EXE      -  The program.
  1964.       HELP.MB     -  The help file. Documents all commands.
  1965.       MBRESTM.EXE -  Used to restore the MAIL.DAT file.
  1966.       CONFIG.MB   -  Configuration data, log-on, error text, ect.
  1967.       INFO.MB     -  The info file about your system setup.
  1968.       FWD.MB      -  The routing tables for forwarding messages.
  1969.       STATES.MB   -  The state hierarchal file.
  1970.     The following files are created and used by the MailBox:
  1971.  
  1972.       MAIL.DAT   - The message database.
  1973.       USER.DAT   - The user database.
  1974.       MON.MB     - The saved "J" lists.
  1975.       LOG.MB     - The log file. A text file that contains the user log.
  1976.                    Which events are to be logged is specified in CONFIG.MB.
  1977.       CALLS.MB   - All calls heard by the MailBox.
  1978.       BID.MB     - The file to store the received BIDs in.
  1979.  
  1980. Chapter 6 -------------- Log, List, & Dis Files ---------------------- Page 1
  1981.  
  1982.                        *** LOG FILE CONTENTS ***
  1983.  
  1984.    Each line in the log file contains an event code, the date and time,
  1985.    followed by further information about the event.
  1986.  
  1987.    'C' - User connected to system.
  1988.       'A' -> 'H' - A user connected on that port.
  1989.       'I' - Program startup.
  1990.       'L' - User was linked via the station that just connected.
  1991.       'S' - "connect" from local console (sysop).
  1992.  
  1993.    'G' - GateWay event.
  1994.       'A' - Connection attempted and failed. Path shown.
  1995.       'C' - Connection attempted and obtained. Path shown.
  1996.       'E' - End of GateWay event, or use.
  1997.       'M' - Start of monitoring.
  1998.       'S' - Start of GateWay use.
  1999.       'U' - Entry to unprotocol mode.
  2000.  
  2001.    'X' - Exit.
  2002.       'A' - Owner put MailBox on line.
  2003.       'B' - User said good bye.
  2004.       'D' - User disconnected.
  2005.       'E' - Excluded user attempted connect.
  2006.       'F' - User forced off by system owner.
  2007.       'Q' - Owner exited from program.
  2008.       'T' - Timeout, forced disconnect.
  2009.  
  2010.    'F' - File event. Command line shown as user entered it.
  2011.  
  2012.    'M' - Message event. Message number always shown.
  2013.       'C'  - Message copied.
  2014.       'E'  - Message header edited.
  2015.       'F'  - Message forwarded. Connect path shown.
  2016.       'FE' - End of forwarding session.
  2017.       'FR' - Start of reverse forwarding within forwarding session.
  2018.       'FS' - Start of forwarding session.
  2019.       'K'  - Message killed.
  2020.       'L'  - Message headers listed.
  2021.       'M'  - Message created from file.
  2022.       'R'  - Message read.
  2023.       'S'  - Message sent, includes TO, BBS and BID fields
  2024.  
  2025.  
  2026.                       *** Distribution File ***
  2027.  
  2028.     The distribution file is a regular ascii file created with  a  simple
  2029.     editor. It consists of a list of calls, one per line. These calls are
  2030.     the broadcast list of what bbs's you want to  get  specific  messages
  2031.     to. These messages will key the distribution file based on the  @ BBB
  2032.     in the message.
  2033.     The name of the distribution file is the same as the @ BBS field used
  2034.     for distribution. All distribution files must end in .DIS and  be  in
  2035.     the message file directory. EXAMPLE - \mb\msgs\pawest.dis
  2036.  
  2037.     EXAMPLE of a .DIS file: PAWEST.DIS <- Name of file
  2038.  
  2039.                KB3UD
  2040.                W3AVK
  2041.                WA3DQI
  2042.                AG3F
  2043.  
  2044. Chapter 6 -------------- Log, List, & Dis Files ---------------------- Page 2
  2045. Dis File (Continued)
  2046.  
  2047.     When a message is created with a @ BBS of PAWEST, the bbs will create
  2048.     a special second header line. EXAMPLE:
  2049.  
  2050.     Msg#  TR  Size  To    From   @ BBS  Date     Title
  2051.     10651 PN  1949 SYSOP  W1AW   PAWEST 870511 New News on BBS's
  2052.         cc: KB3UD W3AVK *WA3DQI AG3F
  2053.  
  2054.     Notice that WA3DQI has a  "*" before  his call.   This means  that
  2055.     this message has already been  forwarded  to WA3DQI.   As the  bbs
  2056.     forwards to the other stations a "*" will appear before each  call
  2057.     as the message is forwarded to them.   When all  the calls have  a
  2058.     "*" before them, the message will be killed, if you have a YES  in
  2059.     the config file for the line Kill F & B  messages  after  forward.
  2060.     Otherwise, the status of the message will be marked as '$' so that
  2061.     a sysop can see if the message is fully forwarded. Users  can  not
  2062.     see the '$', only sysops. You are allowed to use a single call  in
  2063.     a .Dis file for a single distribution. If a  bbs  forwards   in  a
  2064.     message for a distribution which includes his call,   a  '*'  will
  2065.     appear before his call so that the message  will  not  attempt  to
  2066.     forward back to him.
  2067.  
  2068.  
  2069.                            *** List file ***
  2070.  
  2071.     A list file is a regular ascii file created with a simple editor.  It
  2072.     is used with the MM - Make Multiple Messages from a File, and  the SM
  2073.     - Send a message to a distribution list. There  are  no  requirements
  2074.     for the names of these files. They must be in the directory that  the
  2075.     mail bbs runs in.  EXAMPLE - \mb\list1.
  2076.  
  2077.     EXAMPLE of a list file: LIST1 <- Name of file
  2078.  
  2079.                SP KB3UD @ KB3UD
  2080.                SP AG3F
  2081.                SP AK3P @ AK3P
  2082.                SP N3DQC @ W3AVK
  2083.  
  2084.  
  2085.     A new feature of version 6.2 is that the LOG file is renamed at the
  2086.     end of each month. A new LOG file is then created.  The  number  of
  2087.     month will be appended to the log file name.
  2088.     EXAMPLE:  LOG.MB will become LOG3.MB for the month of March.
  2089.  
  2090. Chapter 7 ------------------- PROTOCOLS ------------------------------ Page 1
  2091.  
  2092.  
  2093.                    "BBS" FORWARDING PROTOCOL NOTES
  2094.  
  2095.     The following is an attempt to put  down in detail what the "CBBS"
  2096.     MailBox expects as  user input,  and the variations  that will  be
  2097.     accepted by the MailBox code.
  2098.     Forwarding works by  the simple  means of  the forwarding  MailBox
  2099.     acting  as   if  it   were   a  user   of  the   target   MailBox.
  2100.     Thus, it will use the "S" command to enter the message, in exactly
  2101.     the same way that a user does.
  2102.  
  2103.      The "S" command takes the form:
  2104.  
  2105.      "S"["x"] TO ["@" BBS] ["<" FROM] [$#####_K3KKK]
  2106.                  ["@" BBS.ST.USA.NA] <-- Hierarchical route.
  2107.  
  2108.     The "x" is an  optional message  type character.   The fields  are
  2109.     delimited by any number of spaces  or tabs.   Upper case or  lower
  2110.     case may be used.  TO, BBS, and FROM may be up to six  characters.
  2111.     If a trailing "-" and ssid are given, it  is thrown away.  The  "@
  2112.     BBS" and "< FROM" fields are optional, and may occur in any of the
  2113.     4 possible combinations. The '$' is  not  part  of  the  BID,  but
  2114.     identifies the field. There is no space between the $ and the BID.
  2115.  
  2116.     After receiving the "S" command, the  MailBox prompts for  message
  2117.     title.  The prompt is on one  line, ending with  CR.  The  message
  2118.     title is one line, ending with CR.   The title is truncated to  80
  2119.     characters by the MailBox.  After receiving the message title, the
  2120.     MailBox prompts for the message text.  The prompt is on one  line,
  2121.     ending with CR.   Message text  is a string  of ASCII  characters,
  2122.     ending in control-z.   The  station doing  the  forwarding  simply
  2123.     disconnects  once   it   has   passed   all   of   its   messages.
  2124.     Note that the MailBox prompt is identified by it's terminating ">".
  2125.  
  2126.     Starting with Version 4.4, the C BBS also supports the use of BIDs
  2127.     (Bulletin Identifiers)  and  to   use  them,  it  will,  when   it
  2128.     recognizes a similarly programmed BBS, enter into an exchange with
  2129.     said BBS.  This is according to the protocol developed by  WA7MBL.
  2130.     
  2131.     A BID capable BBS is recognized  by its sending a field  beginning
  2132.     with a '[' and ending with a ']'.  In addition, in the field is at
  2133.     least one '-'.    Anything following  the  LAST '-'  is  taken  to
  2134.     identify features available on that BBS.   The exchange from  this
  2135.     BBS is:
  2136.                   [CBBS-6.4-H$]
  2137.  
  2138.     When the BBS is connected to, it sends [CBBS-$],and if it receives
  2139.     [anything-$], it goes into its MBL-like mode.  It then gives you a
  2140.     prompt and waits  for  your  next  Send  command.   If you receive
  2141.     something like S  ALL $BID001,  it checks  to see  whether it  has
  2142.     received this BID before.  If not, it sends
  2143.  
  2144.        OK - 1234:    (will be message #1234)
  2145.  
  2146.     To which the sender then  sends the title followed immediately  by
  2147.     the message text. If it has that BID, it will send:
  2148.  
  2149.        NO- Already have it:          And then give a new '>'
  2150.  
  2151.      And the distant BBS will then proceed to the next message.
  2152.  
  2153. Chapter 7 ------------------- PROTOCOLS ------------------------------ Page 2
  2154. BID Protocol (Continued)
  2155.  
  2156.  
  2157.     Whether the connecting station is a BBS or not, if a message comes
  2158.     in addressed to something other  than a real  callsign, and is  of
  2159.     TYPE   B  it  is  assigned  a  BID  by  a  parsing   routine.   It
  2160.     finds the BBS of origin, and the  message number on that BBS,  and
  2161.     gives it a BID based on MSG#_BBSCALL ...   It will then check  the
  2162.     BID file and if the  message is  present,  it will  mark  it  hold
  2163.     pending operator  intervention (presumably  you already  forwarded
  2164.     the message.  This works with any system that has the terminal  -$
  2165.     in its [-$] field.
  2166.  
  2167.     The BID.MB file is an ascii text file, with one BID per line.   It
  2168.     can be edited to add or delete BID's as the sysop sees fit.  It is
  2169.     this BID that determine if  a message  with a bid  is accepted  or
  2170.     not.
  2171.  
  2172.                    System IDentifiers (SIDs) - W0RLI
  2173.  
  2174.     The initial exchange  between  "smart" BBS  systems uses  what  is
  2175.     called an "SID", short for System IDentifier.  All future work  on
  2176.     BBS systems should adopt this standard.  It will help to remove  a
  2177.     GREAT deal of confusion  as to which  systems have what  features,
  2178.     and how one  should interface  to  them.   In the  longer  future,
  2179.     perhaps all this junk can be done away with, and the computers can
  2180.     talk to each other in a more natural way.
  2181.  
  2182.          The system identifier is structured:
  2183.  
  2184.          "[f1-f2-f3]"
  2185.  
  2186.     The dashes delimit the end of the first field and the start of the
  2187.     last.  There might  be only  one dash,  if  f2 is  void.   f2  may
  2188.     contain dashes.
  2189.  
  2190.     f1, f2, and f3 may not contain "[" or "]".
  2191.  
  2192.     f1 is the  author identification.    It may  not contain  a  dash.
  2193.     Normally it  will  contain  a  few  characters  from  the  authors
  2194.     callsign.
  2195.  
  2196.     f2 is author specific data.
  2197.  
  2198.     It may contain anything  the author wishes,  for example  software
  2199.     version.  It may contain dashes.
  2200.  
  2201.     f3 is the supported feature set.  It may  not contain a dash.   It
  2202.     contains a  string   of  non-numeric  characters,  one  for   each
  2203.     negotiable feature  supported.    Each  character  may  also  have
  2204.     trailing digits, giving the revision of that feature.  If there is
  2205.     no trailing  digit,   the  feature  revision  is  revision   zero.
  2206.  
  2207.     Coding hint: if the first line seen  at connect to the bbs  starts
  2208.     with [ and ends with ], then it probably  is an SID.  For example:
  2209.  
  2210.       f1_start = fld + 1;
  2211.       f1_end   = strchr(fld, '-') - 1;
  2212.       f2_start = f1end + 2;
  2213.       f2_end   = strrchr(fld, '-') + 1;
  2214.       f3_start = f2_end + 2;
  2215.       f3_end   = strrchr(fld, ']') - 1;
  2216.  
  2217. Chapter 7 ------------------- PROTOCOLS ----------------------------- Page 3
  2218. Sid's (Continued)
  2219.  
  2220.     Defined features are:
  2221.  
  2222.      C - Supports "forwarding" of date and time.
  2223.      H - Supports Hierarchical forwarding.
  2224.      M - Supports Message Identifiers.
  2225.      W - Is a white pages server. (We were thinking about you, Eric!)
  2226.      Y - Supports YAPP binary protocol.
  2227.      $ - Supports BID. MUST BE LAST CHARACTER IN f3 (downward compatibility).
  2228.  
  2229.     The existance  of  the system  ID  also implies  that  the  system
  2230.     supports  reverse   forwarding  and   OK/NO   message   rejection.
  2231.     Some examples of existing standard system identifiers:
  2232.  
  2233.     [RLI-5.12-$]          - w0rli version 5.12, supports BID
  2234.     [RLI-6.08-CM$]        - w0rli version 6.08, supports Clock, MID, BID
  2235.     [CBBS-$]              - CBBS flavor, supports BID.
  2236.     [CBBS-6.0-H$]         - CBBS source versions, supports BID, Hierarchical.
  2237.     [CBBS-4.5-$]          - ve3gyq release of the rli/gyq cbbs.
  2238.     [MBL-$]               - wa7mbl version unknown, supports BID
  2239.     [PRMBS-.98X-345-$]    - ka2bqe rip-off of w0rli cbbs V0.4
  2240.     [CMU-1-W]             - wd6cmu BBS
  2241.     [4RE-01-M$]           - aa4re V1, supports MID and BID.
  2242.  
  2243.     There is some older code still running that requires special  case
  2244.     handling.  In  these cases  there  is no  f3 or  feature  letters.
  2245.  
  2246.     Rule: OK/NO message rejection is required, and BID is supported.
  2247.  
  2248.     [MBL320]           - "old" wa7mbl systems.
  2249.     [MBL=RLI]          - ja0isk port of rli/gyq cbbs for NEC 9800
  2250.  
  2251.         The connect rules:
  2252.  
  2253.     Send the SID as first line at connect.
  2254.     Answer the SID (when seen as a command) with a short command prompt.
  2255.  
  2256.         The fowarding rules:
  2257.  
  2258.     If you do not see an SID at connect, use the old style fowarding.
  2259.     This handles the case of Xerox 820 systems, for example.
  2260.  
  2261.     If you do see an SID at connect, answer with your SID.
  2262.     Use whatever features are appropriate.
  2263.     Special case: MBL3 or MBL= seen at connect.
  2264.     Reply with [MBL-xxx], where xxx is anything you like.
  2265.     Continue with reverse forwarding and OK/NO message rejection.
  2266.  
  2267.  
  2268.            Zip Code Routing Note 1   -   W0RLI   -  7 Sept 87
  2269.  
  2270.     Several people  have   suggested  using  zip  codes  for   routing
  2271.     identifiers.  There are many possible  ways to do  this.  In  this
  2272.     note I outline two  suggestions.   These two  routing schemes  are
  2273.     compatible, and can co-exist on the network at the same time.  Two
  2274.     features are required  in the  BBS code to  support these  routing
  2275.     schemes  properly:  wildcard   capability  in   the  route   table
  2276.     destinations and "@  BBS" replacement.   Either  of these  schemes
  2277.     will help users: they no longer need to know the callsigns of  all
  2278.     the BBS in the world.  Users  need only know the state,  province,
  2279.     region, or zip code of the message destination.
  2280.  
  2281. Chapter 7 ------------------- PROTOCOLS ----------------------------- Page 4
  2282. Zip Routing (Continued)
  2283.  
  2284.  
  2285.     1) Zip code routing for NTS traffic.
  2286.  
  2287.     Use the form "ST nnnnn @ NTSxx" where nnnnn is the destination zip
  2288.     code and xx  is the  state, province,  or region  identifier.   In
  2289.     route tables far  from "xx"  only  the path  toward "xx"  need  be
  2290.     known.  Once the  message reaches  "xx" the  receiving BBS  should
  2291.     remove the "@ BBS" designator.  Routing  will then continue  using
  2292.     the zip code.
  2293.  
  2294.     2) Zip code routing to humans.
  2295.  
  2296.     Use the form "SP call @ zip" or "SP call  @ xx".  These forms  are
  2297.     not ideal.  What should be used is  a form with 3 address  fields.
  2298.     None of the BBS  codes  support this  yet.   The  ideal  form  for
  2299.     routing of personal messages  is  "SP call  @  zip @  xx".    This
  2300.     routing scheme then  would follow  the NTS routing  scheme in  1).
  2301.     Since we do not have a three  adress scheme, the first and  second
  2302.     forms in 2) would be the best available.
  2303.  
  2304.     Some examples of routings that could work now:
  2305.  
  2306.     ST 95060 @ NTSCA
  2307.     This message would end up at kb6irs or n6iya for delivery by NTS.
  2308.  
  2309.     SP W0RLI @ NTSCA
  2310.     This message would go to any of the  eight California HF BBS.   At
  2311.     the California HF BBS the "@  NTSCA" would be removed and  routing
  2312.     would continue in the normal manner to W0RLI.
  2313.  
  2314.     SP VE3FXB @ NTSON
  2315.     The same idea as the previous message.
  2316.  
  2317.     SP VK2AHX @ VK
  2318.     Again, the same idea.  Note that stations that do not have a  path
  2319.     to VK need only  keep the  single identifier "VK"  in their  route
  2320.     tables.
  2321.  
  2322.     SP W0RLI @ 95060
  2323.     With schemes like  this, and  the use  of wildcards  in the  route
  2324.     tables and "@ BBS" replacement tables, only a very few identifiers
  2325.     are required to  cover  the  entire  U.S.   If  this  message  had
  2326.     originated, for example, in  New England, the  BBS in New  England
  2327.     need only have  "9*"  in  it's  route table.    Once  the  message
  2328.     reached, for  example,  KD6SQ,  he  would  have  to  have  several
  2329.     identifiers.  "95*" would send the message from So.  Cal.  to  No.
  2330.     Cal., where the "@  BBS"  would be  removed.   It  would  then  be
  2331.     forwarded directly to W0RLI, since  W0RLI is known  to all BBS  in
  2332.     No.  Cal.
  2333.  
  2334.                        *** MESSAGES ***
  2335.  
  2336.     There are three types of messages:
  2337.  
  2338.     1) Personal.    If sent with SP, or with S and to a callsign.
  2339.     2) NTS Traffic  If sent with ST.
  2340.     3) Bulletins    If sent with SB, or with S and NOT to a callsign.
  2341.                     A BID is included with the message.
  2342.  
  2343. Chapter 7 ------------------- PROTOCOLS ----------------------------- Page 5
  2344.  
  2345.  
  2346.     Each type of message gets somewhat different handling:
  2347.  
  2348.     For NTS traffic, the LT, KT, and ET commands are active.
  2349.     For Bulletins, a BID is sent when forwarding to accepted bbs's.
  2350.     For Personal, The message can only be read by the sender, addressee,
  2351.                    and sysop.
  2352.     There are several "flags" associated with each message.  These are
  2353.     shown in  the "message  status"  position in  the  "list  message"
  2354.     display.  Note that each  Flag has an  associated "L" command  and
  2355.     some have associated "K" commands.
  2356.  
  2357.        B - The "Busy" flag:
  2358.            This indicates that a message is busy. Also indicates all
  2359.            duplicate bids and disconnects before message is completed.
  2360.  
  2361.        F - The "Forwarded" flag:
  2362.            This indicates the message has been forwarded to it's
  2363.            destinations, but has not been killed.
  2364.  
  2365.        H - The "Hold" flag:
  2366.            This indicates the message has been held. It will not
  2367.            forward, and can be only killed by the sysop.
  2368.  
  2369.        O - The "Stale" flag:
  2370.            This indicates a message has been around for too long.
  2371.            Time length is determined in the config.mb
  2372.  
  2373.        Y - The "Read" flag:
  2374.            This indicates that the message has been read by the addressee,
  2375.            but has not yet been killed.
  2376.  
  2377.        $ - The "Bulletin" flag:
  2378.            This indicates that the bulletin has been fully forwarded by
  2379.            a distribution file. Only visible to sysop.
  2380.  
  2381.         Message header formats in use at this time include:
  2382.  
  2383.     R:date/timez @:call qth #:nnn O:call S:date/time Z:zzz
  2384.     R:date/timez @:call qth #:nnn O:call S:date/time
  2385.     R:date/timez @:call qth #:nnn O:call Z:zzz
  2386.     R:date/timez @:call qth #:nnn Z:zzz
  2387.     R:date/timez @:call qth #:nnn O:call
  2388.     R:date/timez @:call qth #nnn O:call
  2389.     R:date/timez nnn@call [qth] Z:zzz  <--- Best one to use.
  2390.  
  2391.     1) calls may have ssid
  2392.     2) time may have timezone.
  2393.        If so, may be single char or 3 char.
  2394.        May be upper or lower case, or mixed.
  2395.     3) qth may be enclosed in []
  2396.     4) Space between @ call and qth may be missing
  2397.     5) ":" between field ID and contents may be missing.
  2398.     6) May be space between ":" and field contents.
  2399.  
  2400.     There are many  other forms  seen.   They may  leave out  required
  2401.     information.  They may have the required information in unexpected
  2402.     format.  There is little chance of parsing them all, and no reason
  2403.     to do so.
  2404.  
  2405. Chapter 8 ------------------- DESQVIEW ------------------------------- Page 1
  2406.  
  2407.  
  2408.                SETTING UP MULTIPLE BBS'S WITH DESQVIEW - AG3F
  2409.  
  2410. 1. CONFIG.SYS
  2411.     Create file config.sys in the  root (\) directory with an  editor.
  2412.     As a minimum it it must contain the files and buffers  statements.
  2413.     Other possible additions are  a ram  disk and the  driver for  any
  2414.     installed EEMS boards.   DESQview will  run with  the normal  640K
  2415.     system memory but you  will be  very limited  as to  the size  and
  2416.     number of programs you will be able to use in addition to the  BBS
  2417.     copies.  The following is the config.sys  in use at AG3F where  an
  2418.     AST SixPakPremium  EEMS multifunction  with  1 meg  of  memory  is
  2419.     installed   in   addition   to   256k   of   motherboard   memory.
  2420.  
  2421.                   files=30
  2422.                   buffers=20
  2423.                   device=remm.sys /x=A000-BFFF
  2424.                   device=fastdisk.sys /m=64 /dextm
  2425.  
  2426. 2. INSTALLING DESQVIEW
  2427.     Install DESQview  V2.01  or  later  on the  hard  drive  by  using
  2428.     Quarterdeck's instructions.  In general this will involve  placing
  2429.     the distribution diskette in floppy drive "A" and typing  install.
  2430.     You will be  prompted for  the desired destination  drive and  for
  2431.     your system  configuration.    This  process  will  create  a  \DV
  2432.     directory on the hard drive that will include all of the necessary
  2433.     DESQviev files.    Any  commercial  programs  that  are  known  to
  2434.     DESQview and  were  residing  on  your hard  drive  will  also  be
  2435.     installed for access from  DESQview.   At this  point install  any
  2436.     other programs you desire by using the DESQview instructions.   It
  2437.     is suggested that you run these programs from DESQview and  become
  2438.     familiar with DESQview operation.
  2439.  
  2440. 3. DESQVIEW PARAMETERS
  2441.     From the > prompt in subdirectory DV type SETUP.  This will  bring
  2442.     up the DESQview setup screen.  Select the advanced setup and  when
  2443.     in that window select performance  option.  Change  the number  of
  2444.     clock ticks   to  7  for   foreground  and  background   programs.
  2445.     Experimentation has shown for a  4mhz xt  7 is suitable.   If  you
  2446.     utilize other clock speeds you may have to experiment to find  the
  2447.     best  value  but  in  any  case  both  foreground  and  background
  2448.     operations must be the same  since running multiple copies of  the
  2449.     bbs really  does  not  have  a  background  program.    The  other
  2450.     parameters available for modification were  left at their  default
  2451.     values.
  2452.  
  2453. 4. SUBDIRECTORIES
  2454.     Setup the directory/subdirectory system  for the  mailboxes.   The
  2455.     config's must be different for each window used.  The  files  LOG,
  2456.     MON, and CALLS must be different for each window. It is easier  to
  2457.     just use the port letter as the .ext of each of these  files.  The
  2458.     MAIL.DAT and USER.DAT are shared by all the windows. The FWD  file
  2459.     can be a common file or you can use different files for each port.
  2460.  
  2461. Chapter 8 ------------------- DESQVIEW ------------------------------- Page 2
  2462. Subdirectories Continued)
  2463.  
  2464.           \mb
  2465.             mb.exe
  2466.             br3bios.com
  2467.             mbmode.exe
  2468.             hand.com
  2469.             config.a ------ config.b ------ config.c
  2470.           \mb\bbs
  2471.             help.mb
  2472.             info.mb
  2473.             user.dat
  2474.             user.bak
  2475.             fwd.mb
  2476.             states.mb
  2477.             mail.dat
  2478.             mail.bak
  2479.             mon.a --------- mon.b --------- mon.c
  2480.             calls.a ------- calls.b ------- calls.c
  2481.             log.a --------- log.b --------- log.c
  2482.           \mb\msgs
  2483.  
  2484. 6. ADDING THE BBS PROGRAM TO DESQVIEW
  2485.     Add the bbs  programs to  DESQview by selecting  add program  from
  2486.     second menu.  Following the prompts add the following information:
  2487.     program name   bbs1                     memory size 102
  2488.     program        mb                       or 150 if using dos commands
  2489.     parameters
  2490.     directory      c:\mb
  2491.     options:
  2492.     writes to screen   [n]
  2493.     displays graphics  [n]
  2494.     can be swapped     [n]
  2495.     requires floppy    [n]
  2496.  
  2497.     TO SELECT ADVANCED OPTIONS  HIT (F1)
  2498.     close on exit      [y]                own colors      [n]
  2499.     close window cmb   [y]                only foregnd    [n]
  2500.     math coprocessor   [n]                kbd conflict    [1]
  2501.     All other parameters are as default.
  2502.     Add the second and subsequent copies of the bbs as above using
  2503.     the proper program names and directorys.
  2504.  
  2505. 7. PORT INITIALIZATION
  2506.    Construct a batch file to execute the necessary port initializations
  2507.    as described previously. The one in use at AG3F resides in the root
  2508.    directory of drive c: and is called startbbs.bat. It is as follows:
  2509.    
  2510.    cd \mb
  2511.    br3bios
  2512.    mbmode com1:48,n,8,1
  2513.    mbmode com2:48,n,8,1
  2514.    mbmode com3:48,n,8,1
  2515.    hand
  2516.    cd \dv
  2517.    fastopen c:
  2518.    dv
  2519.  
  2520.    Notes: 3 ports are used,  br3bios is configured for 3 com ports.
  2521.           Hand is required to handshake between DESQview windows.
  2522.           Fastopen (Dos v3.3 only) permits quicker disk access.
  2523.  
  2524. Chapter 8 -------------------- DESQVIEW ------------------------------ Page 3
  2525.  
  2526.  
  2527. 8. CONFIGURATIONS
  2528.     Prepare a config.x for each copy of the bbs.
  2529.  
  2530.  
  2531.  
  2532. 9. STARTING THE BBS MANUALLY
  2533.     From the dos prompt  type STARTBBS  or what ever  you called  your
  2534.     port initialization batch file.  This will load the bios  drivers,
  2535.     run mode on all ports, load  pipe, run any other special  programs
  2536.     and finally invoke DESQview.  You will  now be at the open  window
  2537.     menu of DESQview.   Select open  and then the  first bbs  program.
  2538.     Program #1 will start and occupy the upper 1/2 of the screen.   Do
  2539.     the same with  copy #2  which will  be  in the  lower 1/2  of  the
  2540.     screen.  Other copies  can be  loaded similiarly  and will  occupy
  2541.     screen locations defined  in the  DV setup.   Now  all is  running
  2542.     simultaneously.  You  can  switch, zoom,  blank  or  select  other
  2543.     windows without interrupting the bbs activity.
  2544.    
  2545. 10. AUTOMATIC STARTUP
  2546.     If desired you may arrange the system to reboot and restart up the
  2547.     bbs's if the computer is shut  off or experiances a power  outage.
  2548.     This requires two steps.
  2549.  
  2550.     a. Insert the name of your initialization batch file into your
  2551.        autoexec.bat file.
  2552.  
  2553.     b. Create a DESQview autostart macro.  This is done by assigning a
  2554.        series of key  strokes  to the  !  key while  in  DESQview  but
  2555.        without any application  program running.    Follow  the  learn
  2556.        instructions in your DESQview manual.   The steps  for a 2  bbs
  2557.        seup typically would be:
  2558.  
  2559.        Type DV to start DESQview
  2560.        shift-alt  (select start learn,indicate the ! key and pick name)
  2561.        open window
  2562.        open bbs#1
  2563.        shift-alt  (select time delay  30 )
  2564.        open window
  2565.        open bbs#2
  2566.        shift-alt  (select end learn)
  2567.        quit DESQview and say yes to save scripts
  2568.       
  2569.        The script file produced by the above is desqview.dvs and  will
  2570.        be found in the  Dv  directory.   This  file can  be  made  man
  2571.        readable by using the  program  convscr.com provided with DV. A
  2572.        converted   program    would   look    like   the    following:
  2573.  
  2574.        {Learn ! "boot boards"}
  2575.        om1{Delay 30}{DESQ}om2
  2576.        {Finish}
  2577.  
  2578.        o means open
  2579.        m1 is my 1st bbs program
  2580.        m2 is my 2nd bbs program
  2581.        Learn and Finish are the start  and end of the learn  commands.
  2582.        You can if desired, create a text  file like the above, and  by
  2583.        the use of convscr convert it to desqview.dvs and eliminate the
  2584.        step by step procedure described above.
  2585.  
  2586. Chapter 8 ------------------- DESQVIEQ ------------------------------- Page 4
  2587.  
  2588.  
  2589. 11. USING DESQVEIW WITH THE BBS
  2590.  
  2591.     When you are not using the console for watching the bbs, you might
  2592.     want to hide the windows before you shut it down.  To do this  you
  2593.     just hit the 'ALT' key, then 'R' for rearrange, then 'H' for hide.
  2594.     This will blank out the window.  Doing this for all windows before
  2595.     shutting off the console will speed  DESQview up as no display  is
  2596.     taking place.  To get  things back after  turning on the  console,
  2597.     just hit the 'ALT" key and  then the number  key for each  window.
  2598.  
  2599. Chapter 9 -------------------- MODEM USAGE --------------------------- Page 1
  2600.  
  2601.  
  2602.  
  2603.                             *******************
  2604.                             *** MODEM USAGE ***
  2605.                             *******************
  2606.  
  2607.  
  2608.  
  2609.         A modem port can be configured for access to the bbs.  It can  be 
  2610.         configured  to  a  port in a non DESQview system, or  it  can  be 
  2611.         configured to a port in a DESQview window that also services  one 
  2612.         or  more  TNCs or it can be configured in a  DESQview  window  by 
  2613.         itself.   The  last case is the best choice since  it  guarantees 
  2614.         that  the bbs will not be busy when you call.  Even though  other 
  2615.         windows may be in use it is still possible to access the messages 
  2616.         because  of the common mail file.  This same window can  also  be 
  2617.         used  from  the local keyboard to permit access to  the  messages 
  2618.         without blocking users or forwarding.
  2619.  
  2620.  
  2621.         The modem must be set up for "quiet" automatic answer at the  de-
  2622.         sired baud rate before it is connected to the bbs software.   Any 
  2623.         of the standard terminal programs can be used to perform this set 
  2624.         up.   It  is important that the modem be able to come up  in  the 
  2625.         proper  mode following a power failure.  Most current Hayes  com-
  2626.         patible modems have a non-volatile memory to store their  parame-
  2627.         ters.  Earlier versions used dip switches.  The important parame-
  2628.         ters are:
  2629.  
  2630.         E0    disable echo of commands
  2631.         S0=n  n is the number of rings before the modem answers
  2632.         Q1    disable result codes
  2633.         &C1   data carrier detect (DCD) only when carrier present
  2634.         &D2   data terminal ready (DTR) required for modem to answer
  2635.  
  2636.  
  2637.         There is no intelligence in the software to issue commands to the 
  2638.         modem.   Check your modem manual for instructions on setting  the 
  2639.         modem to automatic answer "dumb" mode.  The DCD line is the  most 
  2640.         important.   If  the bbs software detects loss of  DCD,  it  will 
  2641.         react the same as for a disconnect from a TNC.
  2642.         
  2643.         The modem port must be initialized by MBMODE the same as for  the 
  2644.         TNC  ports.  No provision is made for baud rate switching in  the 
  2645.         software.   The  port definition line in config.mb  must  have  E 
  2646.         (port requires echo), L (line feed after carriage return), and  S 
  2647.         (raw serial port) specified.  T (TNC with TAPR commands) must NOT 
  2648.         be specified.  The other codes may be set as desired although the 
  2649.         I  (kick off user with illegal call)  code is strongly  recommend 
  2650.         to  help thwart anyone who might stumble across your auto  answer 
  2651.         modem.  A high ring count is also a good idea.  It is not a  good 
  2652.         idea to let users connect to your system via the modem port.  The 
  2653.         software  for  the serial port would have to be  made  much  more 
  2654.         "bullet"  proof for this to be feasible.  Remote control  of  the 
  2655.         bbs is the main use for a modem port.
  2656.  
  2657. Chapter 9 --------------------- MODEM USAGE ------------------------- Page 2
  2658. (Continued)
  2659.  
  2660.  
  2661.  
  2662.         Now  for  the secret that I had to study the code  to  determine.  
  2663.         You  call in to the modem and it answers and  absolutely  nothing 
  2664.         happens.   You must type the exact string that a TNC  would  send 
  2665.         when  a connection is made including a valid call sign.  An  SSID 
  2666.         different  from what you use on the TNC ports makes it easier  to 
  2667.         keep track of modem connections.  The string you must send is:
  2668.  
  2669.         *** CONNECTED to WA3TSW-1
  2670.  
  2671.         followed by a carriage return.  Obviously you use your own  call.  
  2672.         If  the I parameter is set and the call sign is not valid,  there 
  2673.         will  not  be any response.  At this point you will  receive  the 
  2674.         same  introduction and prompts that would occur if you  connected 
  2675.         via a TNC.  Operation of the bbs is identical to connection via a 
  2676.         TNC port.  When you are done you can simply hang up.   The  modem 
  2677.         will detect loss of carrier and drop the DCD line.  The  software 
  2678.         will  react  the same as if a TNC user  disconnected  instead  of 
  2679.         using the B command.  You can use the B command before hanging up 
  2680.         but  there will be no response to indicate that anything is  hap-
  2681.         pening.
  2682.  
  2683.  
  2684.         Thanks to WA3TSW for this info on modem operation.
  2685.  
  2686. Chapter 10 ------------------ MBRESTM -------------------------------- Page 1
  2687.  
  2688.  
  2689.                       *** USING MBRESTM.EXE ***
  2690.  
  2691.     Restoring a crashed mail.dat file is now easy to do.  With version
  2692.     5.0 and later versions, an invisible  header is now put into  each
  2693.     message text file.  That is, invisible to the bbs.  So all that is
  2694.     needed to restore MAIL.DAT  is the  message text files.   Even  if
  2695.     some of these files are bad, you can still reconstruct a  mail.dat
  2696.     file with the files that you still have.
  2697.  
  2698.     To  run  the  restore  program,  place  MBRESTM.EXE  in  the  same
  2699.     subdirectory as the message files, and then type MBRESTM.  It will
  2700.     check  for   message  files,   check  for   the  inbedded   header
  2701.     information, then sort the message files, and finally creat a  new
  2702.     MAIL.DAT in the same directory.   You will also  be told what  the
  2703.     next message number is, and asked if you want to change it.
  2704.  
  2705.     Now all you  have to  do is  place the  NEW MAIL.DAT  file in  the
  2706.     proper subdirectory using copy,  and the  bbs is now  ready to  be
  2707.     loaded with a reconstructed mail file.
  2708.  
  2709.  
  2710.                 MAIL.DAT -- mail file header format
  2711.  
  2712.      1-2     2       NEXT    Next record to allocate, binary (LAST+1)
  2713.      3-4     2       FIRST   First msg header record, binary (always 1)
  2714.      5-6     2       LAST    Last msg header record, binary (COUNT)
  2715.      7-8     2       NEXTM   Next msg number, binary
  2716.      9-10    2       UNTMSG  Next msg at last untangle, binary
  2717.      11      1       VERSION Mail file version, binary
  2718.      12-13   2       SPARE   Unused
  2719.      14-15   2       COUNT   Number of messages, binary
  2720.      16-21   6       DATE    Date of last untangle  YYMMDD
  2721.      22-25   4       TIME    Time of last untangle  HHMM
  2722.      26-256  231             unused, filled with nulls
  2723.  
  2724.  
  2725.                  MAIL.DAT -- typical message entry format
  2726.  
  2727.      1       1       EXT     Header extension flag or zero
  2728.      2-3     2       RN      Record number
  2729.      4-5     2       READ    Times read in binary
  2730.      6-7     2       NUMBER  Message number in binary
  2731.      8-9     2       SIZE    Message size in binary
  2732.      10      1       TYPE    Message type (Ascii)
  2733.      11      1       ST      Status (01 read, 02 fwded, 04 kill, 08 busy)
  2734.                                     (10 unused, 20 old, 40 hold, 80 bulletin)
  2735.      12-17   6       TO      To, trailing spaces
  2736.      18-23   6       FROM    From, trailing spaces
  2737.      26-29   6       BBS     BBS, trailing spaces
  2738.      30-35   6       DATE    Date  YYMMDD
  2739.      36-39   4       TIME    Time  HHMM
  2740.      40-51   12      BID     BID, trailing NULLS
  2741.      52-131  80      SUBJECT Msg title with trailing NULLS
  2742.      132-227 96      CALL    DIS routing, max 16 calls, 6 chars each
  2743.      228-243 16      FLAG    DIS routing, binary 1 unforwarded, otherwise 0
  2744.      244     1       COUNT   Number of calls in DIS list, binary
  2745.      245-256 12              Unused, filled with binary nulls
  2746.  
  2747. Chapter 10 ----------------- MAIL FORMAT ----------------------------- Page 2
  2748.  
  2749.  
  2750.                  INDIVIDUAL MESSAGE FILE HEADER FORMAT
  2751.  
  2752.     All 256 bytes  are  filled  with  nulls to  start  with  and  then
  2753.     replaced with the appropriate values.  Only the area trailing  the
  2754.     message title is left as nulls.
  2755.  
  2756.     Everything except those nulls are ascii. Nothing is left as binary
  2757.     data.
  2758.  
  2759.     All fields are completely filled with the contents of the variable
  2760.     assigned to that area.  If the contents are not big enough to fill
  2761.     the field the extra area is  filled by leading or trailing  spaces
  2762.     (hex 20).
  2763.  
  2764.   POSITION  SIZE    VARIABLE   CONTENT
  2765.  
  2766.      1-5     5       NUMBER   Message NUMBER in ascii, leading spaces
  2767.      6       1                space
  2768.      7       1       TYPE     Message TYPE
  2769.      8       1       ST       STATUS
  2770.      9       1                space
  2771.      10-14   5       SIZE     Message SIZE in ascii, leading spaces
  2772.      15      1                space
  2773.      16-21   6       TO       TO, trailing spaces
  2774.      22      1                space
  2775.      23-28   6       FROM     FROM, trailing spaces
  2776.      29      1                space
  2777.      30-35   6       BBS      BBS, trailing spaces
  2778.      36      1                space
  2779.      37-42   6       DATE     DATE  YYMMDD
  2780.      43      1                space
  2781.      44-47   4       TIME     TIME  HHMM
  2782.      48      1                space
  2783.      49-60   12      BID      BID, trailing spaces
  2784.      61      1                space
  2785.      62-66   5       READ     Times READ in ascii, leading spaces
  2786.      67      1                CR
  2787.      68      1                LF
  2788.      69      1       EXT      Extension FLAG, 0 = cc line absent,
  2789.                                               1 = cc line exists
  2790.                                               2 = Hierarchical list
  2791.      70      1                space
  2792.      71-86   16      FLAGS    cc line flags each corresponding to a line in the
  2793.                                         DIS file that matches the @BBS field.
  2794.                                0 = we have fowarded to this station
  2795.                                1 = we have not fowarded.
  2796.                               If we don't have a cc line, these are 16 spaces.
  2797.      71-XX   XX      HLIST    With EXT = 2 This contains the hierarchical list.
  2798.      XX      1                CR
  2799.      XX      1                LF
  2800.      XX-XX   82      SUBJECT  Message TITLE (80 max), then CRLF
  2801.      XX-254  84               NULLS
  2802.      255     1                CR
  2803.      256     1                LF
  2804.  
  2805.  
  2806.     Thanks to AG3F in helping iron out some of the mysteries of  this.
  2807.  
  2808. Chapter 10 --------------- LISTING MESSAGES -------------------------- Page 3
  2809.  
  2810.  
  2811.  
  2812.                       WORKING WITH THE MAIL FILE
  2813.  
  2814.  
  2815.     There are many ways  to list  messages in  the mail  file for  the
  2816.     sysop.  The common method is to just do  a "L" every time you  log
  2817.     into the bbs.  This will list all messages active on the bbs since
  2818.     your last login.  A better method is to use the "LE" command which
  2819.     will  list  ALL  messages   (active  messages,  killed   messages,
  2820.     duplicate bid headers, and disconnect-timeout headers).  In  other
  2821.     words, all message  numbers  in serial  fashion, since  your  last
  2822.     login.
  2823.  
  2824.     Also available to the sysop is the  "LU" command.  This will  list
  2825.     all messages not yet forwarded, and messages to your local  users.
  2826.     It does not list bulletins and gives the  sysop an idea as to  how
  2827.     the bbs is performing on forwards.  You can also get a quick  view
  2828.     of messages addressed to bbs's not  in your forward file and  make
  2829.     the necessary corrections to it.
  2830.  
  2831.     A feature not commonly used is the adding of the ";" as the second
  2832.     or third field of list commands.  The  example - "LE ;" will  list
  2833.     exactly like the "LE"  except extra lines  will appear  containing
  2834.     the BID, if any,  and the  HIERARCHICAL ROUTE.   Not all  messages
  2835.     have bids and, right  now, few will  have any hierarchical  route,
  2836.     but   the    the   listing    is   available    to   the    sysop.
  2837.  
  2838.     Common listings available to users  are also usable to the  sysop.
  2839.     Examples such as "LA" to list  all type A  messages, "LB" to  list
  2840.     all bulletins, "LM" to list  all your own  messages, "LY" to  list
  2841.     all messages that have been  read, "LO" to  list messages the  are
  2842.     stale, "LK" to list  messages that have  been killed, "L@  (call),
  2843.     "L> (call), and "L<  (call) add more  selectivity to the  listing.
  2844.  
  2845.     The "LH" command lists all  messages that are  being held.   These
  2846.     messages are marked hold so that  the sysop can  act upon them  by
  2847.     using the edit message command.   If  any call in  the hold  calls
  2848.     list in the config file matches the TO, FROM, or BBS of a  message
  2849.     it will be marked as hold.   Another  example is if  a message  is
  2850.     received without a bid,  and has  a distribution call  in the  bbs
  2851.     field.  You cannot distribute a message without a bid attached  to
  2852.     that message.
  2853.  
  2854.     There are many other varations  available to the  sysop.  Most  of
  2855.     the two letter commands can also  take a number  after them.   "LE
  2856.     10" will list the last ten messages.  But probably the most useful
  2857.     commands are the "LE" and "LU"  which show what messages you  have
  2858.     received and what has yet to forward.
  2859.  
  2860.  
  2861.     Additional info may  be found  by looking  at the  "L COMMAND"  in
  2862.     chapter 4, and MESSAGES in chapter 7.
  2863.  
  2864. Chapter 11 -------------- ARCHIVE MESSAGES --------------------------- Page 1
  2865.  
  2866.  
  2867.  
  2868.                           ARCHIVING MESSAGES
  2869.  
  2870.  
  2871.       The CBBS code now handles a new method of saving KILLED messages
  2872.     If a sysop wants to save all  killed mail, the  the only thing  he
  2873.     has to do is create a subdirectory called  "KILL" in the  messages
  2874.     subdirectory.  If he wants to save all nts messages, then he makes
  2875.     a subdirectory called "NTS".   For  saving all mail  either to  or
  2876.     from the sysop, he then makes a subdirectory with his call.  (e.g.
  2877.     K3RLI)   You   can   also   make   special   subdirectories   with
  2878.     classifications of any @BBS field, such as, RLIBBS, MBLBBS, ALLPA,
  2879.     ect.  You can use as many subdirectories as you want, and  related
  2880.     classes of mail will be archived into them.
  2881.  
  2882.       So, if you are a traffic manager, and your only  interest is  in
  2883.     saving traffic and service messages,  then you only need create  a
  2884.     subdirectory of "NTS".  If you  are only interested in saving  any
  2885.     dialogue between  you   and  other  users,   then  you  create   a
  2886.     subdirectory with your call sign.  All of these subdirectories are
  2887.     made in the MSGS subdirectory.
  2888.  
  2889.       Another feature is that in each of these subdirectories, a  file
  2890.     called INDEX is created.   This file will  contain the headers  of
  2891.     all the message files archived.  As you add more message files  to
  2892.     the subdirectory, INDEX will have  the new headers appended to  it
  2893.     in serial fashion.  So  you will  have an  INDEX file  of all  the
  2894.     message files in the corresponding subdirectory.  All the archived
  2895.     files, including the INDEX file are  text files, and as such,  can
  2896.     be edited with any text editor.  You  can also copy all the  files
  2897.     from a subdirectory to a floppy, then delete all the files in that
  2898.     subdirectory and start over.  That way the floppy will contain all
  2899.     the archived message files and their corresponding index file.
  2900.  
  2901.      If you create a subdirectory called BUSY, all incomplete messages
  2902.     caused by a timeout or disconnect will  be put in  it.  The  index
  2903.     file from this subdirectory might be handy to see how some  of the
  2904.     paths reflect the quality of forwarding.  Poor paths usually  mean
  2905.     more timeouts and disconnects.
  2906.  
  2907.       Be sure you check the archived messages as you can fill  up  the
  2908.     the disk quite easily on an active  bbs.  A floppy can hold  about
  2909.     111 - 112 directory entries, and will display  an error once  that
  2910.     limit is reached. So you might copy the files off the  bbs  before
  2911.     that limit is reached.
  2912.       Another method is to copy the INDEX to a floppy,  and  then  use
  2913.     PKARC to archive the messages to an archive file.
  2914.     [\PKARC -a A:MESSAGES.ARC \MB\MSGS\K3RLI *.* ] and then delete the
  2915.     the subdirectory files.
  2916.  
  2917.       A new feature has been added to allow you to kill a message  and
  2918.     NOT allow it to be archived.  You use the KA <message #>  to  kill
  2919.     the message and it will not be archived during the GM.
  2920.  
  2921. Chapter 12 -------------------- MAINTENANCE -------------------------- Page 1
  2922.  
  2923.  
  2924.                             SYSOP MAINTENANCE
  2925.  
  2926.     The bbs if setup properly  will maintain itself quite nicely  with
  2927.     little sysop intervention.  With YES in the config line to KILL on
  2928.     forward, all forwarded mail will be killed.  With NO in the config
  2929.     line to KILL F & B type messages, bulletins will NOT be killed  on
  2930.     forward.  The mail will not be deleted from the mail file until  a
  2931.     mail file compress is  done.   This can be  done automatically  by
  2932.     having YES <hour> in the  config on the  line for compressing  the
  2933.     mail file.  The <hour> being  what hour  of the day  for the  file
  2934.     compress to take place.
  2935.  
  2936.     Other  spots  for  consideration  are  the  lines  in  the  config
  2937.     controlling stale or old mail.  The  first concerns Bulletin  type
  2938.     mail.  You enter  the number  of days  before a  Bulletin will  be
  2939.     marked as stale "O", or, if YES  follows the number  of days,  the
  2940.     Bulletin will be killed.  The second  line concerns Traffic  mail,
  2941.     and the third, Personal mail.  These  lines should look  something
  2942.     like this:
  2943.  
  2944.     45 YES  <----- Kill Bulletins after 45 days.
  2945.     7  NO   <----- Mark Traffic stale after 7 days.
  2946.     14 YES  <----- Kill Personal mail after 14 days.
  2947.  
  2948.     If you wish  to keep  a bulletin from  being killed  automatically
  2949.     after the set number  of days,  you must, at some time, edit  that
  2950.     bulletin and change the status to hold "H".  This way the bulletin
  2951.     will never be killed until you change the status back to normal.
  2952.  
  2953.     The Bid file requires maintenance,  as Bid's are not deleted  from
  2954.     this file.  The sysop must delete old  bids to keep the file  from
  2955.     getting too large, and also at  least once a  year, so old  annual
  2956.     bids are removed.   A  good time  to delete  some of  the bids  is
  2957.     probably quarterly.
  2958.  
  2959.     Version 6.2 of the  bbs will now end  the log file  at the end  of
  2960.     each month.  The log file will be renamed to include the number of
  2961.     the month in the log file.
  2962.  
  2963.     Version 6.4 of the bbs will  now add a  hierarchical route to  all
  2964.     incoming messages which have the bbs  field with a call listed  in
  2965.     the STATES.MB file.  So all you will need in the forward file is a
  2966.     list of states and local bbs's that you  forward to.  You can  add
  2967.     to the STATES.MB file any routes you think will be necessary.  Use
  2968.     STATES.EXE to make STATES.MB from the latest W9ZRX bbs list.   You
  2969.     can also add special routes like  WA7SSO.#WPA.USA.NA with #WPA  in
  2970.     your forward file.
  2971.  
  2972.     As time progresses, the disk will become  fragamented.  This  will
  2973.     cause the bbs operations to slow up a bit.  A good choice at  this
  2974.     time is  to backup  the  entire disk,  and  run one  of  the  disk
  2975.     optimizers to place  the disk  file system back  in smooth  order.
  2976.     After that's done, just reload the bbs. Again,  quarterly  is  the
  2977.     best time.
  2978.  
  2979. Appendix A ------------------ CHANGES -------------------------------- Page 1
  2980.  
  2981.       Changes from 4.4 to V4.51  Starting 2/18/88
  2982.  
  2983. Removed the pause message whenever the printer is toggled on.
  2984. Log file now logs @bbs field in message entries.
  2985. Log file now logs local message entries.
  2986. Password routine added to insure security of remote sysop.
  2987. Fixed bug in gate: Allowed users to use gateway when G not in config.
  2988. Alternate display of tnc cmds when 123 not in config. Shows port letter
  2989.   as upper case if normal, and lower case if timeout on cmd:.
  2990. Forward timeout field now in port config line. Allows time for tnc to
  2991.   flush out it's buffer on timeout before starting next connect.
  2992. Single header line when using pipe between multiple bbs's.
  2993.  
  2994.       Changes from V4.51 to V4.52  Starting 3/3/88
  2995.  
  2996. Fixed bug in Edit message to add bid to BID file with blank BID.
  2997. Printer now shut off when sysop goes BYE.
  2998. Now only messages with no type to a legal callsign become private.
  2999. Log file now logs Make type messages.
  3000. ":"'s added after Ok and No responses for uniformity.
  3001. User record is updated with next message number only if user does 'L'.
  3002. Added "Are you sure?" to Quit and Untangle commands.
  3003.  
  3004.       Changes from V4.53 to V4.6 10 Starting 6/10/88
  3005.  
  3006. Fixed bug with timeout in forwarding.
  3007. New edit message & edit user format for sysop.
  3008. Transparent mode now changed from edit port parameter.
  3009. Message without a bid at a distribution list put on hold.
  3010. Added Zip to white paper for consistency.
  3011. Fwdcmd now replies done when done for consistency.
  3012. Now match Conn or Disc anywhere in received line.
  3013. Fixed minor bug on DOS operations.
  3014. Received scripts now can be partially matched.
  3015. Waitcmd time now set correctly if using DesqView.
  3016. Check for [...] only for first response on connect.
  3017. Bulletins now considered like type F messages on forwarding.
  3018. Fixed minor bug for bid check in SM and MM commands.
  3019. Fixed generated bid in WP and Service messages.
  3020. Placed tnc in converse mode when sysop talks to user.
  3021. Corrected bugs in transparent mode operation.
  3022. Corrected long standing loging bug.
  3023. Made message auto-BID's 12345_K3XXX for consistency.
  3024. Added NEW DESQview and DoubleDOS flags in config.
  3025. Forwarded traffic not shown to users.
  3026. Stopped *** Invalid Command from other bbs causing messages to be lost.
  3027. Clsmon done at forwarding time.
  3028. Fixed bugs in remote sysop using pipes.
  3029.  
  3030.       Changes to V4.6 to V4.6+ Starting 7/24/1988
  3031.  
  3032. [...] in prompt lines does not reset sid options.
  3033. Added eat in dorev to pick up ending prompt bug.
  3034. Dos commands not done on force forward.
  3035. Fixed remote sysop operations to work properly in trans mode & pipes.
  3036. Changed %d to %u for counting of messages above 32k.
  3037. Better handling of distribution calls in edmsg.
  3038. Switching from converse to transparent mode handled better.
  3039. Misc. small errors corrected.
  3040.  
  3041. Appendix A ----------------- CHANGES --------------------------------- Page 2
  3042. (Continued)
  3043.  
  3044.  
  3045.       Changes from V4.6+ to V5.0 Starting 10/9/1988
  3046.  
  3047. Multiuser version using one common mail file between windows
  3048. Version 9 mail file structure.
  3049. Added voids to list headers for duplicate bids and disconnects.
  3050. Added MBIBM functions for handshaking thru HAND.
  3051. Added A and AI for forwarding on all windows by sysop.
  3052. Added setbusy and clearbusy and auto GM for mail compress.
  3053.  
  3054.  
  3055.       Changes from V5.0 to 5.1 Starting 11/11/1988
  3056.  
  3057. Added LOCK function and deleted pipe functions.
  3058. No beacon if the calls for BT is set at 1.
  3059. Deleted p_memory and DoubleDos references.
  3060.  
  3061.  
  3062.       Changes from V5.1 to 5.11 Starting 11/30/1988
  3063.  
  3064. Fixed parsehd() for some non-standard headers from other bbs code.
  3065. Deleted phead and replaced with parsehd.
  3066. Reverse forward does not need port->id match.
  3067. Fixed scripts left after Case E forwarding.
  3068. Disconnect now stops file and message dump to tnc.
  3069. String defined wrong in puser.
  3070.  
  3071.  
  3072.       Changes from V5.11 to V5.2 Starting 1/05/1989
  3073.  
  3074. Added message archiving by subdirectory on GM.
  3075. Fixed readusr to handle GU's.
  3076. Filter control characters from title.
  3077. Fix blank line from BBSMSG ON on retry out exceeded.
  3078. Removed unnecessary logging in forward.
  3079. Added LU command for listing of unforwarded mail.
  3080. @ sub-forward files can now be timed.
  3081. Speeded up forwarding using @ sub files.
  3082.  
  3083.  
  3084.       Changes from V5.2 to 6.0 Starting 2/05/1989
  3085.  
  3086. Added H to sid for hierarchical forwarding.
  3087. Fixed reversing forwarding of same bulletin back to bbs in .DIS list.
  3088. Inbedded header now supports hierarchical list.
  3089. Edit message and edit traffic supports hierarchical list.
  3090. New MBRESTM code to handle restoring hierarchical list.
  3091. Added bid to archived messages.
  3092. Fixed page check for added lines in headers.
  3093. Fixed bug in forward to PBBX mailboxes.
  3094. Quit now clears window busy flag.
  3095. Fixed some serial port bugs.
  3096. H status mail now listed with higher priority.
  3097. Actual bid now shown in busy header with sender's call, also in log.
  3098. Changed format and entry of edit port, edit system.
  3099. Fixed busy call being added to beacon text.
  3100. Added YF display of forward file name.
  3101. Corrected WP file update, and bulletin bid check.
  3102.  
  3103. Appendix A ----------------- CHANGES --------------------------------- Page 3
  3104. (Continued)
  3105.  
  3106.  
  3107.       Changes from 6.0 to 6.2 Starting 4/10/1989
  3108.  
  3109. Revised parsing routine for send line xxxxx@yyyyy.
  3110. Added KA to kill mail but NOT archive.
  3111. Fixed minor bug on DW and KT generation.
  3112. Added '$' status for fully forwarded distribution.
  3113. Now auto-kill of stale messages from config option.
  3114. Fixed dos command operation on manual forward.
  3115. Log entry for start and quit of bbs.
  3116. Log file now changes at end of month, with new log file created.
  3117.  
  3118.       Changes from 6.2 to 6.4 Starting 5/15/1989
  3119.  
  3120. Shpaths set up now for 40 or 80 column display. (Commodore users)
  3121. Automatic hierarchical routing using a modified W9ZRX's state file.
  3122. Added Read column to message listings.
  3123. In normal listing of messages a '*' indicates a hierarchical route used.
  3124. Edit message now uses STATES.MB for hierarchical route.
  3125.  
  3126.       Changes from 6.4 to 6.43 Starting 6/14/1989
  3127. (1)
  3128. Wild-cards now allowed in STATES.MB for hierarchical routes.
  3129. (2)
  3130. Small bug fixed using hierarchical server.
  3131. (3)
  3132. Fix for WP server to use hierarchical server.
  3133. Truncated title line for sysop listings. ";" overides.
  3134. Code now uses about 2k less memory.
  3135. Local listing now pages.
  3136. (4)
  3137. New varable for *vers.
  3138. (5)
  3139. Kill multiple messages for sysop. Up to 4 messages.
  3140. Adjusted parsehd for message numbers.
  3141.  
  3142. Appendix B ------------------ CONFIG.MB ------------------------------ Page 1
  3143.  
  3144.           SAMPLE CONFIG.MB for single port:
  3145.  
  3146. A123UDTIX   360 20 600 100 10 2 53 6 15
  3147. -> 145.01 Mhz.
  3148. LCUDE       300 10 600 100 10 0 53 8 15
  3149. -> Stations Connected
  3150. *** EOF
  3151. ADU
  3152. C:\oscar\
  3153. --> Amsat / Oscar
  3154. BDU
  3155. C:\files\
  3156. --> General information
  3157. CDU
  3158. C:\cuser\
  3159. --> Commadore 64 Users
  3160. DDU
  3161. C:\nts\
  3162. --> NTS \ ARES / RACES
  3163. FDU
  3164. C:\arrl\
  3165. --> ARRL / W5YI Material
  3166. GDU
  3167. C:\gateway\
  3168. --> Gateway Newsletters
  3169. HDU
  3170. C:\hamfest\
  3171. --> Hamfests and Related EVENTS
  3172. MDU
  3173. C:\map\
  3174. --> Packet MAPS
  3175. NDU
  3176. C:\net\
  3177. --> Net/Rom Information
  3178. *** EOF
  3179. K3RLI
  3180. ALLBBS DUMP
  3181. ALLUSA DUMP
  3182. *** EOF
  3183. hold
  3184. *** EOF
  3185. Hello $I, Welcome to the $O MailBox from $W in $Q
  3186. Last logged at $Y on $X.
  3187. Type H for help, L to list new messages.
  3188. *** EOF
  3189. $O>
  3190. $D/$T, $L, $N msgs>$H
  3191. $U de $O: at $Tz on $D ?,B,C,D,H,I,J,K,L,M,N,P,R,S,T,U,V,W >
  3192. K3RLI
  3193. Wilkes-Barre, Pa
  3194. W9ZRX
  3195. \mb\HELP.MB
  3196. \mb\INFO.MB
  3197. \mb\bbs\FWD.MB
  3198. \mb\bbs\LOG.A (For other windows use LOG.B, ect)
  3199. \mb\bbs\MON.A (For other windows use MON.B, ect)
  3200. \mb\bbs\MAIL.DAT
  3201.  
  3202. Appendix B ------------------ CONFIG.MB ------------------------------ Page 2
  3203. (Continued)
  3204.  
  3205. \mb\bbs\MAIL.BAK
  3206. \mb\bbs\USER.DAT
  3207. \mb\bbs\USER.BAK
  3208. \mb\msgs\
  3209. \mb\BID.MB
  3210. \mb\bbs\CALLS.A (For other windows use CALLS.B, ect.)
  3211. \mb\bbs\STATES.MB
  3212. 10  (Max # of Calls in calls.mb)
  3213. YES 02 (Autocompress [GM] mail file at XX hour)
  3214. YES (Using DESQview = YES)
  3215. YES (Prompt name)
  3216. YES (Prompt bbs)
  3217. YES (Prompt zip)
  3218. YES (Turn on logging)
  3219. YES (Log GateWay events)
  3220. YES (Log file transfers)
  3221. YES (Log message events)
  3222. NO (Log local events)
  3223. F (Control char to kick user off system)
  3224. E (Control char to return from talk mode)
  3225. E (Control char to interrupt user and talk)
  3226. E (Control char to interrupt idle MailBox and get local menu)
  3227. Any key to continue, Q to Quit.$H
  3228. $S ($W) is using the MailBox.
  3229. $R tried to connect.
  3230. Please stand by, $W would like to talk to you.
  3231. Hang on one minute, I will page $W.
  3232. $W did not answer, you might leave a message to K3RLI in the MailBox.
  3233. $S ($W) would like to talk to you.
  3234. The GateWay is not available.
  3235. You are linked to the other TNC. ^W returns to menu.
  3236. Attempting the connection on $F. ^W will abort.
  3237. Connection not established.
  3238. Connection established. ^W to disconnect.
  3239. Connection aborted.
  3240. You are listening to $F. Type anything to return to menu.
  3241. Enter TITLE for message:
  3242. Enter message #$C, ^Z (CTL-Z) to end:
  3243. You have new mail, $I, Type R <space> Msg# to read it:
  3244. Msg#  TR  Size  To    From   @ BBS Read Date/Time     Title
  3245. R:$J/$Kz $M@$O [$Q] Z:18702
  3246. Mail file empty.
  3247. Untangling Mail.
  3248. *** Killed message $M
  3249. New TO or <cr> to retain:
  3250. New @ BBS or <cr> to retain:
  3251. New TITLE or <cr> to retain:
  3252. New TYPE or <cr> to retain:
  3253. *** Sorry, That is not a NTS Traffic Message.
  3254. 10  (Max calls in BT list, 1 = no beacon )
  3255. 80  (Max bbs with msg to fwd to)
  3256. YES (Kill regular message after forward)
  3257. NO  (Kill type F & B message after forward)
  3258. YES (Generate svc msg on KT)
  3259. YES (Enable ET Command)
  3260. 45  YES (Age of bulletin messages when marked as stale, days. kill?)
  3261. 7   NO  (Age of NTS messages when marked as stale, days. kill?)
  3262. 30  NO  (Age of User Messageswhen marked as stale, days. kill?)
  3263.  
  3264. Appendix B ------------------ CONFIG.MB ----------------------------- Page 3
  3265. (Continued)
  3266.  
  3267.  
  3268. Send the file, ^Z (CTL-Z) to end.
  3269. N_Name
  3270. Compressing the user file.
  3271. --Call   Date Time Logd   Msg Hm BBS I PLBEDSK  Name        Zip
  3272. EDIT:   Y to delete, Q to Quit    <cr> to retain:$H
  3273. *** Please Enter N (name) to enter your name.
  3274. *** Please Enter NH (call) to enter the BBS where you get your mail.
  3275. *** Please Enter NZ (zip) to enter your ZIP code.
  3276. *** MailBox can't do it, probably a hardware problem.
  3277. *** None Found
  3278. *** Not your message.
  3279. *** There is alreay a file with that name.
  3280. *** Sorry - Timeout!!! -
  3281. *** What?
  3282. *** Done
  3283. *** No such Port.
  3284. *** No such Directory.
  3285. *** File not found: $H
  3286. *** Message not found.
  3287. *** Port is in use.
  3288. PASSWORD goes here -- 64 characters ----
  3289.  
  3290.