From 57730b52dcfa2495c48407db6a5dfecf492d75b8 Mon Sep 17 00:00:00 2001 From: Miroslav Lichvar Date: Sun, 26 Dec 2010 18:10:29 +0000 Subject: [PATCH] Fixes: bug #1002 - Message loss when using multiple deliveries --- doc/doc-txt/ChangeLog | 2 ++ src/src/deliver.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/doc-txt/ChangeLog b/doc/doc-txt/ChangeLog index 07501bb6c..cd0de35b7 100644 --- a/doc/doc-txt/ChangeLog +++ b/doc/doc-txt/ChangeLog @@ -108,6 +108,8 @@ DW/30 Allow TRUSTED_CONFIG_PREFIX_FILE only for Exim or CONFIGURE_OWNER, not DW/31 Turn TRUSTED_CONFIG_PREFIX_FILE into TRUSTED_CONFIG_FILE. No prefixes. +NM/01 Fixed bug #1002 - Message loss when using multiple deliveries + Exim version 4.72 ----------------- diff --git a/src/src/deliver.c b/src/src/deliver.c index 941fec043..668e4b2e5 100644 --- a/src/src/deliver.c +++ b/src/src/deliver.c @@ -624,7 +624,7 @@ for (dup = addr_duplicate; dup != NULL; dup = dup->next) { if (Ustrcmp(addr->unique, dup->unique) == 0) { - tree_add_nonrecipient(dup->address); + tree_add_nonrecipient(dup->unique); child_done(dup, now); } } -- 2.30.2