]> granicus.if.org Git - mutt/commitdiff
More nits: Include a sample configuration file for using mutt with
authorThomas Roessler <roessler@does-not-exist.org>
Tue, 14 Mar 2000 07:19:05 +0000 (07:19 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Tue, 14 Mar 2000 07:19:05 +0000 (07:19 +0000)
pgp6, and install and actually distribute Tin.rc.

contrib/Makefile.in
contrib/pgp6.rc [new file with mode: 0644]

index e5ae33f121415bcc4c2e83e81a098de314d204d4..3ccbd7b0bef5daf5c7af793d764e8c013ad41bec 100644 (file)
@@ -21,11 +21,11 @@ VPATH=@srcdir@
 
 subdir=contrib
 
-DISTFILES=Mush.rc Pine.rc Makefile.in language.txt language50.txt      \
+DISTFILES=Mush.rc Pine.rc Tin.rc Makefile.in language.txt language50.txt  \
        patch.slang-1.2.2.keypad.1 sample.muttrc  sample.mailcap        \
        pgp2.rc pgp5.rc gpg.rc sample.muttrc-tlr
 
-SAMPLES=Mush.rc Pine.rc gpg.rc pgp2.rc pgp5.rc
+SAMPLES=Mush.rc Pine.rc gpg.rc pgp2.rc pgp5.rc pgp6.rc Tin.rc
 
 all clean:
 
diff --git a/contrib/pgp6.rc b/contrib/pgp6.rc
new file mode 100644 (file)
index 0000000..7767e8f
--- /dev/null
@@ -0,0 +1,45 @@
+# -*-muttrc-*-
+#
+# PGP command formats for PGP 2.
+#
+# $Id$
+#
+
+# decode application/pgp
+set pgp_decode_command="%?p?PGPPASSFD=0; export PGPPASSFD;? cat %?p?-? %f | pgp6 +compatible   +verbose=0 +batchmode -f"
+
+# verify a pgp/mime signature
+set pgp_verify_command="pgp6 +compatible   +verbose=0 +batchmode -t %s %f"
+
+# decrypt a pgp/mime attachment
+set pgp_decrypt_command="PGPPASSFD=0; export PGPPASSFD; cat - %f | pgp6 +compatible   +verbose=0 +batchmode -f"
+
+# create a pgp/mime signed attachment
+set pgp_sign_command="PGPPASSFD=0; export PGPPASSFD; cat - %f | pgp6 +compatible   +verbose=0 +batchmode -abfst %?a? -u %a?"
+
+# create a pgp/mime encrypted attachment
+set pgp_encrypt_only_command="pgp6 +compatible   +verbose=0 +encrypttoself +batchmode -aeft %r < %f"
+
+# create a pgp/mime encrypted and signed attachment
+set pgp_encrypt_sign_command="PGPPASSFD=0; export PGPPASSFD; cat - %f | pgp6 +compatible   +verbose=0 +encrypttoself +batchmode +clearsig=off -aefts %?a?-u %a? %r"
+
+# import a key into the public key ring
+set pgp_import_command="pgp6 +compatible  -ka %f "
+
+# export a key from the public key ring
+set pgp_export_command="pgp6 +compatible  -kxaf  %r"
+
+# verify a key
+set pgp_verify_key_command="pgp6 +compatible  -kcc  %r"
+
+# read in the public key ring
+set pgp_list_pubring_command="pgpring -5 %r"
+
+# read in the secret key ring
+set pgp_list_secring_command="pgpring -s -5 %r"
+
+# create a clearsigned message
+set pgp_clearsign_command="PGPPASSFD=0; export PGPPASSFD; cat - %f | pgp6 +compatible   +verbose=0 +batchmode +clearsig -afst %?a? -u %a?"
+
+# fetch keys
+set pgp_getkeys_command="pkspxycwrap %r"