diff options
| author | Glenn Morris | 2012-02-08 00:20:36 -0800 |
|---|---|---|
| committer | Glenn Morris | 2012-02-08 00:20:36 -0800 |
| commit | a76863507de29951d49f29fe72f87df2c897769b (patch) | |
| tree | 66c79b5dbf11f85e02ad501dd4dd04ec982ddc7e | |
| parent | c4077254f9de69f8204d58cadeecf122eff46ed3 (diff) | |
| download | emacs-a76863507de29951d49f29fe72f87df2c897769b.tar.gz emacs-a76863507de29951d49f29fe72f87df2c897769b.zip | |
* doc/emacs/rmail.texi (Rmail Display): Mention rmail-epa-decrypt.
* etc/NEWS: Related markup.
* lisp/mail/rmail.el: Comment.
| -rw-r--r-- | doc/emacs/ChangeLog | 2 | ||||
| -rw-r--r-- | doc/emacs/rmail.texi | 8 | ||||
| -rw-r--r-- | etc/NEWS | 1 | ||||
| -rw-r--r-- | lisp/mail/rmail.el | 3 |
4 files changed, 13 insertions, 1 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog index 9f51d9bbde6..160a0402fee 100644 --- a/doc/emacs/ChangeLog +++ b/doc/emacs/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2012-02-08 Glenn Morris <rgm@gnu.org> | 1 | 2012-02-08 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * rmail.texi (Rmail Display): Mention rmail-epa-decrypt. | ||
| 4 | |||
| 3 | * text.texi (LaTeX Editing): Mention latex-electric-env-pair-mode. | 5 | * text.texi (LaTeX Editing): Mention latex-electric-env-pair-mode. |
| 4 | 6 | ||
| 5 | 2012-02-07 Glenn Morris <rgm@gnu.org> | 7 | 2012-02-07 Glenn Morris <rgm@gnu.org> |
diff --git a/doc/emacs/rmail.texi b/doc/emacs/rmail.texi index be1c1f68c66..18556d4a5ef 100644 --- a/doc/emacs/rmail.texi +++ b/doc/emacs/rmail.texi | |||
| @@ -1118,7 +1118,7 @@ buffer before sorting it. | |||
| 1118 | @section Display of Messages | 1118 | @section Display of Messages |
| 1119 | 1119 | ||
| 1120 | This section describes how Rmail displays mail headers, | 1120 | This section describes how Rmail displays mail headers, |
| 1121 | @acronym{MIME} sections and attachments, and URLs. | 1121 | @acronym{MIME} sections and attachments, URLs, and encrypted messages. |
| 1122 | 1122 | ||
| 1123 | @table @kbd | 1123 | @table @kbd |
| 1124 | @item t | 1124 | @item t |
| @@ -1209,6 +1209,12 @@ variable @code{rmail-enable-mime} to @code{nil}. When this is the | |||
| 1209 | case, the @kbd{v} (@code{rmail-mime}) command instead creates a | 1209 | case, the @kbd{v} (@code{rmail-mime}) command instead creates a |
| 1210 | temporary buffer to display the current @acronym{MIME} message. | 1210 | temporary buffer to display the current @acronym{MIME} message. |
| 1211 | 1211 | ||
| 1212 | @findex rmail-epa-decrypt | ||
| 1213 | @cindex encrypted mails (reading in Rmail) | ||
| 1214 | If the current message is an encrypted one, use the command @kbd{M-x | ||
| 1215 | rmail-epa-decrypt} to decrypt it, using the EasyPG library | ||
| 1216 | (@pxref{Top,,, epa, EasyPG Assistant User's Manual}). | ||
| 1217 | |||
| 1212 | You can highlight and activate URLs in the Rmail buffer using Goto | 1218 | You can highlight and activate URLs in the Rmail buffer using Goto |
| 1213 | Address mode: | 1219 | Address mode: |
| 1214 | 1220 | ||
| @@ -762,6 +762,7 @@ more variants, including Mercury, and a lot more. | |||
| 762 | 762 | ||
| 763 | ** Rmail | 763 | ** Rmail |
| 764 | 764 | ||
| 765 | +++ | ||
| 765 | *** The command `rmail-epa-decrypt' decrypts OpenPGP data | 766 | *** The command `rmail-epa-decrypt' decrypts OpenPGP data |
| 766 | in the Rmail incoming message. | 767 | in the Rmail incoming message. |
| 767 | 768 | ||
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index 7d4c7c15447..2ed54aa8d86 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el | |||
| @@ -4363,6 +4363,9 @@ encoded string (and the same mask) will decode the string." | |||
| 4363 | (setq i (1+ i))) | 4363 | (setq i (1+ i))) |
| 4364 | (concat string-vector))) | 4364 | (concat string-vector))) |
| 4365 | 4365 | ||
| 4366 | ;; Should this have a key-binding, or be in a menu? | ||
| 4367 | ;; There doesn't really seem to be an appropriate menu. | ||
| 4368 | ;; Eg the edit command is not in a menu either. | ||
| 4366 | (defun rmail-epa-decrypt () | 4369 | (defun rmail-epa-decrypt () |
| 4367 | "Decrypt OpenPGP armors in current message." | 4370 | "Decrypt OpenPGP armors in current message." |
| 4368 | (interactive) | 4371 | (interactive) |