Function: spam-filelist-check-cache

spam-filelist-check-cache is a byte-compiled function defined in spam.el.gz.

Signature

(spam-filelist-check-cache TYPE FROM)

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/spam.el.gz
(defun spam-filelist-check-cache (type from)
  (when (stringp from)
    (spam-filelist-build-cache type)
    (let (found)
      (cl-dolist (address (gethash type spam-caches))
        (when (and address (string-match address from))
          (setq found t)
          (cl-return)))
      found)))