mail/rmailmm.el (rmail-mime-insert-multipart): For unsupported multipart subtypes, insert all as usual.
This commit is contained in:
parent
3d9ee611b8
commit
afde451abe
2 changed files with 5 additions and 2 deletions
|
@ -1,5 +1,8 @@
|
|||
2010-11-26 Kenichi Handa <handa@m17n.org>
|
||||
|
||||
* mail/rmailmm.el (rmail-mime-insert-multipart): For unsupported
|
||||
multipart subtypes, insert all as usual.
|
||||
|
||||
* mail/rmail.el: Require rfc2047.
|
||||
|
||||
2010-11-26 Kenichi Handa <handa@m17n.org>
|
||||
|
|
|
@ -681,9 +681,9 @@ modified."
|
|||
(dolist (child children)
|
||||
(rmail-mime-insert child nil disposition)))))
|
||||
(t
|
||||
;; Unsupported subtype. Insert all as attachment.
|
||||
;; Unsupported subtype. Insert all of them.
|
||||
(dolist (child children)
|
||||
(rmail-mime-insert-bulk child))))))
|
||||
(rmail-mime-insert child))))))
|
||||
|
||||
(defun rmail-mime-parse ()
|
||||
"Parse the current Rmail message as a MIME message.
|
||||
|
|
Loading…
Add table
Reference in a new issue