Function: spam-install-nocheck-backend
spam-install-nocheck-backend is a byte-compiled function defined in
spam.el.gz.
Signature
(spam-install-nocheck-backend BACKEND HRF SRF HUF SUF)
Documentation
Install a BACKEND than has no check.
Accepts ham registration function HRF, spam registration function SRF, ham unregistration function HUF, spam unregistration function SUF. The backend has no incoming check and can't be statistical (it could be, but in practice that doesn't happen).
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/spam.el.gz
(defun spam-install-nocheck-backend (backend hrf srf huf suf)
"Install a BACKEND than has no check.
Accepts ham registration function HRF, spam registration function
SRF, ham unregistration function HUF, spam unregistration
function SUF. The backend has no incoming check and can't be
statistical (it could be, but in practice that doesn't happen)."
(spam-install-backend-super
backend
'hrf hrf 'srf srf 'huf huf 'suf suf))