From owner-freebsd-questions@FreeBSD.ORG Fri Oct 5 12:31:08 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 2253516A46D for ; Fri, 5 Oct 2007 12:31:08 +0000 (UTC) (envelope-from mtm@FreeBSD.Org) Received: from terra.mike.lan (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B041913C465; Fri, 5 Oct 2007 12:31:05 +0000 (UTC) (envelope-from mtm@FreeBSD.Org) Received: by terra.mike.lan (Postfix, from userid 1000) id 455E668C6A; Fri, 5 Oct 2007 15:20:37 +0300 (EAT) Date: Fri, 5 Oct 2007 15:20:35 +0300 From: Mike Makonnen To: Ian Smith Message-ID: <20071005122035.GA57201@terra.mike.lan> References: <20071004081607.GA65363@owl.midgard.homeip.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.3i X-Operating-System: FreeBSD/7.0-CURRENT (i386) Cc: freebsd-questions@FreeBSD.Org, Lisa Casey Subject: Re: FreeBsd e-mail question 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: Fri, 05 Oct 2007 12:31:08 -0000 On Fri, Oct 05, 2007 at 02:33:23AM +1000, Ian Smith wrote: > > Looks like that's exactly right. Copying the maintainer and suggesting > the no-brain patch, pardon the broken tabs from pasting, against the > head / stable versions (checked) .. I should sendPR I guess .. time! > > Cheers, Ian > > --- /usr/sbin/rmuser Sat Mar 3 16:48:29 2007 > +++ /home/smithi/rmuser Fri Oct 5 00:30:51 2007 > @@ -86,10 +86,10 @@ > echo -n " mailspool" > rm ${MAILSPOOL}/$login > fi > - if [ -f ${MAILSPOOL}/${login}.pop ]; then > - verbose && echo -n " ${MAILSPOOL}/${login}.pop" || > + if [ -f ${MAILSPOOL}/.${login}.pop ]; then > + verbose && echo -n " ${MAILSPOOL}/.${login}.pop" || > echo -n " pop3" > - rm ${MAILSPOOL}/${login}.pop > + rm ${MAILSPOOL}/.${login}.pop > fi > verbose && echo '.' > } > Thanks! I'll take care of this immediately. Cheers, Mike.