I researched sources and my results:

file: dbmail-message.c
function: dbmail_message_free

if I comment block:

//      if (self->content) 
//              g_object_unref(self->content);

then, glibc error disappear and I can read mail.

I know, this is dirty hack, but it works...

Also, I modified file dm_imaputil.c :

void close_cache()
{
        if (cached_msg.dmsg) {
                dbmail_message_free(cached_msg.dmsg);
+                cached_msg.dmsg = NULL;
        }

        cached_msg.num = -1;



-- 
Oleg

Reply via email to