Skip site navigation (1)Skip section navigation (2)
Date:      26 May 1998 16:31:53 -0000
From:      trost@cloud.rain.com
To:        FreeBSD-gnats-submit@FreeBSD.ORG
Subject:   bin/6762: NO_SENDMAIL should include /bin/rmail
Message-ID:  <19980526163153.3520.qmail@grey.cloud.rain.com>

next in thread | raw e-mail | index | archive | help

>Number:         6762
>Category:       bin
>Synopsis:       NO_SENDMAIL should include /bin/rmail
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    freebsd-bugs
>State:          open
>Quarter:
>Keywords:
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Tue May 26 09:30:01 PDT 1998
>Last-Modified:
>Originator:     Bill Trost
>Organization:
Trost Computing
>Release:        FreeBSD 3.0-CURRENT i386
>Environment:

Source-built FreeBSD on a system running qmail or smail.

>Description:

"make world" replaces /bin/rmail even when NO_SENDMAIL has been set to
true in /etc/make.conf.  Both qmail and smail use a different rmail, so
replacing rmail is a Bad Thing.

>How-To-Repeat:

See problem description.

>Fix:

This has not been tested, but nothing can go rong.
	
--- /usr/src/bin/Makefile	Thu May 14 08:57:41 1998
+++ /tmp/Makefile	Tue May 26 09:29:06 1998
@@ -2,8 +2,12 @@
 #	$Id: Makefile,v 1.11 1998/05/09 06:42:52 jb Exp $
 
 SUBDIR= cat chio chmod cp csh date dd domainname echo ed expr hostname \
-	kill ln ls mkdir mv pax pwd rcp rm rmail rmdir sh sleep \
+	kill ln ls mkdir mv pax pwd rcp rm rmdir sh sleep \
 	stty sync test
+
+.if !defined(NO_SENDMAIL)
+SUBDIR+=rmail
+.endif
 
 .if ${MACHINE_ARCH} == "i386"
 SUBDIR+=df ps


>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?19980526163153.3520.qmail>