summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbwarsaw2002-02-23 06:20:09 +0000
committerbwarsaw2002-02-23 06:20:09 +0000
commit42b0a3962650b9648e54f6bba3fa385af1dca0fc (patch)
tree2071e05e0f6d8f064b33db4599304d8ea2c36240
parent9e1d760c8a9630e57d409c7aaa2b725c018b205e (diff)
downloadmailman-42b0a3962650b9648e54f6bba3fa385af1dca0fc.tar.gz
mailman-42b0a3962650b9648e54f6bba3fa385af1dca0fc.tar.zst
mailman-42b0a3962650b9648e54f6bba3fa385af1dca0fc.zip
-rw-r--r--Mailman/MTA/Postfix.py4
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