Mercurial > emacs
annotate lisp/epa-mail.el @ 99602:c94ec53df9d8
* net/ange-ftp.el (ange-ftp-multi-msgs, ange-ftp-good-msgs)
(ange-ftp-try-passive-mode, ange-ftp-data-buffer-name)
(ange-ftp-account-hashtable, ange-ftp-ls-cache-lsargs)
(ange-ftp-ls-cache-file, ange-ftp-ls-cache-res, ange-ftp-get-user)
(ange-ftp-ftp-name-component, ange-ftp-kill-ftp-process)
(ange-ftp-quote-string, ange-ftp-process-handle-line)
(ange-ftp-start-process, ange-ftp-send-cmd, ange-ftp-add-dumb-unix-host)
(ange-ftp-before-parse-ls-hook, ange-ftp-after-parse-ls-hook)
(ange-ftp-ls, ange-ftp-add-dl-dir, ange-ftp-get-file-entry)
(ange-ftp-set-binary-mode, ange-ftp-set-ascii-mode, ange-ftp-get-pwd)
(ange-ftp-file-name-as-directory-alist, ange-ftp-reread-dir)
(ange-ftp-vms-filename-regexp, ange-ftp-bs2000-fix-name-regexp-reverse)
(ange-ftp-bs2000-fix-name-regexp): Fix typos in docstrings.
(ange-ftp-name-format, ange-ftp-gateway-fatal-msgs)
(ange-ftp-xfer-size-msgs, ange-ftp-tmp-name-template)
(ange-ftp-netrc-filename, ange-ftp-disable-netrc-security-check)
(ange-ftp-default-user, ange-ftp-default-password)
(ange-ftp-default-account, ange-ftp-netrc-default-password)
(ange-ftp-netrc-default-account, ange-ftp-dumb-unix-host-regexp)
(ange-ftp-binary-file-name-regexp, ange-ftp-gateway-host)
(ange-ftp-gateway-prompt-pattern, ange-ftp-smart-gateway-port)
(ange-ftp-send-hash, ange-ftp-binary-hash-mark-size)
(ange-ftp-ascii-hash-mark-size, ange-ftp-process-verbose)
(ange-ftp-ftp-program-name, ange-ftp-gateway-ftp-program-name)
(ange-ftp-ftp-program-args, ange-ftp-nslookup-program)
(ange-ftp-make-backup-files, ange-ftp-retry-time)
(ange-ftp-bs2000-special-prefix): Remove * from defcustom docstrings.
(ange-ftp-skip-msgs, ange-ftp-potential-error-msgs)
(ange-ftp-gateway-tmp-name-template)
(ange-ftp-generate-anonymous-password, ange-ftp-local-host-regexp)
(ange-ftp-gateway-program-interactive, ange-ftp-smart-gateway)
(ange-ftp-raw-login): Remove * from defcustom docstrings; fix typos.
(ange-ftp-fatal-msgs): Remove * from defcustom docstring; doc fix.
(ange-ftp-gateway-program): Remove * from docstring and reflow.
(ange-ftp-hash-entry-exists-p, ange-ftp-hash-table-keys)
(ange-ftp-raw-send-cmd, ange-ftp-get-files, ange-ftp-canonize-filename)
(ange-ftp-file-name-as-directory, ange-ftp-directory-file-name):
(ange-ftp-copy-files-async, ange-ftp-rename-remote-to-remote):
(ange-ftp-rename-local-to-remote): Doc fixes.
(ange-ftp-set-xfer-size, ange-ftp-call-cont, ange-ftp-process-filter):
Use `when', `unless'.
(ange-ftp-set-passwd): Rename arg PASSWD to PASSWORD.
(ange-ftp-process-handle-hash): Rename arg STR to STRING.
(ange-ftp-nslookup-host): Rename arg HOST to HOSTNAME.
(ange-ftp-smart-login): Rename arg PASS to PASSWORD.
(ange-ftp-normal-login): Rename arg PASS to PASSWORD. Fix typo.
(ange-ftp-process-sentinel): Use `when'. Fix typo.
(ange-ftp-gwp-start): Use `let', not `let*'; use `when'. Fix typo.
(ange-ftp-fix-name-func-alist, ange-ftp-fix-dir-name-func-alist)
(ange-ftp-parse-list-func-alist, ange-ftp-add-file-entry-alist)
(ange-ftp-delete-file-entry-alist): Fix typos and reflow docstring.
(ange-ftp-dumb-unix-host, ange-ftp-binary-file)
(ange-ftp-directory-files, ange-ftp-file-modtime, ange-ftp-vms-host)
(ange-ftp-mts-host, ange-ftp-cms-host, ange-ftp-bs2000-host)
(ange-ftp-bs2000-posix-host): Use `string-match-p' instead of
`(save-match-data (string-match ...))'.
(ange-ftp-use-gateway-p, ange-ftp-use-smart-gateway-p)
(ange-ftp-file-name-directory, ange-ftp-file-name-nondirectory):
Use `string-match-p' instead of `(save-match-data (string-match ...))'.
Doc fixes.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Sun, 16 Nov 2008 05:50:23 +0000 |
parents | ee5932bf781d |
children | a9dc0e7c3f2b |
rev | line source |
---|---|
91647 | 1 ;;; epa-mail.el --- the EasyPG Assistant, minor-mode for mail composer |
2 ;; Copyright (C) 2006, 2007, 2008 Free Software Foundation, Inc. | |
3 | |
4 ;; Author: Daiki Ueno <ueno@unixuser.org> | |
5 ;; Keywords: PGP, GnuPG, mail, message | |
6 | |
7 ;; This file is part of GNU Emacs. | |
8 | |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91733
diff
changeset
|
9 ;; GNU Emacs is free software: you can redistribute it and/or modify |
91647 | 10 ;; it under the terms of the GNU General Public License as published by |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91733
diff
changeset
|
11 ;; the Free Software Foundation, either version 3 of the License, or |
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91733
diff
changeset
|
12 ;; (at your option) any later version. |
91647 | 13 |
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. | |
18 | |
19 ;; You should have received a copy of the GNU General Public License | |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91733
diff
changeset
|
20 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
91647 | 21 |
22 ;;; Code: | |
23 | |
24 (require 'epa) | |
25 (require 'mail-utils) | |
26 | |
27 (defvar epa-mail-mode-map | |
28 (let ((keymap (make-sparse-keymap))) | |
29 (define-key keymap "\C-c\C-ed" 'epa-mail-decrypt) | |
30 (define-key keymap "\C-c\C-ev" 'epa-mail-verify) | |
31 (define-key keymap "\C-c\C-es" 'epa-mail-sign) | |
32 (define-key keymap "\C-c\C-ee" 'epa-mail-encrypt) | |
33 (define-key keymap "\C-c\C-ei" 'epa-mail-import-keys) | |
34 (define-key keymap "\C-c\C-eo" 'epa-insert-keys) | |
35 keymap)) | |
36 | |
37 (defvar epa-mail-mode-hook nil) | |
38 (defvar epa-mail-mode-on-hook nil) | |
39 (defvar epa-mail-mode-off-hook nil) | |
40 | |
91731
7efbdc83b944
EasyPG: Implement some suggestions from emacs-devel.
Michael Olson <mwolson@gnu.org>
parents:
91687
diff
changeset
|
41 ;;;###autoload |
91647 | 42 (define-minor-mode epa-mail-mode |
43 "A minor-mode for composing encrypted/clearsigned mails." | |
44 nil " epa-mail" epa-mail-mode-map) | |
45 | |
46 (defun epa-mail--find-usable-key (keys usage) | |
47 "Find a usable key from KEYS for USAGE." | |
48 (catch 'found | |
49 (while keys | |
50 (let ((pointer (epg-key-sub-key-list (car keys)))) | |
51 (while pointer | |
52 (if (and (memq usage (epg-sub-key-capability (car pointer))) | |
53 (not (memq (epg-sub-key-validity (car pointer)) | |
54 '(revoked expired)))) | |
55 (throw 'found (car keys))) | |
56 (setq pointer (cdr pointer)))) | |
57 (setq keys (cdr keys))))) | |
58 | |
59 ;;;###autoload | |
60 (defun epa-mail-decrypt () | |
61 "Decrypt OpenPGP armors in the current buffer. | |
62 The buffer is expected to contain a mail message. | |
63 | |
64 Don't use this command in Lisp programs!" | |
65 (interactive) | |
66 (epa-decrypt-armor-in-region (point-min) (point-max))) | |
67 | |
68 ;;;###autoload | |
69 (defun epa-mail-verify () | |
70 "Verify OpenPGP cleartext signed messages in the current buffer. | |
71 The buffer is expected to contain a mail message. | |
72 | |
73 Don't use this command in Lisp programs!" | |
74 (interactive) | |
75 (epa-verify-cleartext-in-region (point-min) (point-max))) | |
76 | |
77 ;;;###autoload | |
78 (defun epa-mail-sign (start end signers mode) | |
79 "Sign the current buffer. | |
80 The buffer is expected to contain a mail message. | |
81 | |
82 Don't use this command in Lisp programs!" | |
83 (interactive | |
84 (save-excursion | |
85 (goto-char (point-min)) | |
86 (if (search-forward mail-header-separator nil t) | |
87 (forward-line)) | |
88 (setq epa-last-coding-system-specified | |
89 (or coding-system-for-write | |
90 (epa--select-safe-coding-system (point) (point-max)))) | |
91 (let ((verbose current-prefix-arg)) | |
92 (list (point) (point-max) | |
93 (if verbose | |
94 (epa-select-keys (epg-make-context epa-protocol) | |
95 "Select keys for signing. | |
96 If no one is selected, default secret key is used. " | |
97 nil t)) | |
98 (if verbose | |
99 (epa--read-signature-type) | |
100 'clear))))) | |
101 (epa-sign-region start end signers mode)) | |
102 | |
103 ;;;###autoload | |
104 (defun epa-mail-encrypt (start end recipients sign signers) | |
105 "Encrypt the current buffer. | |
106 The buffer is expected to contain a mail message. | |
107 | |
108 Don't use this command in Lisp programs!" | |
109 (interactive | |
110 (save-excursion | |
111 (let ((verbose current-prefix-arg) | |
112 (context (epg-make-context epa-protocol)) | |
113 recipients recipient-key) | |
114 (goto-char (point-min)) | |
115 (save-restriction | |
116 (narrow-to-region (point) | |
117 (if (search-forward mail-header-separator nil 0) | |
118 (match-beginning 0) | |
119 (point))) | |
120 (setq recipients | |
121 (mail-strip-quoted-names | |
122 (mapconcat #'identity | |
123 (nconc (mail-fetch-field "to" nil nil t) | |
124 (mail-fetch-field "cc" nil nil t) | |
125 (mail-fetch-field "bcc" nil nil t)) | |
126 ",")))) | |
127 (if recipients | |
128 (setq recipients (delete "" | |
129 (split-string recipients "[ \t\n]+")))) | |
130 (goto-char (point-min)) | |
131 (if (search-forward mail-header-separator nil t) | |
132 (forward-line)) | |
133 (setq epa-last-coding-system-specified | |
134 (or coding-system-for-write | |
135 (epa--select-safe-coding-system (point) (point-max)))) | |
136 (list (point) (point-max) | |
137 (if verbose | |
138 (epa-select-keys | |
139 context | |
140 "Select recipients for encryption. | |
141 If no one is selected, symmetric encryption will be performed. " | |
142 recipients) | |
143 (if recipients | |
144 (mapcar | |
145 (lambda (recipient) | |
146 (setq recipient-key | |
147 (epa-mail--find-usable-key | |
148 (epg-list-keys | |
149 (epg-make-context epa-protocol) | |
150 (concat "<" recipient ">")) | |
151 'encrypt)) | |
152 (unless (or recipient-key | |
153 (y-or-n-p | |
154 (format | |
155 "No public key for %s; skip it? " | |
156 recipient))) | |
157 (error "No public key for %s" recipient)) | |
158 recipient-key) | |
159 recipients))) | |
160 (setq sign (if verbose (y-or-n-p "Sign? "))) | |
161 (if sign | |
162 (epa-select-keys context | |
163 "Select keys for signing. ")))))) | |
164 (epa-encrypt-region start end recipients sign signers)) | |
165 | |
166 ;;;###autoload | |
167 (defun epa-mail-import-keys () | |
168 "Import keys in the OpenPGP armor format in the current buffer. | |
169 The buffer is expected to contain a mail message. | |
170 | |
171 Don't use this command in Lisp programs!" | |
172 (interactive) | |
173 (epa-import-armor-in-region (point-min) (point-max))) | |
174 | |
91731
7efbdc83b944
EasyPG: Implement some suggestions from emacs-devel.
Michael Olson <mwolson@gnu.org>
parents:
91687
diff
changeset
|
175 ;;;###autoload |
91733
e9326c8f35b0
EasyPG: Rename epa-mail-minor-mode to epa-global-mail-mode.
Michael Olson <mwolson@gnu.org>
parents:
91731
diff
changeset
|
176 (define-minor-mode epa-global-mail-mode |
91731
7efbdc83b944
EasyPG: Implement some suggestions from emacs-devel.
Michael Olson <mwolson@gnu.org>
parents:
91687
diff
changeset
|
177 "Minor mode to hook EasyPG into Mail mode." |
7efbdc83b944
EasyPG: Implement some suggestions from emacs-devel.
Michael Olson <mwolson@gnu.org>
parents:
91687
diff
changeset
|
178 :global t :init-value nil :group 'epa-mail :version "23.1" |
7efbdc83b944
EasyPG: Implement some suggestions from emacs-devel.
Michael Olson <mwolson@gnu.org>
parents:
91687
diff
changeset
|
179 (remove-hook 'mail-mode-hook 'epa-mail-mode) |
91733
e9326c8f35b0
EasyPG: Rename epa-mail-minor-mode to epa-global-mail-mode.
Michael Olson <mwolson@gnu.org>
parents:
91731
diff
changeset
|
180 (if epa-global-mail-mode |
91731
7efbdc83b944
EasyPG: Implement some suggestions from emacs-devel.
Michael Olson <mwolson@gnu.org>
parents:
91687
diff
changeset
|
181 (add-hook 'mail-mode-hook 'epa-mail-mode))) |
7efbdc83b944
EasyPG: Implement some suggestions from emacs-devel.
Michael Olson <mwolson@gnu.org>
parents:
91687
diff
changeset
|
182 |
91647 | 183 (provide 'epa-mail) |
184 | |
91687 | 185 ;; arch-tag: a6f82b3f-d177-4a11-af95-040da55927d2 |
91647 | 186 ;;; epa-mail.el ends here |