summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPhilip Hazel <ph10@hermes.cam.ac.uk>2005-06-17 14:20:48 +0000
committerPhilip Hazel <ph10@hermes.cam.ac.uk>2005-06-17 14:20:48 +0000
commitca02eafb3654a6539abb59a0f3ce4c52fe97f20e (patch)
treea29e7a08b98b7dd5b60bc24992edf9f9ca4d065f /src
parentc6c2dc1dfc3928a5f6c61024b68e011db41884ad (diff)
Allow the message "All relevant MX records point to non-existent hosts"
to be included in bounce messages, as it doesn't seem to be a security risk.
Diffstat (limited to 'src')
-rw-r--r--src/src/routers/dnslookup.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/src/routers/dnslookup.c b/src/src/routers/dnslookup.c
index b5ef0478b..fd7140e46 100644
--- a/src/src/routers/dnslookup.c
+++ b/src/src/routers/dnslookup.c
@@ -1,4 +1,4 @@
-/* $Cambridge: exim/src/src/routers/dnslookup.c,v 1.3 2005/01/11 15:51:03 ph10 Exp $ */
+/* $Cambridge: exim/src/src/routers/dnslookup.c,v 1.4 2005/06/17 14:20:48 ph10 Exp $ */
/*************************************************
* Exim - an Internet mail transport agent *
@@ -300,6 +300,7 @@ for (;;)
if (h.mx >= 0 && h.address == NULL)
{
+ setflag(addr, af_pass_message); /* This is not a security risk */
if (h.name[0] == 0)
addr->message = US"an SRV record indicated no SMTP service";
else