summaryrefslogtreecommitdiff
path: root/Mailman/Bouncer.py
diff options
context:
space:
mode:
authorBarry Warsaw2007-08-05 00:32:09 -0400
committerBarry Warsaw2007-08-05 00:32:09 -0400
commit959f34a62e0ec3cbe73da3d43640ccb6791cf3a0 (patch)
treeafcf868061fe6a5b56aeb7493c1e72e215fcce1a /Mailman/Bouncer.py
parentec734fab4791c107610caf73931e570b2d1b6bd0 (diff)
downloadmailman-959f34a62e0ec3cbe73da3d43640ccb6791cf3a0.tar.gz
mailman-959f34a62e0ec3cbe73da3d43640ccb6791cf3a0.tar.zst
mailman-959f34a62e0ec3cbe73da3d43640ccb6791cf3a0.zip
Diffstat (limited to 'Mailman/Bouncer.py')
-rw-r--r--Mailman/Bouncer.py25
1 files changed, 0 insertions, 25 deletions
diff --git a/Mailman/Bouncer.py b/Mailman/Bouncer.py
index 46dd13114..99093b334 100644
--- a/Mailman/Bouncer.py
+++ b/Mailman/Bouncer.py
@@ -79,31 +79,6 @@ class _BounceInfo:
class Bouncer:
- def InitVars(self):
- # Configurable...
- self.bounce_processing = config.DEFAULT_BOUNCE_PROCESSING
- self.bounce_score_threshold = config.DEFAULT_BOUNCE_SCORE_THRESHOLD
- self.bounce_info_stale_after = config.DEFAULT_BOUNCE_INFO_STALE_AFTER
- self.bounce_you_are_disabled_warnings = \
- config.DEFAULT_BOUNCE_YOU_ARE_DISABLED_WARNINGS
- self.bounce_you_are_disabled_warnings_interval = \
- config.DEFAULT_BOUNCE_YOU_ARE_DISABLED_WARNINGS_INTERVAL
- self.bounce_unrecognized_goes_to_list_owner = \
- config.DEFAULT_BOUNCE_UNRECOGNIZED_GOES_TO_LIST_OWNER
- self.bounce_notify_owner_on_disable = \
- config.DEFAULT_BOUNCE_NOTIFY_OWNER_ON_DISABLE
- self.bounce_notify_owner_on_removal = \
- config.DEFAULT_BOUNCE_NOTIFY_OWNER_ON_REMOVAL
- # Not configurable...
- #
- # This holds legacy member related information. It's keyed by the
- # member address, and the value is an object containing the bounce
- # score, the date of the last received bounce, and a count of the
- # notifications left to send.
- self.bounce_info = {}
- # New style delivery status
- self.delivery_status = {}
-
def registerBounce(self, member, msg, weight=1.0, day=None):
if not self.isMember(member):
return