[ mailman-Patches-1482427 ] Migration 2.0.5 to 2.1.5 bug + fix

SourceForge.net noreply at sourceforge.net
Fri May 5 13:57:21 CEST 2006


Patches item #1482427, was opened at 2006-05-05 13:57
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=300103&aid=1482427&group_id=103

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: configure/install
Group: Mailman 2.1
Status: Open
Resolution: None
Priority: 5
Submitted By: Markus Neteler (mneteler)
Assigned to: Nobody/Anonymous (nobody)
Summary: Migration 2.0.5 to 2.1.5 bug + fix

Initial Comment:
Hi,

we are happy mailman users for many years and
finally made the update yesterday. But there
was a detail which needs to be fixed:

## from 2.0.5 to
## mailman-2.1.5.1-34.rhel4.2

# modify in file /usr/lib/mailman/bin/dumpdb

        # BAW: this probably doesn't work if there are
mixed types of .db
        # files (i.e. some marshals, some bdbs).
        d = DumperSwitchboard().read(filename)

to

import marshal

...
        # BAW: this probably doesn't work if there are
mixed types of .db
        # files (i.e. some marshals, some bdbs).
        fp = open(filename)
        d = marshal.load(fp)
        fp.close()

Only then it will work (we were seeking for two hours
to figure out... :-)

This would solve this problem as well apparently:
 http://mail.python.org/pipermail/mailman-users/2005-February/042654.html

Kind regards

 Markus Neteler
 http://grass.itc.it


----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=300103&aid=1482427&group_id=103


More information about the Mailman-coders mailing list