Hello Pavel, I found a problem in the last dll you sent me. Not bringing this message attachments. "Attachments.Count" always comes zero.
What I noticed is that if the message is only an attachment to property "Attachments.Count" is zero if the message has two attachments to property
"Attachments.Count" is equal to "1", if the message has attachments 3 "Attachments.Count" is equal to "2" and so on.
Or is this always losing the first attachment
foreach (ImapX.Message msg in Messages)
{
msg.Process ();
rowMSG ["Attachments"] = msg.Attachments.Count> 0? true: false;
}
Comments: ** Comment from web user: pavel_azanov **
What I noticed is that if the message is only an attachment to property "Attachments.Count" is zero if the message has two attachments to property
"Attachments.Count" is equal to "1", if the message has attachments 3 "Attachments.Count" is equal to "2" and so on.
Or is this always losing the first attachment
foreach (ImapX.Message msg in Messages)
{
msg.Process ();
rowMSG ["Attachments"] = msg.Attachments.Count> 0? true: false;
}
Comments: ** Comment from web user: pavel_azanov **
Good day!
thank you for the bug report! you're right, sometimes the attachments are not recognized as attachments and passed in a wrong way.
Your idea for the fix is reasonable, and I can include it as temporary solution. Actually I changed the handling of attachments and body parts completely in the new version, the release is coming next week.
Regards,
Pavel