summaryrefslogtreecommitdiff
path: root/src/mailman/mta/null.py
diff options
context:
space:
mode:
authorBarry Warsaw2016-03-25 11:48:34 -0400
committerBarry Warsaw2016-03-25 11:48:34 -0400
commitca4259f4abd2802f87b86907c281a8b4cdb8150b (patch)
treecfac73fb29bb3edcc2cd83e54b7c9cc61b74d84e /src/mailman/mta/null.py
parent7fd9e5ab09b0da347da0607b47d2d3838bd80f0c (diff)
downloadmailman-ca4259f4abd2802f87b86907c281a8b4cdb8150b.tar.gz
mailman-ca4259f4abd2802f87b86907c281a8b4cdb8150b.tar.zst
mailman-ca4259f4abd2802f87b86907c281a8b4cdb8150b.zip
Diffstat (limited to 'src/mailman/mta/null.py')
-rw-r--r--src/mailman/mta/null.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/mailman/mta/null.py b/src/mailman/mta/null.py
index ba6adbbd5..165c5f0ee 100644
--- a/src/mailman/mta/null.py
+++ b/src/mailman/mta/null.py
@@ -20,16 +20,12 @@
Exim one example of an MTA that Just Works.
"""
-__all__ = [
- 'NullMTA',
- ]
-
-
+from mailman import public
from mailman.interfaces.mta import IMailTransportAgentLifecycle
from zope.interface import implementer
-
+@public
@implementer(IMailTransportAgentLifecycle)
class NullMTA:
"""Null MTA that just satisfies the interface."""