diff options
author | msapiro <> | 2006-03-09 22:13:48 +0000 |
---|---|---|
committer | msapiro <> | 2006-03-09 22:13:48 +0000 |
commit | f1390d369ee2885ebc424ae848eb23f52db8d5c1 (patch) | |
tree | b7d566597cf1f8255bb0ea2c12d5a904f5771253 /bin/show_qfiles | |
parent | 3be589fc2d15a40f065ae06da28a94873ebc742e (diff) | |
download | mailman2-f1390d369ee2885ebc424ae848eb23f52db8d5c1.tar.gz mailman2-f1390d369ee2885ebc424ae848eb23f52db8d5c1.tar.xz mailman2-f1390d369ee2885ebc424ae848eb23f52db8d5c1.zip |
Fixed show_qfiles for case where queue entry contains an unparsed message.
Bug 1444447.
Diffstat (limited to 'bin/show_qfiles')
-rw-r--r-- | bin/show_qfiles | 23 |
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()) |