diff options
| author | J08nY | 2017-07-06 20:01:54 +0200 |
|---|---|---|
| committer | J08nY | 2017-08-30 13:18:40 +0200 |
| commit | 6b6818b65816c86c1b5dc8d68a64a530f8e8b321 (patch) | |
| tree | 8eeaeb9210138e0c5820bf1530159a09b7f18d07 /src/mailman/interfaces/subscriptions.py | |
| parent | ad00a2c4147a9dff633ac095a91ad31006cfc093 (diff) | |
| download | mailman-6b6818b65816c86c1b5dc8d68a64a530f8e8b321.tar.gz mailman-6b6818b65816c86c1b5dc8d68a64a530f8e8b321.tar.zst mailman-6b6818b65816c86c1b5dc8d68a64a530f8e8b321.zip | |
Diffstat (limited to 'src/mailman/interfaces/subscriptions.py')
| -rw-r--r-- | src/mailman/interfaces/subscriptions.py | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/src/mailman/interfaces/subscriptions.py b/src/mailman/interfaces/subscriptions.py index 40c66cb1f..4a82da096 100644 --- a/src/mailman/interfaces/subscriptions.py +++ b/src/mailman/interfaces/subscriptions.py @@ -78,33 +78,6 @@ class TokenOwner(Enum): @public -class SubscriptionConfirmationNeededEvent: - """Triggered when a subscription needs confirmation. - - Addresses must be verified before they can receive messages or post - to mailing list. The confirmation message is sent to the user when - this event is triggered. - """ - def __init__(self, mlist, token, email): - self.mlist = mlist - self.token = token - self.email = email - - -@public -class UnsubscriptionConfirmationNeededEvent: - """Triggered when an unsubscription request needs confirmation. - - The confirmation message is sent to the user when this event is - triggered. - """ - def __init__(self, mlist, token, email): - self.mlist = mlist - self.token = token - self.email = email - - -@public class ISubscriptionService(Interface): """General subscription services.""" |
