Variable: feedmail-prompt-before-queue-standard-alist

feedmail-prompt-before-queue-standard-alist is a variable defined in feedmail.el.gz.

Value

((113 . feedmail-message-action-queue)
 (81 . feedmail-message-action-queue-strong)
 (100 . feedmail-message-action-draft)
 (114 . feedmail-message-action-draft)
 (68 . feedmail-message-action-draft-strong)
 (82 . feedmail-message-action-draft-strong)
 (101 . feedmail-message-action-edit)
 (69 . feedmail-message-action-edit)
 (7 . feedmail-message-action-edit)
 (110 . feedmail-message-action-edit)
 (78 . feedmail-message-action-edit)
 (105 . feedmail-message-action-send)
 (73 . feedmail-message-action-send-strong)
 (115 . feedmail-message-action-send)
 (83 . feedmail-message-action-send-strong)
 (42 . feedmail-message-action-toggle-spray)
 (62 . feedmail-message-action-scroll-up)
 (60 . feedmail-message-action-scroll-down)
 (32 . feedmail-message-action-scroll-up)
 (63 . feedmail-message-action-help))

Documentation

An alist of choices for the message action prompt.

All of the values are function names, except help, which is a special symbol that calls up help for the prompt (the help describes the actions from the standard alist). To customize your own choices, define a similar alist called feedmail-prompt-before-queue-user-alist. The actual alist used for message action will be the standard alist overlaid with the user-alist. To neutralize an item in the standard alist without providing a replacement, define an appropriate element in the user alist with a value of nil.

Source Code

;; Defined in /usr/src/emacs/lisp/mail/feedmail.el.gz
(defvar feedmail-prompt-before-queue-standard-alist
  '((?q . feedmail-message-action-queue)
    (?Q . feedmail-message-action-queue-strong)

    (?d . feedmail-message-action-draft)
    (?r . feedmail-message-action-draft)
    (?D . feedmail-message-action-draft-strong)
    (?R . feedmail-message-action-draft-strong)

    (?e . feedmail-message-action-edit)
    (?E . feedmail-message-action-edit)
    (?\C-g . feedmail-message-action-edit)
    (?n . feedmail-message-action-edit)
    (?N . feedmail-message-action-edit)

    (?i . feedmail-message-action-send)
    (?I . feedmail-message-action-send-strong)
    (?s . feedmail-message-action-send)
    (?S . feedmail-message-action-send-strong)

    (?* . feedmail-message-action-toggle-spray)

    (?> . feedmail-message-action-scroll-up)
    (?< . feedmail-message-action-scroll-down)
    (?  . feedmail-message-action-scroll-up)
    ;;	(?\C-v . feedmail-message-action-help)
    (?? . feedmail-message-action-help))
  "An alist of choices for the message action prompt.
All of the values are function names, except help, which is a special
symbol that calls up help for the prompt (the help describes the
actions from the standard alist).  To customize your own choices,
define a similar alist called `feedmail-prompt-before-queue-user-alist'.
The actual alist used for message action will be the standard alist
overlaid with the user-alist.  To neutralize an item in the standard
alist without providing a replacement, define an appropriate element
in the user alist with a value of nil." )