Bug 22647

Summary: rmail calls sendmail with -G which upsets Postfix
Product: Base System Reporter: frank <frank>
Component: binAssignee: freebsd-bugs (Nobody) <bugs>
Status: Closed FIXED    
Severity: Affects Only Me    
Priority: Normal    
Version: 1.0-RELEASE   
Hardware: Any   
OS: Any   

Description frank 2000-11-06 21:00:00 UTC
 The new rmail calls sendmail with option -G. Postfix doesn't know that option
 and exits with an error.
 
 Frank
Comment 1 Peter Wemm freebsd_committer freebsd_triage 2001-02-19 19:54:45 UTC
Responsible Changed
From-To: gnats-admin->freebsd-bugs

Misfiled
Comment 2 ashp freebsd_committer freebsd_triage 2002-01-16 22:29:53 UTC
State Changed
From-To: open->closed

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]