|--==> "MA" == Matt Armstrong writes: MA> (setq gnus-secondary-select-methods MA> '((nnml "" MA> (nnml-directory "/home/matt/g/nnml") MA> (nnml-active-file "/home/matt/g/nnml/active") MA> (nnml-newsgroupsfile "/home/matt/g/nnml/newsgroups")))) MA> I haven't figured out the lispy magic required to use "~/g/nnml" MA> etc. in the gnus-secondary-select-methods setq above. How about... (defconst my-nnml-dir (file-name-as-directory (expand-file-name "g/nnml" (getenv "HOME"))) "My nnml directory") (setq gnus-secondary-select-methods '((nnml "" (nnml-directory my-nnml-dir) (nnml-active-file (expand-file-name "active" my-nnml-dir)) (nnml-newsgroupsfile (expand-file-name "newsgroups" my-nnml-dir))))) -- |---------------------| | Ashes to ashes, dust to dust. | | The proof of the pudding, is under the crust. | |---------------------------------|