Commit 467bb959 467bb9594e576bfca80d7bc58b13a29862a37915 by Sergey Poznyakoff

(sendmail_send_message): Bugfix. In spite

of what the comment said, -t option is not implicit and must
be specified.
1 parent ea992d95
......@@ -254,15 +254,11 @@ sendmail_send_message (mailer_t mailer, message_t msg, address_t from,
}
if (!to)
{
/* The -t seems to be implicit when there are no addresses,
so it shouldn't be necessary to specify it. */
/*
if ((argvec[argc++] = strdup ("-t")) == 0)
{
status = ENOMEM;
goto OPEN_STATE_CLEANUP;
}
*/
}
else
{
......