aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2001-03-02 23:14:51 +0800
committerDan Winship <danw@src.gnome.org>2001-03-02 23:14:51 +0800
commite365f46803924a8d436f93722df7c30b38955e01 (patch)
tree6264a8f160bad05d8e423b0f28d7183b21e466c1
parent6f859d23be6364c19179d7e4a62902a3d9b8a460 (diff)
downloadgsoc2013-evolution-e365f46803924a8d436f93722df7c30b38955e01.tar
gsoc2013-evolution-e365f46803924a8d436f93722df7c30b38955e01.tar.gz
gsoc2013-evolution-e365f46803924a8d436f93722df7c30b38955e01.tar.bz2
gsoc2013-evolution-e365f46803924a8d436f93722df7c30b38955e01.tar.lz
gsoc2013-evolution-e365f46803924a8d436f93722df7c30b38955e01.tar.xz
gsoc2013-evolution-e365f46803924a8d436f93722df7c30b38955e01.tar.zst
gsoc2013-evolution-e365f46803924a8d436f93722df7c30b38955e01.zip
Use "-f" to set the envelope from address so bounces go to the right
* providers/sendmail/camel-sendmail-transport.c (sendmail_send_to, sendmail_send): Use "-f" to set the envelope from address so bounces go to the right place. Also, pass "-U" since the man page says we're supposed to... svn path=/trunk/; revision=8521
-rw-r--r--camel/ChangeLog7
-rw-r--r--camel/providers/sendmail/camel-sendmail-transport.c44
2 files changed, 41 insertions, 10 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 923dbae94e..fcf06aa7c4 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,10 @@
+2001-03-02 Dan Winship <danw@ximian.com>
+
+ * providers/sendmail/camel-sendmail-transport.c (sendmail_send_to,
+ sendmail_send): Use "-f" to set the envelope from address so
+ bounces go to the right place. Also, pass "-U" since the man page
+ says we're supposed to...
+
2001-03-01 Jeffrey Stedfast <fejj@ximian.com>
* camel-sasl.c: #include "camel-sasl-digest-md5.h"
diff --git a/camel/providers/sendmail/camel-sendmail-transport.c b/camel/providers/sendmail/camel-sendmail-transport.c
index d76edfeca9..b7a6be66a5 100644
--- a/camel/providers/sendmail/camel-sendmail-transport.c
+++ b/camel/providers/sendmail/camel-sendmail-transport.c
@@ -91,7 +91,7 @@ sendmail_can_send (CamelTransport *transport, CamelMedium *message)
static gboolean
-sendmail_send_internal (CamelMedium *message, char **argv, CamelException *ex)
+sendmail_send_internal (CamelMedium *message, const char **argv, CamelException *ex)
{
int fd[2], nullfd, wstat;
sigset_t mask, omask;
@@ -134,7 +134,7 @@ sendmail_send_internal (CamelMedium *message, char **argv, CamelException *ex)
close (nullfd);
close (fd[1]);
- execv (SENDMAIL_PATH, argv);
+ execv (SENDMAIL_PATH, (char **)argv);
_exit (255);
}
@@ -180,25 +180,45 @@ sendmail_send_internal (CamelMedium *message, char **argv, CamelException *ex)
return TRUE;
}
+static const char *
+get_from (CamelMedium *message, CamelException *ex)
+{
+ const CamelInternetAddress *from;
+ const char *name, *address;
+
+ from = camel_mime_message_get_from (CAMEL_MIME_MESSAGE (message));
+ if (!from || !camel_internet_address_get (from, 0, &name, &address)) {
+ camel_exception_set (ex, CAMEL_EXCEPTION_SERVICE_UNAVAILABLE,
+ _("Could not find 'From' address in message"));
+ return NULL;
+ }
+ return address;
+}
+
static gboolean
sendmail_send_to (CamelTransport *transport, CamelMedium *message,
GList *recipients, CamelException *ex)
{
GList *r;
- char **argv;
+ const char *from, **argv;
int i, len;
gboolean status;
+ from = get_from (message, ex);
+ if (!from)
+ return FALSE;
+
len = g_list_length (recipients);
- argv = g_malloc ((len + 4) * sizeof (char *));
+ argv = g_malloc ((len + 5) * sizeof (char *));
argv[0] = "sendmail";
- argv[1] = "-i";
- argv[2] = "--";
+ argv[1] = "-Uif";
+ argv[2] = from;
+ argv[3] = "--";
for (i = 1, r = recipients; i <= len; i++, r = r->next)
- argv[i + 2] = r->data;
- argv[i + 2] = NULL;
-
+ argv[i + 3] = r->data;
+ argv[i + 3] = NULL;
+
status = sendmail_send_internal (message, argv, ex);
g_free (argv);
return status;
@@ -208,8 +228,12 @@ static gboolean
sendmail_send (CamelTransport *transport, CamelMedium *message,
CamelException *ex)
{
- char *argv[4] = { "sendmail", "-t", "-i", NULL };
+ const char *argv[4] = { "sendmail", "-Utif", NULL, NULL };
+ argv[2] = get_from (message, ex);
+ if (!argv[2])
+ return FALSE;
+
return sendmail_send_internal (message, argv, ex);
}