From 7fa0e80e070812befd7a58b698dd41397fd0b2fe Mon Sep 17 00:00:00 2001 From: djcb Date: Sat, 28 Apr 2012 13:48:20 +0300 Subject: [PATCH] * default to application/octet-stream for attached messages, since message/rfc822 sometimes fails (FIXME) --- emacs/mu4e-compose.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emacs/mu4e-compose.el b/emacs/mu4e-compose.el index dcc79d6f..fabe73cc 100644 --- a/emacs/mu4e-compose.el +++ b/emacs/mu4e-compose.el @@ -79,7 +79,7 @@ sent folder." (error "Captured message file not found")) (mml-attach-file path - "message/rfc822" + "application/octet-stream" (or (plist-get mu4e-captured-message :subject) "No subject") "attachment")))