home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / hamradio / docs106.zip / WG7J106.ZIP / README.NOW < prev    next >
Text File  |  1992-11-19  |  70KB  |  1,609 lines

  1. ***IF YOU USE NETROM WITH MY CODE, PLEASE READ THIS !!!***
  2.  
  3. This is a  *brief* description of the mods i've made
  4. in JNOS v1.06 (and earlier)
  5. Base code was 911229 (KA9Q) PA0GRI v1.8a
  6.  
  7. COMPILER:
  8. In the makefile, you have the option of compiling with TC2.0, BC++2.0 or
  9. BC++3.0/1 . You can also choose to compile for 8086, or 80186 cpu.
  10.  
  11. If you choose the TC2.0 compiler, be aware that there is one function
  12. that doesn't exist in the TC2.0 library. This is the mktime() call.
  13. There is a substitute in expire.c, but it is NOT 100% accurate. Ie. times
  14. converted and used by the expire code will be off by a few hours...
  15. You also have to tone down the config.h file, since you are likely to run out
  16. of DGROUP space. TC2.0 doesn't allow for other segments to be used (the -Ff=x
  17. option in BC++2.0 and above).
  18.  
  19. I use Borland C++ 2.0 for all executables i distribute.
  20. 1.06 compiles fine with BC++3.1, after you change optimize options
  21. in the makefile
  22.  
  23. CONFIG.H:
  24. There are several different configurations in the source archive.
  25. distconf.h - used to create the distribution executable (8086 code)
  26. custom.h   - a custom compile with CD rom stuff
  27. bbsconf.h  - as i run it on my bbs system. (WG7J.OR.USA.NA)
  28. gwconfig.h - as i run it on my Internet gateway system (wg7j.ece.orst.edu)
  29. no_ax25.h  - test compile without ax.25 and net/rom code
  30. wa7shp.h   - as run on the wa7shp.or.usa.na bbs
  31. users.h    - end-user, with serial port and scc drivers, but no bbs options
  32.  
  33. NOTE:
  34. PA0GRI included most of my mods from v0.94 and earlier in his v1.9c and later
  35. I have added additional mods from PA0GRI's v1.9c/d and v2.0a-f
  36.  
  37. DOCUMENTATION:
  38. All PA0GRI specific commands can be found is his nos_1229.man .
  39. As of v1.00 I have written a hopefully more comprehensive document
  40. describing how to use the mods. Some of that is aimed at running
  41. this code as a fullservice BBS, as i do at wg7j.or.usa.na
  42. This can all be found in wg7jmods.txt in the archive wg7jdoc.zip
  43. (last updated for 1.05 ! See this file for 1.06...)
  44.  
  45. SOURCES:
  46. If you obtained sources, feel free to do with them as you please,
  47. as long as you keep and obide the copyrights in the different source modules!
  48. Latest sources can be obtained on Internet by anonymous ftp from
  49. wg7j.ece.orst.edu in ./1.02 ./1.03 etc.
  50. ucsd.edu in hamradio/packet/tcpip/wg7j
  51. tomcat.gsfc.nasa.gov in tcp/nos/wg7j
  52. or by sending a HD 3.5" (ie 1.44Mb)  floppy disk
  53. with return postage to the address below.
  54. (This is SOURCES ONLY, I do NOT do 'custom compiles'!)
  55.  
  56. If you add/modify anything that might be useful to others, I would
  57. appreciate the mods, to possibly add to the code.
  58.  
  59.     As always,
  60.     questions, remarks, suggestions
  61.         are welcome.
  62.  
  63.         Johan Reinalda, WG7J/PA3DIS
  64.         420 NW 9th
  65.         Corvallis, OR 97330
  66.  
  67.         email: johan@ece.orst.edu (or wg7j@wg7j.ampr.org.)
  68.         (or the sloooower WG7J@WG7J.OR.USA.NA via packet)
  69.  
  70. "Definitive is the source, not this note :-)"
  71.  
  72. HINT HINT HINT HINT :
  73. if you are experiencing problems receiving with certain tnc's with this
  74. code, set the dtr and rts parameters correctly
  75. 'param <iface> dtr 1' and 'param <iface> rts 1'
  76. (this is due to a rewrite of the original 8250 drivers
  77.  in KA9Q 911218 and later)
  78.  
  79.  
  80. Additions/changes are:
  81.  
  82. VERSION 1.06 (921104)
  83.  
  84. - all commands setting interface flags now TOGGLE! Ie. first time the flag is
  85.   set and the feature turned on, next time it is turned off, ad infinitum :)
  86.   They are:
  87.   convers port                  ax25 bport
  88.   mbox mport                    mbox hide
  89.   ax25 digi                     ax25 hport
  90.   arp eaves                     arp poll
  91.   ip hport
  92.  
  93. - 'tcp access' command added. Good for internet gateways. Defined with
  94.    TCPACCESS switch in config.h
  95.  
  96. - IP heard logging. Turn on per interface with
  97.   'ip hport <iface>'
  98.   For ax.25 interfaces, logs all ip packets heard on the channel.
  99.   For other interface types, logs ip packets that the system routed.
  100.  
  101.   'ip hsize' sets size of table. 0 means no limit!  Default is 8.
  102.  
  103.   Shown with with mailbox 'IH)eard' command, or with
  104.   'ip heard'
  105.   or you can now finger 'iheard' to get the list.
  106.  
  107. - AX25 heard logging needs to be turned ON per interface !!!
  108.   'ax25 hport <iface>' does this. Use 'ax25 filter' still to set
  109.   options for source or destinations. (1=no source address, 2=no dest. address
  110.   3=no logging at all !)
  111.  
  112.   'ax25 hsize' sets maximum number of call in the total list (ie. NOT per
  113.   interface !). 0 means no limit, and is the default !
  114.  
  115. - security hole in mailbox telnet permissions fixed.
  116.  
  117. - screen handling now senses the screen size correctly. Ie. you can use
  118.   80x25,80x43, etc modes. With help from Ron Henderson, WA7TAS
  119.   I tried to assure this works even with vga drivers that
  120.   do not report correct sizes to the gettextmode() call (due to the fact
  121.   that I work on a system that did this faultily :-). It's been tested
  122.   in 80x25,80x28,80x43,80x50,132x50,132x60 modes.
  123.   'info' will show the detected tty size.
  124.  
  125.   On some systems this still doesn't detect the screen size correctly;
  126.   if so, set the number of rows and columns on you screen in the autoexec.nos
  127.   file with 'rows #' and 'columns #' commands (this does NOT work from
  128.   the command line !!!)
  129.  
  130.  
  131. - new arp subcommands:
  132.   'arp eaves [<iface>]'
  133.   Display or set the 'arp eaves drop' functionality per interface.
  134.   If set, all arp replies overheard on the interface will be logged in the
  135.   arp table. This builds a large table on ethernet interfaces, but speeds up
  136.   arp discovery, and might be usefull on radio interfaces.
  137.  
  138.   'arp maxq'
  139.   Display or set the max number of packets waiting for an arp resolution
  140.   to finish. Default is 5 packets.
  141.  
  142.   'arp poll [<iface>]'
  143.   Display or set the 'arp keepalive polling' functionality per interface.
  144.   If set, when an arp entry expires, a query will be sent for the address; this
  145.   keeps the arp table fresh, but possibly retains lots of unneeded entries.
  146.  
  147.   'arp sort y/n', defaults to yes, to sort the arp display.
  148.   (from Doug Crompton, wa3dsp)
  149.  
  150. - Added the PACKETWIN driver, for the Gracilis Packetwin Card.
  151.   To use, define the 'PACKETWIN' option in config.h
  152.   (Disclaimer: I have NOT tested this, but others have used it with my code :-)
  153.  
  154. - Added Doug Crompton's (wa3dsp) mods:
  155.   route sort y/n
  156.   tcp view bytes  - t v b
  157.   tcp view timers - t v t
  158.   icmp trace 0|1|2
  159.   rdate server <ipaddress>
  160.   rdate offset +-n
  161.   'ftp' client commands: ?,help,lcd,ldir, and lmkdir (See w7jmods.txt for more)
  162.   'dir' allows for drive letters.
  163.   'ftp resume/rput' (see wg7jmods.txt)
  164.  
  165. - mbox 'IP' command shows non-private routes only.
  166.  
  167. - morecore failures are only logged to disk when 'mem debug' is on
  168.  
  169. - added nntpserv.c from Doug Crompton, WA3DSP
  170.  
  171. - fixed fifo setup for 16550's
  172.  
  173. - increased stack size for finger and ttylink servers to fix overflow problems
  174.  
  175. - forward connects to unknown netrom nodes now fail.
  176.  
  177. - fixed arp-calls in ax25aar.c
  178.  
  179.  
  180. VERSION 1.05 (921021)
  181.  
  182. - at command allows events to be killed, and rescheduled. From Ron Henderson,
  183.   WA7TAS.
  184.   'at k <#>' to kill event #, where # is the number shown in the 'at' command
  185.   'at [time] command+' to indicate recursion. Ie. after the command has been
  186.   executed, timed execution will be started again.
  187.   EG: at now+0005 dir+   will show a directory listing every 5 minutes
  188.  
  189. - fixed mkname.c for compile with tc2.0
  190.  
  191. - added domain name server fix for CNAME queries, from Don Sandstrom, KG7CP.
  192.  
  193. - new and improved tipmail.c from Milton Miller and Ben Thornton.
  194.  
  195. - asy flow control bug fixed in asytimer() (file i8250.c)
  196.   from Milton Miller and Ben Thornton
  197.  
  198. - made 'Tick' volatile, to avoid problems. From Milton and Ben.
  199.  
  200. - when netrom routes are dropped, either due to obsolesence counter becoming
  201.   zero or by a manual route drop, netrom connections using that route will
  202.   now be be purged if that route was the only route left to the netrom
  203.   destination.
  204.  
  205. - 'netrom connect' and 'netrom split' don't accept unknown node destinations
  206.   anymore.
  207.  
  208. - 'MS' display changed; now has
  209.   Core: 76096                   -> coreleft value in bytes
  210.   Up: 3:19:46:59                -> up 3 days, 19 hours
  211.   Logins: 49                    -> 49 total logins
  212.   Users: 2                      -> currently 2 users
  213.   Count: 19                     -> 19 different users have logged in
  214.   Sent: 43                      -> users sent 36 messages
  215.   Read: 186                     -> users read 186 messages
  216.   Rcvd: 171                     -> got 171 msg forwarded to us
  217.   Fwd: 124                      -> forwarded 124 message to other bbs's
  218.  
  219. - added 'finger database server'; the finger server now will read info
  220.   from the file '/finger/dbase.dat', if there is no '/finger/username' file.
  221.   Ie. if you finger 'johan@wg7j', and the file '/finger/johan' exists,
  222.   it will be sent; if the file '/finger/johan' does NOT exist, the
  223.   '/finger/dbase.dat' file will be scanned (exists.)
  224.   The first line found in this file that starts with the 'username' requested,
  225.   ie here 'johan', will be sent...
  226.   EG: the '/finger/dbase.dat' file can contain:
  227.   johan: WG7J, Corvallis, OR USA, ph.xxx-xxxx. EXTRA CLASS
  228.   ka7ehk is Jim Wagner, in Tangent, OR. Technician license since 1795 :)
  229.   etc...
  230.   NOTE:
  231.   if you have a line starting with 'johannes', a finger to 'johan' will show
  232.   this line if it's the first !
  233.  
  234. - added  'copy <file> <newfile>' command.
  235.  
  236. - added 'timed' support, from Brian K. Teravskis, WD0EFL
  237.  
  238. - fixed buf in send_ax25() and send_nr4(), not freeing buffer if control
  239.   block is invalid.
  240.  
  241. - display flowmode doesn't start until after the autoexec.nos file has been
  242.   executed. Avoids lockups on remote systems.
  243.  
  244. - fixed forwarding with empty subject line in msg; now subject is "none".
  245.  
  246. - fixed '*** done' interpretation in forward.c (looking for -2 instead of 2!)
  247.  
  248. - bbs forwarding now can be 'scripted'. Format of forward.bbs file is expanded:
  249.  
  250.   w0rli                 <- still the bbs to forward to
  251.   ax25 ax0 w0rli        <- still how to forward to
  252.   [ multiples of:
  253.   .send this text
  254.   +continue if this string is received
  255.   @wait_this_long for a reply  ]
  256.   w0rli                 <- the areas to forward...
  257.   pnw
  258.   north
  259.   -----------           <- end of this entry
  260.  
  261.   Valid connect-script lines are:
  262.  
  263.   '.' lines are like before. The text following will be sent over the
  264.         connection.  This line doesn't need to contain text. In that case,
  265.         a <cr> only gets send.
  266.         NOTE: This will also reset the '+'  reply search string to null!
  267.  
  268.   '+' lines set a reply string to search for when a line is being received
  269.         with the @ command.
  270.  
  271.   '@' lines set a timeout in seconds in wich to receive a line over the
  272.         connection. This is the maximum time the system will
  273.         wait for a reply. At this point, an attempt is made to receive a line
  274.         from the connection in the time specified.
  275.         If nothing is received after the timeout time, forwarding for this
  276.         entry is cancelled.
  277.         If something is received, and a search string set with the + command,
  278.         forwarding will be continued only if the search string appears
  279.         somewhere in the line received.
  280.         If the search string was not set, forwarding is continued.
  281.  
  282.         NOTE: if the value after @ can not be converted to a number, the
  283.         default is 90 seconds.
  284.         NOTE: the search string is reset if forwarding continues after the
  285.         @ command.
  286.  
  287.  
  288.    You can have as many of these lines to establish a connection. They need
  289.    not be in any particular order.
  290.  
  291.    CAVEAT:
  292.    Replies from the connection need to be full lines; ie they have to be
  293.    terminated by a proper end-of-line sequence. This means you can not wait
  294.    for the login prompt from a NOS system, since those are NOT terminated
  295.    with a end-of-line sequence. (see the examples)
  296.    You need to know the EXACT reply from systems you connect through.
  297.    Each @ command reads only one line of data from the connection (if
  298.    any, offcourse). This means that if a system replies multiple lines
  299.    after a connection is made, you need multiple @ commands. (see the
  300.    examples below). This makes it hard to connect via systems that can
  301.    have varying replies, like NOS systems that do not have your system
  302.    marked as a BBS, and thus will send welcome messages and varying
  303.    message-of-the-day etc...
  304.  
  305.  
  306. Some examples:
  307.  
  308. 1- a connection via a netrom neigbour:
  309.         w0rli
  310.         ax25 ax0 k7uyx-1        <- initial connection to netrom node
  311.         .c rlimb                <- ask for a netrom connect from this node
  312.         +Connected              <- if we don't get this, things went wrong
  313.         @60                     <- maximum one minute wait !
  314.         w0rli                   <- forward these areas...
  315.         pnw
  316.         allor
  317.         ---------
  318.  
  319. 2- a connection via a JNOS system .
  320.    This assumes that you are marked as a BBS at the JNOS system, so that
  321.    you only get a '[JNOS...] and '>' prompt...
  322.  
  323.         n7dxt
  324.         ax25 iposu              <- initial connection to the JNOS system
  325.         +[JNOS                  <- wait for sign-on message from the JNOS box
  326.         @15                     <- don't wait longer then 15 seconds
  327.         +>                      <- wait for the prompt
  328.         @15                     <- wait 15 seconds at the most
  329.         .c ax0 n7dxt            <- next, request a gateway connect
  330.         +Trying                 <- NOS replies it's trying...
  331.         @15                     <- wait 15 secs max.
  332.         +Connected              <- wait for 'IPOSU:WG7J-3} Connected to N7DXT'
  333.         @60                     <- wait 60 secs max
  334.         n7dxt                   <- send these following areas
  335.         pnw
  336.         allor
  337.         ----------
  338.  
  339. 3- A connection to a JNOS system, and from there a telnet to a remote bbs
  340.    (again, assumes your system is marked as a bbs !)
  341.  
  342.         wg7j
  343.         ax25 con iposu          <- initial connection to JNOS
  344.         +[JNOS                  <- sign-on from JNOS
  345.         @15                     <- shouldn't take too long
  346.         +>                      <- next is the prompt
  347.         @15                     <- not too long either
  348.         .t wg7j.ampr.org.       <- ask for a telnet connect
  349.         +Trying                 <- JNOS is trying
  350.         @15                     <- should come pretty soon
  351.         +connected              <- wait for '*** connected to xxx'
  352.         @45                     <- might take a while
  353.         @30                     <- wait for another (blank) line
  354.         +NOS                    <- now come the telnet sign-on message
  355.         @30                     <- wait for this
  356.         @30                     <- after this is a blank line, wait for it
  357.         .w0rli                  <- now we get 'login:' and "Password:" prompts,
  358.         .whomever               <- but they have no <cr>'s, so just answer
  359.         sysop                   <- we're there, forward these areas.
  360.         allor
  361.         wg7j
  362.         pnw
  363.         nos
  364.         ------
  365.  
  366. - '/sounds y|n' in convers added. This turns the bells on or off.
  367.   Ie. if you don't want the bell if new users log on, do a '/s n' after
  368.   you logon.
  369.  
  370. -'mbox hideport [<iface>]'
  371.  Set or show the 'hide' flags on interfaces. If this flag is set, the mailbox
  372.  'P' command will not list this interface for ax.25 connection, unless the user
  373.  has sysop priviledges.  AX.25 gateway connections are also dis-allowed,
  374.  unless the user has sysop privs. (This is good for stuff like forward-only
  375.  ports, etc...)
  376.  
  377. - fixed scanning of the '/p' command in convers server.
  378.  
  379. - smtp server accepts messages to areas with sub-directories.
  380.  Eg. you can now receive mail for rec.radio.packet, or
  381.  test/toys, or rec\ham
  382.  These messages will be placed in the right subdirectory under /spool/mail.
  383.  CAVEAT: the subdirectory HAS TO EXIST when the mail is received!! It
  384.  is not created.!!!
  385.  (Ie. int the above, /spool/mail/rec/radio, /spool/mail/test have to exist!)
  386.  
  387. - mailbox keeps track of new mail in areas since user last logged out.
  388.  If 'mbox newmail on', user will get notified on login wich areas have
  389.  new mail. New mbox 'AN' command gives the same information.
  390.  (default is on)
  391.  
  392. - the interface flag field, as shown in the 'ifconfig' command,
  393.   has more use. It's bits have the following meanings:
  394. #define CONNECT_MODE    1   /* Send datagrams in connected mode */
  395. #define IS_NR_IFACE     2   /* Activated for NET/ROM */
  396. #define NR_VERBOSE      4   /* NET/ROM broadcast is verbose */
  397. #define IS_CONV_IFACE   8   /* Activated for conference call access */
  398. #define AX25_BEACON     16  /* Send AX.25 beacons */
  399. #define MAIL_BEACON     32  /* Send MAIL beacons */
  400. #define HIDE_PORT       64  /* Don't show port in mbox P command */
  401. #define AX25_DIGI       128 /* Allow digipeating */
  402.  
  403. - convers configuration is now done with commands, and not the convers.cfg
  404.   file any more. New 'convers' command has subcommands :
  405.  
  406.   allow [ipaddres|hostname]
  407.         - if set, only hosts in this list will be allowed to link to us
  408.           This does NOT effect regular users.
  409.           Host to allow can be set with multiple 'convers allow' commands
  410.           Typing 'convers allow' shows the hosts to allow.
  411.  
  412.   hostname [name]
  413.         - set or show the convers host name as announced to users and
  414.           across links. 10 chars max. When the 'hostname' command is
  415.           executed, the 'convers hostname' is automatically set to the
  416.           10 first chars of it, and if '.' are found from the right,
  417.           they terminate the string.
  418.  
  419.   interface [<iface>]
  420.         - activate interface <iface> for ax.25 convers call connections.
  421.          with no argument will show active interfaces.
  422.  
  423.   mycall [call]
  424.         - set or show the ax.25 convers call.
  425.  
  426.   link  [<hostname|ip-address>] [linkname]
  427.         - add a convers link to the system at hostname or ip-address.
  428.           linkname is optional, and sets the name of the link.
  429.           (It will be replaces once the remote systems announces it's
  430.           true name...)
  431.  
  432.   t4 <seconds>
  433.         - set or show the ax.25 t4 timeout value for conference call
  434.           connections. Default is 7200, ie 2 hours.
  435.  
  436. - user permission bit to disallow convers access from mailbox or
  437.   from convers call.
  438.   #define NO_CONVERS 32768
  439.   If set, user will not be allowed to give the 'C' command, or connect
  440.   to the convers call.
  441.  
  442. - fixed double <cr> bug in convers personal data across links. Also fixed
  443.   month display in links-listing.
  444.  
  445. - 'netrom verbose' is gone. 'netrom interface' now defaults to none-verbose
  446.   and the additional 'v' makes it verbose. EG:
  447.   netrom interface ax0 192      -> non-verbose broadcasting
  448.   netrom interface ax0 192 v    -> verbose broadcasting
  449.  
  450. - 'ax25 confcall' and 'ax25 ct4' are gone. See above.
  451.  
  452. - 'ax25 digipeat [<iface>]' now shows or sets digipeating per interface.
  453.   All interfaces default to no digipeating when first attached !
  454.  
  455. - new 'ax25 bcport [<iface>]' command. Sets or displays the ports that
  456.   ax.25 beacons are sent out on. You need one for each interface you want
  457.   to beacon on. Eg:
  458.   ax25 bcport ax1
  459.   ax25 bcport vhf
  460.   (beacon interval and text are still set with 'ax25 bcinterval' and
  461.    'ax25 bctext')
  462.  
  463. - new 'mbox mport [<iface>]' command. Sets or displays the ports that
  464.   'Mail for:' beacons go out on. You need one for each interface you want the
  465.   mail-beacon to be sent out. Eg:
  466.   mbox mport ax1
  467.   mbox mport vhf
  468.  
  469. - new 'mbox sendquery'. If set, the mailbox will send a query to ask users
  470.   if they really want to send the mail after they've type the /ex
  471.   A 'N' or 'n' response will abort the message at that point. The user will
  472.   be notified the message was aborted by a 'Mgs aborted' message.
  473.   (default is on)
  474.  
  475. - forwarding is now a server-process. Start with 'start forward'.
  476.   Timer is still set with mbox timer command.
  477.   (this and a few other things from Milton Miller, kb5tkf and
  478.    Ben Thornton, wd5hls)
  479.  
  480. - fixed bug in forward.c that would forward with Mycall as the node call,
  481.   instead of the netrom call. Caused problems if Mycall != Netromcall
  482.   (with help from Milton Miller)
  483.  
  484. - AX.25 Paclen can now be set on a per-interface basis.
  485.   'ifconfig <iface> paclen <num>' will do the trick.
  486.   (this is good for HF, where you want a small paclen !)
  487.   Default is the 'ax25 paclen' value (ie. 256)
  488.  
  489.   NOTE: If the interface is activated for NETROM, setting this will also
  490.   effect the 'netrom mtu' value. It will be set to (smallest paclen) - 20.
  491.   If this is > 236, the netrom mtu will be 236 (the protocol maximum!).
  492.   Eg: if you have a HF port with paclen of 64 and active with netrom,
  493.   and another VHF port active with netrom and with paclenof 256, then
  494.   netrom mtu is 44 and 'ifconfig netrom' will show this !
  495.   You can override this automatic assignment with 'ifc netrom mtu <num>',
  496.   but BE AWARE of fragmentation problems that will occur if you run this
  497.   over an interface with a smaller paclen then netrom-mtu + 20 !!!
  498.   (You get ax.25 V2.1 fragmentation, and Thenet, BPQ. MSYS etc can NOT handle
  499.    this! NOS and it's derivatives are the only one that can handle this !!!! )
  500.  
  501. - Setting the netrom mtu now also works for netrom data! (it was originally
  502.   intended for IP over NETROM use; however, both user data and IP packets are
  503.   just data for the netrom protocol, so who cares :) Previously, everything
  504.   pertaining to NR4 data was hardcoded to 236 bytes max, and would result in
  505.   AX25 V2.1 fragmentation if paclen < 256, NO MATTER what.
  506.   In NR4.C, send_nr4() now chops packets larger then netrom mtu into
  507.   multiple smaller ones, thus preventing ax.25 V2.1 fragmantation.
  508.   (see also 'ifconfig iface paclen' above !)
  509.  
  510. - AX.25 connection calls are now on a per-interface basis. Ie. you can have
  511.   the same two calls with connection on two different interfaces:
  512.   wg7j-3  <->  ka7ehk  on ax0 , and  wg7j-3  <-> ka7ehk  on ax1 now works.
  513.  
  514. - 16550 fifo trigger level can be set from attach command. Valid values are
  515.   1,4,8 or 14. If you use this, the 'f' option is now mandatory !
  516.   Add the trigger level following the 'f' or as an additional argument. EG:
  517.   'attach asy 3f8 4 ax25 ax0 1024 256 9600 f8' or
  518.   'attach asy 3f8 4 ax25 ax0 1024 256 9600 f 8'
  519.  
  520. - bbs forward loop detection added. Ie. when you receive a message that you've
  521.   forwarded already, there is a forward loop. New 'bulletin loophold' command
  522.   shows or sets the number of loops after wich to hold a message. 0 disables
  523.   it, and is the default. Eg. 'bul loop 2' will hold any message that has 2 of
  524.   your R: headers in the message when it is received. Loop-held messages get
  525.   an additional header, 'X-BBS-Hold: Loop'.
  526.   Currently, the sysop is NOT notified of the held message. However, they show
  527.   up with the common 'H' as the type of the message in the List display.
  528.   Messages marked 'H' can only be read by users with sysop priviledges, wether
  529.   that message is in a user's private mail area or not. (This is jumping ahead
  530.   of possible message contents scanning and holding)
  531.  
  532. - stktrace() from the new KA9Q sources added. This is currently only used
  533.   for invalid free() calls. For each invalid free, it will show a trace of
  534.   where the call came from. This should facilitate debugging.
  535.   The 'test' command demonstrates it. Output is in the file stktrace.out.
  536.   -> You need to have the map-file (nos.map) in the current directory !
  537.   If you have invalid frees showing in the 'mem stat' command, and you have
  538.   stktrace.out output, please send me a copy of that file. That will allow
  539.   me to try and figure out what happened.
  540.  
  541. - netrom default round-trip-time increased to 45 seconds.
  542.   (15 seconds is pretty unrealistic for a loaded 1200bd network :-)
  543.  
  544. - minor delinting and convers bug fix by Mike Gallaher, wa3hee
  545.  
  546. - incoming ttylinks do not create a session if system is unattended
  547.  
  548. - smtp server checks Message-Id's for possible duplicate BID's
  549.   If found, message is accepted, but not delivered.
  550.  
  551. - mailbox disconnects on any '***' command, except '*** linked to' (bug fix)
  552.   '*** linked to' should now work with any format, including texnet.
  553.  
  554. - conference connection sockets are put into no-block mode, this solves
  555.   the data backlog problem that bogs the system down.
  556.   (it will still fill up the tx buffer (even beyond the window size),
  557.   but the send_mbuf() call will not block anymore).
  558.  
  559. - fixed conference access via mailbox inactivity timeout problem.
  560.   Same with mailbox 'D', and 'W' commands.
  561.  
  562. - All tcp connections allow verbose ip ports. Currently allowed are
  563.   "convers","telnet", and "ttylink". This is case sensitive, but you don't
  564.   need the whole name. First lettter (for convers and telnet), or first
  565.   two (ie. tt for the ttylink port) is enough.
  566.   Eg. to telnet to the conference server with a split screen, do
  567.   "ttylink <hostname> convers" (this is the same as "ttylink <hostname> 3600").
  568.   This also work from the mailbox: 'T wg7j.ampr.org. convers'
  569.  
  570. - added split screen options for ax.25 and netrom connects (if compiled in)
  571.   New command "split <iface> <call>" is same as "connect", but with S.S.
  572.   New command "netrom split <node>" is same as "netrom connect" but with S.S.
  573.   (Remember: you can do S.S. telnet's with the 'ttylink' command, by adding
  574.    the telnet port number! (see also above))
  575.  
  576. - ax25 route commands now takes interface. This allows different digi paths
  577.   per interface ! Eg. MAIL beaconing:
  578.   if you want to digi via different nodes on different interfaces...
  579.   'ax25 route add mail ax0 kf7dq-1'
  580.   'ax25 route add mail ax1 wg7j-3'
  581.  
  582. - arp add/drop/publish now take interface.
  583.   'arp add wg7j.ampr.org. ax25 wg7j-3 ax0'
  584.   'arp drop 44.26.0.162 ax25 ax2'
  585.   'arp publish gw.wg7j.ampr.org. ax25 wg7j-2 ax1'
  586.  
  587. - timer process is modified, fixes some timing with PI, SCC and other things.
  588.  
  589. - mailbox accepts and handles <del> chars (0x08) (from wa7tas).
  590.  
  591. - mailbox areas with more then maxmsg messages now allow reading of first
  592.   maxmsg messages.
  593.  
  594. - fingers to the system now show the 'last connected' info for the requeste
  595.   user, if exists. After this, the finger file (if exists) will be shown,
  596.   as usual.
  597.  
  598. - remote sysop 'dir' and 'more' commands work, but without more-prompting.
  599.  
  600. - 'netrom hidden [on|off]' enables or disables showing of hidden nodes in
  601.   the N display
  602.  
  603. - 'netrom interface' allows changing parameters for already active interfaces
  604.  
  605. - Tracing on AXIP interfaces now also works on receive (ie. input)
  606.  
  607. - fixed command line expression passing in .asm files for BC++3.1
  608.  
  609. - new mkname.c and other stuff for BC++3.1 from n1bee.
  610.  
  611. - nr4 ack bug, kiss-ioctl bug fixes per n1bee.
  612.  
  613. - netrom bcpoll <ifname>, will poll other systems running jnos1.05(or later)
  614.   or dataengine's running jnos40 to send a routes broadcast. Speeds up route
  615.   discovery...
  616.   Eg. add this to the autoexec file for each activated netrom interface.
  617.   This was primarily written for the DataEngine code, that doesn't have the
  618.   'netrom load' from disk capability.
  619.  
  620. - tcp retries 0, resets to original KA9Q behaviour, ie no retry max.
  621.  
  622.  
  623. VERSION 1.04 (920805)
  624.  
  625. - at command now takes minutes only too; format 'at mm <cmd>'
  626.  
  627. - format of /convers.cfg has changed:
  628.   localname             -> still the local convers name
  629.   name moot hostname
  630.   name2 moot hostname2
  631.   etc.
  632.   where 'name' and 'name2' are the names of the convers links to put in.
  633.   'moot' can be anything, but needs to be there for compatibility reasons
  634.   (previously it had to be 'telnet' but that is the only thing accepted and
  635.    is now hard coded (saved code))
  636.   'hostname' is optional, and if defined, it is the hostname that will be used
  637.   first to resolve the ip address of the host to link to. If 'hostname' can
  638.   not be resolved, then 'name' will be used as previously.
  639.   Eg:
  640.   Corvallis whatever jnos.wg7j.ampr.org.
  641.   This will try to link to jnos.wg7j.ampr.org. first, if that isn't a valid
  642.   address, then it will try to link to 'Corvallis'
  643.  
  644. - added convers '/personal' command to show some info. Up to 30 chars will
  645.   be shown in the users display (/w command).  This info also travels across
  646.   links to compatible servers (ie servers running jnos1.04 or later).
  647.   eg '/p Johan in Corvallis, OR'
  648.  
  649. - convers hostname can be 10 chars now (instead of 8 previously).
  650.   Be carefull if you link with other server running older, noncompatible
  651.   code; it is wize to keep it down to 8 chars in that case...
  652.  
  653. - added convers loop detection code, from dl9sau
  654.  
  655. - bug in convers code that didn't free the socket of a failed link
  656.   attempt is fixed.
  657.  
  658. - separate ax.25 conference call added, with separate t4 timer.
  659.   If set, connections to this call dump the user directly into the
  660.   conference bridge. New 'ax25 confcall' and 'ax25 ct4' commands.
  661.  
  662. - new commands 'write' and 'writeall' to send message to users.
  663.   'write' takes either socket # or mailbox username, and message
  664.   and 'writeall' takes message and sends it to all mailbox users
  665.   Eg: 'write 131 test'  'write wg7j "testing messages"' or
  666.   'writeall test'  'writeall "testing messages"'
  667.  
  668. - socket display (eg. 'so 131') now shows socket creation time
  669.  
  670. - Added tcp retry timeout from iw0cnb. New 'tcp retries' command.
  671.   Will reset tcp connections after too many retries.
  672.  
  673. - commented out some non-used code in the socket interface (AX25_UI sockets)
  674.   (saves 1.5k :-) )
  675.  
  676. - New mailbox rewrite rule:
  677.   mail rewritten to 'refuse' is refused from the mailbox with a 'NO' or
  678.   'Bad host' reply.
  679.  
  680. - Upped the maximum number of netrom and axip interfaces to 16
  681.  
  682. - 'netrom interface' shows active netrom interfaces
  683.   (verbose flags: v - yes, n - no, and f - according the verbose setting)
  684.  
  685. - tcp connect requests (Syncs) are refused if low memory, and
  686.   socket() call will fail if memory low.
  687.  
  688. - AX.25 source call logging now correctly logs outgoing call, instead
  689.   of interface call. (ie. gateway users will show up in list!)
  690.  
  691. - conference bridge access from mailbox is not via telnet connection
  692.   anymore, but direct. Is faster and saves 2 sockets, 1 process and
  693.   lots of system overhead. Convers.c has been cleaned up a bit too.
  694.  
  695. - added check in telnet login procedure for valid (Dos-filename) login name
  696.  
  697. - all memory address displays have dropped the '0008'. All commands involving
  698.   memory  addresses do not accept the '0008' anymore.
  699.  
  700.  
  701. VERSION 1.03 (920701)
  702.  
  703. - 'mbox tmsg' command. Shows or sets the 'telnet msg', that is
  704.   shown to incoming telnet users before the login: prompt
  705.   eg. mbox tmsg "Please use your call to login. Thank you"
  706.  
  707. - Domain Name Server code added. Start with 'domain startdns'
  708.   Does not support multiple queries per frame, does not support
  709.   authority and additional rr's in the reply.
  710.   Always gives non-authoritative replies.  Has been tested to
  711.   work with A,CNAME,MX,PTR,HINFO,SOA,NS queries. If other remote servers
  712.   have been configured, if needed they will be used to resolve queries.
  713.  
  714. - 'netrom interface' changed:
  715.   syntax is now 'netrom interface ifname ### [n|v]'
  716.   where ifname is the interface name to attach
  717.   ### is the route quality, 0-255
  718.   and 'n' or 'v' is optional overriding of the verbose setting.
  719.   If 'n' is given, the route broadcasts on the interface are none-verbose
  720.   if 'v' is given, they are verbose.
  721.   These 2 override the verbose flag !! Ie. if verbose is off, but the
  722.   interface flag is verbose, all routes are broadcast.
  723.   If no option is given, the verbose flag is used...
  724.  
  725.   This allows verbose broadcasts on axip interfaces, but keeps all the remote
  726.   nodes off the local lan by disabling verbose broadcasts on that interface.
  727.  
  728. - users don't need telnet-permissions anymore for C,CA, and O
  729.  
  730. - KU will undelete messages marked for deletion
  731.  
  732. - 'L<' searches the 'From:' field
  733.  
  734. - a finger to 'conf' will show the conference bridge users (if configured)
  735.  
  736. VERSION 1.02 (920615)
  737.  
  738. - bugfix for recording of telnet session by Ron, vk6zjm added
  739.  
  740. - POP2 and POP3 from was0206 and gri-2.0j was added.
  741.  
  742. - userlogging works now also for any mailbox starting with "sys",
  743.   even if not an area; this allows sysops to read sysop-mail from
  744.   private areas, and have the system keep track of last read msg.
  745.  
  746. - the mailbox 'A' command will show the area names only, NOT
  747.   the descriptions. To show descriptions, type AF
  748.   Comments in /spool/areas now NEED TO START with a '#' char...
  749.   and are only shown in the AF form of the command
  750.  
  751. - code to restore 16550 fifo status added (from Bill Simpson)
  752.  
  753. - ftp message of the day, modified from Max (iw0cnb).
  754.   Set/show with 'fmotd' command
  755.  
  756. - mailbox (L)ist display has been changed a bit to show the To: field
  757.   of messages.
  758.  
  759. - new mailbox 'L>' command allows searches in the To: field of messages
  760.   (NOT case sensitive!)
  761.   eg: 'L> test' will show messages with To: fields of:
  762.   test@allusa, TEST@somewhere, all@testing.usa, ...
  763.  
  764. - expanded mailbox 'ML' command :
  765.   'ML'       -  lists all past logins since startup
  766.   'ML n'     -  lists last n logins since startup
  767.   'ML call'  -  gives last login date/time for call
  768.  
  769. - new mailbox 'Move Message' command for sysops:
  770.   'MM name' moves the current message to mailbox file 'name'
  771.   'MM n[...] name' moves message n to mailobx file 'name'
  772.   eg:
  773.   MM 1 3 4 newarea
  774.   (Moves messages are deleted in current mailbox file)
  775.  
  776. - 'New mail' messages only print to the command screen
  777.  
  778. - userlog code now also works during 'R' command
  779.  
  780. - mailbox 'SR' doesn't generate a Cc: to the original message To: addressee
  781.  
  782. - user default logging added; keeps track of last time logged-in/out,
  783.   state of XM,XA and XN commands, and how last connection was made.
  784.   gets read at login and restores values that existed at last logoff.
  785.  
  786. - in mailbox send, the rewrite result 'To:' is only shown to sysops
  787.  
  788. - new command XN to toggle the netrom id prompt.
  789.  
  790. - deleted the masking of chars with 0x7f, to allow international
  791.   character sets to pass correctly (in ttydriv.c and telnet.c)
  792.  
  793. - disallow attaching of axip interfaces with names longer then 6 chars
  794.   This is needed for the gateway code to work correctly (inherent to the
  795.   socket internals)
  796.  
  797. - fixed bug in the Bye command that would reset the last read message
  798.   to 0, if nothing was Listed in the last area
  799.  
  800. - netrom inactivity timeout disconnection was not working properly in 1.01
  801.   (wrong timer configured). This is now fixed...
  802.  
  803. - refusing of new connections when memory is low is now done
  804.   in the protocol modules for netrom (nr4.c) and AX.25 (lapb.c)
  805.  
  806. - when a nodes-broadcast from a previously unknown netrom
  807.   neighbour is heard, the system send a nodes broadcast too.
  808.  
  809. - new mailbox 'XA' command; toggles showing of the current area
  810.   with the mailbox prompt. Defaults to on.
  811.  
  812. - fixed bug that prevented areas in subdirectories from being accessed
  813.   (in mlock() and rmlock() functions). This affected systems using nntp
  814.  
  815. - modified the nntp client in nntpcli.c to be compatible with my userlog code
  816.   (added a "Received:" line to articles)
  817.  
  818. - message expiry code can now handle both the 'mailbox' style
  819.   (ie. "Tue, 14 Apr 92 15:11:07") and the 'nntp' style date
  820.   line (ie. "14 Apr 92 15:11:07").
  821.   (so it *should* now work with the nntp client; still NOT tested though!)
  822.  
  823. - mailbox forwarding: anything that came in with a bid goes out with a bid.
  824.   Thus now 'SP sysop@blah $bid' goes out with $bid unlike before.
  825.  
  826. - when 'bulletin date' is on, "Date: " now only shows the date,
  827.   no more the  "BBS, ".
  828.  
  829. - added st_garbage() fix in sockutil.c
  830.  
  831.  
  832. VERSION 1.01 (920408)
  833. ************
  834.  
  835. - any user can delete messages in any area that starts with "nts".
  836.   Thus users can delete nts traffic, without having to give them
  837.   permission to delete everything.
  838.   Eg: I rewrite all nts stuff i can deliver to the area 'ntslocal'
  839.   User's can now delete these messages after delivery.
  840.   All other traffic (ie. not for my area) i rewrite to 'nts' to
  841.   be forwarded elsewhere. However, 'nts' is NOT an area, so regular
  842.   users can't touch it (You could also use 'traffic' or whatever
  843.   else suits you...)
  844.  
  845. - plain 'netrom route info' gives info for all routes
  846.   mailbox 'N *' does the same; from Doug Crompton.
  847.  
  848. - telnet login's get 3 tries max to be validated; ctrl-d as the first
  849.   char will exit the login-procedure.
  850.  
  851. - support for the BuckMaster CDRom ham-call database has been added;
  852.   it compiles just fine, but this has NOT been tested !!
  853.   (check the compile switches in config.h; not in the standard
  854.   distribution)
  855.   The commands for this are 'callbook','callserver2','cdrom',
  856.   'start callbook' and 'stop callbook'
  857.   This code comes from KB7YW, taken out of SS_NOS sourcecode,
  858.   and is provided as is...
  859.  
  860. - fixed memory leak with mailbox finger, and overwrite problem
  861.   with the 'whereto' variable.
  862.  
  863. - mkname.c now works with tc2.0, bc2.0 and bc3.0, from Ron Henderson, wa7tas
  864.  
  865. - smtp lzw is a more robust; from pa0gri 2.0f
  866.  
  867. - tipmail.c timer problem fixed; from ke9yq
  868.  
  869. - Function key session switching ! (modified a bit from WNOS3 sources)
  870.   If the function keys F1-F8 are not defined, they will switch you to
  871.   the session of that number; eg F3 will switch to session 3 !
  872.  
  873. - tracing to a session. Function key F-9, if not re-defined with an fkey
  874.   command, switches to it from any other session. (it actually toggles;
  875.   ie you can switch between trace and current session by pressing F9)
  876.   Session tracing defaults to on.
  877.   Trace output is only printed in this session when it is the active one.
  878.   Tracing to file currently disables output to the session.
  879.   Tracing can be set to go to the command screen with 'strace off' command.
  880.   (Sometimes you want to see what's going on while you're typing some
  881.   commands at the console)
  882.  
  883.   To save memory (about 4 kb.) session tracing can be disabled with a
  884.   commandline option. Invoking nos with '-n' will not setup tracing
  885.   to session, but always trace to the command window.
  886.   (the 'strace' command is disabled aswell)
  887.   (eg 'nos -n -s40' will give 40 socket and tracing to the command window)
  888.  
  889. - the bid's in history file now have a timestamp with them to allow
  890.   for automatic expiry. Format is "%s %ld\n", where %s is the bidstring,
  891.   and %ld is the number of seconds since 1970 (ie. standard time long-integer)
  892.  
  893. - BID and MESSAGE expiry built in.
  894.   command 'oldbids <timer> [age]' or 'oldbids now'
  895.     <timer> is in hours and sets the interval that the bid file ('history')
  896.     will be scanned for old ones to delete. Old file is renamed to
  897.     'history.bak' and a new one created. This will also transform old style
  898.     bid's (without timestamp) to new style with timestamp.
  899.     [age] is the optional age in days, and defaults to 30 days.
  900.     'oldbids' will show current values, 'oldbids now' will expire old bids
  901.     immediately, with previously set age value (or default if not set)
  902.  
  903.   command 'expire <timer>' or 'expire now'
  904.     <timer> again is in hours, to set the interval to check for expired
  905.     messages. The expiration in controlled by the file '/spool/expire.dat'
  906.     This file is a list of fields like
  907.     area age
  908.     where area is the area-name WITHOUT the '.txt' extension. Area CAN
  909.     have subdirs denoted by either '.', '/' or '\' . Thus is *should*
  910.     work with NNTP articles as well (see note 2). Age is the age in
  911.     days of the message. If age is omitted, default is 21 days
  912.     Area and age are separated by one space character !
  913.     On expiry, any area.txt file is renamed to area.bak, and then all
  914.     messages are checked for their age. Age comes from the 'Date: ' header.
  915.     Thus with the 'bulletin date yes' command, BBS style messages can
  916.     be properly expired.
  917.     Some valid formats of the '/spool/expire.dat' file:
  918.  
  919.     #This is a comment
  920.     #expire the allusa bulletins after 7 days
  921.     allusa 7
  922.     #assume the default for allor (ie 21)
  923.     allor
  924.     rec.radio/amateur\packet 10
  925.  
  926.     NOTE 1: the use of the mktime() function in the age calculations
  927.     now forces the use of BCC instead of TCC. There is a sort-of working
  928.     replacement of mktime() in expire.c for those that want to keep using
  929.     tcc
  930.  
  931.     NOTE 2: I have tested the subdir expiration with mail files; NOT with
  932.     NNTP originated messages. If this doesn't work, please let me know !
  933.  
  934. - mbox mailfor exclude. You can set a list of private mail areas to exclude
  935.   from the mail-beacon. Same syntax as 'mb jumpstart exclude'.
  936.   (mailfor code has been rewritten to be more efficient, less hd access)
  937.  
  938. - a user does NOT need TELNET_CMD permissions anymore to do the 'CALL'
  939.   command. This is so that we can disallow telnet's and still allow
  940.   connections to the call-server.
  941.  
  942. - included the latest PI driver in the sources (dated 920329)
  943.  
  944. - mailbox.c is now split into mailbox.c and mboxcmd.c
  945.  
  946. - mailbox subcommand 'mbox tdisc' sets the inactivity timeout value.
  947.   If not zero, if mailbox user has not given any input for the timeout
  948.   period, the mailbox connection is closed. This prevents idle users.
  949.   Default is 0 seconds, ie off.
  950.   (can be compiled out with MBXTDISC switch in config.h)
  951.  
  952. - ftp server inactivity timeout. Command 'ftptdisc'. Again, if not zero
  953.   ftp connection will be closed after no data has flown for the timeout
  954.   period. Defaults to 0 seconds, ie. off.
  955.   This gets deactivated during file transfers in either direction;
  956.   this is to avoid looong slooow transfers to cause a timeout.
  957.   (can be compiled out with FTPTDISC switch in config.h)
  958.  
  959. - netrom subcommand 'netrom tdisc'. Sets a timer similar to the 'ax25 t4'
  960.   timer. If there has been no incoming data over a level 4 circuit for the
  961.   timeout period, the circuit is reset.
  962.   Default is 0 seconds, ie. no timeout.
  963.   This is usefull with idle forward sessions etc.
  964.   (can be compiled out with NR4TDISC switch in config.h)
  965.  
  966. - mailbox 'SR' command works again (sending replies...)
  967.  
  968. - 'LL' command was broke since addition of 'LA'. Fixed again.
  969.  
  970. - mailbox 'RH' command, to read with all headers (same as 'V')
  971.  
  972. - R: header interpretation now allows both '@:bbs' and '@bbs' format
  973.   as well as '?:bbs' and '?bbs' (for aplink etc.)
  974.  
  975. - mailbox 'SC' command to send one message to multiple people
  976.   'Send Carboncopy'; it asks for a list of Cc:-addresses. A user can
  977.   answer with one or more addresses, separated by comma's
  978.   eg: 'Cc: johan@ece.orst.edu, ka7ehk@wg7j.ampr.org,test@nowhere.usa'
  979.  
  980. - mailbox 'XM n' to show or set (XM n) the number of lines for
  981.   more-prompting. Telnet default is 23, others 0 (same as previously)
  982.   MORE now works for ALL connection types, instead of only for telnets.
  983.   MORE also works with all the 'L' commands (as well as R/V commands)
  984.   (this is NOT logged(yet), so at each login, the defaults are set)
  985.  
  986. - smtp bactch processing fixed ala VK6RJM
  987.  
  988. - 'info' command now shows compile date/time.
  989.  
  990.  
  991. VERSION 1.00 (920318)
  992. ************
  993.  
  994. - New commands 'bulletin <check|date|return>'
  995.   (Can be compiled out by undefining 'MAILFOR' in config.h)
  996.  
  997.   'bulletin date on/off' (DEFAULT: OFF)
  998.   if on, the original message date from the last R: line will be
  999.   used in the message 'Date:' line. Off acts as plain ka9q code.
  1000.   This allows a more correctly indication of the age of the message
  1001.   and improves automatic expiry of messages
  1002.   (with the 'at hhmm "shell expire..." ' command !)
  1003.   (NOTE: due to the lack of the mktime() routine in the TC2.0 libraries,
  1004.    the weekday field in the ARPA-date header is set to "BBS"; as soon
  1005.    as i get around rewriting that routine (it is in BC2.0 and above)
  1006.    that will be fixed. This causes no grief :-), just shows something like
  1007.    'Date: BBS, 12 Mar 92 11:21:00 UTC'
  1008.    the presence and length of this field are imperative, since at several
  1009.    places the string is scanned for the ',' (smtp) or the lenght (forward) )
  1010.  
  1011.   'bulletin return on/off' (DEFAULT: OFF)
  1012.   if set, when a message is received via bbs-forwarding
  1013.   a 'valid bbs-style return address' will be taken from the
  1014.   last R:-line, if one is present. This works with any message
  1015.   type that starts with R:-headers (so personal mail as well).
  1016.  
  1017.   the 'true from-address' is made as 'user@last-R:line-bbs'
  1018.   ie. the from-address is set to come from the user, as send
  1019.      with the 'S bla@blah < USER' line, and the 'home' bbs will
  1020.      be extracted from the last R: line found
  1021.      This allows a correct 'from' the be shown, and allows
  1022.      the SR (Send Reply) to work normal, however....
  1023.      eg. If the message is forwarded as 'SP W7ABC < W6XYZ'
  1024.      and the last R:-header is
  1025.      R:920312/1200z @:N7PQR.AB.CD.EF [TEST] #:0 Z:1
  1026.      then the 'From:' line will read:
  1027.      'From: w6xyz@n7pqr.ab.cd.ef'
  1028.  
  1029.      NOTE !!!!
  1030.      Since in most of these occasions, the from-hosts will NOT
  1031.      be tcp/ip hostnames (eg. wg7j.ampr.org) but rather
  1032.      bbs H-addresses (eg. WG7J.OR.USA.NA)
  1033.      YOU (ie. the sysop) HAVE TO MAKE SURE your system can handle
  1034.      these new addresses by setting up the ALIAS and REWRITE files
  1035.      to handle these, and then setup bbs-forwarding (if needed)
  1036.      as well with FORWARD.BBS
  1037.  
  1038.   'bulletin check on/off'
  1039.   When turned on, the forward.bbs file is scanned to build a list
  1040.   of bbs's we forward to. If on, 'bulletin check' will give this list.
  1041.   When a bbs connects, each time a bulletin or any message send with BID
  1042.   is forwarded the R: trail (if present) will be read for comparison
  1043.   to the list. If an R: line from a BBS we forward to is found,
  1044.   an 'X-Forwarded-To' header is added to the smtp headers of the messages.
  1045.   (They are written as the very first thing, to speed up the scanning
  1046.    of the headers during forwarding...)
  1047.   This 'X-Forwarded-To' header is lateron used by the
  1048.   forward code to realize that those bbs-es already have the
  1049.   message, and we don't have to try to send it,
  1050.   only to get a 'NO' reply. Thus not as much time and network
  1051.   bandwith is wasted...
  1052.  
  1053. - mailbox 'read' only sets the 'READ' flag when the area is the
  1054.   users private mail area. This prevents users with sysop privs
  1055.   that read other private areas to mark stuff as read.
  1056.   eg. I rewrite lots of private mail into two private mailboxes,
  1057.   north.txt and south.txt, to be forwarded in those directions.
  1058.   I don't want regular users to be able to read this, so they can't be areas.
  1059.   I want to be able to read them myself (sysop privs), but doing so would
  1060.   previously set the 'READ' status and cause a message not to be forwarded!
  1061.   Thus the fix...
  1062. - When a message originates here, and goes out over bbs-forwarding,
  1063.   after our R: header, a blank line is inserted followed by the message text.
  1064.   (previously the text followed immediately)
  1065. - when forwarding a message out of a private area, when the message is a
  1066.   bulletin, the message does not get deleted (previously it would). Reason:
  1067.   i rewrite certain buls to a private area, so that regular users can't read
  1068.   them (eg. 'sb sysop@allor'). I also forward these, and thus might miss the
  1069.   message if it gets killed after forwarding... (now 'sp sysop@allor' still
  1070.   get killed after forwarding :-( )
  1071. - by changing the subject-prompt G3ZZC's LANLINK's auto-upload
  1072.   is supported (some of my users run this).
  1073. - mailbox 'MS' shows mail-status; number of received,forwarded msgs. etc.
  1074.   also shown with 'mbox mailstat' command
  1075. - userlogging does NOT work for area names 'help' This allows new users
  1076.   to list help messages over and over with a simple L command, without
  1077.   having to know the 'internals' of the L-subcommands. Suggested by
  1078.   my local users
  1079. - user is only notified of new received private mail if user is currently
  1080.   in his own mail area. Prevent users from doing RM upon new mail nofication
  1081.   and getting the new messages in a different area. Suggested by my local
  1082.   users
  1083.  
  1084. - remote-sysops 1-packet pings are allowed.
  1085.  
  1086.  
  1087. VERSION 0.99 (920310)
  1088. ************
  1089.  
  1090. - Mailbox command 'RM','VM' and 'KM' to read-mine, verbose-mine and kill-mine
  1091.   This will read at the most the first 19 unread messages, or
  1092.   kill (ie. delete) the first 19 read messages IN THE CURRENT AREA.
  1093.   (19 is inherent to the cmdparser routine)
  1094.   Also 'LA' to list all messages, and LM same as L for compatibility
  1095.   (ie. list unread messages)
  1096. - A commandfile, ~/onexit.nos, if present, will be parsed when the 'exit'
  1097.   command is given, and after this the system exits. (from iw0cnb)
  1098. - When the remote-listener receives a valid 'exit' or 'reset' command,
  1099.   the same stuff is done as when 'exit' is typed on the keyboard
  1100.   ie. processes are notified, onexit.nos parsed etc...
  1101.   then if 'reset' a system reset occurs, otherwize a regular exit()
  1102. - Mailbox user display ('M' or 'mbox') is enhanced, showing
  1103.   detailed state of all users
  1104.   (users in sysop mode will only show to others with sysop privs,
  1105.    regular users will see that user to be 'Idle')
  1106. - New mbox command 'mbox mailfor <interval>'
  1107.   (Can be compiled out by undefining 'MAILFOR' in config.h)
  1108.   <interval> is in seconds. A 'Mail for:' beacon will be send
  1109.   every <interval> seconds to the address 'MAIL'.
  1110.   It contains a list of all private mailfiles
  1111.   (ie. none-areas) that have unread mail.
  1112.   The beacon is also send when the timer is set,
  1113.   and can be forced (ie. kicked) with 'mbox mailfor now'
  1114.   Simple 'mbox mailfor' will show the timer value and the current
  1115.   users that have mail waiting...
  1116. - 'netrom load' now works !
  1117.  
  1118. VERSION 0.98 (920303)
  1119. ************
  1120. - LZW compression in smtp now works (thanks Gerard!(pa0gri))
  1121. - Mailbox minimal tcp negotiation added (thanks Bob!)
  1122. - (hopefully) fixed the last incompatibilities with BID's when
  1123.   forwarding.
  1124. - Made the 'R:' line "bulletproof" for certain fields not set (from iw0cnb).
  1125. - fixed bug that reset number of new messages when new mail was received
  1126.   in current public area
  1127. - made 'domain translate' work correctly again (from g1emm)
  1128. - fixed jumpstart problem (actually ax.25 spec 'problem') when a second
  1129.   SABM frame is received. (from Ron Murray, vk6zjm)
  1130. - trace only outputs to command session or files; ie. doesn't garble
  1131.   other sessions anymore (from iw0cnb)
  1132. - added a 'call' command to mailbox.
  1133.   (code is optional via the CALLBOOK switch in config.h)
  1134.   This is an automatic telnet connect
  1135.   to a host and port set with the 'callserver' command.
  1136.   Format is 'callserver <host> <port>' where the callbook server
  1137.   resides on tcp-port <port> on <host>
  1138.   This is mainly useful for gateway systems on Internet.
  1139.   It allows users to use the callbook-server at buffalo.edu in an easy way.
  1140.   Note: User needs to have telnet permissions
  1141.   eg: 'callserver marvin.cs.buffalo.edu 2000'
  1142.   then the mailbox 'call' command will try to telnet to this host/port
  1143. - added the 'at' timed command execution, from IW0CNB's code
  1144.   (this can be compiled optionally with the ATCMD switch in config.h)
  1145.   The "at" command with no arguments shows the list of events that are to
  1146.   be executed.
  1147.   at yymmddhhmm <command>
  1148.     Executes <command> at specified date,expressed in Year-Month-Day-Hour-Min.
  1149.     If specified date is past, the command is not executed.
  1150.   at hhmm <command>
  1151.     Executes <command> at specified hour and minute of the current day, or of
  1152.     the next day if the specified time is past.
  1153.   at now+hhmm <command>
  1154.     Executes <command> hh hours and mm minutes from now. hh and mm can be up
  1155.     to 99.
  1156.  
  1157.   Notes and examples:
  1158.   <command> may be any valid NOS command, possibly enclosed in quotes,
  1159.   as well as a DOS shell command.
  1160.   If you want multiple commands to be executed, use the "source <filename>"
  1161.   command.
  1162.   The third mode of operation requires the exact writing "now+" in lower case
  1163.   and without spaces between hhmm.
  1164.  
  1165.   Single command execution examples:
  1166.   at 9202150900 exit   /* Shuts off on 15 Feb 92 at 9:00am */
  1167.   at 2245 "! /c pkzip oldmail \spool\mail\*.*"
  1168.   at now+0500 "smtp kick"
  1169.  
  1170.   Multiple command execution examples:
  1171.   at now+0859 "source cleanup.net"
  1172.  
  1173. (VERSION 0.97b)
  1174. - fixed little incompatibility with texnet '*** linked' stuff
  1175. - added check for console on all session-invoking commands.
  1176.   (ie. you can not do 'dir',etc. from remote sysop anymore!)
  1177.  
  1178. VERSION 0.97 (920220)
  1179. ************
  1180.  
  1181. - User status keeping.
  1182.   The mailbox now keeps track of the last listed message
  1183.   in each area for each user. Next time the area is listed, by default
  1184.   only newer messages are listed. 'L start# stop#' and 'LL #' will
  1185.   still list all messages.
  1186.   This info is kept in a file 'areaname.USR' in \spool\mail .
  1187.   eg. the area 'amsat' has it's info in \spool\mail\amsat.usr
  1188.   The content is simply a list of user names, followed by the id-number
  1189.   of the last message listed in this area.
  1190.   The content is updated when the user switches areas, or logs out.
  1191.   The .usr files are build completely automatically, there is nothing
  1192.   you need to do to get things started.
  1193.   This feature can be turned of by undefining USERLOG in config.h
  1194.   It currently DOES NOT work in areas in subdirectories under ~spool/mail .
  1195.  
  1196. - The expanded bbs-forward R: line gets only send if all of
  1197.   mbox haddress, fwdinfo, qth and zip are set. Otherwize a simplified
  1198.   R: line gets send with only time, @-bbs and message-#
  1199.  
  1200. - the mailbox '*** linked to' handling is a bit more robust.
  1201.   Every user has permission to do this now, but if sysop-password is not
  1202.   set, SYSOP_CMD priviledges are reset.
  1203.   It will not allow some one to reset the NO_SENDCMD, NO_READCMD or
  1204.   NO_3PARTY protection, if they were disallowed in the original login.
  1205.   It now also sets the new call for outgoing gateway connects.
  1206.   Handles the TEXNET 'linked to' message, but doesn't use the ssid
  1207.   from this (i see no need for this)
  1208.   If 'linked to' is done, this logged to the logfile
  1209.  
  1210. VERSION 0.96
  1211. ************
  1212.  
  1213. - requested by wb5bbw: logging of mailbox telnet/netrom/ax25 gateway connects
  1214.  
  1215. - 'mbox expert' command is gone. Instead default state can be set for each
  1216.   user in ftpusers database. Use value of 16384 to set user as expert.
  1217.   X command from mailbox will still toggle, but NOT update the default in
  1218.   ftpusers.
  1219.  
  1220. - hidden ML mailbox command to show previous users,
  1221.   also shown with 'mbox past'
  1222.  
  1223. - lzw compression in smtp (same as in gri2.0d)
  1224.   (disabled in the distribution .exe, since there are reportedly bugs!)
  1225.  
  1226. VERSION 0.95
  1227. ************
  1228.  
  1229. - jumpstart has been ruggidized. Lapb now sets a flag in the ax.25 control
  1230.   block to indicate wether jumpstart was used. If not used, the first line
  1231.   to trigger the mailbox is eaten again.
  1232.   Also, a list of calls to excluded from jumpstart can be set (or shown) with:
  1233.   mbox jumpstart exclude <one or more call>
  1234.   eg:
  1235.   'mbox jumpstart exclude wg7j-4 kb7bhf-5 pa3dis'
  1236.   Now when either one of those connects, jumpstart will not be used.
  1237.   You can show the list of excluded calls with 'mbox jumstart exclude'
  1238.   or add more with additional 'mbox jumpstart exclude call call call...'
  1239.   lines
  1240.  
  1241. - added Jerzy Taraziuk's ksubr mods  (main-process stack checking)
  1242.  
  1243. - added code in lapb.c to drop non-local ax.25 routes when a connection closes
  1244.   (ie. routes coming from gateway users using digis etc.) Inspired by K4TQL
  1245.   Changed routes added in the mailbox gateway and in doconnect() from AX_LOCAL
  1246.   to AX_AUTO, such that these routes are only temporary.
  1247.   The only permanent ax.25 route entries are now those entered with the
  1248.   'ax25 route add' command.
  1249.  
  1250. - added Mike Billow, N1BEE's minheap trick in pc.c to (hopefully) resolve
  1251.   memory problems when shelled out with the multitasking shell on
  1252.  
  1253. - additional config.h switches to undefine multitasking shell code,
  1254.   ax.25 ip autoroute, shell-command and some unneeded sessions
  1255.   (for switch setup)
  1256.  
  1257. - dropped autoroute in the distribution because it causes problems
  1258.   when using vc for ip links. It still can be added by changing config.h
  1259.   and recompiling
  1260.  
  1261.  
  1262. VERSION 0.94
  1263. ************
  1264.  
  1265. - bbs flag in ftpuser:
  1266.   IS_BBS     -    the user should be treated as a bbs
  1267.   (#define IS_BBS      8192    /*This user is a bbs*/)
  1268.  
  1269. - node list in mailbox 'N' command is sorted, per Doug Crompton's code
  1270.   Sort can be done by alias or call, set by 'netrom route sort' command
  1271.   default: by ALIAS
  1272.  
  1273. - netrom neighbours can be listed with 'NR' from mailbox
  1274.   this also shows if a route has been used in the last 60 seconds
  1275.   (an '>' shows up in front)
  1276.  
  1277. - better protection for mbox password and lock commands
  1278.   (only access via keyboard, suggested by Gerard, pa0gri)
  1279.  
  1280. - fixed a longtime bug with loosing the BID when forwarding bbs mail
  1281.   that was received with a bid from someone else
  1282.  
  1283. - little bug fixed that would show multiple paths in the ftpserver pwd command
  1284.  
  1285. - when jumpstart is off, the line that triggers the mailbox (ie. the CR)
  1286.   will be eaten again, like in plain KA9Q (instead of being taken as a
  1287.   command, as in previous versions)
  1288.  
  1289. - ala PA0GRI:
  1290.   mailbox chat is now 'operator'
  1291.   mailbox users is now 'mboxusers'
  1292.   mailbox upload is back !
  1293.  
  1294. VERSION 0.93 (920126)
  1295. ************
  1296.  
  1297. - anonymous permission ala pa0gri's 'univperm'
  1298.  
  1299. - Additional mailbox user permissions:
  1300. NO_SENDCMD -  disallow all mail, except to 'sysop' or 'SYSOP'
  1301. NO_READCMD -  disallow reading of any mail
  1302. NO_3PARTY  -  disallow 3rd-party mail to be send
  1303. These bits need to be set in order to disallow those actions,
  1304. such that ftpusers need not be modified if you don't want to mess
  1305. with them
  1306.  
  1307. Thus permissions are now:
  1308. #define AX25_CMD        8       /* AX.25 gateway operation allowed */
  1309. #define TELNET_CMD    16    /* Telnet gateway operation allowed */
  1310. #define NETROM_CMD    32    /* NET/ROM gateway operation allowed */
  1311. #define SYSOP_CMD    64    /* Remote sysop access allowed */
  1312. #define EXCLUDED_CMD    128    /* This user is banned from the BBS */
  1313. /* 256 and 512 are used in PPP*/
  1314. #define NO_SENDCMD  1024    /*Disallow send command*/
  1315. #define NO_READCMD  2048    /*Disallow read command*/
  1316. #define NO_3PARTY   4096    /*Disallow third-party mail*/
  1317.  
  1318. - additional 'cls' command to clear the command-session screen
  1319.  
  1320. - mailbox command to set offset between computer's time and UTC.
  1321.   this is used with forwarding ax.25 bbs mail such that the R: line
  1322.   indicates correct UTC time with the 'z'.
  1323.   ie. if you don't have your computer running with UTC time,
  1324.   set this parameter.
  1325.  
  1326.   eg: on the west coast, local time is UTC - 8 hours.
  1327.       if your computer runs with local time, issue the following
  1328.       command:
  1329.       'mbox utc -8'
  1330.       The default value is 0, ie computer time = UTC .
  1331.  
  1332.       Both positive and negative offsets (for those outside the US :-))
  1333.       are supported. The code will automatically account for jumps into
  1334.       the next or previous day, or year and checks for leap-years on
  1335.       february 28/29
  1336.  
  1337. - Netrom Level 4 problem (not sending data queueud up)
  1338.   is fixed (ala Dave Perry, VE3IFB)
  1339.  
  1340. - Remote Sysop password protection
  1341.     Set the password with 'mbox password your_password'
  1342.     Maximum password lenght is 30 chars.
  1343.     NOTE: Users still need sysop premission in the ftpusers file !
  1344.     (this is easy to change in the soures)
  1345.     If the password is not set, users with sysop priviledges don't get to
  1346.     pass the query, but jump into sysop-mode right away. (the old way!)
  1347.     If it is set, 5 numbers are prompted. The user then needs to answer
  1348.     with the correct 5 characters from the password. The first char is number
  1349.     zero !
  1350.     You can give as many lines answering the query, to mislead people
  1351.     listening in :-). End with a blank line, and if one of the answers you
  1352.     gave was correct, sysop permission is granted!
  1353.  
  1354.     eg: 'mbox password *12345abCDE'
  1355.     you give the '@' command:
  1356.     system prompts: '3 7 2 9 0'
  1357.     you answer:     agk4e
  1358.                     thier
  1359.                     3b2D*           <--- the right answer !
  1360.                     9qPr&
  1361.                     <blank line>    <--- just hit <CR>
  1362.  
  1363.     Sysop permission is now granted !
  1364.  
  1365. -Forced NS16550 attaching
  1366.     optional 'f' parameter in 'attach asy' forces the presence of the 16550.
  1367.     eg: attach asy 0x3f8 4 slip sl0 2012 1006 2400 vf
  1368.     sets VJHeader compression ( the 'v') and forces the 16550 ('f')
  1369.  
  1370. VERSION 0.92 (920114)
  1371. ************
  1372.  
  1373. -Some additional configuration switches in config.h
  1374. These save lots of memory (MBFWD and ALLCMD undef'd save about 50k!)
  1375. MBFWD  - if not defined, excludes mailbox forwarding code
  1376.          and related commands
  1377. ALLCMD - if not defined, excludes a bunch of rarely used commands
  1378.          (I this did for the internet-slip server we run here)
  1379.     Excluded are:
  1380.     delete,rename,more,tail,dump,status,motd,cd,dir,finger,fkey,info,mail,mkdir
  1381.     pwd,record,rmdir,watch,test,upload,bbs
  1382. ALLSERV - if not defined, only the basic servers are included
  1383.     Excluded are:
  1384.     discard,echo,tip,ttylink servers,
  1385.     the ttylink command and the split screen code
  1386. Along with these are some fixes regarding NRS and TRACE. Main.c and scc.c
  1387. had a few things not properly ifdef'd such that modules needlesly were pulled
  1388. in at link-time.
  1389.  
  1390. -Kicking or stats of sockets made easier :
  1391. 1-'tcp|ax25|netrom kick' or 'tcp|ax25|netrom stat' commands
  1392.     can be given just the first 4 numbers.
  1393.     The '0008' is automatically appended when a lenght of 4 is detected.
  1394.     eg: 'tcp kick 76ea' is the same as 'tcp kick 76ea0008'
  1395.     (this is ala N1BEE)
  1396.  
  1397. 2- New command 'skick <socket#>' to automatically kick whatever type the
  1398.     socket is. This kicks valid sockets of type TCP, AX25 and NETROM.
  1399.     Use 'socket' command to get a list of used sockets.
  1400.  
  1401. -AX.25 forwarding is changed.
  1402. 1) the R: line is ALWAYS sent.
  1403.  
  1404. 2) some additional R: line fields can be set with
  1405.     -mbox zip <your zip>           : sets zip code to be used
  1406.         eg. 'mbox zip 97330'             will show 'Z:97330' in R: line
  1407.     -mbox haddress <your Haddress> : sets Hierarchical address
  1408.         eg. 'mbox haddress #CRV.OR.USA' (note NO leading period!)
  1409.                 will show '@WG7J.#CRV.OR.USA' in R: line (assuming Mycall
  1410.                 is set to WG7J)
  1411.     -mbox fwdinfo <your info>      : sets [info]
  1412.         eg. 'mbox fwdinfo "BCARES BBS"'  will show '[BCARES BBS]' in R: line
  1413.         eg. 'mbox fwdinfo Testing        will show '[Testing]' in R: line
  1414.     -mbox qth <"qth, St">          : sets your qth (and state)
  1415.         eg. 'mbox qth "Corvallis, OR"'   will show 'Corvallis, OR' in R: line
  1416.         eg. 'mbox qth Corvallis          will show 'Corvallis' in R: line
  1417.  
  1418. 3) A message number is sent.
  1419.    The message number sent in the '#:' segment comes from the 'id AA####'
  1420.    part of the smtp header.
  1421.  
  1422.     The R: line looks as follows:
  1423. R:date/time @:MYCALL.HADDRESS [your info] your-qth-st #:IDNUM Z:your-zip
  1424.  
  1425. 4) Optionally sending of the smtp headers.
  1426.     Sometimes a message will come in over SMTP and go out via AX.25 forwarding.
  1427. Normally the SMTP headers of the message are NOT sent. Thus there is no trace-
  1428. back trail beyond your system, since the only trace is your R: line.
  1429. If you want to include most of the SMTP headers from all previous
  1430. delivery hops, then use the command :
  1431.  
  1432. 'mbox smtptoo on|yes|1'     (default: OFF)
  1433.  
  1434. (This does not send some duplicate line line Subject: etc. that already have
  1435. been sent)
  1436.  
  1437. VERSION 0.91 (920103)
  1438. ************
  1439. These mods originated in my work on the V25/V40 port of NOS. Version number
  1440. is taken from that code-version.
  1441.  
  1442. Several NET/ROM changes:
  1443.  
  1444. One netrom call, different from any other interface call can be set with
  1445. 'netrom mycall <nrcall>'   (or 'ifconfig netrom linkaddress yourcall')
  1446. This is the call used in netrom route broadcasts !
  1447.  
  1448. Netrom alias setting:
  1449. Either the 'old' way can be used:
  1450. netrom interface <label> <alias> <pathqualilty>
  1451. or the alias can be set with 'netrom alias <myalias>'.
  1452.  
  1453. If 'netrom alias' has not been set when the old 'netrom interface' command
  1454. is given, the alias will be taken from this.
  1455. If 'netrom alias' has been set, the 'netrom interface' alias is ignored.
  1456. If the alias is set with the 'netrom interface' command, later
  1457. 'netrom alias' commands will override the alias !
  1458.  
  1459. Thus there is only ONE alias for the system
  1460. This alias is used for ALL active netrom interfaces, wether you set
  1461. different aliases in the 'netrom interface' commands or not !
  1462.  
  1463. This alias is also used in netrom route broadcasts.
  1464. (
  1465. The 'netrom interface' commands doesn't need the alias in it anymore
  1466. You can use a simlified version of the netrom interface command:
  1467. 'netrom interface <ifname> <quality>'
  1468. )
  1469.  
  1470. Connects (and digi's) to this netrom call and to the alias (with ANY ssid)
  1471. are accepted.
  1472.  
  1473. If not running netrom, you can still set the netrom alias, and thus
  1474. allow connections to the alias...
  1475. (digipeating also works then, with any ssid)
  1476.  
  1477. SOME EXAMPLES:
  1478. ******
  1479. eg. 1
  1480. if you have the following configured :
  1481.  
  1482. netrom mycall WG7J-11
  1483. netrom alias WGJBOX
  1484. netrom interface ax0 192     #assuming ax0 and ax1 are valid interfaces
  1485. netrom interface ax1 191
  1486.  
  1487. then netrom broadcasts on both ax0 and ax1 will announce you as WGJBOX:WG7J-11
  1488. users can connect (or digi's via (if enabled)) WG7J-11, WGJBOX-x, where x=0-15
  1489. Connects to the regular ax25 mycall, or other valid interface calls
  1490. set with ifconfig are accepted as well.
  1491. ******
  1492. eg. 2
  1493. if you don't run netrom but still want an alias for your system
  1494. (and netrom-support is compiled in your executable :-))
  1495. then simply set the alias:
  1496.  
  1497. netrom alias WGJBOX
  1498.  
  1499. This allows connections and digi's (if enabled) to WGJBOX-x, where x=0-15
  1500. Connects to the regular ax25 mycall, or other valid interface calls
  1501. set with ifconfig are accepted as well.
  1502. ******
  1503.  
  1504. -LOTS of MAILBOX changes:
  1505.  
  1506. - mailbox outgoing connects use the user call !
  1507.   If a user logs in over telnet, the login name will be used as call,
  1508.   if:
  1509.   A -  there is at least 1 digit (0-9) in the name
  1510.   B -  the name can successfully be set to a call
  1511.     (ie, 'anonymous' won't work !)
  1512.   If the above 2 rules don't work, ax.25 and netrom permission are
  1513.   denied, no matter what they we're set to in ftpusers
  1514.   Be careful, this still allow someone with '4us' as login and
  1515.   permissions set, to go out on ax.25 or netrom with call '4us-15' !!
  1516.  
  1517.  
  1518. JUMPSTART:
  1519. The mailbox is jump-started when:
  1520. the remote address connecting to us is not a known netrom neighbour and
  1521. the interface mode is not VC. If both these are true, it is assume to be
  1522. a user connecting to the mailbox, and the mailbox is jump-started
  1523. upon the SABM frame is received and answered. Thus NO ADDITIONAL cr or whatever
  1524. is needed to trigger the mailbox...
  1525.  
  1526. In Yeoman's terms: regular users get the prompt IMMEDIATELY upon connecting!!
  1527.  
  1528. The above is on by default, but can be changed (ie. turned off) with
  1529. 'mbox jumpstart on/off' (default: ON)
  1530.  
  1531. MAILBOX PROMPT:
  1532. 'mbox expert on/off'  (default: OFF)
  1533. Start user in Expert mode; ie short prompt. This can be toggled from
  1534. the mailbox with the (X)pert command.
  1535.  
  1536. 'mbox nrid on/off'    (default: OFF)
  1537. If on, the prompt is 'ALIAS:CALL} ' followed by the whole list of
  1538. commands when not in expert mode.
  1539. If off, the prompt is as normal in none-expert mode, and '> ' in
  1540. expert mode. BBS prompt is unchanged.
  1541.  
  1542. Thus,
  1543. With nrid OFF and expert OFF, the system looks like 'normal':
  1544. Msg #0: A,B,.....,Z,?>
  1545.  
  1546. With nrid OFF and expert ON, you get a short prompt :
  1547. >
  1548.  
  1549. With nrid ON and expert ON, it looks like a 'standard netrom' switch:
  1550. WGJBOX:WG7J-11}
  1551.  
  1552. With nrid ON and expert OFF, it looks like :
  1553. WGJBOX:WG7J-11} Msg #0: A,B,.....,Z,?>
  1554.  
  1555. USER COMMAND-CHANGES
  1556. No separate pseudo-netrom interface (the old N command) exists anymore.
  1557. (N)odes has taken its place, giving the regular list of nodes
  1558.  
  1559. New mailbox user commands are:
  1560. (X)pert: toggle expert status
  1561. (P)orts: gives port/interface description
  1562. (N) nodename : gives more descriptive information
  1563. (U)sers: shows all users and outbound link with type (ie. telnet,netrom,ax25)
  1564.     (the Upload command has been sarificed for this, since no-one around here
  1565.      uses that)
  1566. (C)onnect:
  1567. 'c' is the old chat with sysop.
  1568. 'c name' is a netrom connect, accepting BOTH ALIAS and CALL. Gives error
  1569.          and help if name isn't either one.
  1570. 'c port call' is an ax25 connect. Uses the USER's call with inverted SSID !
  1571.         gives help on error.
  1572.  
  1573.  
  1574. -KEYBOARD LOCKING
  1575. 'lock password <your unlock password>' sets the password
  1576. typing this DOES NOT clear the screen, so set it in the autoexec file
  1577. or type lots of CR's to clear the screen after this
  1578. then typing 'lock' will disable any command from being executed
  1579. until the password is type. During this input echoing is disabled,
  1580. so that your password will not be echoed to the console.
  1581. This only works form the keyboard, so that remote sysops cannot lock you
  1582. out !
  1583.  
  1584. -MINOR COSMETIC CHANGES:
  1585.  
  1586. -'ifconfig <iface> description "your description"'
  1587. This shows up in the new (P)orts command in the mailbox,
  1588. as well as the ifconfig list
  1589.  
  1590. - G4JEC's ax.25 ip autoroute code is added.
  1591.   This code automatically adds a temporary ip route to the target
  1592.   (if none exists) when ip packets are received.
  1593.   Configurable with:
  1594.   'autoroute on/off'. (default: OFF)
  1595.  
  1596.   As suggested by Mike Billow, this only works when RSPF is not active.
  1597.   Attaching the first rspf interface automatically turns it off, and
  1598.   autoroute can not be turned on anymore after that.
  1599.  
  1600. -mailbox sysop (@) is protected against 'exit'. This now simply returns
  1601.  you to the mailbox, instead of exiting net.exe!
  1602.  
  1603. -kiss attach checks for asy interface type (such that you cannot attach
  1604.  kiss ontop of the netrom interface etc.)
  1605.  
  1606. -mbuf.c interrupt allocation fixed per hb9rwm
  1607.  
  1608.  
  1609.