From owner-freebsd-questions@FreeBSD.ORG Wed Oct 3 21:05:46 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 276B316A41B for ; Wed, 3 Oct 2007 21:05:46 +0000 (UTC) (envelope-from iaccounts@ibctech.ca) Received: from pearl.ibctech.ca (pearl.ibctech.ca [208.70.104.210]) by mx1.freebsd.org (Postfix) with ESMTP id 9E57913C4A5 for ; Wed, 3 Oct 2007 21:05:45 +0000 (UTC) (envelope-from iaccounts@ibctech.ca) Received: (qmail 1249 invoked by uid 1002); 3 Oct 2007 21:05:44 -0000 Received: from iaccounts@ibctech.ca by pearl.ibctech.ca by uid 89 with qmail-scanner-1.22 (spamassassin: 2.64. Clear:RC:1(208.70.104.100):. Processed in 22.871387 secs); 03 Oct 2007 21:05:44 -0000 Received: from unknown (HELO ?192.168.30.110?) (steve@ibctech.ca@208.70.104.100) by pearl.ibctech.ca with (DHE-RSA-AES256-SHA encrypted) SMTP; 3 Oct 2007 21:05:21 -0000 Message-ID: <4704041A.7010505@ibctech.ca> Date: Wed, 03 Oct 2007 17:05:30 -0400 From: Steve Bertrand User-Agent: Thunderbird 2.0.0.6 (Windows/20070728) MIME-Version: 1.0 To: Lisa Casey References: <011e01c805fc$4c5dc3d0$d5b9bfcf@lisac> In-Reply-To: <011e01c805fc$4c5dc3d0$d5b9bfcf@lisac> X-Enigmail-Version: 0.95.3 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org 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: Wed, 03 Oct 2007 21:05:46 -0000 > Is there anyway to have rmuser remover the mail drop file associated > with that account also, or am I just going to have to remove these > manually? It really depends on what version of rmuser you have. In /usr/sbin/rmuser, do you have something similar to this code snippet?: if [ -f ${MAILSPOOL}/${login}.pop ]; then verbose && echo -n " ${MAILSPOOL}/${login}.pop" || echo -n " pop3" rm ${MAILSPOOL}/${login}.pop fi ...if so, try putting a . character before each instance of ${login}.pop. Steve