Date: Fri, 17 Apr 1998 13:17:04 -0400 (EDT) From: street@iName.com To: FreeBSD-gnats-submit@FreeBSD.ORG Subject: bin/6333: periodic daily mail queue check fails Message-ID: <199804171717.NAA02816@kstreet.interlog.com>
next in thread | raw e-mail | index | archive | help
>Number: 6333
>Category: bin
>Synopsis: periodic daily mail queue check fails
>Confidential: no
>Severity: non-critical
>Priority: low
>Responsible: freebsd-bugs
>State: open
>Quarter:
>Keywords:
>Date-Required:
>Class: sw-bug
>Submitter-Id: current-users
>Arrival-Date: Fri Apr 17 10:20:02 PDT 1998
>Last-Modified:
>Originator: Kevin Street
>Organization:
>Release: FreeBSD 3.0-CURRENT i386
>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:"
>Audit-Trail:
>Unformatted:
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199804171717.NAA02816>
