Hello, i am stuck with an issue where i need to update a mail's subject from my .net code with the imapClient.
With the ewsClient i can use EwsMessageMetadata to update the message. With the imapClient the only way to do so seems to be to delete the current message and store the updated message.
This works BUT seems to give the newly stored message a new (higher) sequence-number; which is unwanted because i use ImapMessageSet-range to only get a specific range of e-mails. The updated/newly stored message will not show because it has a new sequence number which is ouside the bounds of the sequence-range at that time.
How to deal with this for imap?