From owner-freebsd-questions@FreeBSD.ORG Tue Oct 28 12:51:11 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C79BC16A4CE for ; Tue, 28 Oct 2003 12:51:11 -0800 (PST) Received: from ns1.valuedj.com (adsl-216-100-130-21.dsl.snfc21.pacbell.net [216.100.130.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BE8C43FE0 for ; Tue, 28 Oct 2003 12:51:11 -0800 (PST) (envelope-from whizkid@ValueDJ.com) Received: by ns1.valuedj.com (Postfix, from userid 80) id 9C6756111; Tue, 28 Oct 2003 12:50:44 -0800 (PST) Received: from 208.253.246.93 (proxying for unknown) (SquirrelMail authenticated user whizkid) by ns1.valuedj.com with HTTP; Tue, 28 Oct 2003 12:50:44 -0800 (PST) Message-ID: <11035.208.253.246.93.1067374244.squirrel@ns1.valuedj.com> In-Reply-To: <44fzhd2k2i.fsf@be-well.ilk.org> References: <18618.208.253.246.93.1067371598.squirrel@ns1.valuedj.com> <44fzhd2k2i.fsf@be-well.ilk.org> Date: Tue, 28 Oct 2003 12:50:44 -0800 (PST) From: whizkid@ValueDJ.com To: "Lowell Gilbert" User-Agent: SquirrelMail/1.4.2 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 Importance: Normal cc: freebsd-questions@freebsd.org cc: whizkid@valuedj.com Subject: Re: PostFix error X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Oct 2003 20:51:11 -0000 > You forgot to disable the log generation in the daily periodic(8) > script. There are some other daily operations you should probably > disable, too. Try: > daily_clean_hoststat_enable="NO" > daily_status_mail_rejects_enable="NO" > daily_status_include_submit_mailq="NO" > daily_submit_queuerun="NO" > [in periodic.conf(5), of course] I see a periodic folder off of /etc but no periodic.conf file. Should I just create one with the above settings? Also it seems that there are only 2 errors, not 4. Ahhh I see the error now.... In the periodic folder, under daily there is a script called 150.clean-hoststat this file contains the following lines: if [ -z "$(sendmail -bh 2>&1)" ]; then rc=2 else echo "" echo "Removing stale entries from sendmail host status cache:" rc=0 sendmail -bH || rc=1 this is the source of the bh errors. I will disable this command and see if I get any more errors. Thanks for pointing me in the right direction. Is there a way to do this is PostFix or is this done automatically?