From ed2e0ed0c37486c1dfd00a3bcdd84f833bca23a7 Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Sun, 7 Mar 2021 17:35:30 +0200 Subject: [PATCH] mu4e-view: make the gnus-based view the default one Use (setq mu4e-view-use-gnus nil) to use the old one. --- NEWS.org | 11 +++++++++++ mu4e/mu4e-view.el | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/NEWS.org b/NEWS.org index 3d7b7383..a62864af 100644 --- a/NEWS.org +++ b/NEWS.org @@ -38,6 +38,17 @@ *** mu4e + - Use the gnus-based message viewer as the default; the new viewer has quite + a few features compared to the old, mu4e-specific one, such as faster + crypto, support for S/MIME, syntax-highlighting, calendar invitations and + more. + + It does not do everything the old viewer does though (e.g., attachment + actions), so if you depend on those, you can use: + #+begin_example + (setq mu4e-view-use-gnus nil) + #+end_example + - Include maildir-shortcuts in the main-view with overall/unread counts, similar to bookmarks, and with the same ~:hide~ and ~:hide-unread~ properties. Note that for the latter, you need to update your maildir-shortcuts to the diff --git a/mu4e/mu4e-view.el b/mu4e/mu4e-view.el index 7bef87f4..b62d5b17 100644 --- a/mu4e/mu4e-view.el +++ b/mu4e/mu4e-view.el @@ -33,7 +33,7 @@ "Settings for the message view." :group 'mu4e) -(defcustom mu4e-view-use-gnus nil +(defcustom mu4e-view-use-gnus t "If non-nil, use the new Gnus-based viewer. Otherwise, use the old viewer." :type 'boolean