Variable: gnus-home-directory

gnus-home-directory is a customizable variable defined in gnus.el.gz.

Value

"~/"

Documentation

Directory variable that specifies the "home" directory.

All other Gnus file and directory variables are initialized from this variable.

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-home-directory "~/"
  "Directory variable that specifies the \"home\" directory.
All other Gnus file and directory variables are initialized from this variable.

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)