1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
|
# Copyright (C) 1998 by the Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
"Handle delivery bounce messages, doing filtering when list is set for it."
# It's possible to get the mail-list senders address (list-admin) in the
# bounce list. You probably don't want to have list mail sent to that
# address anyway.
import sys
import time
import string
from Mailman import mm_cfg
from Mailman import Errors
from Mailman import Utils
from Mailman import Message
from Mailman.Handlers import HandlerAPI
class Bouncer:
def InitVars(self):
# Not configurable...
# self.bounce_info registers observed bounce incidents. It's a
# dict mapping members addrs to a list:
# [
# time.time() of last bounce,
# post_id of first offending bounce in current sequence,
# post_id of last offending bounce in current sequence
# ]
self.bounce_info = {}
# Configurable...
self.bounce_processing = mm_cfg.DEFAULT_BOUNCE_PROCESSING
self.minimum_removal_date = mm_cfg.DEFAULT_MINIMUM_REMOVAL_DATE
self.minimum_post_count_before_bounce_action = \
mm_cfg.DEFAULT_MINIMUM_POST_COUNT_BEFORE_BOUNCE_ACTION
self.automatic_bounce_action = mm_cfg.DEFAULT_AUTOMATIC_BOUNCE_ACTION
self.max_posts_between_bounces = \
mm_cfg.DEFAULT_MAX_POSTS_BETWEEN_BOUNCES
def GetConfigInfo(self):
return [
"Policies regarding systematic processing of bounce messages,"
" to help automate recognition and handling of defunct"
" addresses.",
('bounce_processing', mm_cfg.Toggle, ('No', 'Yes'), 0,
'Try to figure out error messages automatically? '),
('minimum_removal_date', mm_cfg.Number, 3, 0,
'Minimum number of days an address has been non-fatally '
'bad before we take action'),
('minimum_post_count_before_bounce_action', mm_cfg.Number, 3, 0,
'Minimum number of posts to the list since members first '
'bounce before we consider removing them from the list'),
('max_posts_between_bounces', mm_cfg.Number, 3, 0,
"Maximum number of messages your list gets in an hour. "
"(Yes, bounce detection finds this info useful)"),
('automatic_bounce_action', mm_cfg.Radio,
("Do nothing",
"Disable and notify me",
"Disable and DON'T notify me",
"Remove and notify me"),
0, "Action when critical or excessive bounces are detected.")
]
def ClearBounceInfo(self, email):
email = string.lower(email)
if self.bounce_info.has_key(email):
del self.bounce_info[email]
def RegisterBounce(self, email, msg, saveifdirty=1):
"""Detect and handle repeat-offender bounce addresses.
We use very sketchy bounce history profiles in self.bounce_info
(see comment above it's initialization), together with list-
specific thresholds self.minimum_post_count_before_bounce_action
and self.max_posts_between_bounces."""
# Set 'dirty' if anything needs to be save in the finally clause.
dirty = 0
report = "%s: %s - " % (self.real_name, email)
try:
now = time.time()
secs_per_day = 24 * 60 * 60
# Take the opportunity to cull expired entries.
pid = self.post_id
maxposts = self.max_posts_between_bounces
stalesecs = self.minimum_removal_date * secs_per_day * 5
for k, v in self.bounce_info.items():
if now - v[0] > stalesecs:
# It's been long enough to drop their bounce record:
del self.bounce_info[k]
dirty = 1
this_dude = Utils.FindMatchingAddresses(email,
self.bounce_info)
if not this_dude:
# No (or expired) priors - new record.
self.bounce_info[string.lower(email)] = [now, self.post_id,
self.post_id]
self.LogMsg("bounce", report + "first")
dirty = 1
return
# There are some priors.
addr = string.lower(this_dude[0])
hist = self.bounce_info[addr]
difference = now - hist[0]
if len(Utils.FindMatchingAddresses(addr, self.members)):
if self.post_id - hist[2] > self.max_posts_between_bounces:
# There's been enough posts since last bounce that we're
# restarting. (Might should keep track of who goes stale
# how often.)
self.LogMsg("bounce", report + "first fresh")
self.bounce_info[addr] = [now, self.post_id, self.post_id]
dirty = 1
return
self.bounce_info[addr][2] = self.post_id
dirty = 1
if ((self.post_id - hist[1] >
self.minimum_post_count_before_bounce_action)
and
(difference > self.minimum_removal_date * secs_per_day)):
self.LogMsg("bounce", report + "exceeded limits")
self.HandleBouncingAddress(addr, msg)
return
else:
post_count = (self.minimum_post_count_before_bounce_action
- (self.post_id - hist[1]))
if post_count < 0:
post_count = 0
remain = (self.minimum_removal_date
* secs_per_day - difference)
self.LogMsg("bounce",
report + ("%d more allowed over %d secs"
% (post_count, remain)))
return
elif len(Utils.FindMatchingAddresses(addr, self.digest_members)):
if self.volume > hist[1]:
self.LogMsg("bounce",
"%s: first fresh (D)", self._internal_name)
self.bounce_info[addr] = [now, self.volume, self.volume]
return
if difference > self.minimum_removal_date * secs_per_day:
self.LogMsg("bounce", report + "exceeded limits (D)")
self.HandleBouncingAddress(addr, msg)
return
self.LogMsg("bounce", report + "digester lucked out")
else:
self.LogMsg("bounce",
"%s: address %s not a member.",
self._internal_name,
addr)
finally:
if dirty and saveifdirty:
self.Save()
def HandleBouncingAddress(self, addr, msg):
"""Disable or remove addr according to bounce_action setting."""
if self.automatic_bounce_action == 0:
return
elif self.automatic_bounce_action == 1:
# Only send if call works ok.
(succeeded, send) = self.DisableBouncingAddress(addr)
did = "disabled"
elif self.automatic_bounce_action == 2:
(succeeded, send) = self.DisableBouncingAddress(addr)
did = "disabled"
# Never send.
send = 0
elif self.automatic_bounce_action == 3:
(succeeded, send) = self.RemoveBouncingAddress(addr)
# Always send.
send = 1
did = "removed"
if send:
if succeeded != 1:
negative="not "
else:
negative=""
recipient = self.GetAdminEmail()
if addr in self.owner + [recipient]:
# Whoops! This is a bounce of a bounce notice - do not
# perpetuate the bounce loop! Log it prominently and be
# satisfied with that.
self.LogMsg("error",
"%s: Bounce recipient loop"
" encountered!\n\t%s\n\tBad admin recipient: %s",
self._internal_name,
"(Ie, bounce notification addr, itself, bounces.)",
addr)
return
import mimetools
boundary = mimetools.choose_boundary()
# report about success
but = ''
if succeeded <> 1:
but = 'BUT: %s' % succeeded
# disabled?
if did == 'disabled' and succeeded == 1:
reenable = Utils.maketext(
'reenable.txt',
{'admin_url': self.GetAbsoluteScriptURL('admin'),
})
else:
reenable = ''
# the mail message text
text = Utils.maketext(
'bounce.txt',
{'boundary' : boundary,
'listname' : self.real_name,
'addr' : addr,
'negative' : negative,
'did' : did,
'but' : but,
'reenable' : reenable,
'owneraddr': mm_cfg.MAILMAN_OWNER,
})
# add this here so it doesn't get wrapped/filled
text = text + '\n\n--' + boundary + \
'\nContent-type: text/plain; charset=us-ascii\n'
# we do this here so this text won't be wrapped. note that
# 'bounce.txt' has a trailing newline
msg.rewindbody()
body = msg.fp.read()
text = text + \
string.join(msg.headers, '') + '\n' + \
Utils.QuotePeriods(body) + '\n' + \
'--' + boundary + '--'
if negative:
negative = string.upper(negative)
# send the bounce message
msg = Message.UserNotification(
recipient, mm_cfg.MAILMAN_OWNER,
'%s member %s bouncing - %s%s' % (self.real_name, addr,
negative, did),
text)
msg['MIME-Version'] = '1.0'
msg['Content-Type'] = 'multipart/mixed; boundary="%s"' % boundary
HandlerAPI.DeliverToUser(self, msg)
def DisableBouncingAddress(self, addr):
"""Disable delivery for bouncing user address.
Returning success and notification status."""
if not self.IsMember(addr):
reason = "User not found."
self.LogMsg("bounce", "%s: NOT disabled %s: %s",
self.real_name, addr, reason)
return reason, 1
try:
if self.GetUserOption(addr, mm_cfg.DisableDelivery):
# No need to send out notification if they're already disabled.
self.LogMsg("bounce",
"%s: already disabled %s", self.real_name, addr)
return 1, 0
else:
self.SetUserOption(addr, mm_cfg.DisableDelivery, 1)
self.LogMsg("bounce",
"%s: disabled %s", self.real_name, addr)
self.Save()
return 1, 1
except Errors.MMNoSuchUserError:
self.LogMsg("bounce", "%s: NOT disabled %s: %s",
self.real_name, addr, Errors.MMNoSuchUserError)
self.ClearBounceInfo(addr)
self.Save()
return Errors.MMNoSuchUserError, 1
def RemoveBouncingAddress(self, addr):
"""Unsubscribe user with bouncing address.
Returning success and notification status."""
if not self.IsMember(addr):
reason = "User not found."
self.LogMsg("bounce", "%s: NOT removed %s: %s",
self.real_name, addr, reason)
return reason, 1
try:
self.DeleteMember(addr, "bouncing addr")
self.LogMsg("bounce", "%s: removed %s", self.real_name, addr)
self.Save()
return 1, 1
except Errors.MMNoSuchUserError:
self.LogMsg("bounce", "%s: NOT removed %s: %s",
self.real_name, addr, Errors.MMNoSuchUserError)
self.ClearBounceInfo(addr)
self.Save()
return Errors.MMNoSuchUserError, 1
|