Variable: feedmail-queue-runner-message-sender
feedmail-queue-runner-message-sender is a customizable variable
defined in feedmail.el.gz.
Value
#[256 "\300\301!\210\302 \207" [require sendmail mail-send] 3
("/nix/store/yvwy8dm26cpa1j12ixgs1dyiaw2abdk9-emacs-snapshot/share/emacs/31.0.50/lisp/mail/feedmail.elc"
. 45708)]
Documentation
Function to initiate sending a message file.
Called for each message read back out of the queue directory with a
single argument, the optional argument used in the call to
feedmail-run-the-queue or feedmail-run-the-queue-no-prompts.
Interactively, that argument will be the prefix argument.
Most people want mail-send (bound to C-c C-s (mail-send) in mail-mode), but here's
your chance to have something different. The default value is just a
wrapper function which discards the optional argument and calls
mail-send. If you are a VM user, you might like vm-mail-send, though
you really don't need that. Called with funcall, not call-interactively.
This variable was added, or its default value changed, in Emacs 24.1.
Source Code
;; Defined in /usr/src/emacs/lisp/mail/feedmail.el.gz
(defcustom feedmail-queue-runner-message-sender
(lambda (&optional _)
;; `mail-send' is not autoloaded, which is why we need the `require'.
(require 'sendmail) (declare-function mail-send "sendmail")
(mail-send))
"Function to initiate sending a message file.
Called for each message read back out of the queue directory with a
single argument, the optional argument used in the call to
`feedmail-run-the-queue' or `feedmail-run-the-queue-no-prompts'.
Interactively, that argument will be the prefix argument.
\\<mail-mode-map>
Most people want `mail-send' (bound to \\[mail-send] in `mail-mode'), but here's
your chance to have something different. The default value is just a
wrapper function which discards the optional argument and calls
`mail-send'. If you are a VM user, you might like vm-mail-send, though
you really don't need that. Called with funcall, not call-interactively."
:version "24.1" ; changed default
:group 'feedmail-queue
:type 'function
)