home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / ecron210.lha / rexx / AutoGetMail.rexx next >
Encoding:
OS/2 REXX Batch file  |  1997-02-12  |  634 b   |  22 lines

  1. /* A VERY simple AutoGetMail for AmiTCP and Thor 
  2. ** If someone would like to write a better one, please do and
  3. ** send it to me. I will include it in the next release of EZCron.
  4. ** Change the ThorMailBox variable to reflect the name of YOUR Thor system.
  5. */
  6.  
  7. ThorMailBox = mymail
  8. call delay(500)
  9.  
  10. address command 'amitcp:bin/stopnet'    /*Takes AmiTCP offline*/
  11. address command 'amitcp:bin/startnet'   /*Puts AmiTCP online*/
  12.  
  13. OPTIONS FAILAT 21
  14.  
  15. address command 'thor:bin/gettcp' ThorMailBox 'NONEWS'
  16. address command 'thor:bin/gettcp' ThorMailBox 'NOMAIL'
  17.  
  18. OPTIONS NO
  19.  
  20. address command 'amitcp:bin/stopnet'    /*Takes AmiTCP offline*/
  21.  
  22.