From owner-freebsd-questions@FreeBSD.ORG Tue Oct 2 19:38:01 2007 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA2F816A421 for ; Tue, 2 Oct 2007 19:38:01 +0000 (UTC) (envelope-from ozzmosis@gmail.com) Received: from smtp.mel.people.net.au (smtp.mel.people.net.au [218.214.17.98]) by mx1.freebsd.org (Postfix) with SMTP id 0695313C474 for ; Tue, 2 Oct 2007 19:38:00 +0000 (UTC) (envelope-from ozzmosis@gmail.com) Received: (qmail 24269 invoked from network); 2 Oct 2007 19:11:21 -0000 Received: from unknown (HELO blizzard.dnsalias.org) (218.215.130.189) by smtp.mel.people.net.au with SMTP; 2 Oct 2007 19:11:21 -0000 Received: by blizzard.dnsalias.org (Postfix, from userid 1001) id AFFB217066; Wed, 3 Oct 2007 05:11:17 +1000 (EST) Date: Wed, 3 Oct 2007 05:11:17 +1000 From: andrew clarke To: freebsd-questions@freebsd.org Message-ID: <20071002191117.GA32593@ozzmosis.com> References: <20071001005437.GA15279@bsd.remdog.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20071001005437.GA15279@bsd.remdog.net> User-Agent: Mutt/1.5.16 (2007-06-09) Subject: Re: Mutt Help X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 02 Oct 2007 19:38:01 -0000 On Sun, Sep 30, 2007 at 05:54:37PM -0700, Rem P Roberti wrote: > Hi All...I am a newbie using Mutt, and I have Fetchmail running as > daemon. Fetchmail is doing its job, periodically retreiving my pop3 > mail, but I am so far unable to find the correct entry for the > .muttrc file which will result in Mutt automatically retrieving mail > from fetchmail. Any help would be appreciated. By default, Fetchmail will put your mail wherever $MAIL points to. Usually this is in a file named /var/mail/username, where username is your login name. $ echo $LOGNAME ozzmosis $ echo $MAIL /var/mail/ozzmosis And by default, Mutt will look in the same place, as per muttrc(5): spoolfile Type: path Default: "" If your spool mailbox is in a non-default place where Mutt can- not find it, you can specify its location with this variable. Mutt will automatically set this variable to the value of the environment variable $MAIL if it is not set. I use Fetchmail, Procmail, SpamAssassin, Mutt and Postfix quite successfully here. :-) Regards Andrew