+2012-03-10 David Edmondson <dme@dme.org>
+
+ * mm-uu.el (mm-uu-forward-extract): Allow for blank lines between the
+ 'Forwarded Message' header and the start of the message.
+
2012-03-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
* gnus-msg.el (gnus-msg-mail): Call `message-mail' correctly when Gnus
(defun mm-uu-forward-extract ()
(mm-make-handle (mm-uu-copy-to-buffer
- (progn (goto-char start-point) (forward-line) (point))
+ (progn
+ (goto-char start-point)
+ (forward-line)
+ (skip-chars-forward "\n")
+ (point))
(progn (goto-char end-point) (forward-line -1) (point)))
'("message/rfc822" (charset . gnus-decoded))))