1 ;;; epa-mail.el --- the EasyPG Assistant, minor-mode for mail composer
2 ;; Copyright (C) 2006, 2007, 2008 Free Software Foundation, Inc.
4 ;; Author: Daiki Ueno <ueno@unixuser.org>
5 ;; Keywords: PGP, GnuPG, mail, message
7 ;; This file is part of GNU Emacs.
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation; either version 3, or (at your option)
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;; GNU General Public License for more details.
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING. If not, write to the
21 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 ;; Boston, MA 02110-1301, USA.
29 (defvar epa-mail-mode-map
30 (let ((keymap (make-sparse-keymap)))
31 (define-key keymap
"\C-c\C-ed" 'epa-mail-decrypt
)
32 (define-key keymap
"\C-c\C-ev" 'epa-mail-verify
)
33 (define-key keymap
"\C-c\C-es" 'epa-mail-sign
)
34 (define-key keymap
"\C-c\C-ee" 'epa-mail-encrypt
)
35 (define-key keymap
"\C-c\C-ei" 'epa-mail-import-keys
)
36 (define-key keymap
"\C-c\C-eo" 'epa-insert-keys
)
39 (defvar epa-mail-mode-hook nil
)
40 (defvar epa-mail-mode-on-hook nil
)
41 (defvar epa-mail-mode-off-hook nil
)
44 (define-minor-mode epa-mail-mode
45 "A minor-mode for composing encrypted/clearsigned mails."
46 nil
" epa-mail" epa-mail-mode-map
)
48 (defun epa-mail--find-usable-key (keys usage
)
49 "Find a usable key from KEYS for USAGE."
52 (let ((pointer (epg-key-sub-key-list (car keys
))))
54 (if (and (memq usage
(epg-sub-key-capability (car pointer
)))
55 (not (memq (epg-sub-key-validity (car pointer
))
57 (throw 'found
(car keys
)))
58 (setq pointer
(cdr pointer
))))
59 (setq keys
(cdr keys
)))))
62 (defun epa-mail-decrypt ()
63 "Decrypt OpenPGP armors in the current buffer.
64 The buffer is expected to contain a mail message.
66 Don't use this command in Lisp programs!"
68 (epa-decrypt-armor-in-region (point-min) (point-max)))
71 (defun epa-mail-verify ()
72 "Verify OpenPGP cleartext signed messages in the current buffer.
73 The buffer is expected to contain a mail message.
75 Don't use this command in Lisp programs!"
77 (epa-verify-cleartext-in-region (point-min) (point-max)))
80 (defun epa-mail-sign (start end signers mode
)
81 "Sign the current buffer.
82 The buffer is expected to contain a mail message.
84 Don't use this command in Lisp programs!"
87 (goto-char (point-min))
88 (if (search-forward mail-header-separator nil t
)
90 (setq epa-last-coding-system-specified
91 (or coding-system-for-write
92 (epa--select-safe-coding-system (point) (point-max))))
93 (let ((verbose current-prefix-arg
))
94 (list (point) (point-max)
96 (epa-select-keys (epg-make-context epa-protocol
)
97 "Select keys for signing.
98 If no one is selected, default secret key is used. "
101 (epa--read-signature-type)
103 (epa-sign-region start end signers mode
))
106 (defun epa-mail-encrypt (start end recipients sign signers
)
107 "Encrypt the current buffer.
108 The buffer is expected to contain a mail message.
110 Don't use this command in Lisp programs!"
113 (let ((verbose current-prefix-arg
)
114 (context (epg-make-context epa-protocol
))
115 recipients recipient-key
)
116 (goto-char (point-min))
118 (narrow-to-region (point)
119 (if (search-forward mail-header-separator nil
0)
123 (mail-strip-quoted-names
124 (mapconcat #'identity
125 (nconc (mail-fetch-field "to" nil nil t
)
126 (mail-fetch-field "cc" nil nil t
)
127 (mail-fetch-field "bcc" nil nil t
))
130 (setq recipients
(delete ""
131 (split-string recipients
"[ \t\n]+"))))
132 (goto-char (point-min))
133 (if (search-forward mail-header-separator nil t
)
135 (setq epa-last-coding-system-specified
136 (or coding-system-for-write
137 (epa--select-safe-coding-system (point) (point-max))))
138 (list (point) (point-max)
142 "Select recipients for encryption.
143 If no one is selected, symmetric encryption will be performed. "
149 (epa-mail--find-usable-key
151 (epg-make-context epa-protocol
)
152 (concat "<" recipient
">"))
154 (unless (or recipient-key
157 "No public key for %s; skip it? "
159 (error "No public key for %s" recipient
))
162 (setq sign
(if verbose
(y-or-n-p "Sign? ")))
164 (epa-select-keys context
165 "Select keys for signing. "))))))
166 (epa-encrypt-region start end recipients sign signers
))
169 (defun epa-mail-import-keys ()
170 "Import keys in the OpenPGP armor format in the current buffer.
171 The buffer is expected to contain a mail message.
173 Don't use this command in Lisp programs!"
175 (epa-import-armor-in-region (point-min) (point-max)))
178 (define-minor-mode epa-global-mail-mode
179 "Minor mode to hook EasyPG into Mail mode."
180 :global t
:init-value nil
:group
'epa-mail
:version
"23.1"
181 (remove-hook 'mail-mode-hook
'epa-mail-mode
)
182 (if epa-global-mail-mode
183 (add-hook 'mail-mode-hook
'epa-mail-mode
)))
187 ;; arch-tag: a6f82b3f-d177-4a11-af95-040da55927d2
188 ;;; epa-mail.el ends here