From kws@kstreet.interlog.com  Fri Apr 17 17:17:13 1998
Received: from kstreet.interlog.com (kstreet.interlog.com [198.53.146.171])
          by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA04157
          for <FreeBSD-gnats-submit@freebsd.org>; Fri, 17 Apr 1998 17:17:12 GMT
          (envelope-from kws@kstreet.interlog.com)
Received: (from kws@localhost)
	by kstreet.interlog.com (8.8.8/8.8.8) id NAA02816;
	Fri, 17 Apr 1998 13:17:04 -0400 (EDT)
	(envelope-from kws)
Message-Id: <199804171717.NAA02816@kstreet.interlog.com>
Date: Fri, 17 Apr 1998 13:17:04 -0400 (EDT)
From: street@iName.com
Reply-To: street@iName.com
To: FreeBSD-gnats-submit@freebsd.org
Subject: periodic daily mail queue check fails
X-Send-Pr-Version: 3.2

>Number:         6333
>Category:       bin
>Synopsis:       periodic daily mail queue check fails
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-bugs
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Fri Apr 17 10:20:02 PDT 1998
>Closed-Date:    Fri Apr 17 15:47:03 PDT 1998
>Last-Modified:  Fri Apr 17 15:51:29 PDT 1998
>Originator:     Kevin Street
>Release:        FreeBSD 3.0-CURRENT i386
>Organization:
>Environment:
		FreeBSD current as of Apr 11
>Description:
/etc/periodic/daily/440.status-mailq checks to see if mailq is
executable before running it, however it is checking /usr/sbin/mailq.
mailq is actually installed as /usr/bin/mailq so the mail queue
check never runs.

>How-To-Repeat:


>Fix:
--- 440.status-mailq.orig	Sat Apr 11 12:01:51 1998
+++ 440.status-mailq	Fri Apr 17 12:50:34 1998
@@ -2,7 +2,7 @@
 #
 # $Id: 440.status-mailq,v 1.2 1998/01/18 22:28:06 wosch Exp $
 #
-if [ -x /usr/sbin/mailq -a -d /var/spool/mqueue ] ; then
+if [ -x /usr/bin/mailq -a -d /var/spool/mqueue ] ; then
     echo ""
     echo "Mail in local queue:"
 


>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->closed 
State-Changed-By: des 
State-Changed-When: Fri Apr 17 15:47:03 PDT 1998 
State-Changed-Why:  
Patch applied, thanks. 
>Unformatted:
