summaryrefslogtreecommitdiff
path: root/src/mailman/mta/base.py
diff options
context:
space:
mode:
authorBarry Warsaw2009-11-26 15:26:02 -0500
committerBarry Warsaw2009-11-26 15:26:02 -0500
commitea9c39d303fcd29023459baf44d5e12834aaf477 (patch)
tree91cf081adc0f2c46bc0cbfb7a4b87ea0937a4355 /src/mailman/mta/base.py
parenta26ed5b02a76dd26a72eb8acad819be47dca3049 (diff)
downloadmailman-ea9c39d303fcd29023459baf44d5e12834aaf477.tar.gz
mailman-ea9c39d303fcd29023459baf44d5e12834aaf477.tar.zst
mailman-ea9c39d303fcd29023459baf44d5e12834aaf477.zip
* The start of a conversion of bin/withlist to bin/mailman withlist
* Add lots of debugging to the SMTP delivery chain * Move the VERP calculation to the deliver module, since this is the central place we do delivery. For example, when it was in to_outgoing, other routes for injecting the message may not have been verp'd. to_outgoing is now really simple.
Diffstat (limited to 'src/mailman/mta/base.py')
-rw-r--r--src/mailman/mta/base.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mailman/mta/base.py b/src/mailman/mta/base.py
index ff56094ac..38ed0d836 100644
--- a/src/mailman/mta/base.py
+++ b/src/mailman/mta/base.py
@@ -159,6 +159,7 @@ class IndividualDelivery(BaseDelivery):
refused = {}
recipients = msgdata.get('recipients', set())
for recipient in recipients:
+ log.debug('IndividualDelivery to: %s', recipient)
# Make a copy of the original messages and operator on it, since
# we're going to munge it repeatedly for each recipient.
message_copy = copy.deepcopy(msg)