<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for HelloWebApps</title>
	<atom:link href="http://hellowebapps.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://hellowebapps.com</link>
	<description>We are doing magic. And software development.</description>
	<lastBuildDate>Thu, 08 Dec 2011 17:11:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on ImapX &#8211; free for use .NET library by it is possible get email list using imapX? &#124; appsgoogleplus.com</title>
		<link>http://hellowebapps.com/products/imapx/comment-page-5/#comment-7011</link>
		<dc:creator>it is possible get email list using imapX? &#124; appsgoogleplus.com</dc:creator>
		<pubDate>Thu, 08 Dec 2011 17:11:23 +0000</pubDate>
		<guid isPermaLink="false">http://hellowebapps.com/?page_id=78#comment-7011</guid>
		<description>[...] downloaded the ImapX library and I need know it is possible get email list using imapx? if not, what is the best quick [...]</description>
		<content:encoded><![CDATA[<p>[...] downloaded the ImapX library and I need know it is possible get email list using imapx? if not, what is the best quick [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ImapX &#8211; free for use .NET library by mohammad iliyash</title>
		<link>http://hellowebapps.com/products/imapx/comment-page-5/#comment-6502</link>
		<dc:creator>mohammad iliyash</dc:creator>
		<pubDate>Mon, 18 Jul 2011 11:01:42 +0000</pubDate>
		<guid isPermaLink="false">http://hellowebapps.com/?page_id=78#comment-6502</guid>
		<description>Hello,
I want to use IMAPX dll For business use.If  need licence to use this DLL or it is free to use.</description>
		<content:encoded><![CDATA[<p>Hello,<br />
I want to use IMAPX dll For business use.If  need licence to use this DLL or it is free to use.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ImapX &#8211; free for use .NET library by Alex</title>
		<link>http://hellowebapps.com/products/imapx/comment-page-5/#comment-5726</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Sat, 28 May 2011 00:00:27 +0000</pubDate>
		<guid isPermaLink="false">http://hellowebapps.com/?page_id=78#comment-5726</guid>
		<description>I have the same problem..
Any ideas how to fix this???

&lt;blockquote cite=&quot;Qnavry&quot;&gt;
&lt;cite&gt;Qnavry&lt;/cite&gt;
I am using the Code below to read unread messages and then process them(Save to a HD) if they have an attachment. This works fine if the email is sent in Plain Text format, but if it is HTML it does not show the attachment.  Any ideas how to fix this?
Thanks  
EmailConnector msg = new EmailConnector();
            msg.Connect(“xxx@xxx.com”,”pwd”);
           ImapX.MessageCollection messages =  msg.GetNewMessages(“INBOX”);
           for(int i = 0;i &lt; messages.Count;i++)
           {
                CommonLib.Message email = new CommonLib.Message();
                //messages[i].ProcessBody();
                email.Subject = messages[i].Subject.ToString();
                email.Body = messages[i].TextBody.TextData;
                email.Date = messages[i].Date;
                email.From = messages[i].From.ToString();
                for (int x = 0; x &lt; messages[i].Attachments.Count; x++)
                {
                    email.AttachmentFileName = messages[i].Attachments[x].FileName.ToString().Remove(messages[i].Attachments[x].FileName.ToString().IndexOf(&quot;;&quot;) -1);
                    email.Attachment = messages[i].Attachments[x].FileData;
                    ProcessRules(email);
               }
&lt;/blockquote&gt;</description>
		<content:encoded><![CDATA[<p>I have the same problem..<br />
Any ideas how to fix this???</p>
<blockquote cite="Qnavry"><p>
<cite>Qnavry</cite><br />
I am using the Code below to read unread messages and then process them(Save to a HD) if they have an attachment. This works fine if the email is sent in Plain Text format, but if it is HTML it does not show the attachment.  Any ideas how to fix this?<br />
Thanks<br />
EmailConnector msg = new EmailConnector();<br />
            msg.Connect(“xxx@xxx.com”,”pwd”);<br />
           ImapX.MessageCollection messages =  msg.GetNewMessages(“INBOX”);<br />
           for(int i = 0;i &lt; messages.Count;i++)<br />
           {<br />
                CommonLib.Message email = new CommonLib.Message();<br />
                //messages[i].ProcessBody();<br />
                email.Subject = messages[i].Subject.ToString();<br />
                email.Body = messages[i].TextBody.TextData;<br />
                email.Date = messages[i].Date;<br />
                email.From = messages[i].From.ToString();<br />
                for (int x = 0; x &lt; messages[i].Attachments.Count; x++)<br />
                {<br />
                    email.AttachmentFileName = messages[i].Attachments[x].FileName.ToString().Remove(messages[i].Attachments[x].FileName.ToString().IndexOf(&#8220;;&#8221;) -1);<br />
                    email.Attachment = messages[i].Attachments[x].FileData;<br />
                    ProcessRules(email);<br />
               }
</p></blockquote>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ImapX &#8211; free for use .NET library by Alex</title>
		<link>http://hellowebapps.com/products/imapx/comment-page-5/#comment-5725</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Fri, 27 May 2011 23:59:40 +0000</pubDate>
		<guid isPermaLink="false">http://hellowebapps.com/?page_id=78#comment-5725</guid>
		<description>I have the same problem.. 

&lt;blockquote cite=&quot;Scott Sommerfeldt&quot;&gt;
&lt;cite&gt;Scott Sommerfeldt&lt;/cite&gt;
this mist be simple but I am missing something here.
All I want to do is Login to a gmail account … iterate through the Unread emails and Delete them after they have been processed.  Is this possible. here is my code… I cannot get the message to delete … PLEASE HELP
//===========================================
  ImapX.ImapClient client = new ImapX.ImapClient(“imap.gmail.com”, 993, true);
            client.IsDebug = true;
            bool result = false;
            result = client.Connection();
            if (result)
                Console.WriteLine(“@Connected”);
            result = client.LogIn(“XXXMyGMAILADDRESS@gmail.com”, “XXXMYPASSWORD”);
            if (result)
            {
                Console.WriteLine(“@Logged in”);
            }
            //==========================================================
            var emailsInInbox = client.Folders[&quot;INBOX&quot;].Messages.ToList();
            //Process the required details (otherwise sorting by dateis not possible)
            emailsInInbox.ForEach(mail =&gt; mail.ProcessFlags());
            emailsInInbox.ForEach(mail =&gt; mail.ProcessHeader());
            //Remove all messages which are marked as SEEN
            emailsInInbox = emailsInInbox.Where(message =&gt; !message.Flags.Contains(ImapFlags.SEEN)).ToList();
            foreach (ImapX.Message m in emailsInInbox)
            {
                m.Process();
                //List attachments = m.Attachments;
                string textBody = m.TextBody.TextData;
                string htmlBody = m.HtmlBody.TextData;
                // Parse and process the HTML Body
                // Mark the Email as Seen
                // Note this doesn’t work  when debugging it says the Inbox is Read-only
                m.SetFlag(ImapX.ImapFlags.DELETED);
            }
            //Close the client connection
            client.LogOut();
&lt;/blockquote&gt;</description>
		<content:encoded><![CDATA[<p>I have the same problem.. </p>
<blockquote cite="Scott Sommerfeldt"><p>
<cite>Scott Sommerfeldt</cite><br />
this mist be simple but I am missing something here.<br />
All I want to do is Login to a gmail account … iterate through the Unread emails and Delete them after they have been processed.  Is this possible. here is my code… I cannot get the message to delete … PLEASE HELP<br />
//===========================================<br />
  ImapX.ImapClient client = new ImapX.ImapClient(“imap.gmail.com”, 993, true);<br />
            client.IsDebug = true;<br />
            bool result = false;<br />
            result = client.Connection();<br />
            if (result)<br />
                Console.WriteLine(“@Connected”);<br />
            result = client.LogIn(“XXXMyGMAILADDRESS@gmail.com”, “XXXMYPASSWORD”);<br />
            if (result)<br />
            {<br />
                Console.WriteLine(“@Logged in”);<br />
            }<br />
            //==========================================================<br />
            var emailsInInbox = client.Folders["INBOX"].Messages.ToList();<br />
            //Process the required details (otherwise sorting by dateis not possible)<br />
            emailsInInbox.ForEach(mail =&gt; mail.ProcessFlags());<br />
            emailsInInbox.ForEach(mail =&gt; mail.ProcessHeader());<br />
            //Remove all messages which are marked as SEEN<br />
            emailsInInbox = emailsInInbox.Where(message =&gt; !message.Flags.Contains(ImapFlags.SEEN)).ToList();<br />
            foreach (ImapX.Message m in emailsInInbox)<br />
            {<br />
                m.Process();<br />
                //List attachments = m.Attachments;<br />
                string textBody = m.TextBody.TextData;<br />
                string htmlBody = m.HtmlBody.TextData;<br />
                // Parse and process the HTML Body<br />
                // Mark the Email as Seen<br />
                // Note this doesn’t work  when debugging it says the Inbox is Read-only<br />
                m.SetFlag(ImapX.ImapFlags.DELETED);<br />
            }<br />
            //Close the client connection<br />
            client.LogOut();
</p></blockquote>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ImapX &#8211; free for use .NET library by Nikita</title>
		<link>http://hellowebapps.com/products/imapx/comment-page-5/#comment-5558</link>
		<dc:creator>Nikita</dc:creator>
		<pubDate>Tue, 17 May 2011 15:50:05 +0000</pubDate>
		<guid isPermaLink="false">http://hellowebapps.com/?page_id=78#comment-5558</guid>
		<description>My apologies. mes.SetFlag(ImapFlags.SEEN) works. Please remove this question from my last post</description>
		<content:encoded><![CDATA[<p>My apologies. mes.SetFlag(ImapFlags.SEEN) works. Please remove this question from my last post</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ImapX &#8211; free for use .NET library by Nikita</title>
		<link>http://hellowebapps.com/products/imapx/comment-page-5/#comment-5557</link>
		<dc:creator>Nikita</dc:creator>
		<pubDate>Tue, 17 May 2011 15:37:22 +0000</pubDate>
		<guid isPermaLink="false">http://hellowebapps.com/?page_id=78#comment-5557</guid>
		<description>Hi. First of all I want to say thanks for your library.
I have a few questions:
- How can I get all unreaded messages from some folder?
  This code returns NullReferenceException
             Folder folder = client.Folders[&quot;SomeLabel&quot;];
             MessageCollection mc = folder.CheckNewMessage(true);
- How can I mark message as &quot;read&quot;? The code below doesnt work.
             mes.SetFlag(ImapFlags.SEEN);
- What can I put into &quot;path&quot; param in the Folder.Search method exept &quot;ALL&quot;?</description>
		<content:encoded><![CDATA[<p>Hi. First of all I want to say thanks for your library.<br />
I have a few questions:<br />
- How can I get all unreaded messages from some folder?<br />
  This code returns NullReferenceException<br />
             Folder folder = client.Folders["SomeLabel"];<br />
             MessageCollection mc = folder.CheckNewMessage(true);<br />
- How can I mark message as &#8220;read&#8221;? The code below doesnt work.<br />
             mes.SetFlag(ImapFlags.SEEN);<br />
- What can I put into &#8220;path&#8221; param in the Folder.Search method exept &#8220;ALL&#8221;?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ImapX &#8211; free for use .NET library by Tibbie</title>
		<link>http://hellowebapps.com/products/imapx/comment-page-5/#comment-5468</link>
		<dc:creator>Tibbie</dc:creator>
		<pubDate>Sun, 15 May 2011 13:22:45 +0000</pubDate>
		<guid isPermaLink="false">http://hellowebapps.com/?page_id=78#comment-5468</guid>
		<description>BION I&#039;m imperssed! Cool post!</description>
		<content:encoded><![CDATA[<p>BION I&#8217;m imperssed! Cool post!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Producing JSON from Entity Framework 4.0 generated classes by dave</title>
		<link>http://hellowebapps.com/2010-09-26/producing-json-from-entity-framework-4-0-generated-classes/comment-page-1/#comment-5335</link>
		<dc:creator>dave</dc:creator>
		<pubDate>Tue, 10 May 2011 01:41:54 +0000</pubDate>
		<guid isPermaLink="false">http://hellowebapps.com/?p=518#comment-5335</guid>
		<description>Is there a link to the correct source code?  thx</description>
		<content:encoded><![CDATA[<p>Is there a link to the correct source code?  thx</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ImapX &#8211; free for use .NET library by Gothrek</title>
		<link>http://hellowebapps.com/products/imapx/comment-page-5/#comment-5328</link>
		<dc:creator>Gothrek</dc:creator>
		<pubDate>Mon, 09 May 2011 09:04:43 +0000</pubDate>
		<guid isPermaLink="false">http://hellowebapps.com/?page_id=78#comment-5328</guid>
		<description>naturally i try to  use this before getfolders:
Dim cartelle As ImapX.FolderCollection = client.Folders
and i receive the same exception error.
I read in some post about this error and u say download the new version. I think have the last version.

tks for help</description>
		<content:encoded><![CDATA[<p>naturally i try to  use this before getfolders:<br />
Dim cartelle As ImapX.FolderCollection = client.Folders<br />
and i receive the same exception error.<br />
I read in some post about this error and u say download the new version. I think have the last version.</p>
<p>tks for help</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ImapX &#8211; free for use .NET library by Gothrek</title>
		<link>http://hellowebapps.com/products/imapx/comment-page-5/#comment-5327</link>
		<dc:creator>Gothrek</dc:creator>
		<pubDate>Mon, 09 May 2011 08:54:10 +0000</pubDate>
		<guid isPermaLink="false">http://hellowebapps.com/?page_id=78#comment-5327</guid>
		<description>Hi,
when i try to getfolders i receive an error about matrix limits
my connection is true, my login is sucessfull if i want simple know how many dirs the mailbox have client.getfolders.count i receive the message
(i use a private imap service not google)

tks for help</description>
		<content:encoded><![CDATA[<p>Hi,<br />
when i try to getfolders i receive an error about matrix limits<br />
my connection is true, my login is sucessfull if i want simple know how many dirs the mailbox have client.getfolders.count i receive the message<br />
(i use a private imap service not google)</p>
<p>tks for help</p>
]]></content:encoded>
	</item>
</channel>
</rss>

