diff options
| -rw-r--r-- | Mailman/MTA/Postfix.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/MTA/Postfix.py b/Mailman/MTA/Postfix.py index 16b0c52fc..69021da91 100644 --- a/Mailman/MTA/Postfix.py +++ b/Mailman/MTA/Postfix.py @@ -95,14 +95,14 @@ def _addlist(mlist, fp): if mlist is None: return listname = mlist.internal_name() - fieldsz = len(listname) + len('-request') + fieldsz = len(listname) + len('-unsubscribe') # The text file entries get a little extra info print >> fp, '# STANZA START:', listname print >> fp, '# CREATED:', time.ctime(time.time()) # Now add all the standard alias entries for k, v in makealiases(listname): # Format the text file nicely - print >> fp, k + ':', ((fieldsz - len(k) + 1) * ' '), v + print >> fp, k + ':', ((fieldsz - len(k)) * ' ') + v # Finish the text file stanza print >> fp, '# STANZA END:', listname print >> fp |
