From 85bba3ff001ed86d4f037de1b32ff902bdcbd7f2 Mon Sep 17 00:00:00 2001 From: bwarsaw Date: Thu, 27 Dec 2001 07:08:00 +0000 Subject: __doperiodic(): RegisterBounce() -> registerBounce() --- Mailman/Queue/OutgoingRunner.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Mailman/Queue/OutgoingRunner.py b/Mailman/Queue/OutgoingRunner.py index ed0808a35..cce06b4be 100644 --- a/Mailman/Queue/OutgoingRunner.py +++ b/Mailman/Queue/OutgoingRunner.py @@ -70,9 +70,9 @@ class OutgoingRunner(Runner): # requires the list lock), and temporary failures should be # retried later. # - # For permanent failures, make a copy of the message for - # HandleBouncingAddress(). I'm not sure this is necessary, or the - # right thing to do. + # For permanent failures, make a copy of the message for bounce + # handling. I'm not sure this is necessary, or the right thing to + # do. pcnt = len(e.permfailures) copy = email.message_from_string(str(msg)) self._permfailures.setdefault(mlist, []).extend( @@ -117,7 +117,7 @@ class OutgoingRunner(Runner): return try: for recip, msg in self._permfailures[mlist]: - mlist.RegisterBounce(recip, msg) + mlist.registerBounce(recip, msg) del self._permfailures[mlist] mlist.Save() finally: -- cgit v1.3.1