Path: utzoo!mnetor!uunet!seismo!sundc!pitstop!sun!decwrl!labrea!agate!ig!uwmcsd1!tut.cis.ohio-state.edu!triceratops!karl From: karl@triceratops.cis.ohio-state.edu (Karl Kleinpaste) Newsgroups: comp.emacs Subject: Re: Mail drop path for mode line Message-ID: <7285@tut.cis.ohio-state.edu> Date: 26 Feb 88 15:32:38 GMT References: <8340@reed.UUCP> Sender: news@tut.cis.ohio-state.edu Lines: 16 In-reply-to: trost@reed.UUCP's message of 25 Feb 88 07:51:33 GMT The variable you are looking for is the rmail-primary-inbox-list. See paths.el: (defconst rmail-primary-inbox-list (if (memq system-type '(hpux usg-unix-v)) '("~/mbox" "/usr/mail/$LOGNAME") '("~/mbox" "/usr/spool/mail/$USER")) "List of files which are inboxes for user's primary mail file ~/RMAIL.") But note the comment at the top of paths.el, and modify this variable as it says: ;; If these settings are not right, override them with `setq' ;; in site-init.el. Do not change this file. Karl