Hi
I'm using your library and I'm very satisfied - good job.
I'm using Assembly Mail, Version=3.0.18307.847, Culture=neutral, PublicKeyToken=6dc438ab78a525b3
Unfortunately I have problems with the Office365-Imap and Flagged/Unflagged.
// NOT working
imap.FlagMessageByUID(uid, new Flag("\\Flagged"));
imap.Search(Expression.HasFlag(new Flag("\\Flagged")));
// this is working
imap.FlagMessageByUID(uid, new Flag("\\Unseen"));
imap.Search(Expression.HasFlag(new Flag("\\Unseen")));
Only any other Imap-Servers the code above is working with all flags, but not on Office365-Imap. With an Office365-Imap all flags working EXCEPT Flagged/Unflagged.
Do you have an explanation about this situation?
Thank you for any hint.
Jürg