home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / WILDCAT / INUSE101.ZIP / READ.ME < prev   
Text File  |  1994-01-22  |  3KB  |  88 lines

  1. 01/21/94  Quick Note!
  2.  
  3. For all those folks that have asked for a clean and simple way to
  4. determine if another copy of either WILDMAIL! or WILDUUCP! is currently
  5. running, this program is for you.  This program is generally needed for
  6. those systems that use Multi-Line Mailers such as Intermail or FrontDoor
  7. thereby preventing copies of WILDMAIL!, WMCONFIG!, WMUTIL!, WILDUUCP!
  8. from attempting to run at the same time.
  9.  
  10.  
  11. OPERATION
  12.  
  13. The way INUSE! operates is very simple.  You simply execute it from
  14. the appropriate directory (depending on which program you wish for
  15. it to check) using the proper command line parameter and it will read
  16. the respective programs configuration file and then exit with an
  17. errorlevel specific to the current status of the program.
  18.  
  19.  
  20. ERRORLEVELS
  21.  
  22. The current errorlevels INUSE! exits with are:
  23.  
  24.                    5 =  Program is running (WILDMAIL!/WILDUUCP!)
  25.                    1 =  Abnormal termination
  26.                    0 =  Program is NOT running
  27.  
  28. Because INUSE! exits with an errorlevel, you'll need to use a batch file
  29. to properly interpret these errorlevels.  If you execute INUSE! from the
  30. DOS command line it will literally do nothing of any use for you.
  31.  
  32.  
  33. SAMPLE BATCH FILE
  34.  
  35. Quick note, you may place INUSE.EXE into any of the DOS path'd directories
  36. but you must change to the appropriate directory in order for INUSE! to find
  37. the desired config file.
  38.  
  39. Shown below is a very simple batch file that you might use to execute
  40. WILDMAIL! when mail has been received.
  41.  
  42.     @echo off
  43.     cd\wm30
  44.     inuse /w
  45.  
  46.     IF ERRORLEVEL 5 GOTO EXIT       rem   Program is running, exit!
  47.     IF ERRORLEVEL 1 GOTO EXIT       rem   Abnormal termination, exit!
  48.     IF ERRORLEVEL 0 GOTO WILDMAIL   rem   Program not running, execute WM!
  49.     GOTO EXIT
  50.  
  51.     :WILDMAIL
  52.     wm scan toss netmail areamgr
  53.  
  54.     :EXIT
  55.  
  56.  
  57. COMMAND LINE PARAMETERS
  58.  
  59. Currently INUSE! only supports checking for WILDMAIL! and WILDUUCP!.  To
  60. tell INUSE! which program to check on, you first change to the appropriate
  61. home directory of the program desired (\WM30 or \WILDUUCP) and then use
  62. either of the following command lines:
  63.  
  64.                     INUSE /W    (for WILDMAIL!)
  65.                     INUSE /U    (for WILDUUCP!)
  66.  
  67. You may also use a /? for additional help information.
  68.  
  69.  
  70. WHAT IS WILDUUCP?
  71.  
  72. WILDUUCP! is a newly developed mail tosser for WILDCAT! BBS's that will
  73. take mail from a UUCP Host provider such as HoloNet and toss both EMAIL
  74. and NEWS directly into the WILDCAT! message bases.  WILDUUCP! also allows
  75. you to forward FTSC style mail onto specific node addresses to gate mail
  76. from the Internet into Fido style networks.
  77.  
  78. WILDUUCP! provides a vast array of features for handling alias name
  79. translations, conversions, dialing and forwarding of mail to both UUCP
  80. providers and downlink nodes.   For additional information on this product,
  81. feel free to give Online Computer Resources a voice call at:
  82.  
  83.                 (707) 552-1122 9am-5pm (M-F) PST
  84.  
  85. Release date was late November 1993, so look for it on your favorite BBS
  86. or Online Computer Resources BBS shortly!
  87.  
  88.