From frank@vogon.agala.net  Mon Nov  6 12:50:08 2000
Return-Path: <frank@vogon.agala.net>
Received: from harzserver1.harz.de (harzserver1.harz.de [193.159.181.124])
	by hub.freebsd.org (Postfix) with ESMTP id 7D78437B657
	for <freebsd-gnats-submit@FreeBSD.org>; Mon,  6 Nov 2000 12:50:06 -0800 (PST)
Received: (from uucp@localhost)
	by harzserver1.harz.de (8.9.3/8.9.3) with UUCP id VAA31279
	for freebsd-gnats-submit@FreeBSD.org; Mon, 6 Nov 2000 21:50:49 +0100 (CET)
	(envelope-from frank@vogon.agala.net)
Received: by vogon.agala.net (Postfix, from userid 701)
	id AC92045C0D; Mon,  6 Nov 2000 21:11:23 +0100 (CET)
Message-Id: <20001106201123.AC92045C0D@vogon.agala.net>
Date: Mon,  6 Nov 2000 21:11:23 +0100 (CET)
From: frank@vogon.agala.net (Frank J. Beckmann)
To: freebsd-gnats-submit@FreeBSD.org,
	"dgilbert@velocet.ca?subject=Re":%20bin/22598:%20rmail%20recently%20broken%20wrt%20%28at%20least%29@20postfix.FreeBSD.ORG
Subject:

>Number:         22647
>Category:       bin
>Synopsis:       rmail calls sendmail with -G which upsets Postfix
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    freebsd-bugs
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Mon Nov 06 13:00:00 PST 2000
>Closed-Date:    Wed Jan 16 14:29:53 PST 2002
>Last-Modified:  Wed Jan 16 14:30:32 PST 2002
>Originator:     
>Release:        
>Organization:
>Environment:
>Description:
 The new rmail calls sendmail with option -G. Postfix doesn't know that option
 and exits with an error.
 
 Frank
 
>How-To-Repeat:
>Fix:
>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: gnats-admin->freebsd-bugs 
Responsible-Changed-By: peter 
Responsible-Changed-When: Mon Feb 19 11:54:45 PST 2001 
Responsible-Changed-Why:  
Misfiled 

http://www.freebsd.org/cgi/query-pr.cgi?pr=22647 
State-Changed-From-To: open->closed 
State-Changed-By: ashp 
State-Changed-When: Wed Jan 16 14:29:53 PST 2002 
State-Changed-Why:  
Based on reading the code, there is no -G option used: 

args = (char **)xalloc(sizeof(*args) * (10 + argc)); 

i = 0; 
args[i++] = _PATH_SENDMAIL;     /* Build sendmail's argument list. */ 
args[i++] = "-oee";             /* No errors, just status. */ 
#ifdef QUEUE_ONLY  
args[i++] = "-odq";             /* Queue it, don't try to deliver. */ 
#else    
args[i++] = "-odi";             /* Deliver in foreground. */ 
#endif 
args[i++] = "-oi";              /* Ignore '.' on a line by itself. */ 

Therefore, this won't be a problem anymore. 
[Code taken from 4.5-RC] 

http://www.FreeBSD.org/cgi/query-pr.cgi?pr=22647 
>Unformatted:

Greg Lehey, 5 June 2001

This PR was entered with status "confidential", which may have stopped
it being looked at.  I can't see anything confidential here (for that
matter, it doesn't seem to be too serious either), so I'm turning the
confidential bit off.
