Function: spam-report-url-ping-mm-url

spam-report-url-ping-mm-url is an autoloaded and byte-compiled function defined in spam-report.el.gz.

Signature

(spam-report-url-ping-mm-url HOST REPORT)

Documentation

Ping a host through HTTP, addressing a specific GET resource.

Use the external program specified in mm-url-program to connect to server.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/spam-report.el.gz
;;;###autoload
(defun spam-report-url-ping-mm-url (host report)
  "Ping a host through HTTP, addressing a specific GET resource.
Use the external program specified in `mm-url-program' to connect
to server."
  (with-temp-buffer
    (let ((url (format "http://%s%s" host report)))
      (mm-url-insert url t))))