Function: spam-report-agentize
spam-report-agentize is an autoloaded, interactive and byte-compiled
function defined in spam-report.el.gz.
Signature
(spam-report-agentize)
Documentation
Add spam-report support to the Agent.
Spam reports will be queued with M-x spam-report-url-to-file (spam-report-url-to-file) when
the Agent is unplugged, and will be submitted in a batch when the
Agent is plugged.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/spam-report.el.gz
;;;###autoload
(defun spam-report-agentize ()
"Add spam-report support to the Agent.
Spam reports will be queued with \\[spam-report-url-to-file] when
the Agent is unplugged, and will be submitted in a batch when the
Agent is plugged."
(interactive)
(add-hook 'gnus-agent-plugged-hook #'spam-report-plug-agent)
(add-hook 'gnus-agent-unplugged-hook #'spam-report-unplug-agent))