Function: spam-install-backend-super
spam-install-backend-super is a byte-compiled function defined in
spam.el.gz.
Signature
(spam-install-backend-super BACKEND &rest PROPERTIES)
Documentation
Install BACKEND for spam.el.
Accepts incoming CHECK, ham registration function HRF, spam registration function SRF, ham unregistration function HUF, spam unregistration function SUF, and an indication whether the backend is STATISTICAL.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/spam.el.gz
;;}}}
;;{{{ backend installation functions and procedures
(defun spam-install-backend-super (backend &rest properties)
"Install BACKEND for spam.el.
Accepts incoming CHECK, ham registration function HRF, spam
registration function SRF, ham unregistration function HUF, spam
unregistration function SUF, and an indication whether the
backend is STATISTICAL."
(setq spam-backends (add-to-list 'spam-backends backend))
(while properties
(let ((property (pop properties))
(value (pop properties)))
(if (spam-backend-property-valid-p property)
(put backend property value)
(gnus-error
5
"spam-install-backend-super got an invalid property %s"
property)))))