summaryrefslogtreecommitdiff
path: root/src/mailman/mta/null.py
diff options
context:
space:
mode:
authorBarry Warsaw2011-06-10 19:52:25 -0400
committerBarry Warsaw2011-06-10 19:52:25 -0400
commitf8596ce463863dc6defb5dac84f5b226c45cb419 (patch)
tree616e2f0d952d1654d3b0b60d661f5349d469acf4 /src/mailman/mta/null.py
parentbf8b285acb8c2500e52ae2582f27513b9842de54 (diff)
downloadmailman-f8596ce463863dc6defb5dac84f5b226c45cb419.tar.gz
mailman-f8596ce463863dc6defb5dac84f5b226c45cb419.tar.zst
mailman-f8596ce463863dc6defb5dac84f5b226c45cb419.zip
Diffstat (limited to 'src/mailman/mta/null.py')
-rw-r--r--src/mailman/mta/null.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mailman/mta/null.py b/src/mailman/mta/null.py
index 0afda5fec..c69fb3207 100644
--- a/src/mailman/mta/null.py
+++ b/src/mailman/mta/null.py
@@ -29,23 +29,23 @@ __all__ = [
from zope.interface import implements
-from mailman.interfaces.mta import IMailTransportAgentAliases
+from mailman.interfaces.mta import IMailTransportAgentLifecycle
class NullMTA:
"""Null MTA that just satisfies the interface."""
- implements(IMailTransportAgentAliases)
+ implements(IMailTransportAgentLifecycle)
def create(self, mlist):
- """See `IMailTransportAgentAliases`."""
+ """See `IMailTransportAgentLifecycle`."""
pass
def delete(self, mlist):
- """See `IMailTransportAgentAliases`."""
+ """See `IMailTransportAgentLifecycle`."""
pass
def regenerate(self, output=None):
- """See `IMailTransportAgentAliases`."""
+ """See `IMailTransportAgentLifecycle`."""
pass