Cory Wright <[EMAIL PROTECTED]> writes: > I just had two messages come in from the same person using Groupwise > that is causing TMDA to bomb out:
Here's the information I got back from the Python email package developers: This is caused by the use of the default Generator with a message parsed by the HeaderParser. Generator flattens by looking at the Content-Type headers of the constituent parts. It expects to see a message object model that jives with the Content-Type headers. But your model doesn't because you've got a message/rfc822 content type with a string payload. So basically, "Groupwise" is generating broken MIME messages. You might want to have your friend check for a bugfix, and/or report the problem to Groupwise. _____________________________________________ tmda-users mailing list ([EMAIL PROTECTED]) http://tmda.net/lists/listinfo/tmda-users
