Variable: gnus-bug-group-download-format-alist
gnus-bug-group-download-format-alist is a customizable variable
defined in gnus-group.el.gz.
Value
((emacs
. "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=%s;mboxmaint=yes;mboxstat=yes")
(debian
. "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=%s&mbox=yes;mboxmaint=yes"))
Documentation
Alist of symbols for bug trackers and the corresponding URL format string.
The URL format string must contain a single "%s", specifying the bug number, and browsing the URL must return mbox output.
This variable was added, or its default value changed, in Emacs 24.1.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-group.el.gz
(defcustom gnus-bug-group-download-format-alist
'((emacs . "https://debbugs.gnu.org/cgi/bugreport.cgi?bug=%s;mboxmaint=yes;mboxstat=yes")
(debian
. "https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=%s&mbox=yes;mboxmaint=yes"))
"Alist of symbols for bug trackers and the corresponding URL format string.
The URL format string must contain a single \"%s\", specifying
the bug number, and browsing the URL must return mbox output."
:group 'gnus-group-foreign
;; Added mboxmaint=yes. This gets the version with the messages as
;; they went out, not as they came in.
;; Eg bug-gnu-emacs is replaced by ###@debbugs.
:version "24.1"
:type '(repeat (cons (symbol) (string :tag "URL format string"))))