summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2016-05-08 01:29:25 +0100
committerJeremy Harris <jgh146exb@wizmail.org>2016-05-08 01:29:25 +0100
commit5aba2a452669cc19defd5732e2512984ecd1603e (patch)
tree1ef73dab71e47616fdc82fc08949452d38672761
parentafa6d3adc30bd4898825af38763ce008cab5a774 (diff)
downloadexim4-5aba2a452669cc19defd5732e2512984ecd1603e.tar.gz
transport_pass_socket
-rw-r--r--src/src/transport.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/src/transport.c b/src/src/transport.c
index 0fc2b2e09..9737acc58 100644
--- a/src/src/transport.c
+++ b/src/src/transport.c
@@ -1929,7 +1929,12 @@ if ((pid = fork()) == 0)
argv = CUSS child_exec_exim(CEE_RETURN_ARGV, TRUE, &i, FALSE, 0);
- /* Call with the dsn flag */
+ if (*queue_name)
+ {
+ argv[i++] = US"-MCG";
+ argv[i++] = queue_name;
+ }
+
if (smtp_use_dsn) argv[i++] = US"-MCD";
if (smtp_authenticated) argv[i++] = US"-MCA";