New Post: Search results from Gmail
Sorry Pavel. Thx, it's great ImapX Mabye many messages has a label. The target is get all messages from mailer-daemon, is right now using your code, and another step get all messages from mailer-daemon...
View ArticleNew Post: messaje.Seen = true isn't working properly :S
Hi! First, congrats for the lib, is really easy to use and get results very fast!, but I'm experience some problems while marking messages as read. I'm connecting to a zimbra mail server (version 8)...
View ArticleNew Post: message.Seen = true isn't working properly
I'm also seeing this behavior with a microsoft exchange server. I've tried the exact things you have hehe. It would be nice to see a fix for this, until then I'm going back to a previous version.
View ArticleNew Post: Search results from Gmail
Now, it fails for me when I try use OR operator like this: var messages = client.Folders.All.Search("FROM \"mailer-daemon@googlemail.com\"" + " OR (FROM \"MAILER-DAEMON@yahoo.com\")" + " OR (FROM...
View ArticleNew Post: message.Seen = true isn't working properly
Hi noivern, Phasze, the issue seems strange to me, I don't experience any issues (tested with GMail and hMailServer). Can you provide the dollowing information:Which flags are inside the Message.Flags...
View ArticleNew Post: Search results from Gmail
Hi kiquenet, try removing the surrounding braces. For your question about labels, you need to use the X-GM-RAW extension, then you can use the extended search syntax for GMail.var messages =...
View ArticleNew Post: message.Seen = true isn't working properly
Gmail works fine for me, it's only that exchange server that requires me to actually make two calls to get all the unseen messages and mark them seen. on the call <messages>.Download("UNSEEN"); I...
View ArticleNew Post: message.Seen = true isn't working properly
Hi Pavel! As you requested, here is the output:'JugandoConIMAP.vshost.exe' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_32\mscorlib\v4.0_4.0.0.0__b77a5c561934e089\mscorlib.dll'...
View ArticleNew Post: message.Seen = true isn't working properly
Hi noivern, Phasze, guess I figured out the problem. Please try the followng code to mark your message as seen:msg.Flags.Remove(MessageFlags.Recent); msg.Seen = true; If it works fine, I will provide a...
View ArticleNew Post: Together better
Just a bit of a status update on my end... I was curious what it would take to implement my own ImapClient (holy crap a lot of IMAP extensions have been published since I last worked on an IMAP...
View ArticleNew Post: message.Seen = true isn't working properly
Hi again, Pavel: Sorry the delay, weekend time :D, hope yours was fine too! Sadly, I just tried your suggestion with no luck :(msj.Flags.Remove(ImapX.Flags.MessageFlags.Recent); msj.Seen = true; The...
View ArticleNew Post: message.Seen = true isn't working properly
I also tried removing the Recent when I first saw it as well, but no luck.
View ArticleCreated Unassigned: Body.Text doesn't decode links correctly [1873]
Given this email:``` Welcome to the Fedarated Identity Repository using the The Internal Ducot Service service.Click this link, https://ducot.netdocuments.com/neWeb2/docCent.aspx?whr=CA%2DH3GSM67W, to...
View ArticleNew Post: Together better
I've been on a roll and ImapFolder is now almost fully implemented as well. At this rate I should have a fully functional IMAP client by the end of the week.
View ArticleNew Post: Search Query Help
I am trying to search likestring FromEmailAddress="anyemail@email.com"; folder.Search("FROM \"" + FromEmailAddress + "\"", ImapX.Enums.MessageFetchMode.Full); Its working well but slow if that email...
View ArticleNew Post: Saving Email Attachment Format
I am downloading .csv files and there is no newline character between lines. In the previous versions this worked (but it is losing the initial characters), now it is returning one long string. Can...
View ArticleNew Post: Search Query Help
I fixed my self in source code like as below in folder.csinternal long[] SearchMessageIds(string query = "ALL", int count = -1) { if (_client.SelectedFolder != this && !Select()) throw new...
View ArticleCommented Unassigned: Body.Text doesn't decode links correctly [1873]
Given this email:``` Welcome to the Fedarated Identity Repository using the The Internal Ducot Service service.Click this link, https://ducot.netdocuments.com/neWeb2/docCent.aspx?whr=CA%2DH3GSM67W, to...
View ArticleNew Post: System.FormatException while downloading messages
Hi Pavel, I've this issue: A first chance exception of type 'System.FormatException' occurred in System.dll the code is: I've tried several MessageFetchMode. If I use MessageFetchMode.Size it works,...
View ArticleNew Post: Re: System.FormatException while downloading messages
Hi, I've more information. The exception is raised in public static ContentType ParseContentType(string value) here is the value of the parameter: multipart/signed;...
View Article