Function: nnir-read-server-parm

nnir-read-server-parm is a byte-compiled function defined in nnir.el.gz.

Signature

(nnir-read-server-parm KEY SERVER &optional NOT-GLOBAL)

Documentation

Return the parameter value corresponding to KEY for SERVER.

If no server-specific value is found consult the global environment unless NOT-GLOBAL is non-nil.

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/nnir.el.gz
(defun nnir-read-server-parm (key server &optional not-global)
  "Return the parameter value corresponding to KEY for SERVER.
If no server-specific value is found consult the global
environment unless NOT-GLOBAL is non-nil."
  (let ((method (gnus-server-to-method server)))
    (cond ((and method (assq key (cddr method)))
           (nth 1 (assq key (cddr method))))
          ((and (not not-global) (boundp key)) (symbol-value key))
          (t nil))))