Function: gnus-article-treat-suspicious-headers

gnus-article-treat-suspicious-headers is an interactive and byte-compiled function defined in gnus-art.el.gz.

Signature

(gnus-article-treat-suspicious-headers)

Documentation

Mark suspicious headers.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defun gnus-article-treat-suspicious-headers ()
  "Mark suspicious headers."
  (interactive nil gnus-article-mode gnus-summary-mode)
  (gnus-with-article-headers
    (let (match)
      (while (setq match (text-property-search-forward 'textsec-suspicious))
        (add-text-properties (prop-match-beginning match)
                             (prop-match-end match)
                             (list 'help-echo (prop-match-value match)
                                   'face 'textsec-suspicious))
        (overlay-put (make-overlay (prop-match-end match)
                                   (prop-match-end match))
                     'after-string "⚠️")))))