Variable: spam-report-url-ping-function
spam-report-url-ping-function is a customizable variable defined in
spam-report.el.gz.
Value
spam-report-url-ping-plain
Documentation
Function to use for url ping spam reporting.
The function must accept the arguments host and report.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/spam-report.el.gz
(defcustom spam-report-url-ping-function
'spam-report-url-ping-plain
"Function to use for url ping spam reporting.
The function must accept the arguments `host' and `report'."
:type '(choice
(const :tag "Connect directly"
spam-report-url-ping-plain)
(const :tag "Use the external program specified in `mm-url-program'"
spam-report-url-ping-mm-url)
(const :tag "Store request URLs in `spam-report-requests-file'"
spam-report-url-to-file)
(function :tag "User defined function")))