home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / c / cn311-sw.zip / NODEVENT.BAT < prev    next >
DOS Batch File  |  1990-12-20  |  1KB  |  38 lines

  1. :EVENT_I
  2. ECHO OFF
  3. REM Clear out the TELIX Download directory of any old packets. 
  4. REM Change the paths and filenames throughout this to match 
  5. REM your systems configuration.
  6. IF EXIST C:\TELIX\DOWNLOAD\402001.ZIP DEL C:\TELIX\DOWNLOAD\402001.ZIP
  7.  
  8. REM Delete any old work files to prevent re-sending messages.
  9. IF EXIST C:\CIRCUIT\MAIL\*.?TO DEL C:\CIRCUIT\MAIL\*.?TO
  10.  
  11. C:
  12. CD \CIRCUIT
  13. REM Get the messages from SpitFire.
  14. PRIMER
  15. REM And package them up for your host.
  16. EXTRACT LOCK
  17.  
  18. REM Call Your Host and exchange mail packets with him.
  19. C:
  20. CD \TELIX
  21. TELIX SDIAL1.SLC
  22.  
  23. REM check to see if you have incoming mail, 
  24. REM and move it to where Import can find it.
  25. IF EXIST C:\TELIX\DOWNLOAD\402001.ZIP MUV C:\TELIX\DOWNLOAD\402001.ZIP C:\CIRCUIT\MAIL
  26. CD \CIRCUIT
  27. IMPORT
  28.  
  29. REM Tell your users when the mail was processed, 
  30. REM and rebuild last callers screen or anything else you 
  31. REM need to do at this time.  If you have a Disk Pack utility
  32. REM that runs in a batch file (LIke Optune), 
  33. REM this is the time to use it!
  34. OPTUNE /OF  
  35. STAMPER C:\SF\DISPLAY\WELCOME2
  36. LASTCALL
  37. GOTO LOOP
  38.