diff options
| author | bwarsaw | 2001-12-27 06:58:46 +0000 |
|---|---|---|
| committer | bwarsaw | 2001-12-27 06:58:46 +0000 |
| commit | d562f525684ea70ae6a2c367c1731dddc08221aa (patch) | |
| tree | 2ac50a9012c24f9f5d8c76fcbdfbc876394e667a | |
| parent | ff36afdd028e38a51a27e4ea7445814105fd8515 (diff) | |
| download | mailman-d562f525684ea70ae6a2c367c1731dddc08221aa.tar.gz mailman-d562f525684ea70ae6a2c367c1731dddc08221aa.tar.zst mailman-d562f525684ea70ae6a2c367c1731dddc08221aa.zip | |
ScanMessages(): Call registerBounce() now to register a bounce. We
still don't implement weighted scoring, but we could if we improved
the bounce detection framework.
| -rw-r--r-- | Mailman/Bouncers/BouncerAPI.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Bouncers/BouncerAPI.py b/Mailman/Bouncers/BouncerAPI.py index 894f2c805..3c75baf8a 100644 --- a/Mailman/Bouncers/BouncerAPI.py +++ b/Mailman/Bouncers/BouncerAPI.py @@ -72,7 +72,7 @@ def ScanMessages(mlist, msg, testing=0): # we found a bounce or a list of bounce addrs if not testing: try: - mlist.RegisterBounce(addr, msg) + mlist.registerBounce(addr, msg) except Exception, e: syslog('error', 'Bouncer exception: %s', e) s = StringIO() |
