diff options
| author | Barry Warsaw | 2009-11-02 21:59:27 -0500 |
|---|---|---|
| committer | Barry Warsaw | 2009-11-02 21:59:27 -0500 |
| commit | f5f8eb69849264e2647c192963b6aeec97dd43ed (patch) | |
| tree | ba95236f769894b593dc9585cdfc2362d0aeb806 /src/mailman/mta/postfix.py | |
| parent | 9bd005cfcca26b9f02b96bba5076cd9e58421e98 (diff) | |
| parent | 1e8d8bfdb64968763a6a4fbd74ad912eb4c6c0b6 (diff) | |
| download | mailman-f5f8eb69849264e2647c192963b6aeec97dd43ed.tar.gz mailman-f5f8eb69849264e2647c192963b6aeec97dd43ed.tar.zst mailman-f5f8eb69849264e2647c192963b6aeec97dd43ed.zip | |
Merge smtp_direct.py rework branch.
Diffstat (limited to 'src/mailman/mta/postfix.py')
| -rw-r--r-- | src/mailman/mta/postfix.py | 8 |
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() |
