summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authormsapiro2006-03-09 22:14:10 +0000
committermsapiro2006-03-09 22:14:10 +0000
commitb2eb3106f06e848f51d0a4c0f546b4bd69586f66 (patch)
treeed2bf9a61202f44d4eb2f4d9af1fb25852ef0fed /bin
parent35856dd8252acad19eeb602ccdfd228cc977f102 (diff)
downloadmailman-b2eb3106f06e848f51d0a4c0f546b4bd69586f66.tar.gz
mailman-b2eb3106f06e848f51d0a4c0f546b4bd69586f66.tar.zst
mailman-b2eb3106f06e848f51d0a4c0f546b4bd69586f66.zip
Fixed show_qfiles for case where queue entry contains an unparsed message.
Bug 1444447.
Diffstat (limited to 'bin')
-rw-r--r--bin/show_qfiles23
1 files changed, 22 insertions, 1 deletions
diff --git a/bin/show_qfiles b/bin/show_qfiles
index dba22cd6c..0dbe9fe0b 100644
--- a/bin/show_qfiles
+++ b/bin/show_qfiles
@@ -1,4 +1,21 @@
#! @PYTHON@
+#
+# Copyright (C) 2006 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
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
+# USA.
"""Show the contents of one or more Mailman queue files.
@@ -64,7 +81,11 @@ def main():
fp = open(filename)
if filename.endswith(".pck"):
msg = load(fp)
- sys.stdout.write(msg.as_string())
+ data = load(fp)
+ if data.get('_parsemsg'):
+ sys.stdout.write(msg)
+ else:
+ sys.stdout.write(msg.as_string())
else:
sys.stdout.write(fp.read())