home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 19 / CD_ASCQ_19_010295.iso / vrac / 0151ter2.zip / 0151TER2._XE / rar / TMAIL.EXE / AFTERMSG.BAT < prev    next >
DOS Batch File  |  1994-09-04  |  2KB  |  70 lines

  1. @ECHO OFF
  2.  
  3. REM │
  4. REM │ This is the AFTERMSG.BAT file for TerMail.
  5. REM │
  6. REM │ If you have several programs to run after you have edited your message
  7. REM │ then you could use this batch file. We will try to gather as many
  8. REM │ possible settings for all kind of programs here.
  9. REM │
  10. REM │ Programs that currently would use such a batch file would be
  11. REM │
  12. REM │ Spell-checkers
  13. REM │ Tagline/originline managers
  14. REM │
  15. REM │ %1 will be the GROUP name in uppercased letters:  INTER, GERMAN etc.
  16. REM │ That can be used to determine different spellers or tagline editors
  17. REM │ for different languages.
  18. REM │
  19.  
  20. REM │ To view the group name, remove the REM statements below
  21.  
  22. REM CLS
  23. REM ECHO %1
  24. REM PAUSE
  25.  
  26. REM │
  27. REM │ Unpack ShareSpell into TMAIL\SPELL and disable the REM statements
  28. REM │ below.
  29. REM │
  30.  
  31. REM CD SPELL
  32. REM SS ..\TMAIL.MSG
  33.  
  34. REM │
  35. REM │ The below example will show you how to abort if the spell-checker
  36. REM │ only handle English.
  37. REM │
  38.  
  39. REM IF %1==MATRIX GOTO ENGLISH
  40. REM IF %1==INTER GOTO ENGLISH
  41. REM ECHO Sorry we could not check this language for spelling mistakes.
  42. REM PAUSE
  43. REM GOTO END
  44.  
  45. REM :ENGLISH
  46. REM CD SPELL
  47. REM SS ..\TMAIL.MSG
  48. REM GOTO END
  49.  
  50. REM │
  51. REM │ JSpell is another spell-checker, which does not require much.
  52. REM │ Unpack in TMAIL\SPELL
  53. REM │
  54.  
  55. REM SPELL\JSPELL TMAIL.MSG
  56.  
  57. REM │
  58. REM │ Cookman is a program to append cookie lines. Please be aware that
  59. REM │ sending out too many cookies could upset the ones that are paying
  60. REM │ the phonebill. Please keep it to a low level.
  61. REM │ 
  62. REM │ Unpack in TMAIL\COOKMAN
  63. REM │ 
  64.  
  65. REM CD COOKMAN
  66. REM COOKMAN ..\TMAIL.MSG
  67.  
  68. :END
  69.  
  70.