New Post: Is there any way to get a set amount of messages on the server?
You can use ProcessHeader() instead, which is a lighter-weight call to retrieve basic information (such as the sent and received timestamps) about the message. However, (to the best of my knowledge)...
View ArticleNew Post: Is there any way to get a set amount of messages on the server?
Good day! Sorry for the delay, been busy with daily work these days. The LINQ query is currently being done on the client side, which means first all messages will be downloaded, and then you do the...
View ArticleNew Post: Save Mail Message to Draft folder
Hi pavel_azanov, This is my code.. Folder toFolder = gmailFolders["Drafts"]; bool s = toFolder.AppendMessage(msgToUpload,ImapFlags.DRAFT); this is not work properly...
View ArticleNew Post: ISO 8859-1 Encoding and umlauts
Hello Wolfgang, I managed to fix the issue, the updated code will be available this weekend. Kind regards, Pavel Azanov
View ArticleNew Post: Save Mail Message to Draft folder
Hi tharush, currently there are reported bugs on AppendMessage with messages which contain attachments. If you experience other kind of issue, please provide more details. You can also try the latest...
View ArticleNew Post: Marking message as unread
Hi pavel_azanov, Whether this has been fixed in the current version. Why because it doesn't worked for me msg.RemoveFlag("UNSEEN"); msg.AddFlag("SEEN"); whether i am correct Pls Help me, how to...
View ArticleNew Post: Marking message as unread
Your code seems to be marking the message as read, not unread. I think you want to remove the "SEEN" flag and add the "UNSEEN" flag. --Ravi
View ArticleNew Post: Marking message as unread
Hi Ravi, Actually i am going to get the unread mails and after i have to make it as read mails I follow both the steps msg.RemoveFlag("UNSEEN"); But it doesn't get updated. Jayakumar
View ArticleNew Post: Marking message as unread
Hi Jayakumar, just read my second post in this thread carefully. The flag UNSEEN doesn't exist (see constants in ImapFlags), so has no effect. Every read message will have the SEEN flag set, so to mark...
View ArticleNew Post: Marking message as unread
Hi Pavel, Thanks a lot , It has worked out well. I thought that while searching the unread messages we use "UNSEEN" so i followed that. Jayakumar
View ArticleSource code checked in, #31005
- Changed target framework to .Net 4.0 - Restored support for Mono
View ArticleNew Post: ISO 8859-1 Encoding and umlauts
Hi Pavel, that's good news. How did you fix it? From what I saw, ImapX uses a StreamReader that needs to know the encoding right when it's created and it's not yet known what encoding the email will...
View ArticleNew Post: ISO 8859-1 Encoding and umlauts
Hi Wolfgang, Over the past months I have completely rewritten the library from scratch, changing the way of how the messages are requested completely. Now, every part of the message can be downloaded...
View ArticleCreated 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 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 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 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 Article