Fix $address_data after verification redirect then defer/fail bug.
authorPhilip Hazel <ph10@hermes.cam.ac.uk>
Thu, 16 Mar 2006 12:07:55 +0000 (12:07 +0000)
committerPhilip Hazel <ph10@hermes.cam.ac.uk>
Thu, 16 Mar 2006 12:07:55 +0000 (12:07 +0000)
doc/doc-txt/ChangeLog
src/ACKNOWLEDGMENTS
src/src/verify.c

index b1a7c3904c3e376863ed2c2358ab79b6dfa1f2c1..6757288550264d03c957418690489a22a23031bc 100644 (file)
@@ -1,4 +1,4 @@
-$Cambridge: exim/doc/doc-txt/ChangeLog,v 1.329 2006/03/16 11:51:09 ph10 Exp $
+$Cambridge: exim/doc/doc-txt/ChangeLog,v 1.330 2006/03/16 12:07:55 ph10 Exp $
 
 Change log file for Exim from version 4.21
 -------------------------------------------
@@ -308,6 +308,12 @@ PH/60 When a VRFY deferred or FAILED, the log message rather than the user
 
 PH/61 Add -l and -k options to exicyclog.
 
+PH/62 When verifying, if an address was redirected to one new address, so that
+      verification continued, and the new address failed or deferred after
+      having set something in $address_data, the value of $address_data was not
+      passed back to the ACL. This was different to the case when no
+      redirection occurred. The value is now passed back in both cases.
+
 
 Exim version 4.60
 -----------------
index 279f9fc8c60ab12a7ba927d488b71ee2bdbd8185..fe9ac9d35dc156d4878a54814a6222d4d0ed9c65 100644 (file)
@@ -1,4 +1,4 @@
-$Cambridge: exim/src/ACKNOWLEDGMENTS,v 1.43 2006/03/16 11:51:09 ph10 Exp $
+$Cambridge: exim/src/ACKNOWLEDGMENTS,v 1.44 2006/03/16 12:07:55 ph10 Exp $
 
 EXIM ACKNOWLEDGEMENTS
 
@@ -177,8 +177,9 @@ Chris Liddiard            Fix for bug in exiqsumm
 Chris Lightfoot           Patch for -restore-times in exim_lock
 Edgar Lovecraft           Patch for ${str2b64:
 Torsten Luettgert         Suggested patch for proper integer overflow detection
-Lars Mainka               Patch for OpenSSL crl collections
 David Madole              Patch for SPA forced expansion failure bug
+Lars Mainka               Patch for OpenSSL crl collections
+Andrey Malyshev           Patch for $address_data after redirection bug
 Lionel Elie Mamane        Patch for IPv4/IPv6 listen() problem on USAGI Linux
                           Patch for recognizing IPv6 "scoped addresses"
                           Patch for callout caching bug
index b33ebb6df9558821176fc2aafeefed040942d18b..8776700a001081da5b4770aaa1f490f3d53c051f 100644 (file)
@@ -1,4 +1,4 @@
-/* $Cambridge: exim/src/src/verify.c,v 1.34 2006/02/21 16:24:19 ph10 Exp $ */
+/* $Cambridge: exim/src/src/verify.c,v 1.35 2006/03/16 12:07:55 ph10 Exp $ */
 
 /*************************************************
 *     Exim - an Internet mail transport agent    *
@@ -793,6 +793,7 @@ if (addr != vaddr)
   vaddr->user_message = addr->user_message;
   vaddr->basic_errno = addr->basic_errno;
   vaddr->more_errno = addr->more_errno;
+  vaddr->p.address_data = addr->p.address_data;
   }
 return yield;
 }