| Summary: | rmail calls sendmail with -G which upsets Postfix | ||
|---|---|---|---|
| Product: | Base System | Reporter: | frank <frank> |
| Component: | bin | Assignee: | 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
Responsible Changed From-To: gnats-admin->freebsd-bugs Misfiled 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] |