home *** CD-ROM | disk | FTP | other *** search
- @ECHO OFF
-
- REM │
- REM │ This is the AFTERMSG.BAT file for TerMail.
- REM │
- REM │ If you have several programs to run after you have edited your message
- REM │ then you could use this batch file. We will try to gather as many
- REM │ possible settings for all kind of programs here.
- REM │
- REM │ Programs that currently would use such a batch file would be
- REM │
- REM │ Spell-checkers
- REM │ Tagline/originline managers
- REM │
- REM │ %1 will be the GROUP name in uppercased letters: INTER, GERMAN etc.
- REM │ That can be used to determine different spellers or tagline editors
- REM │ for different languages.
- REM │
-
- REM │ To view the group name, remove the REM statements below
-
- REM CLS
- REM ECHO %1
- REM PAUSE
-
- REM │
- REM │ Unpack ShareSpell into TMAIL\SPELL and disable the REM statements
- REM │ below.
- REM │
-
- REM CD SPELL
- REM SS ..\TMAIL.MSG
-
- REM │
- REM │ The below example will show you how to abort if the spell-checker
- REM │ only handle English.
- REM │
-
- REM IF %1==MATRIX GOTO ENGLISH
- REM IF %1==INTER GOTO ENGLISH
- REM ECHO Sorry we could not check this language for spelling mistakes.
- REM PAUSE
- REM GOTO END
-
- REM :ENGLISH
- REM CD SPELL
- REM SS ..\TMAIL.MSG
- REM GOTO END
-
- REM │
- REM │ JSpell is another spell-checker, which does not require much.
- REM │ Unpack in TMAIL\SPELL
- REM │
-
- REM SPELL\JSPELL TMAIL.MSG
-
- REM │
- REM │ Cookman is a program to append cookie lines. Please be aware that
- REM │ sending out too many cookies could upset the ones that are paying
- REM │ the phonebill. Please keep it to a low level.
- REM │
- REM │ Unpack in TMAIL\COOKMAN
- REM │
-
- REM CD COOKMAN
- REM COOKMAN ..\TMAIL.MSG
-
- :END
-
-