diff options
| author | Barry Warsaw | 2009-11-29 12:59:47 -0500 |
|---|---|---|
| committer | Barry Warsaw | 2009-11-29 12:59:47 -0500 |
| commit | 6ef7c220bbc76310ec951c960e7ab1323e0dcf24 (patch) | |
| tree | 15a1f511a98c3eba55f72d23766e12b0ae9911fd | |
| parent | 5cfcdd437814ca5cf95cb9df9ccaac751d979c7f (diff) | |
| download | mailman-6ef7c220bbc76310ec951c960e7ab1323e0dcf24.tar.gz mailman-6ef7c220bbc76310ec951c960e7ab1323e0dcf24.tar.zst mailman-6ef7c220bbc76310ec951c960e7ab1323e0dcf24.zip | |
| -rw-r--r-- | src/mailman/mta/postfix.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mailman/mta/postfix.py b/src/mailman/mta/postfix.py index df5419515..5866adb42 100644 --- a/src/mailman/mta/postfix.py +++ b/src/mailman/mta/postfix.py @@ -67,7 +67,11 @@ class LMTP: delete = create def regenerate(self, output=None): - """See `IMailTransportAgentAliases`.""" + """See `IMailTransportAgentAliases`. + + The format for Postfix's LMTP transport map is defined here: + http://www.postfix.org/transport.5.html + """ # Acquire a lock file to prevent other processes from racing us here. with Lock(LOCKFILE): # If output is a filename, open up a backing file and write the |
