Closed Unassigned: getting the error - 'An invalid character was found in the...
Dear All,Good DayI am using the latest version of the imapx dll in order to read the unread message from inbox using the below code:using(var client = new ImapClient("abc.def.com", 993, true, false)){...
View ArticleCreated Unassigned: Export section in the documentation doesn't exist [2766]
Hello,as the title already implies, my issue is that the "[Exporting Messages](https://imapx.codeplex.com/wikipage?title=Exporting%20messages&referringTitle=Documentation)"-section in the...
View ArticleCommented Unassigned: Trusted mail doesn't proccessed [2732]
Hello.I hava a problem with the download of mail. Some trusted mails can,t proccess. The library try to do but only increases the physical memory of cpu and destroy the server. I have a example mail. i...
View ArticleCommented Unassigned: Unable to get mail folders after successfull login on...
I am using this simple code to access the contents of an email via imap server:```ImapX.ImapClient m_ImapClient = new ImapX.ImapClient( ImapServerAddress, (int) ImapServerPort,...
View ArticleCreated Unassigned: Mark Email As Not Spam [2768]
Hi, Please how to mark emails as not spam using C# & IMAPXlike this picture from yahoo! web application
View ArticleNew Post: Adding a letter into the folder
How can i add a letter into the folder(Sent,for example).I wrote code,looking just like this snippet 'imapClient.Folder.Sent.AppendMessage(message);',but the folder was still empty.
View ArticleCreated Unassigned: The input is not a valid Base-64 string [2769]
Hi there!While downloading simple text message I get this exception: "The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal...
View ArticleNew Post: Adding a letter into the folder
Looking into the source code for AppendMessage(), it appears that the logic is broken if the message contains non-ascii text in the 8bit encoding (it should work fine if the 8bit text is base64 or...
View ArticleCommented Unassigned: The input is not a valid Base-64 string [2769]
Hi there!While downloading simple text message I get this exception: "The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal...
View ArticleNew Post: Mail properties are null
I managed to read mails using your library incl. body & attachments but basic mail properties (subject, from, to) are all null on the mail object. I initialize the client with following behaviors:...
View ArticleNew Post: Mail properties are null
The ImapX maintainer seems like he might be really swamped at work again because he's been pretty quiet on these forums the past few months, so I've been trying to help answer questions. Unfortunately,...
View ArticleNew Post: Mail properties are null
Thanks Jeff,MailKit is unfortunately not an option as we need .Net 3.5 support.I have evaluated couple libraries both open source and licensed software, and have decided to use Mail.dll from...
View ArticleNew Post: How get all messages from all folders?
Hi, i am using the latest build of ImapX, and i wanted to get messages and attachments from all folders That is my code, i can get all folders, but messages not. How to get messages?if...
View ArticleNew Post: How i can clear IEnumerable?
Hi, I downloaded all the messages and checked their attachment . They are filling RAM. I am called that code in threads. using (var client = new ImapClient(hostname, true)) { if (client.Connect( /*...
View ArticleNew Post: How get all messages from all folders?
Hi Ivan, there are multiple ways for fetching the messages. You can configure the client to always fetch the messages once you access Messages:client.Behavior.AutoPopulateFolderMessages = true; This is...
View ArticleNew Post: How i can clear IEnumerable?
Hi Ivan, currently there is no reliable way to clear the messages collection. I will provide an update shortly which will add a new method to the MessageCollection class. Greets, Pavel
View ArticleCommented Unassigned: Mark Email As Not Spam [2768]
Hi, Please how to mark emails as not spam using C# & IMAPXlike this picture from yahoo! web applicationComments: ** Comment from web user: pavel_azanov ** Hi,I could not find any documentation...
View ArticleEdited Unassigned: Mark Email As Not Spam [2768]
Hi, Please how to mark emails as not spam using C# & IMAPXlike this picture from yahoo! web application
View ArticleCommented Unassigned: Export section in the documentation doesn't exist [2766]
Hello,as the title already implies, my issue is that the "[Exporting Messages](https://imapx.codeplex.com/wikipage?title=Exporting%20messages&referringTitle=Documentation)"-section in the...
View ArticleNew Post: How to read the Message-ID property from an email?
Hi mattslay, you can use the Message.MessageId property. Greets, Pavel
View Article