aboutsummaryrefslogtreecommitdiffstats
path: root/Mailman/MTA
diff options
context:
space:
mode:
authorDavid Planella <david.planella@gmail.com>2008-11-22 21:32:49 +0100
committerDavid Planella <david.planella@gmail.com>2008-11-22 21:32:49 +0100
commit85aae3995be31a5f10cf65235f15038dbdcdb261 (patch)
tree38d0ed32dee807f463656fcb98cf579ce952fc6a /Mailman/MTA
parent9476341ddf99f5a5138c2dc81c84a797b2c81579 (diff)
parentf0d392172bb2400927948004d2dc66c264ca2aa5 (diff)
downloadmailman2-85aae3995be31a5f10cf65235f15038dbdcdb261.tar.gz
mailman2-85aae3995be31a5f10cf65235f15038dbdcdb261.tar.xz
mailman2-85aae3995be31a5f10cf65235f15038dbdcdb261.zip
Merged from upstream (lp:mailman/stable)
Upgraded the repository format with 'bzr upgrade'
Diffstat (limited to 'Mailman/MTA')
-rw-r--r--Mailman/MTA/Postfix.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/Mailman/MTA/Postfix.py b/Mailman/MTA/Postfix.py
index 33cb9a47..daa9692f 100644
--- a/Mailman/MTA/Postfix.py
+++ b/Mailman/MTA/Postfix.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2005 by the Free Software Foundation, Inc.
+# Copyright (C) 2001-2008 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
@@ -256,6 +256,7 @@ def _do_remove(mlist, textfile, virtualp):
filteroutp = False
start = '# STANZA START: ' + listname
end = '# STANZA END: ' + listname
+ oops = '# STANZA START: '
while 1:
line = infp.readline()
if not line:
@@ -270,6 +271,10 @@ def _do_remove(mlist, textfile, virtualp):
# Discard the trailing blank line, but don't worry if
# we're at the end of the file.
infp.readline()
+ elif line.startswith(oops):
+ # Stanza end must be missing - start writing from here.
+ filteroutp = False
+ outfp.write(line)
# Otherwise, ignore the line
else:
if line.strip() == start: