* semi-setup.el: Set up for `mime-verify-application/pkcs7-signature'
authorueno <ueno>
Wed, 8 Dec 1999 18:43:48 +0000 (18:43 +0000)
committerueno <ueno>
Wed, 8 Dec 1999 18:43:48 +0000 (18:43 +0000)
and `mime-decrypt-application/pkcs7-mime'.

semi-setup.el

index 0c9b6c7..00d6500 100644 (file)
@@ -122,6 +122,30 @@ it is used as hook to set."
          '((type . application)(subtype . pgp-keys)
            (method . mime-add-application/pgp-keys))
          'strict "mime-pgp")
+
+        (mime-add-condition
+         'action
+         '((type . application)(subtype . pkcs7-signature)
+           (method . mime-verify-application/pkcs7-signature))
+         'strict "mime-pgp")
+
+        (mime-add-condition
+         'action
+         '((type . application)(subtype . x-pkcs7-signature)
+           (method . mime-verify-application/pkcs7-signature))
+         'strict "mime-pgp")
+        
+        (mime-add-condition
+         'action
+         '((type . application)(subtype . pkcs7-mime)
+           (method . mime-decrypt-application/pkcs7-mime))
+         'strict "mime-pgp")
+
+        (mime-add-condition
+         'action
+         '((type . application)(subtype . x-pkcs7-mime)
+           (method . mime-decrypt-application/pkcs7-mime))
+         'strict "mime-pgp")
         ))
   )