aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/mh-e/mh-mime.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/mh-e/mh-mime.el')
-rw-r--r--lisp/mh-e/mh-mime.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/mh-e/mh-mime.el b/lisp/mh-e/mh-mime.el
index 2f1b835de02..316463b9897 100644
--- a/lisp/mh-e/mh-mime.el
+++ b/lisp/mh-e/mh-mime.el
@@ -1502,7 +1502,7 @@ a prefix argument NOCONFIRM."
1502 (after-find-file nil nil nil nil t))) 1502 (after-find-file nil nil nil nil t)))
1503 1503
1504;; Shush compiler. 1504;; Shush compiler.
1505(defvar mh-identity-pgg-default-user-id) 1505(defvar mh-identity-gpg-default-user-id)
1506 1506
1507;;;###mh-autoload 1507;;;###mh-autoload
1508(defun mh-mml-secure-message-encrypt (method) 1508(defun mh-mml-secure-message-encrypt (method)
@@ -1513,7 +1513,7 @@ message. Use the command \\[mh-mml-unsecure-message] to remove
1513this tag. Use a prefix argument METHOD to be prompted for one of 1513this tag. Use a prefix argument METHOD to be prompted for one of
1514the possible security methods (see `mh-mml-method-default')." 1514the possible security methods (see `mh-mml-method-default')."
1515 (interactive (list (mh-mml-query-cryptographic-method))) 1515 (interactive (list (mh-mml-query-cryptographic-method)))
1516 (mh-secure-message method "encrypt" mh-identity-pgg-default-user-id)) 1516 (mh-secure-message method "encrypt" mh-identity-gpg-default-user-id))
1517 1517
1518;;;###mh-autoload 1518;;;###mh-autoload
1519(defun mh-mml-secure-message-sign (method) 1519(defun mh-mml-secure-message-sign (method)
@@ -1524,7 +1524,7 @@ message. Use the command \\[mh-mml-unsecure-message] to remove
1524this tag. Use a prefix argument METHOD to be prompted for one of 1524this tag. Use a prefix argument METHOD to be prompted for one of
1525the possible security methods (see `mh-mml-method-default')." 1525the possible security methods (see `mh-mml-method-default')."
1526 (interactive (list (mh-mml-query-cryptographic-method))) 1526 (interactive (list (mh-mml-query-cryptographic-method)))
1527 (mh-secure-message method "sign" mh-identity-pgg-default-user-id)) 1527 (mh-secure-message method "sign" mh-identity-gpg-default-user-id))
1528 1528
1529;;;###mh-autoload 1529;;;###mh-autoload
1530(defun mh-mml-secure-message-signencrypt (method) 1530(defun mh-mml-secure-message-signencrypt (method)
@@ -1535,7 +1535,7 @@ message. Use the command \\[mh-mml-unsecure-message] to remove
1535this tag. Use a prefix argument METHOD to be prompted for one of 1535this tag. Use a prefix argument METHOD to be prompted for one of
1536the possible security methods (see `mh-mml-method-default')." 1536the possible security methods (see `mh-mml-method-default')."
1537 (interactive (list (mh-mml-query-cryptographic-method))) 1537 (interactive (list (mh-mml-query-cryptographic-method)))
1538 (mh-secure-message method "signencrypt" mh-identity-pgg-default-user-id)) 1538 (mh-secure-message method "signencrypt" mh-identity-gpg-default-user-id))
1539 1539
1540(defvar mh-mml-cryptographic-method-history ()) 1540(defvar mh-mml-cryptographic-method-history ())
1541 1541
@@ -1569,9 +1569,9 @@ IDENTITY is optionally the default-user-id to use."
1569 (save-excursion 1569 (save-excursion
1570 (goto-char (point-min)) 1570 (goto-char (point-min))
1571 (mh-goto-header-end 1) 1571 (mh-goto-header-end 1)
1572 (if mh-identity-pgg-default-user-id 1572 (if mh-identity-gpg-default-user-id
1573 (mml-insert-tag 'secure 'method method 'mode mode 1573 (mml-insert-tag 'secure 'method method 'mode mode
1574 'sender mh-identity-pgg-default-user-id) 1574 'sender mh-identity-gpg-default-user-id)
1575 (mml-insert-tag 'secure 'method method 'mode mode))))))) 1575 (mml-insert-tag 'secure 'method method 'mode mode)))))))
1576 1576
1577;;;###mh-autoload 1577;;;###mh-autoload