New Post: No Message Found
Thanks for the quick reply Pavel, I set AutoPopulateFolderMessages = True and tried getting the message count again, but the console then spun for a while and never returned a value or error. I tried...
View ArticleNew Post: No Message Found
And the answer is: I'm stupid. Forgot to declare my Imap.Message as an array, obviously. Still trying to get the search query to work, but I'll get back to you. Sorry to waste your time with my newb...
View ArticleNew Post: No Message Found
Hi Jacob_P, the search query is wrong, and a better approach here would be using the Folder.Search method instead of MessageCollection.Download. Here is the corrected version of your code:Dim imapSvr...
View ArticleNew Post: Problem connecting using mono
Hi Darren, thank you! I will check the mono version and if cannot reproduce the issue, will prepare a special sample application for you. Greets, Pavel
View ArticleNew Post: Problem connecting using mono
This may be an issue with SSL certificates. This may be useful: http://www.mono-project.com/FAQ:_Security
View ArticleNew Post: Problem connecting using mono
That's a good point! ImapX allows to bypass certificate validation, use the following code:// SSL, default port (993) for connection, disable certificate validation var client = new...
View ArticleNew Post: ImapX in VB.Net
I added the VB.Net sample application to latest code in the repository.
View ArticleNew Post: Unable to get body
Hi Pavel, any (good) news on body parser with my email sample?
View ArticleNew Post: Unable to get body
Hi Peter, yeah, your sample message was very useful! I nearly finished the update for the parser, so it's gonna be public in the next few days. The code update itself might be ready tonight, depends on...
View ArticleCommented Unassigned: Out of Memory Error on a select few emails when...
I've noticed when I download anymore than "None" for one email in my Gmail account I get an out of memory error. The only weird thing about the email is the email has an 12.7KB attachment that is...
View ArticleCommented Unassigned: Out of Memory Error on a select few emails when...
I've noticed when I download anymore than "None" for one email in my Gmail account I get an out of memory error. The only weird thing about the email is the email has an 12.7KB attachment that is...
View ArticleNew Post: message.Attachments sometimes is wrong
Hi Pavel,any news about the attachments issue ? I've provided the log in separated email. Please let me know :)best regards, Francesco2014-01-31 18:33 GMT+01:00 pavel_azanov <[email...
View ArticleCreated Unassigned: strange FETCH and UID in the Message.Body and...
Hi Pavel,when downloading messages from imap server i receive message.Body.Html such as:* 8 FETCH (<br>email test text<br> UID 9apparently the leading * 8 FETCH and trailing UID 9 shouldn't...
View ArticleNew Post: Unable to get body
That's great to hear. Keeping my fingers crossed to get your new build soon! :)
View ArticleNew Post: Error Getting Messages.Count() Object reference not set to an...
Hi there guys im having problemas getting the count of the messages of the infox heres is my code: ImapClient client = new ImapClient("imap.gmail.com", 993, true, true); bool connect =...
View ArticleNew Post: Error Getting Messages.Count() Object reference not set to an...
Hi rodolfolopes, I think the exception is thrown because the folders are not getting intialized. From your code above, I can say that you should check if the client has connected and authenticated....
View ArticleNew Post: message.Attachments sometimes is wrong
Hi agilesferlix, sorry for the delayed response, I received the log and took a look at it. Currently I'm preparing a new release whih should fix this problem. It's an issue within the...
View ArticleCommented Unassigned: strange FETCH and UID in the Message.Body and...
Hi Pavel,when downloading messages from imap server i receive message.Body.Html such as:* 8 FETCH (<br>email test text<br> UID 9apparently the leading * 8 FETCH and trailing UID 9 shouldn't...
View ArticleNew Post: Examine query
Hi JanEric, In the current version of the library, the Folder.Unseen property gives you the message sequence number of the first unseen message in the mailbox, and not the amount of unseen messages. I...
View Article