summaryrefslogtreecommitdiff
path: root/src/mailman/mta/postfix.py
diff options
context:
space:
mode:
authorBarry Warsaw2009-10-18 21:48:52 -0400
committerBarry Warsaw2009-10-18 21:48:52 -0400
commit1bd649921b181c1f61083a04df0a9224d7164d0d (patch)
tree4f80b34b52f6dc5b9c2deabb4420d57931625891 /src/mailman/mta/postfix.py
parent34e27b816aa120e81a8e970ac1d8847384bd3edf (diff)
downloadmailman-1bd649921b181c1f61083a04df0a9224d7164d0d.tar.gz
mailman-1bd649921b181c1f61083a04df0a9224d7164d0d.tar.zst
mailman-1bd649921b181c1f61083a04df0a9224d7164d0d.zip
Diffstat (limited to 'src/mailman/mta/postfix.py')
-rw-r--r--src/mailman/mta/postfix.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mailman/mta/postfix.py b/src/mailman/mta/postfix.py
index d68c3d19b..4ddf444af 100644
--- a/src/mailman/mta/postfix.py
+++ b/src/mailman/mta/postfix.py
@@ -40,7 +40,7 @@ from zope.interface import implements
from mailman import Utils
from mailman.config import config
from mailman.interfaces.listmanager import IListManager
-from mailman.interfaces.mta import IMailTransportAgent
+from mailman.interfaces.mta import IMailTransportAgentAliases
from mailman.i18n import _
log = logging.getLogger('mailman.error')
@@ -56,10 +56,10 @@ SUBDESTINATIONS = (
class LMTP:
"""Connect Mailman to Postfix via LMTP."""
- implements(IMailTransportAgent)
+ implements(IMailTransportAgentAliases)
def create(self, mlist):
- """See `IMailTransportAgent`."""
+ """See `IMailTransportAgentAliases`."""
# Acquire a lock file to prevent other processes from racing us here.
with Lock(LOCKFILE):
# We can ignore the mlist argument because for LMTP delivery, we
@@ -69,7 +69,7 @@ class LMTP:
delete = create
def regenerate(self):
- """See `IMailTransportAgent`."""
+ """See `IMailTransportAgentAliases`."""
# Acquire a lock file to prevent other processes from racing us here.
with Lock(LOCKFILE):
self._do_write_file()