diff options
Diffstat (limited to 'src/mailman/handlers/to_outgoing.py')
| -rw-r--r-- | src/mailman/handlers/to_outgoing.py | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/mailman/handlers/to_outgoing.py b/src/mailman/handlers/to_outgoing.py index 3e68016e3..b9fae912c 100644 --- a/src/mailman/handlers/to_outgoing.py +++ b/src/mailman/handlers/to_outgoing.py @@ -22,18 +22,14 @@ posted to the list membership. Anything else that needs to go out to some recipient should just be placed in the out queue directly. """ -__all__ = [ - 'ToOutgoing', - ] - - +from mailman import public from mailman.config import config from mailman.core.i18n import _ from mailman.interfaces.handler import IHandler from zope.interface import implementer - +@public @implementer(IHandler) class ToOutgoing: """Send the message to the outgoing queue.""" |
