Function: spam-BBDB-register-routine

spam-BBDB-register-routine is a byte-compiled function defined in spam.el.gz.

Signature

(spam-BBDB-register-routine ARTICLES &optional UNREGISTER)

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/spam.el.gz
(defun spam-BBDB-register-routine (articles &optional unregister)
  (let (addresses)
    (dolist (article articles)
      (when (stringp (spam-fetch-field-from-fast article))
        (push (spam-fetch-field-from-fast article) addresses)))
    ;; now do the register/unregister action
    (spam-enter-ham-BBDB addresses unregister)))