# HG changeset patch # User Carl Byington # Date 1482515030 28800 # Node ID 8fe6d5120771cbb241e271f91b3a810fb5621e58 # Parent 65e1489a3a67a165b6d152ccee72ebb28c82c9f4 need to actually use the modified recipient in the verifier diff -r 65e1489a3a67 -r 8fe6d5120771 src/dnsbl.cpp --- a/src/dnsbl.cpp Fri Dec 23 09:39:02 2016 -0800 +++ b/src/dnsbl.cpp Fri Dec 23 09:43:50 2016 -0800 @@ -1369,7 +1369,7 @@ if (ver) { // try to verify this from/to pair of addresses even if it might be explicitly whitelisted const char *loto = to_lower_string(rcptaddr, false); - bool rc = ver->ok(priv.queueid, priv.mailaddr, rcptaddr); + bool rc = ver->ok(priv.queueid, priv.mailaddr, loto); free((void*)loto); if (!rc) { smfi_setreply(ctx, (char*)"550", (char*)"5.7.1", (char*)"no such user");