New Post: exception thrown on connection "dont connect"
aha. I found the error the host should be imap.gmail.com, and not imap.google.com. You might want to make note of that.
View ArticleNew Post: exception thrown on connection "dont connect"
Hi hank6764, Thank you for your message! This error occurs if the connection to the host cannot be established, which can be caused by wrong host name, server unavailability etc. The library isn't only...
View ArticleNew Post: Folder.AppendMessage hangs and does not return
Here is my code. What should I be doing? The call to append message hangs. static void CreateMessage(Folder value) { Message m = new Message(); MailAddress adr = new MailAddress("xxxxxxx",...
View ArticleNew Post: Folder.AppendMessage hangs and does not return
Hi Pavel, I found the bug in the code and have developed a work around. The issue is in sending the append request, via the current sendAndRecieve call that is part of the base library. Bellow is the...
View ArticleNew Post: CopyMessageToFolder
Thank you very much for creating such a valuable api. I just started using it and the only problem that I am having is that I can't get the method CopyMessageToFolder from the Folder.cs class to work....
View ArticleNew Post: CopyMessageToFolder
Hi raramuri, the CopyMessageToFolder method can only be used to copy messages from one standard folder to another. I guess you're using the library with a Gmail account, don't you? On GMail there are...
View ArticleNew Post: Folder.AppendMessage hangs and does not return
Hi hank6764, thank you really much for the code updates! I will take a closer look at it, and include your corrections. Best regards, Pavel Azanov
View ArticleNew Post: CopyMessageToFolder
Thanks for your reply Pavel, Yes, that's exactly what I'm using, a gmail account with google apps. That would be exactly what I need. I'm looking to be able to tag an email with a gmail label (after I...
View ArticleNew Post: CopyMessageToFolder
Okay, i'm going to update the source code in the next days, will let you know when the required changes are available!
View ArticleNew Post: Does ImapX support .NET Framework 2.0?
Hi mirror222, ImapX uses LINQ, which means the lowest supported .Net version is 3.5. If i'm not mistaken, there are some ways how you can compile code which uses LINQ on .Net 2.0, but this is an...
View ArticleNew Post: Imap search query with non ascii characters (gmail)
Hi. Im trying to search my inbox for a collection of e-mails using their subject name. unfortunately they contain some swedish characters which are not part of ascii. im guessing thats the cause since...
View ArticleNew Post: CopyMessageToFolder
Thank you so much Pavel, I am looking forward to the new code / dll !
View ArticleNew Post: Imap search query with non ascii characters (gmail)
Hi thesquig, i found a solution for this issue, the code update will be available on Wednesday (24th) and I will give you more details on how to use the search command with unicode queries. Best...
View ArticleNew Post: Imap search query with non ascii characters (gmail)
thats great, thx a lot! :)
View ArticleSource code checked in, #29157
- Removed class Imap, made ImapClient inherit ImapBase - Changed authentication handling to universal, added interface IImapCredentials to allow any custom authentication mechanisms - Added automated...
View ArticleNew Post: Imap search query with non ascii characters (gmail)
Good day, thesquig! i updated the code in the repository, it contains the changes needed to allow unicode search queries. The query Looks this way:var subject = "Bärtz"; ImapX.MessageCollection...
View ArticleSource code checked in, #29168
- Added direct access to all common folders. (e.g ImapClient.Folders.Inbox or ImapClient.Folders.Sent) Please note, this code isn't stable and fully tested
View Article