Function: spam-report-deagentize

spam-report-deagentize is an autoloaded, interactive and byte-compiled function defined in spam-report.el.gz.

Signature

(spam-report-deagentize)

Documentation

Remove spam-report support from the Agent.

Spam reports will be queued with the method used when M-x spam-report-agentize (spam-report-agentize) was run.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/spam-report.el.gz
;;;###autoload
(defun spam-report-deagentize ()
  "Remove spam-report support from the Agent.
Spam reports will be queued with the method used when
\\[spam-report-agentize] was run."
  (interactive)
  (remove-hook 'gnus-agent-plugged-hook #'spam-report-plug-agent)
  (remove-hook 'gnus-agent-unplugged-hook #'spam-report-unplug-agent))