Gnus: get rid of ~/Mail and ~/News folders
First i executed apropos-value ~/Mail/
. It threw me many variables, that contain this string in their values. On my Debian i installed package emacs24-el
so i could track down these variables in code. I ran describe-variable
on the variable nnfolder-directory
, which value was ~/Mail/
. In went to the code and found out it's initialized like this:
(defvoo nnfolder-directory (expand-file-name message-directory))
The same was with the varible nndraft-directory
that contained value ~/News/
, which actually came from variable gnus-directory
. For some reason the directory ~/Mail/archive/
is still created, i think nnfolder-directory
is initialized before i set message-directory
in init file.
Resume: to change your mail and news directories, put this into init file:
(setq message-directory "~/.emacs.d/mail/")
(setq gnus-directory "~/.emacs.d/news/")
(setq nnfolder-directory "~/.emacs.d/mail/archive")
I've traced the problem sindikat observed (that for some reason the directory ~/Mail/archive/
is still created). At first I thought there was indeed a bug in gnus initialization code which I've reported here:
http://debbugs.gnu.org/cgi/bugreport.cgi?bug=18284
But then I realized that the message-directory
setting was being overriden by a previous definition in my newsrc file. So you will have to edit your newsrc and remove the offending definition in order to remove every trace of the default setting.