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
|
# Copyright (C) 1998,1999,2000,2001 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.
"""Shared mailman errors and messages."""
import Mailman.i18n
# exceptions for problems related to opening a list
class MMListError(Exception): pass
class MMUnknownListError(MMListError): pass
class MMCorruptListDatabaseError(MMListError): pass
class MMListNotReadyError(MMListError): pass
class MMListAlreadyExistsError(MMListError): pass
# XXX: These should be converted to new style class exceptions
MMBadUserError = "MMBadUserError"
# Exception hierarchy for various authentication failures, can be
# raised from functions in SecurityManager.py
class MMAuthenticationError(Exception): pass
class MMBadPasswordError(MMAuthenticationError): pass
class MMPasswordsMustMatch(MMAuthenticationError): pass
class MMCookieError(MMAuthenticationError): pass
class MMExpiredCookieError(MMCookieError): pass
class MMInvalidCookieError(MMCookieError): pass
MMMustDigestError = "MMMustDigestError"
MMCantDigestError = "MMCantDigestError"
MMNotAMemberError = "MMNotAMemberError"
MMNoSuchUserError = "MMNoSuchUserError"
MMNeedApproval = "MMNeedApproval"
MMSubscribeNeedsConfirmation = "MMSubscribeNeedsConfirmation"
MMBadConfirmation = "MMBadConfirmation"
MMAlreadyAMember = "MMAlreadyAMember"
MMAlreadyDigested = "MMAlreadyDigested"
MMAlreadyUndigested = "MMAlreadyUndigested"
MODERATED_LIST_MSG = "Moderated list"
IMPLICIT_DEST_MSG = "Implicit destination"
SUSPICIOUS_HEADER_MSG = "Suspicious header"
FORBIDDEN_SENDER_MSG = "Forbidden sender"
# New style class based exceptions. All the above errors should eventually be
# converted.
class MailmanError(Exception):
"""Base class for all Mailman exceptions."""
pass
class MMLoopingPost(MailmanError):
"""Post already went through this list!"""
pass
# Exception hierarchy for bad email address errors that can be raised from
# Utils.ValidateEmail()
class EmailAddressError(MailmanError):
"""Base class for email address validation errors."""
pass
class MMBadEmailError(EmailAddressError):
"""Email address is invalid (empty string or not fully qualified)."""
pass
class MMHostileAddress(EmailAddressError):
"""Email address has potentially hostile characters in it."""
pass
# Exceptions for admin request database
class LostHeldMessage(MailmanError):
"""Held message was lost."""
pass
# Exceptions for the Handler subsystem
class HandlerError(MailmanError):
"""Base class for all handler errors."""
class MessageHeld(HandlerError):
"""Base class for all message-being-held short circuits."""
def __str__(self):
return self.__class__.__doc__
# funky spelling is necessary to break import loops
rejection = Mailman.i18n._('Your message was rejected')
def rejection_notice(self, mlist):
return self.__class__.rejection
class DiscardMessage(HandlerError):
"""The message can be discarded with no further action"""
class SomeRecipientsFailed(HandlerError):
"""Delivery to some or all recipients failed"""
# multiple inheritance for backwards compatibility
class LoopError(DiscardMessage, MMLoopingPost):
"""We've seen this message before"""
|