From owner-freebsd-current Wed May 7 04:56:35 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id EAA18616 for current-outgoing; Wed, 7 May 1997 04:56:35 -0700 (PDT) Received: from mexico.brainstorm.eu.org (root@mexico.brainstorm.fr [193.56.58.253]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id EAA18611 for ; Wed, 7 May 1997 04:56:31 -0700 (PDT) Received: from brasil.brainstorm.eu.org (brasil.brainstorm.fr [193.56.58.33]) by mexico.brainstorm.eu.org (8.8.4/8.8.4) with ESMTP id NAA19136 for ; Wed, 7 May 1997 13:56:24 +0200 Received: (from uucp@localhost) by brasil.brainstorm.eu.org (8.8.4/8.6.12) with UUCP id NAA03084 for freebsd-current@FreeBSD.ORG; Wed, 7 May 1997 13:55:57 +0200 Received: (from roberto@localhost) by keltia.freenix.fr (8.8.5/keltia-uucp-2.9) id NAA00494; Wed, 7 May 1997 13:55:09 +0200 (CEST) Message-ID: <19970507135509.15771@keltia.freenix.fr> Date: Wed, 7 May 1997 13:55:09 +0200 From: Ollivier Robert To: "FreeBSD Current Users' list" Subject: Full path for sendmail required in /etc/rc Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.67 X-Operating-System: FreeBSD 3.0-CURRENT ctm#3279 Sender: owner-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk In order to use the "kill -1" feature of sendmail 8.8.*, you need to run sendmail with a full path. Here is a patch (I don't have net access right now or I'd do it). Index: rc =================================================================== RCS file: /spare/FreeBSD-current/src/etc/rc,v retrieving revision 1.122 diff -u -2 -r1.122 rc --- rc 1997/05/05 07:08:30 1.122 +++ rc 1997/05/07 11:50:42 @@ -226,5 +226,5 @@ if [ "X${sendmail_enable}" = X"YES" -a -r /etc/sendmail.cf ]; then - echo -n ' sendmail'; sendmail ${sendmail_flags} + echo -n ' sendmail'; /usr/sbin/sendmail ${sendmail_flags} fi Without the patch, you'll get this: May 7 13:37:30 keltia sendmail[142]: daemon invoked without full pathname; kill -1 won't work May 7 13:37:30 keltia sendmail[143]: starting daemon (8.8.5): SMTP+queueing@00:31:00 -- Ollivier ROBERT -=- FreeBSD: There are no limits -=- roberto@keltia.freenix.fr FreeBSD keltia.freenix.fr 3.0-CURRENT #8: Wed May 7 13:25:41 CEST 1997