From cd649efb6be6cfc1a3748781467c30996b5c20a9 Mon Sep 17 00:00:00 2001 From: djcb Date: Wed, 25 Apr 2018 10:52:29 +0300 Subject: [PATCH] mu4e: re-view after marked-as-read When we mark a message as read, we get an (:update ... ) with the marked-as-read message (ie., moved from new/ to cur/). The (:update ...) however does _not_ include extracted images etc.; so images in unread message would not be visible at that time. To fix this, to another (:view ...) and extract the images etc. Thanks to tangxinfa for pointing this out. --- mu4e/mu4e-view.el | 1 + 1 file changed, 1 insertion(+) diff --git a/mu4e/mu4e-view.el b/mu4e/mu4e-view.el index 6a05d1cd..f2fac567 100644 --- a/mu4e/mu4e-view.el +++ b/mu4e/mu4e-view.el @@ -890,6 +890,7 @@ changes, it triggers a refresh." ;; mark /all/ messages with this message-id as read, so all copies of ;; this message will be marked as read. (mu4e~proc-move msgid nil "+S-u-N") + (mu4e~proc-view docid mu4e-view-show-images (mu4e~decrypt-p msg)) t)))) (defun mu4e~view-browse-url-func (url)