aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bin/show_qfiles23
1 files changed, 22 insertions, 1 deletions
diff --git a/bin/show_qfiles b/bin/show_qfiles
index dba22cd6..0dbe9fe0 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())