diff options
author | Steve Price <steve@FreeBSD.org> | 1998-10-05 04:23:19 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1998-10-05 04:23:19 +0000 |
commit | 6c5a81185b98298fd59c50d7213fa1d02896d59f (patch) | |
tree | 4d86acc88be5e417eb080b92831696978bdf2482 /mail/pine4/files/pgpsign | |
parent | Revert previous diff; we've found the XFree86 dist problem which really (diff) |
Update to version 4.05.
PR: 7993, 8151
Submitted by: maintainer
Diffstat (limited to '')
-rw-r--r-- | mail/pine4/files/pgpsign | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/mail/pine4/files/pgpsign b/mail/pine4/files/pgpsign index e56326cb1bf9..6eff395c89c0 100644 --- a/mail/pine4/files/pgpsign +++ b/mail/pine4/files/pgpsign @@ -1,4 +1,11 @@ #!/bin/sh # ---------- pgpsign --------- # 21.03.96 Roland Rosenfeld <roland@spinnaker.rhein.de> -pgp -fast +# Wed 16 Sep 1998 23:48:51 WST Anthony Di Pietro <anthony@dino.omen.com.au> +# Modified to work with both PGP v2 and PGP v5. +if [ -x /usr/local/bin/pgps ] +then + pgps -a -t +else + pgp -fast +fi |