Variable: nnmairix-widget-fields-list
nnmairix-widget-fields-list is a customizable variable defined in
nnmairix.el.gz.
Value
(("from" "f" "From") ("to" "t" "To") ("cc" "c" "Cc")
("subject" "s" "Subject") ("to" "tc" "To or Cc")
("from" "a" "Address") (nil "b" "Body") (nil "n" "Attachment")
("Message-ID" "m" "Message ID") (nil "s" "Size") (nil "d" "Date"))
Documentation
Fields that should be editable during interactive query customization.
Header, corresponding mairix command and description for editable fields in interactive query customization. The header specifies which header contents should be inserted into the editable field when creating a Mairix query based on the current message (can be nil for disabling this).
This variable was added, or its default value changed, in Emacs 23.1.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/nnmairix.el.gz
(defcustom nnmairix-widget-fields-list
'(("from" "f" "From") ("to" "t" "To") ("cc" "c" "Cc")
("subject" "s" "Subject") ("to" "tc" "To or Cc")
("from" "a" "Address") (nil "b" "Body") (nil "n" "Attachment")
("Message-ID" "m" "Message ID") (nil "s" "Size") (nil "d" "Date"))
"Fields that should be editable during interactive query customization.
Header, corresponding mairix command and description for editable
fields in interactive query customization. The header specifies
which header contents should be inserted into the editable field
when creating a Mairix query based on the current message (can be
nil for disabling this)."
:version "23.1"
:type '(repeat (list
(choice :tag "Field"
(const :tag "none" nil)
(const :tag "From" "from")
(const :tag "To" "to")
(const :tag "Cc" "cc")
(const :tag "Subject" "subject")
(const :tag "Message ID" "Message-ID"))
(string :tag "Command")
(string :tag "Description"))))