diff options
| author | bwarsaw | 2002-01-12 03:55:31 +0000 |
|---|---|---|
| committer | bwarsaw | 2002-01-12 03:55:31 +0000 |
| commit | de77e8158509a0dfa14dcef0ad0601af79f0e04b (patch) | |
| tree | dc088c666bef543845ae708e90e9f9494a492244 | |
| parent | 09034ae1ae1c69a31c8bf73f42963b415757fdda (diff) | |
| download | mailman-de77e8158509a0dfa14dcef0ad0601af79f0e04b.tar.gz mailman-de77e8158509a0dfa14dcef0ad0601af79f0e04b.tar.zst mailman-de77e8158509a0dfa14dcef0ad0601af79f0e04b.zip | |
makealiases(): Apply patch by Jason Mastaler to fix SF bug #502419.
There was a missing quote in the aliases string.
| -rw-r--r-- | Mailman/MTA/Utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/MTA/Utils.py b/Mailman/MTA/Utils.py index 73b66d58a..a383d6815 100644 --- a/Mailman/MTA/Utils.py +++ b/Mailman/MTA/Utils.py @@ -1,4 +1,4 @@ -# Copyright (C) 2001 by the Free Software Foundation, Inc. +# Copyright (C) 2001,2002 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -47,7 +47,7 @@ def makealiases(listname): # # Seed this with the special cases. aliases = [(listname, '"|%s post %s"' % (wrapper, listname)), - (listname+'-admin', '"|%s bounces %s' % (wrapper, listname)), + (listname+'-admin', '"|%s bounces %s"' % (wrapper, listname)), ] for ext in ('bounces', 'join', 'leave', 'owner', 'request'): aliases.append(('%s-%s' % (listname, ext), |
