diff options
| author | Eli Zaretskii | 2011-09-09 11:59:51 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2011-09-09 11:59:51 +0300 |
| commit | 14a29deb45df18c2e6e62cc1dfefcd63d46f168b (patch) | |
| tree | bac14bad824f349f2030ad42586703c53479543e /lisp/ChangeLog | |
| parent | 208a048da7706662bcb55579063a63cc95a524c9 (diff) | |
| parent | fd59d131bb4fe60fe008156795c243ec6e1127b0 (diff) | |
| download | emacs-14a29deb45df18c2e6e62cc1dfefcd63d46f168b.tar.gz emacs-14a29deb45df18c2e6e62cc1dfefcd63d46f168b.zip | |
Fix bug #9392 with rmail-forward.
lisp/simple.el (mail-encode-mml): New defvar.
lisp/mail/rmail.el (mail-encode-mml): Add a defvar.
(rmail-enable-mime-composing): Default to t.
(rmail-forward): Use MIME method of forwarding only if both
rmail-enable-mime-composing and rmail-enable-mime are non-nil.
Set mail-encode-mml non-nil if the MIME method was used.
lisp/mail/sendmail.el (mml-to-mime): Add autoload form.
(mail-encode-mml): Add a defvar.
(mail-mode): Make mail-encode-mml buffer-local and initialize it
to nil.
(mail-send): If mail-encode-mml is non-nil, run the outgoing
message through mml-to-mime, and reset mail-encode-mml to nil.
Diffstat (limited to 'lisp/ChangeLog')
| -rw-r--r-- | lisp/ChangeLog | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7806877c6f5..04bc29bf1b0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,21 @@ | |||
| 1 | 2011-09-09 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | Fix for Savannah bug#9392. | ||
| 4 | * simple.el (mail-encode-mml): New defvar. | ||
| 5 | |||
| 6 | * mail/rmail.el (mail-encode-mml): Add a defvar. | ||
| 7 | (rmail-enable-mime-composing): Default to t. | ||
| 8 | (rmail-forward): Use MIME method of forwarding only if both | ||
| 9 | rmail-enable-mime-composing and rmail-enable-mime are non-nil. | ||
| 10 | Set mail-encode-mml non-nil if the MIME method was used. | ||
| 11 | |||
| 12 | * mail/sendmail.el (mml-to-mime): Add autoload form. | ||
| 13 | (mail-encode-mml): Add a defvar. | ||
| 14 | (mail-mode): Make mail-encode-mml buffer-local and initialize it | ||
| 15 | to nil. | ||
| 16 | (mail-send): If mail-encode-mml is non-nil, run the outgoing | ||
| 17 | message through mml-to-mime, and reset mail-encode-mml to nil. | ||
| 18 | |||
| 1 | 2011-09-09 Glenn Morris <rgm@gnu.org> | 19 | 2011-09-09 Glenn Morris <rgm@gnu.org> |
| 2 | 20 | ||
| 3 | * woman.el (woman-if-body): When processing an .el block, | 21 | * woman.el (woman-if-body): When processing an .el block, |