Patch Uploaded: #18238
AdamBondaruk has uploaded a patch.Description:Patch concerns https://imapx.codeplex.com/workitem/2778 issue (embedded attachments)Update the below function in BodyStructureParser.cs private void...
View ArticleNew Post: How to properly generates a Reply message from a message received...
Hi There, Thank you alot for your awesome library. I've a simple need, I just want to generate a Reply message from a message I've retrieved by IMapX. So that it can be properly associated to a Thread...
View ArticleNew Post: How to properly generates a Reply message from a message received...
There are a few things you'll need to do when constructing a reply:In the reply message, you'll want to prefix the Subject header with "Re: " if the prefix doesn't already exist in the message you are...
View ArticleNew Post: How to properly generates a Reply message from a message received...
Thank you jstedfast, This works pretty well! Anyway, I'm wondering how to append with the message history in the body as Gmail or Outlook does. I suppose, I'll need to manage that manually, dealing...
View ArticleNew Post: How to properly generates a Reply message from a message received...
Right, you can just do something like this:var quoted = new StringBuilder (); using (var reader = new StringReader (text)) { string line; while ((line = reader.ReadLine ()) != null) { quoted.Append...
View ArticleCreated Unassigned: MoveTo or CopyTo throws a NotSupportedException [2793]
Hi,While I'm developing an application based on Idle mechanics, I'm facing a strange behaviour.Once the message arrives through the handler OnNewMessage, when I try to __Move__, __Copy__ of even...
View ArticleCommented Unassigned: MoveTo or CopyTo throws a NotSupportedException [2793]
Hi,While I'm developing an application based on Idle mechanics, I'm facing a strange behaviour.Once the message arrives through the handler OnNewMessage, when I try to __Move__, __Copy__ of even...
View ArticleNew Post: ImapX 2.0.0.18
Hi Pavel, Thank you again for your good Library. Please have a look on this Issue, It expose synchronization problem on Multithreaded application when sending/receiving Message at the same time. Regards
View ArticleReviewed: ImapX 2.0.0.18 (mai 31, 2016)
Rated 4 Stars (out of 5) - Idle support still need to be stabilized. In some cases, it fails in multithreaded application on inner IOStream (SSL or Not). Except Idle mode which need to be finilized,...
View ArticleCreated Unassigned: Problem with file attachments AOL [2794]
I'm running an application for automating attachment download from particular senders, however am a little stuck at the beginning of actually downloading the files..below is the code so far written in...
View ArticleCreated Unassigned: Imapx Need to be Thread Safe! [2795]
Hi, __When invoking Flags.Add(..) or some other action such as Folder.Search() or MoveTo, A NotSupportedException is raised on...
View ArticleNew Post: Problem with message body
I get this instead of message body IMAPX261 OK UID FETCH completed
View ArticleNew Post: Get body after first using MessageFetchMode.Minimal to populate folder
This is what I have done that works Client.Behavior.AutoDownloadBodyOnAccess = TrueVB CODE For Each imapFolder In Client.Folders If (IsNothing(imapFolder) = False) Then If FetchLimit <> 0 Then...
View ArticleNew Post: Get body after first using MessageFetchMode.Minimal to populate folder
I noticed that sometimes I am getting text like this ") IMAPX33 OK UID FETCH completed" at the end of messages bodies even when using MessageFetchMode.Basic
View ArticleCreated Unassigned: Attachments with brackets in filenames [2796]
Hi,When an email contains attachments with brackets in file names then they are not recognized at all. Specially if file names contain only opening or closing bracket, like 'filename (123'txt'. Does...
View ArticleCreated Unassigned: message.BodyParts[0].Parameters Bug! [2797]
Hi, When a message is received with no attachment(s). message.BodyParts[0].Parameters collection is fully populated with message headers information (about 22).I can retrieve this way the 'message-id'...
View ArticleNew Post: Get body after first using MessageFetchMode.Minimal to populate folder
It looks like MessageContent.cs is using regex to try and extract the message content, but it's not working properly. Probably the IMAP server is putting the requested items in a different order than...
View ArticleCreated Unassigned: Attachment is sometimes corrupted with '* 41 EXISTS' [2799]
Weird thing !By retrieving dozens of mails, sometimes the attachment is corrupted !an additional header that does not belong to the file is on top of the file:```* 41...
View ArticleReviewed: ImapX 2.0.0.18 (juin 09, 2016)
Rated 3 Stars (out of 5) - Idle support still need to be stabilized. In some cases, it fails in multithreaded application on inner IOStream (SSL or Not). Except Idle mode which need to be finalized,...
View Article