Allow the error for self=fail to be included in bounces. exim-4_53
authorPhilip Hazel <ph10@hermes.cam.ac.uk>
Mon, 26 Sep 2005 09:52:18 +0000 (09:52 +0000)
committerPhilip Hazel <ph10@hermes.cam.ac.uk>
Mon, 26 Sep 2005 09:52:18 +0000 (09:52 +0000)
doc/doc-txt/ChangeLog
src/src/routers/rf_self_action.c

index 03be2f063b3e116e7644be87c8f0f1b4169e1acf..a77a223a42520a22ea0326d47af697a0d3b4bd65 100644 (file)
@@ -1,4 +1,4 @@
-$Cambridge: exim/doc/doc-txt/ChangeLog,v 1.239 2005/09/22 12:02:21 fanf2 Exp $
+$Cambridge: exim/doc/doc-txt/ChangeLog,v 1.240 2005/09/26 09:52:18 ph10 Exp $
 
 Change log file for Exim from version 4.21
 -------------------------------------------
@@ -221,6 +221,9 @@ TF/08 Change PH/13 introduced the possibility that verify=helo may defer,
       common situation. This change restores the behaviour of treating a
       helo verification defer as a failure.
 
+PH/51 If self=fail was set on a router, the bounce message did not include the
+      actual error message.
+
 
 Exim version 4.52
 -----------------
index 295b422ad91072ae06caaab6896f62ac50ea572a..c0279ced6e7ea5b8589d76bdac886d7cbd446010 100644 (file)
@@ -1,4 +1,4 @@
-/* $Cambridge: exim/src/src/routers/rf_self_action.c,v 1.2 2005/01/04 10:00:44 ph10 Exp $ */
+/* $Cambridge: exim/src/src/routers/rf_self_action.c,v 1.3 2005/09/26 09:52:18 ph10 Exp $ */
 
 /*************************************************
 *     Exim - an Internet mail transport agent    *
@@ -133,6 +133,7 @@ switch (code)
     debug_printf(": address failed (self = fail)\n");
     }
   addr->message = msg;
+  setflag(addr, af_pass_message);
   return FAIL;
   }