diff options
-rw-r--r-- | camel/ChangeLog | 6 | ||||
-rw-r--r-- | camel/providers/sendmail/camel-sendmail-transport.c | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index ddc4f9366d..0e324f855c 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,5 +1,11 @@ 2001-03-09 Dan Winship <danw@ximian.com> + * 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.) + * camel-mime-utils.c (header_fold): Fix a bug that could make this walk off the end of a string. (The bug has been there since December... maybe this will fix some unreproduceable crashes?) 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]) |