home *** CD-ROM | disk | FTP | other *** search
/ Merciful 3 / Merciful_Release_3.bin / software / c / crashmailv1.22reg.lha / CrashMail / rexx / Scan.rexx < prev    next >
OS/2 REXX Batch file  |  1994-05-13  |  342b  |  16 lines

  1. /*
  2.  
  3.    Scan.rexx
  4.  
  5.    If CrashMail is running, it is told to start scanning. Otherwise CrashMail
  6.    is executed with the SCAN keyword. Please change the paths to suit your
  7.    setup.
  8.  
  9. */
  10.  
  11. if ~show('p','CRASHMAIL') then do
  12.    address command 'MAIL:CrashMail Scan >"CON:0/50/640/100/CrashMail Scan..."'
  13. end
  14. else do
  15.    address 'CRASHMAIL' scan
  16. end