Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 16 Jan 2002 14:30:32 -0800 (PST)
From:      <ashp@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
Message-ID:  <200201162230.g0GMUWQ47968@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200201162230.g0GMUWQ47968>