Roundup Tracker - Issues

Message319

Author ber
Recipients
Date 2002-09-02.21:12:06
Message-id
In-reply-to
Somehow my reply mails vanish and do not get 
inserted properly into the messages list of issues.
I'm using 0.4.3 almost vanilla install with extended
template
and the bsddb3 backend and Python 2.1.3.

I've tracked the problem into mailgw.handle_message() 
and the following lines:

            if nodeid:
                # add the message to the node's list
                print "nodeid",nodeid
                print "message_id", message_id
                messages = cl.get(nodeid, 'messages')
                messages.append(message_id)
                props['messages'] = messages

further down:
            if nodeid:
                print "let's set",nodeid,props
                cl.set(nodeid, **props)
                print cl.get(nodeid,"messages")
later 
       # commit the changes to the DB
        self.db.commit()

The printed values are all fine and as expected. 
Still using the admin command (with the same user)
 I can see the value is missing from
"messages". Using the admin command I can easily add
and commit it.
Strange.
History
Date User Action Args
2009-02-03 14:20:03adminlinkissue603696 messages
2009-02-03 14:20:03admincreate