Skip to content

Commit

Permalink
mu4e: handle quoted encoded original message
Browse files Browse the repository at this point in the history
This patch is a fix for #19.

Signed-off-by: Jeremy Compostella <jeremy.compostella@gmail.com>
  • Loading branch information
jeremy-compostella committed Nov 21, 2019
1 parent 7be5024 commit e4185c9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion org-msg.el
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,8 @@ file."
value)))))
(with-temp-buffer
(save-excursion
(insert html))
(insert html)
(quoted-printable-decode-region (point-min) (point-max)))
;; Remove everything before html tag
(save-excursion
(if (re-search-forward "^<html\\(.*?\\)>" nil t)
Expand Down

0 comments on commit e4185c9

Please sign in to comment.