From owner-freebsd-bugs Wed Jan 16 14:31:11 2002 Delivered-To: freebsd-bugs@hub.freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 14B2D37B405; Wed, 16 Jan 2002 14:30:56 -0800 (PST) Received: (from ashp@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g0GMUWQ47968; Wed, 16 Jan 2002 14:30:32 -0800 (PST) (envelope-from ashp) Date: Wed, 16 Jan 2002 14:30:32 -0800 (PST) From: Message-Id: <200201162230.g0GMUWQ47968@freefall.freebsd.org> To: frank@vogon.agala.net, ashp@FreeBSD.org, freebsd-bugs@FreeBSD.org Subject: Re: bin/22647: rmail calls sendmail with -G which upsets Postfix Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Synopsis: rmail calls sendmail with -G which upsets Postfix 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 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message