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

  1. /*
  2.  
  3.    Toss.rexx
  4.  
  5.    If CrashMail is running, it is told to start tossing. Otherwise CrashMail
  6.    is executed with the TOSS 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 Toss >"CON:0/50/640/100/CrashMail Toss..."'
  13. end
  14. else do
  15.    address 'CRASHMAIL' toss
  16. end