Function: feedmail-run-the-queue-global-prompt

feedmail-run-the-queue-global-prompt is an autoloaded, interactive and byte-compiled function defined in feedmail.el.gz.

Signature

(feedmail-run-the-queue-global-prompt &optional ARG)

Documentation

Like feedmail-run-the-queue, but with a global confirmation prompt.

This is generally most useful if run non-interactively, since you can bail out with an appropriate answer to the global confirmation prompt.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/mail/feedmail.el.gz
;;;###autoload
(defun feedmail-run-the-queue-global-prompt (&optional arg)
  "Like `feedmail-run-the-queue', but with a global confirmation prompt.
This is generally most useful if run non-interactively, since you can
bail out with an appropriate answer to the global confirmation prompt."
  (interactive "p")
  (feedmail-say-debug ">in-> feedmail-run-the-queue-global-prompts")
  (let ((feedmail-queue-runner-confirm-global t)) (feedmail-run-the-queue arg)))