diff options
Diffstat (limited to 'src/mailman/mta/base.py')
| -rw-r--r-- | src/mailman/mta/base.py | 1 |
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) |
