Function: gnus-summary-article-posted-p

gnus-summary-article-posted-p is an interactive and byte-compiled function defined in gnus-sum.el.gz.

Signature

(gnus-summary-article-posted-p)

Documentation

Say whether the current (mail) article is available from news as well.

This will be the case if the article has both been mailed and posted.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-article-posted-p ()
  "Say whether the current (mail) article is available from news as well.
This will be the case if the article has both been mailed and posted."
  (interactive nil gnus-summary-mode)
  (let ((id (mail-header-references (gnus-summary-article-header)))
	(gnus-override-method (car (gnus-refer-article-methods))))
    (if (gnus-request-head id "")
	(gnus-message 2 "The current message was found on %s"
		      gnus-override-method)
      (gnus-message 2 "The current message couldn't be found on %s"
		    gnus-override-method)
      nil)))