From 687b75afd79b5fcc2025e390039acf22dcd10292 Mon Sep 17 00:00:00 2001 From: ueno Date: Wed, 8 Dec 1999 18:43:48 +0000 Subject: [PATCH] * semi-setup.el: Set up for `mime-verify-application/pkcs7-signature' and `mime-decrypt-application/pkcs7-mime'. --- semi-setup.el | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/semi-setup.el b/semi-setup.el index 0c9b6c7..00d6500 100644 --- a/semi-setup.el +++ b/semi-setup.el @@ -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") )) ) -- 1.7.10.4