* mu4e: enable showing the message-id in the view (and even the headers)
This commit is contained in:
@ -426,7 +426,7 @@ if provided, or at the end of the buffer otherwise."
|
|||||||
(mu4e~headers-thread-prefix (mu4e-message-field msg :thread))
|
(mu4e~headers-thread-prefix (mu4e-message-field msg :thread))
|
||||||
;; "["(plist-get (mu4e-message-field msg :thread) :path) "] "
|
;; "["(plist-get (mu4e-message-field msg :thread) :path) "] "
|
||||||
val))
|
val))
|
||||||
((:maildir :path) val)
|
((:maildir :path :message-id) val)
|
||||||
((:to :from :cc :bcc) (mu4e~headers-contact-str val))
|
((:to :from :cc :bcc) (mu4e~headers-contact-str val))
|
||||||
;; if we (ie. `user-mail-address' is the 'From', show
|
;; if we (ie. `user-mail-address' is the 'From', show
|
||||||
;; 'To', otherwise show From
|
;; 'To', otherwise show From
|
||||||
|
|||||||
@ -558,6 +558,11 @@ I.e. a message with the draft flag set."
|
|||||||
:shortname "List"
|
:shortname "List"
|
||||||
:help "Mailing list for this message"
|
:help "Mailing list for this message"
|
||||||
:sortable nil))
|
:sortable nil))
|
||||||
|
(:message-id .
|
||||||
|
( :name "Message-Id"
|
||||||
|
:shortname "MsgID"
|
||||||
|
:help "Message-Id for this message"
|
||||||
|
:sortable nil))
|
||||||
(:path .
|
(:path .
|
||||||
( :name "Path"
|
( :name "Path"
|
||||||
:shortname "Path"
|
:shortname "Path"
|
||||||
|
|||||||
@ -187,6 +187,8 @@ messages - for example, `mu4e-org'."
|
|||||||
(mu4e~view-construct-header field (mu4e-display-size fieldval)))
|
(mu4e~view-construct-header field (mu4e-display-size fieldval)))
|
||||||
(:mailing-list
|
(:mailing-list
|
||||||
(mu4e~view-construct-header field fieldval))
|
(mu4e~view-construct-header field fieldval))
|
||||||
|
(:message-id
|
||||||
|
(mu4e~view-construct-header field fieldval))
|
||||||
;; attachments
|
;; attachments
|
||||||
(:attachments (mu4e~view-construct-attachments-header msg))
|
(:attachments (mu4e~view-construct-attachments-header msg))
|
||||||
;; pgp-signatures
|
;; pgp-signatures
|
||||||
|
|||||||
Reference in New Issue
Block a user