Variable: nnmaildir-flag-mark-mapping
nnmaildir-flag-mark-mapping is a variable defined in nnmaildir.el.gz.
Value
((70 . tick) (80 . forward) (82 . reply) (83 . read))
Documentation
Alist mapping Maildir filename flags to Gnus marks.
Maildir filenames are of the form "unique-id:2,FLAGS", where FLAGS are a string of characters in ASCII order. Some of the FLAGS correspond to Gnus marks.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/nnmaildir.el.gz
(defconst nnmaildir-flag-mark-mapping
'((?F . tick)
(?P . forward)
(?R . reply)
(?S . read))
"Alist mapping Maildir filename flags to Gnus marks.
Maildir filenames are of the form \"unique-id:2,FLAGS\",
where FLAGS are a string of characters in ASCII order.
Some of the FLAGS correspond to Gnus marks.")