home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / UTILITY / ALOGV10.EXE / ALOGON.DOC next >
Text File  |  1993-01-05  |  5KB  |  132 lines

  1.  
  2.                          Abort Logon Procedures v1.0
  3.                      written & programmed by John Dailey
  4.                     (c) 1992  by Datagen Software Designs
  5.  
  6.  
  7.                             WARRANTY and DISCLAIMER
  8.                             _______________________
  9.  
  10.           This  software  is  provided  AS IS without any expressed or
  11.           implied warranties whatsoever. No warranty of fitness for  a
  12.           particular  purpose  is offered. The author of this software
  13.           cannot be held responsible for DIRECT, INDIRECT  INCIDENTAL,
  14.           CONSEQUENTIAL,  or  ANY OTHER damages due to your ability or
  15.           inability to use this software, even if the author has  been
  16.           advised of the possibility of such damages. The user assumes
  17.           full responsibility for the use of this software.
  18.  
  19.  
  20. FILES INCLUDED IN THIS PACKAGE:
  21. _______________________________
  22.  
  23.              ALOGON.EXE <--- Abort Logon Procedure Executable
  24.              ALOGON.DOC <--- Abort Logon Procedure Documentation
  25.  
  26.  
  27. WHAT IS IT?
  28. ___________
  29.  
  30.     Abort Logon Procedures v1.0 is a handy little utility for WWIV [(c)
  31. Wayne Bell] BBS systems who have annoying logon batch files :)  It will
  32. allow the sysop to allow certain Security level users to abort the logon
  33. procedures and go right to the board.  This can be handy if you have a
  34. very long Logon batch file, or are just annoyed as a sysop to have to
  35. look at everything every time you logon.
  36.  
  37.  
  38. INSTALLATION
  39. ____________
  40.  
  41.     Installation of ALOGON v1.0 is simple.  Go into your INIT program,
  42. and make sure that you have a '%1' after your logon batch file name.
  43. Next, edit your logon batch file to add a line for Abort Logon
  44. Procedures like so:
  45.  
  46.     ALOGON %1 <minimum sl> <seconds to wait> <color>
  47.  
  48.     Where <minimum sl> is the minimum security level that a person must
  49. have to be allowed to bypass the logon procedures, <seconds to wait> is
  50. the amount of seconds (1-60) to wait before just assuming 'no' to the
  51. question of abort logon procedures?, and <color> is the WWIV color number
  52. for the question "abort logon procedures."  On the next line down from that
  53. line in your batch file, put the statement: 'IF ERRORLEVEL=1 GOTO END', and
  54. add a line to the end of your batch file that says ':END'.  This will tell
  55. your batch file if ALOGON returns a 1, goto the line that contains ':END,'
  56. thus skipping your batch file. Make sure that you have a copy of ALOGON.EXE
  57. in your main BBS directory.  Here are some examples of correct command
  58. lines:
  59.  
  60.     ALOGON %1 100 5 3
  61.       Print the question in WWIV color 3 (Magenta/Purple) and only allow
  62.       users with 100+ SL to abort logon batch file.  It will
  63.       self-execute after 5 seconds.
  64.  
  65.     ALOGON %1 255 10
  66.       Print the question in WWIV color 0 (White/Light Grey) and only
  67.       allow users with 255 SL to abort logon batch file.  It will also
  68.       self-execute after 10 seconds.
  69.  
  70.  
  71.    Sample LOGON.BAT file:
  72.  
  73.    @ECHO OFF
  74.    ALOGON %1 100 5 3         { Call Abort Logon }
  75.    IF ERRORLEVEL=1 GOTO END  { If a '1' is returned, goto end }
  76.    TYPE SYSOP.MSG            { Your existing batch file commands }
  77.    TYPE HIGHSCR.ANS          { Your existing batch file commands }
  78.    :END                      { end }
  79.  
  80.  
  81. REGISTRATION
  82. ____________
  83.  
  84.     This program requires NO REGISTRATION fee of any kind, however, you
  85. are welcome to make small donations to Datagen Software Designs to
  86. further their cause in producing quality shareware with little or no
  87. registration fees.  Please make all check or money orders payable to
  88. Datagen Software Designs c/o John Dailey and send them to the below
  89. address.
  90.  
  91.  
  92. SUPPORT BBS INFORMATION
  93. _______________________
  94.  
  95.     For information on becoming a respectable Datagen Software Designs support
  96. Bulletin Board System, simply mail the below address, with the following
  97. information:  (Note - you must include all information.)
  98.  
  99.         BBS Name,
  100.         BBS Phone Number,
  101.         BBS Type and Version,
  102.         BBS Net/Node (if applicable)
  103.         Disk Size (5 1/4" or 3 1/2")
  104.         Sysop Name,
  105.         Sysop Real Name,
  106.         Sysop Address,
  107.         Sysop Age,
  108.         And finally, your reason for wanting to become a support BBS.
  109.  
  110.     Sysop's requesting to become a support board will be notified as soon
  111. as possible on their request, and if accepted, will be elidgeable to
  112. receive Datagen's Support BBS Newsletter, technical support on all
  113. Datagen products, and MUCH more!  Send requests to:
  114.  
  115.         Support BBS Information
  116.         Datagen Software Designs
  117.         1732 Wind Drift Rd.
  118.         Orlando, FL  32809
  119.  
  120. - Questions, comments, complaints, or to receive a complete listing and
  121. description of all Datagen products, mail John Dailey at the below address.
  122.  
  123. Thank you for your support!
  124.  
  125.                 Abort Logon v1.0
  126.                 C/O John Dailey
  127.                 1732 Wind Drift Rd.
  128.                 Orlando, Fl  32809
  129.  
  130. [EOF]
  131.  
  132.