From 5b49e84e6ae19741e49c16c259579da220e0bd10 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Fri, 9 Mar 2001 21:53:05 +0000 Subject: Remove the "-U" for now, because it breaks exim's "sendmail" wrapper. (And * providers/sendmail/camel-sendmail-transport.c (sendmail_send, sendmail_send_to): Remove the "-U" for now, because it breaks exim's "sendmail" wrapper. (And it doesn't actually do all that much to sendmail's behavior, and it was working fine before anyway.) svn path=/trunk/; revision=8621 --- camel/providers/sendmail/camel-sendmail-transport.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'camel/providers/sendmail') diff --git a/camel/providers/sendmail/camel-sendmail-transport.c b/camel/providers/sendmail/camel-sendmail-transport.c index b7a6be66a5..577dcc4610 100644 --- a/camel/providers/sendmail/camel-sendmail-transport.c +++ b/camel/providers/sendmail/camel-sendmail-transport.c @@ -211,7 +211,7 @@ sendmail_send_to (CamelTransport *transport, CamelMedium *message, len = g_list_length (recipients); argv = g_malloc ((len + 5) * sizeof (char *)); argv[0] = "sendmail"; - argv[1] = "-Uif"; + argv[1] = "-if"; argv[2] = from; argv[3] = "--"; @@ -228,7 +228,7 @@ static gboolean sendmail_send (CamelTransport *transport, CamelMedium *message, CamelException *ex) { - const char *argv[4] = { "sendmail", "-Utif", NULL, NULL }; + const char *argv[4] = { "sendmail", "-tif", NULL, NULL }; argv[2] = get_from (message, ex); if (!argv[2]) -- cgit v1.2.3