summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mumi/web/view/utils.scm7
1 files changed, 5 insertions, 2 deletions
diff --git a/mumi/web/view/utils.scm b/mumi/web/view/utils.scm
index 2c58467..bb45a33 100644
--- a/mumi/web/view/utils.scm
+++ b/mumi/web/view/utils.scm
@@ -1,6 +1,6 @@
;;; mumi -- Mediocre, uh, mail interface
;;; Copyright © 2017, 2018 Ricardo Wurmus <rekado@elephly.net>
-;;; Copyright © 2018 Arun Isaac <arunisaac@systemreboot.net>
+;;; Copyright © 2018, 2019 Arun Isaac <arunisaac@systemreboot.net>
;;;
;;; This program is free software: you can redistribute it and/or
;;; modify it under the terms of the GNU Affero General Public License
@@ -167,4 +167,7 @@ BUG-NUM), even when it is a multipart message."
(iota (length parts)))))
;; Regular message with a simple body.
(else
- (prettify (email-body message)))))
+ (display-mime-entity
+ (make-mime-entity (email-headers message)
+ (email-body message))))))
+