home *** CD-ROM | disk | FTP | other *** search
- /* REXX Program PGPadKey.CMD 1.0 */
- /* to add a PGP key contained in a mail message
- Companion to PGPdeCode.CMD, PGPenCod.CMD (with SPLITMAIL.CMD and JOINMAIL.CMD).
-
- Copyright Lüko Willms <Lueko.Willms@T-Online.de>
-
- Configure this as a filter to be run when your mailer detects the string
- '-----BEGIN PGP PUBLIC KEY BLOCK-----' in the body of an incoming mail message
- */
-
- parse arg MailFile
-
- MailFile = strip(translate(MailFile))
-
- 'pgp -ka ' MailFile
- Say 'Press ENTER to continue (EINGABE tasten...):'
- parse pull nix
- exit