|
in my example program the call of GetMessage() set's always the seen-flag on message that is download. How can i avoid this? oImap.GetMessage(oMessageInfo.UniqueId, srMsgMemStream) I've already sent you the logfile per email. |
|
By default, Rebex IMAP marks messages as Seen (that's what read messages are called in IMAP) when you call This behavior can be disabled using `UsePeekForGetMessage` option: C#:
VB.NET:
(where "client" is an instance of "Imap" object) |