Variable: gnus-directory
gnus-directory is a customizable variable defined in gnus.el.gz.
Value
"~/News/"
Documentation
Directory variable from which all other Gnus file variables are derived.
Note that Gnus is mostly loaded when the .gnus.el file is read.
This means that other directory variables that are initialized from
this variable won't be set properly if you set this variable in .gnus.el.
Set this variable in .emacs instead.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus.el.gz
(defcustom gnus-directory (or (getenv "SAVEDIR")
(nnheader-concat gnus-home-directory "News/"))
"Directory variable from which all other Gnus file variables are derived.
Note that Gnus is mostly loaded when the `.gnus.el' file is read.
This means that other directory variables that are initialized from
this variable won't be set properly if you set this variable in `.gnus.el'.
Set this variable in `.emacs' instead."
:group 'gnus-files
:type 'directory)