diff options
| -rw-r--r-- | Mailman/Queue/BounceRunner.py | 2 | ||||
| -rw-r--r-- | Mailman/Queue/OutgoingRunner.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/Queue/BounceRunner.py b/Mailman/Queue/BounceRunner.py index 9e1a34bf5..2d132708a 100644 --- a/Mailman/Queue/BounceRunner.py +++ b/Mailman/Queue/BounceRunner.py @@ -221,7 +221,7 @@ class BounceRunner(Runner, BounceMixin): # although I'm unsure how that could happen. Possibly ScanMessages() # can let None's sneak through. In any event, this will kill them. addrs = filter(None, addrs) - self._queue_bounces(mlist.internal_name(), addrs, msg) + self._queue_bounces(mlist.fqdn_listname, addrs, msg) _doperiodic = BounceMixin._doperiodic diff --git a/Mailman/Queue/OutgoingRunner.py b/Mailman/Queue/OutgoingRunner.py index 351f24da6..78929398c 100644 --- a/Mailman/Queue/OutgoingRunner.py +++ b/Mailman/Queue/OutgoingRunner.py @@ -99,7 +99,7 @@ class OutgoingRunner(Runner, BounceMixin): # this is what's sent to the user in the probe message. Maybe # we should craft a bounce-like message containing information # about the permanent SMTP failure? - self._queue_bounces(mlist.internal_name(), e.permfailures, msg) + self._queue_bounces(mlist.fqdn_listname, e.permfailures, msg) # Move temporary failures to the qfiles/retry queue which will # occasionally move them back here for another shot at # delivery. |
