From 13e57114b468d9685733556db1c6d3df5d97f81c Mon Sep 17 00:00:00 2001 From: djcb Date: Wed, 31 Oct 2012 20:34:42 +0200 Subject: [PATCH] * mu4e: handle inline message/rfc822 parts correctly (show as attachments) --- mu4e/mu4e-view.el | 1 + 1 file changed, 1 insertion(+) diff --git a/mu4e/mu4e-view.el b/mu4e/mu4e-view.el index 3d766a4e..2886d3a9 100644 --- a/mu4e/mu4e-view.el +++ b/mu4e/mu4e-view.el @@ -396,6 +396,7 @@ at POINT, or if nil, at (point)." ;; image/audio/application type (but not a signature) isattach (string-match "^\\(image\\|audio\\)" mtype) + (string= "message/rfc822" mtype) (and (string-match "^application" mtype) (not (string-match "signature" mtype)))))) (mu4e-message-field msg :parts)))