Last edit
Summary: added link to an article that describes a simple mu4e setup
Added:
> * simple setup with gmail: http://wenshanren.org/?p=111
mu4e is a new emacs-based e-mail client. It’s based on the mu e-mail indexer/searcher. It focuses on being a super-efficient tool to withstand the daily e-mail tsunami.
It’s pretty new - it’s first release is as part of mu 0.9.8, end of January 2012. I’ve been happily using it for a few months; hopefully it works well for others as well.
Message view action: Open message at point in the default external browser
;;; message view action
(defun mu4e-msgv-action-view-in-browser (msg)
"View the body of the message in a web browser."
(interactive)
(let ((html (mu4e-msg-field (mu4e-message-at-point t) :body-html))
(tmpfile (format "%s/%d.html" temporary-file-directory (random))))
(unless html (error "No html part for this message"))
(with-temp-file tmpfile
(insert
"<html>"
"<head><meta http-equiv=\"content-type\""
"content=\"text/html;charset=UTF-8\">"
html))
(browse-url (concat "file://" tmpfile))))
(add-to-list 'mu4e-view-actions
'("View in browser" . mu4e-msgv-action-view-in-browser) t)– SylvainBenner (adapted from https://groups.google.com/d/topic/mu-discuss/ZXB72TR5GL0/discussion)