How ccan I know if an email is signed without loading the message?
If I use a loop to read the emails in the folder:
IMail email = new MailBuilder().CreateFromEml(
imap.GetMessageByUID(uids[i]));
I can find with the property "isSigned" on IMail interface.
but in my case if I do not want to load all attachments and want a fast loop using the class MessageInfo:
List<MessageInfo> infos = imap.GetMessageInfoByUID(uids);
I can not know if the mail is signed.