1 ;;; epa-mail.el --- the EasyPG Assistant, minor-mode for mail composer
2 ;; Copyright (C) 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
4 ;; Author: Daiki Ueno <ueno@unixuser.org>
5 ;; Keywords: PGP, GnuPG, mail, message
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
28 (defvar epa-mail-mode-map
29 (let ((keymap (make-sparse-keymap)))
30 (define-key keymap
"\C-c\C-ed" 'epa-mail-decrypt
)
31 (define-key keymap
"\C-c\C-ev" 'epa-mail-verify
)
32 (define-key keymap
"\C-c\C-es" 'epa-mail-sign
)
33 (define-key keymap
"\C-c\C-ee" 'epa-mail-encrypt
)
34 (define-key keymap
"\C-c\C-ei" 'epa-mail-import-keys
)
35 (define-key keymap
"\C-c\C-eo" 'epa-insert-keys
)
36 (define-key keymap
"\C-c\C-e\C-d" 'epa-mail-decrypt
)
37 (define-key keymap
"\C-c\C-e\C-v" 'epa-mail-verify
)
38 (define-key keymap
"\C-c\C-e\C-s" 'epa-mail-sign
)
39 (define-key keymap
"\C-c\C-e\C-e" 'epa-mail-encrypt
)
40 (define-key keymap
"\C-c\C-e\C-i" 'epa-mail-import-keys
)
41 (define-key keymap
"\C-c\C-e\C-o" 'epa-insert-keys
)
44 (defvar epa-mail-mode-hook nil
)
45 (defvar epa-mail-mode-on-hook nil
)
46 (defvar epa-mail-mode-off-hook nil
)
49 (define-minor-mode epa-mail-mode
50 "A minor-mode for composing encrypted/clearsigned mails."
51 nil
" epa-mail" epa-mail-mode-map
)
53 (defun epa-mail--find-usable-key (keys usage
)
54 "Find a usable key from KEYS for USAGE."
57 (let ((pointer (epg-key-sub-key-list (car keys
))))
59 (if (and (memq usage
(epg-sub-key-capability (car pointer
)))
60 (not (memq (epg-sub-key-validity (car pointer
))
62 (throw 'found
(car keys
)))
63 (setq pointer
(cdr pointer
))))
64 (setq keys
(cdr keys
)))))
67 (defun epa-mail-decrypt ()
68 "Decrypt OpenPGP armors in the current buffer.
69 The buffer is expected to contain a mail message.
71 Don't use this command in Lisp programs!"
73 (epa-decrypt-armor-in-region (point-min) (point-max)))
76 (defun epa-mail-verify ()
77 "Verify OpenPGP cleartext signed messages in the current buffer.
78 The buffer is expected to contain a mail message.
80 Don't use this command in Lisp programs!"
82 (epa-verify-cleartext-in-region (point-min) (point-max)))
85 (defun epa-mail-sign (start end signers mode
)
86 "Sign the current buffer.
87 The buffer is expected to contain a mail message.
89 Don't use this command in Lisp programs!"
92 (goto-char (point-min))
93 (if (search-forward mail-header-separator nil t
)
95 (setq epa-last-coding-system-specified
96 (or coding-system-for-write
97 (epa--select-safe-coding-system (point) (point-max))))
98 (let ((verbose current-prefix-arg
))
99 (list (point) (point-max)
101 (epa-select-keys (epg-make-context epa-protocol
)
102 "Select keys for signing.
103 If no one is selected, default secret key is used. "
106 (epa--read-signature-type)
108 (epa-sign-region start end signers mode
))
111 (defun epa-mail-encrypt (start end recipients sign signers
)
112 "Encrypt the current buffer.
113 The buffer is expected to contain a mail message.
115 Don't use this command in Lisp programs!"
118 (let ((verbose current-prefix-arg
)
119 (context (epg-make-context epa-protocol
))
120 recipients recipient-key
)
121 (goto-char (point-min))
123 (narrow-to-region (point)
124 (if (search-forward mail-header-separator nil
0)
128 (mail-strip-quoted-names
129 (mapconcat #'identity
130 (nconc (mail-fetch-field "to" nil nil t
)
131 (mail-fetch-field "cc" nil nil t
)
132 (mail-fetch-field "bcc" nil nil t
))
135 (setq recipients
(delete ""
136 (split-string recipients
"[ \t\n]+"))))
137 (goto-char (point-min))
138 (if (search-forward mail-header-separator nil t
)
140 (setq epa-last-coding-system-specified
141 (or coding-system-for-write
142 (epa--select-safe-coding-system (point) (point-max))))
143 (list (point) (point-max)
147 "Select recipients for encryption.
148 If no one is selected, symmetric encryption will be performed. "
154 (epa-mail--find-usable-key
156 (epg-make-context epa-protocol
)
157 (if (string-match "@" recipient
)
158 (concat "<" recipient
">")
161 (unless (or recipient-key
164 "No public key for %s; skip it? "
166 (error "No public key for %s" recipient
))
169 (setq sign
(if verbose
(y-or-n-p "Sign? ")))
171 (epa-select-keys context
172 "Select keys for signing. "))))))
173 (epa-encrypt-region start end recipients sign signers
))
176 (defun epa-mail-import-keys ()
177 "Import keys in the OpenPGP armor format in the current buffer.
178 The buffer is expected to contain a mail message.
180 Don't use this command in Lisp programs!"
182 (epa-import-armor-in-region (point-min) (point-max)))
185 (define-minor-mode epa-global-mail-mode
186 "Minor mode to hook EasyPG into Mail mode."
187 :global t
:init-value nil
:group
'epa-mail
:version
"23.1"
188 (remove-hook 'mail-mode-hook
'epa-mail-mode
)
189 (if epa-global-mail-mode
190 (add-hook 'mail-mode-hook
'epa-mail-mode
)))
194 ;; arch-tag: a6f82b3f-d177-4a11-af95-040da55927d2
195 ;;; epa-mail.el ends here