home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / ENTERPRS / CPM / TERMS / BOZBBS08.LZH / BOZBBS.DOC < prev    next >
Text File  |  2000-06-30  |  3KB  |  72 lines

  1. BozBBS version 0.8 (PRELIMINARY RELEASE) Copyright (C) 1988 Bruce Bostwick
  2.  
  3. SYSOP DOCUMENTATION -- PART 1. BozBBS UTILITIES
  4.  
  5. The files included in this library are the necessary items of a
  6. minimum BozBBS system. This system is driven from the ZCPR3
  7. command line and, as is, will work when used as a set of
  8. remote-system commands. These files are needed:
  9.  
  10. LOGIN.COM   -- the master login utility; screens users according
  11.                to entries in the file BBSUSERS.DAT and enters the
  12.                current user into the file CURUSER.DAT for use by
  13.                other utilities that need user data
  14.  
  15. POST.COM    -- the message base utility; users can enter messages
  16.                or comments and read public messages. Handles
  17.                username and access level automatically through
  18.                CURUSER.DAT info.
  19.  
  20. PASSWD.COM  -- the user data editor; users can change name and
  21.                password in BBSUSERS.DAT for next call. Reads the
  22.                wheel byte -- if you don't have ZCPR3, send for
  23.                the source and modify to read duser.access.
  24.  
  25. EDUSER.COM  -- the sysop data editor; only usable if wheel is
  26.                set. Edits all user data including user number,
  27.                access, and validation status.
  28.  
  29. ADDUSER.COM -- a modification of EDUSER.COM that allows sysop to
  30.                add users quickly. EDUSER and ADDUSER both read
  31.                the wheel byte -- modify to read duser.access from
  32.                CURUSER.DAT if you are using plain CP/M.
  33.  
  34. USRLIST.COM -- the user list program; shows all user info to
  35.                sysop, name and user # to mortals. Reads wheel.
  36.  
  37. BBSUSERS.DAT - the user database; MUST be on the directory for
  38.                LOGIN to work! Create it with ADDUSER.COM.
  39.  
  40. BBSMSGS.DAT -- the message database; POST.COM creates it if lost.
  41.  
  42. CURUSER.DAT -- the current-user file; created by LOGIN.COM on
  43.                login. Erase it during logout to keep the drive
  44.                tidy. 
  45.  
  46. The user data files use the following Turbo Pascal record structure:
  47.  
  48. type user=record
  49.              refnum:integer;
  50.              firstname,lastname,password:string[32];
  51.              access:integer;
  52.              validated:boolean;
  53.           end;
  54.  
  55. The files are declared as 'file of user'. CURUSER.DAT contains
  56. one record of type user and BBSUSERS.DAT contains a variable
  57. number of records of type user depending on how many users are
  58. registered.
  59.  
  60. For a source listing of these programs, send your name and
  61. address to:
  62.  
  63. Bruce Bostwick
  64. 3103 Carlisle Drive
  65. Austin, Texas 78731
  66.  
  67. Donations are not absolutely necessary but will be greatly
  68. appreciated. Registering will enable me to provide sysop support
  69. for BozBBS and provide you with upgrades as these programs are
  70. improved. OM.
  71.  
  72. BBSMS