Function: message-mode-field-menu
message-mode-field-menu is an interactive and byte-compiled function
defined in message.el.gz.
Signature
(message-mode-field-menu ARG1)
Documentation
Field Menu.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
(easy-menu-define message-mode-field-menu message-mode-map
"Field Menu."
'("Field"
["To" message-goto-to]
["From" message-goto-from]
["Subject" message-goto-subject]
["Change subject..." message-change-subject]
["Cc" message-goto-cc]
["Bcc" message-goto-bcc]
["Fcc" message-goto-fcc]
["Reply-To" message-goto-reply-to]
["Flag As Important" message-insert-importance-high
:help "Mark this message as important"]
["Flag As Unimportant" message-insert-importance-low
:help "Mark this message as unimportant"]
["Request Receipt" message-insert-disposition-notification-to
:help "Request a receipt notification"]
"----"
;; (typical) news stuff
["Summary" message-goto-summary]
["Keywords" message-goto-keywords]
["Newsgroups" message-goto-newsgroups]
["Fetch Newsgroups" message-insert-newsgroups]
["Followup-To" message-goto-followup-to]
["Crosspost / Followup-To..." message-cross-post-followup-to]
["Distribution" message-goto-distribution]
["Expires" message-insert-expires]
["X-No-Archive" message-add-archive-header]
"----"
;; (typical) mailing-lists stuff
["Fetch To" message-insert-to
:help "Insert a To header that points to the author."]
["Fetch To and Cc" message-insert-wide-reply
:help "Insert To and Cc headers as if you were doing a wide reply."]
"----"
["Send to list only" message-to-list-only]
["Mail-Followup-To" message-goto-mail-followup-to]
["Unsubscribed list post" message-generate-unsubscribed-mail-followup-to
:help "Insert a reasonable `Mail-Followup-To:' header."]
["Reduce To: to Cc:" message-reduce-to-to-cc]
"----"
["Sort Headers" message-sort-headers]
["Encode non-ASCII domain names" message-idna-to-ascii-rhs]
;; We hide `message-hidden-headers' by narrowing the buffer.
["Show Hidden Headers" message-widen-and-recenter]
["Goto Body" message-goto-body]
["Goto Signature" message-goto-signature]))