Function: spam-report-url-ping
spam-report-url-ping is a byte-compiled function defined in
spam-report.el.gz.
Signature
(spam-report-url-ping HOST REPORT)
Documentation
Ping a host through HTTP, addressing a specific GET resource using
the function specified by spam-report-url-ping-function.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/spam-report.el.gz
(defun spam-report-url-ping (host report)
"Ping a host through HTTP, addressing a specific GET resource using
the function specified by `spam-report-url-ping-function'."
;; Example:
;; host: "spam.gmane.org"
;; report: "/gmane.some.group:123456"
(funcall spam-report-url-ping-function host report))