Variable: nntp-server-action-alist
nntp-server-action-alist is a variable defined in nntp.el.gz.
Value
(("nntpd 1\\.5\\.11t"
#[0 "\300\301\302\"\207"
[remove-hook nntp-server-opened-hook nntp-send-mode-reader]
3])
("NNRP server Netscape"
#[0 "\301\211\207"
[nntp-server-list-active-group nil]
2]))
Documentation
Alist of regexps to match on server types and actions to be taken.
For instance, if you want Gnus to beep every time you connect to innd, you could say something like:
(setq nntp-server-action-alist
'(("innd" (ding))))
You probably don't want to do that, though.
This is a Gnus server variable. See Info node (gnus)Select Methods.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/nntp.el.gz
(defvoo nntp-server-action-alist
`(("nntpd 1\\.5\\.11t"
,(lambda () (remove-hook 'nntp-server-opened-hook #'nntp-send-mode-reader)))
("NNRP server Netscape"
,(lambda () (setq nntp-server-list-active-group nil))))
"Alist of regexps to match on server types and actions to be taken.
For instance, if you want Gnus to beep every time you connect
to innd, you could say something like:
\(setq nntp-server-action-alist
\\='((\"innd\" (ding))))
You probably don't want to do that, though.")