home *** CD-ROM | disk | FTP | other *** search
/ PC-Online 1998 February / PCOnline_02_1998.iso / filesbbs / os2 / pgprex12.arj / PGPREXX.ZIP / PGPadKey.CMD < prev    next >
Encoding:
Text File  |  1996-06-25  |  557 b   |  19 lines

  1. /* REXX Program PGPadKey.CMD 1.0 */
  2. /* to add a PGP key contained in a mail message
  3.    Companion to PGPdeCode.CMD, PGPenCod.CMD (with SPLITMAIL.CMD and JOINMAIL.CMD).
  4.      
  5.    Copyright Lüko Willms <Lueko.Willms@T-Online.de>
  6.  
  7.    Configure this as a filter to be run when your mailer detects the string
  8.    '-----BEGIN PGP PUBLIC KEY BLOCK-----' in the body of an incoming mail message
  9. */
  10.  
  11. parse arg MailFile
  12.  
  13. MailFile = strip(translate(MailFile))
  14.  
  15. 'pgp -ka ' MailFile
  16. Say 'Press ENTER to continue (EINGABE tasten...):'
  17. parse pull nix
  18. exit
  19.