Variable: gnus-server-line-format

gnus-server-line-format is a customizable variable defined in gnus-srvr.el.gz.

Value

"     {%(%h:%w%)} %s%a%c\n"

Documentation

Format of server lines.

It works along the same lines as a normal formatting string, with some simple extensions.

The following specs are understood:

%h back end
%n name
%w address
%s status
%a agent covered

General format specifiers can also be used. See Info node (gnus)Formatting Variables.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-srvr.el.gz
(defcustom gnus-server-line-format "     {%(%h:%w%)} %s%a%c\n"
  "Format of server lines.
It works along the same lines as a normal formatting string,
with some simple extensions.

The following specs are understood:

%h back end
%n name
%w address
%s status
%a agent covered

General format specifiers can also be used.
See Info node `(gnus)Formatting Variables'."
  :link '(custom-manual "(gnus)Formatting Variables")
  :group 'gnus-server-visual
  :type 'string)