summaryrefslogtreecommitdiff
path: root/mailman/bin/disabled.py
blob: 102ad7251227bef75be0700b8ed14c4e8b761ed8 (plain)
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
# Copyright (C) 2001-2008 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
# USA.

import time
import logging
import optparse

from mailman import Errors
from mailman import MailList
from mailman import MemberAdaptor
from mailman import Pending
from mailman import Version
from mailman import loginit
from mailman.Bouncer import _BounceInfo
from mailman.configuration import config
from mailman.i18n import _


# Work around known problems with some RedHat cron daemons
import signal
signal.signal(signal.SIGCHLD, signal.SIG_DFL)

ALL = (MemberAdaptor.BYBOUNCE,
       MemberAdaptor.BYADMIN,
       MemberAdaptor.BYUSER,
       MemberAdaptor.UNKNOWN,
       )



def who_callback(option, opt, value, parser):
    dest = getattr(parser.values, option.dest)
    if opt in ('-o', '--byadmin'):
        dest.add(MemberAdaptor.BYADMIN)
    elif opt in ('-m', '--byuser'):
        dest.add(MemberAdaptor.BYUSER)
    elif opt in ('-u', '--unknown'):
        dest.add(MemberAdaptor.UNKNOWN)
    elif opt in ('-b', '--notbybounce'):
        dest.discard(MemberAdaptor.BYBOUNCE)
    elif opt in ('-a', '--all'):
        dest.update(ALL)


def parseargs():
    parser = optparse.OptionParser(version=Version.MAILMAN_VERSION,
                                   usage=_("""\
%prog [options]

Process disabled members, recommended once per day.

This script iterates through every mailing list looking for members whose
delivery is disabled.  If they have been disabled due to bounces, they will
receive another notification, or they may be removed if they've received the
maximum number of notifications.

Use the --byadmin, --byuser, and --unknown flags to also send notifications to
members whose accounts have been disabled for those reasons.  Use --all to
send the notification to all disabled members."""))
    # This is the set of working flags for who to send notifications to.  By
    # default, we notify anybody who has been disable due to bounces.
    parser.set_defaults(who=set([MemberAdaptor.BYBOUNCE]))
    parser.add_option('-o', '--byadmin',
                      callback=who_callback, action='callback', dest='who',
                      help=_("""\
Also send notifications to any member disabled by the list
owner/administrator."""))
    parser.add_option('-m', '--byuser',
                      callback=who_callback, action='callback', dest='who',
                      help=_("""\
Also send notifications to any member who has disabled themself."""))
    parser.add_option('-u', '--unknown',
                      callback=who_callback, action='callback', dest='who',
                      help=_("""\
Also send notifications to any member disabled for unknown reasons
(usually a legacy disabled address)."""))
    parser.add_option('-b', '--notbybounce',
                      callback=who_callback, action='callback', dest='who',
                      help=_("""\
Don't send notifications to members disabled because of bounces (the
default is to notify bounce disabled members)."""))
    parser.add_option('-a', '--all',
                      callback=who_callback, action='callback', dest='who',
                      help=_('Send notifications to all disabled members'))
    parser.add_option('-f', '--force',
                      default=False, action='store_true',
                      help=_("""\
Send notifications to disabled members even if they're not due a new
notification yet."""))
    parser.add_option('-l', '--listname',
                      dest='listnames', action='append', default=[],
                      type='string', help=_("""\
Process only the given list, otherwise do all lists."""))
    parser.add_option('-C', '--config',
                      help=_('Alternative configuration file to use'))
    opts, args = parser.parse_args()
    return opts, args, parser



def main():
    opts, args, parser = parseargs()
    config.load(opts.config)

    loginit.initialize(propagate=True)
    elog = logging.getLogger('mailman.error')
    blog = logging.getLogger('mailman.bounce')

    listnames = set(opts.listnames or config.list_manager.names)
    who = tuple(opts.who)

    msg = _('[disabled by periodic sweep and cull, no message available]')
    today = time.mktime(time.localtime()[:3] + (0,) * 6)
    for listname in listnames:
        # List of members to notify
        notify = []
        mlist = MailList.MailList(listname)
        try:
            interval = mlist.bounce_you_are_disabled_warnings_interval
            # Find all the members who are currently bouncing and see if
            # they've reached the disable threshold but haven't yet been
            # disabled.  This is a sweep through the membership catching
            # situations where they've bounced a bunch, then the list admin
            # lowered the threshold, but we haven't (yet) seen more bounces
            # from the member.  Note: we won't worry about stale information
            # or anything else since the normal bounce processing code will
            # handle that.
            disables = []
            for member in mlist.getBouncingMembers():
                if mlist.getDeliveryStatus(member) <> MemberAdaptor.ENABLED:
                    continue
                info = mlist.getBounceInfo(member)
                if info.score >= mlist.bounce_score_threshold:
                    disables.append((member, info))
            if disables:
                for member, info in disables:
                    mlist.disableBouncingMember(member, info, msg)
            # Go through all the members who have delivery disabled, and find
            # those that are due to have another notification.  If they are
            # disabled for another reason than bouncing, and we're processing
            # them (because of the command line switch) then they won't have a
            # bounce info record.  We can piggyback on that for all disable
            # purposes.
            members = mlist.getDeliveryStatusMembers(who)
            for member in members:
                info = mlist.getBounceInfo(member)
                if not info:
                    # See if they are bounce disabled, or disabled for some
                    # other reason.
                    status = mlist.getDeliveryStatus(member)
                    if status == MemberAdaptor.BYBOUNCE:
                        elog.error(
                            '%s disabled BYBOUNCE lacks bounce info, list: %s',
                            member, mlist.internal_name())
                        continue
                    info = _BounceInfo(
                        member, 0, today,
                        mlist.bounce_you_are_disabled_warnings,
                        mlist.pend_new(Pending.RE_ENABLE,
                                       mlist.internal_name(),
                                       member))
                    mlist.setBounceInfo(member, info)
                lastnotice = time.mktime(info.lastnotice + (0,) * 6)
                if opts.force or today >= lastnotice + interval:
                    notify.append(member)
            # Now, send notifications to anyone who is due
            for member in notify:
                blog.info('Notifying disabled member %s for list: %s',
                          member, mlist.internal_name())
                try:
                    mlist.sendNextNotification(member)
                except Errors.NotAMemberError:
                    # There must have been some problem with the data we have
                    # on this member.  Most likely it's that they don't have a
                    # password assigned.  Log this and delete the member.
                    blog.info(
                        'NotAMemberError when sending disabled notice: %s',
                        member)
                    mlist.ApprovedDeleteMember(member, 'cron/disabled')
            mlist.Save()
        finally:
            mlist.Unlock()



if __name__ == '__main__':
    main()