<?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 on: cfpop and gmail</title>
	<atom:link href="http://www.anujgakhar.com/2008/05/18/cfpop-and-gmail/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.anujgakhar.com/2008/05/18/cfpop-and-gmail/</link>
	<description>Anuj @ ColdFusion, Flex and some more....</description>
	<lastBuildDate>Wed, 10 Mar 2010 09:31:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Tom</title>
		<link>http://www.anujgakhar.com/2008/05/18/cfpop-and-gmail/comment-page-1/#comment-3553</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Sun, 31 Jan 2010 02:14:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.anujgakhar.com/?p=132#comment-3553</guid>
		<description>Works like a charm. Thanks!</description>
		<content:encoded><![CDATA[<p>Works like a charm. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tafazul Gani</title>
		<link>http://www.anujgakhar.com/2008/05/18/cfpop-and-gmail/comment-page-1/#comment-3465</link>
		<dc:creator>Tafazul Gani</dc:creator>
		<pubDate>Tue, 01 Dec 2009 02:23:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.anujgakhar.com/?p=132#comment-3465</guid>
		<description>Hi guys,

I keep getting the error javax.mail.internet.MimeMultipart@ade348 for some emails. There are no attachments or content displayed when this happends. 

Anyone knows any work around for this.. 

Please assit, really need a work around urgently</description>
		<content:encoded><![CDATA[<p>Hi guys,</p>
<p>I keep getting the error javax.mail.internet.MimeMultipart@ade348 for some emails. There are no attachments or content displayed when this happends. </p>
<p>Anyone knows any work around for this.. </p>
<p>Please assit, really need a work around urgently</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CFPOP and SSL &#124; The Thinking Lemur</title>
		<link>http://www.anujgakhar.com/2008/05/18/cfpop-and-gmail/comment-page-1/#comment-3278</link>
		<dc:creator>CFPOP and SSL &#124; The Thinking Lemur</dc:creator>
		<pubDate>Tue, 07 Apr 2009 11:06:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.anujgakhar.com/?p=132#comment-3278</guid>
		<description>[...] for work arounds for this but the simplest and quite elegant solution is the one provided by Anuj Gakhar. This solution uses the underlying Java pop service which does support SSL. [...]</description>
		<content:encoded><![CDATA[<p>[...] for work arounds for this but the simplest and quite elegant solution is the one provided by Anuj Gakhar. This solution uses the underlying Java pop service which does support SSL. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Borbor</title>
		<link>http://www.anujgakhar.com/2008/05/18/cfpop-and-gmail/comment-page-1/#comment-3223</link>
		<dc:creator>Michael Borbor</dc:creator>
		<pubDate>Sat, 21 Mar 2009 02:05:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.anujgakhar.com/?p=132#comment-3223</guid>
		<description>Hi Anuj, I was trying to get to my gmail account, but there&#039;s an additional pickle my internet connection is behind a proxy, maybe you can point to a solution where I can configure cf to route the Pop3 through the Proxy?

Thanks.</description>
		<content:encoded><![CDATA[<p>Hi Anuj, I was trying to get to my gmail account, but there&#8217;s an additional pickle my internet connection is behind a proxy, maybe you can point to a solution where I can configure cf to route the Pop3 through the Proxy?</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fabian</title>
		<link>http://www.anujgakhar.com/2008/05/18/cfpop-and-gmail/comment-page-1/#comment-3052</link>
		<dc:creator>Fabian</dc:creator>
		<pubDate>Sun, 09 Nov 2008 16:42:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.anujgakhar.com/?p=132#comment-3052</guid>
		<description>Hi Anuj,

Just for the rest of us, in response to my question to turn it off, this is how I made it work:



javaSystem = createObject(&quot;java&quot;, &quot;java.lang.System&quot;);
javaSystemProps = javaSystem.getProperties();
		
//SSL Needed.
if(SSL){
				javaSystemProps.setProperty(&quot;mail.pop3.socketFactory.class&quot;,&quot;javax.net.ssl.SSLSocketFactory&quot;);
				javaSystemProps.setProperty(&quot;mail.pop3.socketFactory.fallback&quot;,&quot;true&quot;);

)

//TURN SSL OFF
else{
				javaSystemProps.setProperty(&quot;mail.pop3.socketFactory.class&quot;,&quot;&quot;);
}


That works! :)

Fabian</description>
		<content:encoded><![CDATA[<p>Hi Anuj,</p>
<p>Just for the rest of us, in response to my question to turn it off, this is how I made it work:</p>
<p>javaSystem = createObject(&#8220;java&#8221;, &#8220;java.lang.System&#8221;);<br />
javaSystemProps = javaSystem.getProperties();</p>
<p>//SSL Needed.<br />
if(SSL){<br />
				javaSystemProps.setProperty(&#8220;mail.pop3.socketFactory.class&#8221;,&#8221;javax.net.ssl.SSLSocketFactory&#8221;);<br />
				javaSystemProps.setProperty(&#8220;mail.pop3.socketFactory.fallback&#8221;,&#8221;true&#8221;);</p>
<p>)</p>
<p>//TURN SSL OFF<br />
else{<br />
				javaSystemProps.setProperty(&#8220;mail.pop3.socketFactory.class&#8221;,&#8221;");<br />
}</p>
<p>That works! <img src='http://www.anujgakhar.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Fabian</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anuj Gakhar</title>
		<link>http://www.anujgakhar.com/2008/05/18/cfpop-and-gmail/comment-page-1/#comment-3049</link>
		<dc:creator>Anuj Gakhar</dc:creator>
		<pubDate>Sun, 09 Nov 2008 11:16:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.anujgakhar.com/?p=132#comment-3049</guid>
		<description>@Michael, sorry for the late reply. Are you still having this problem or did you manage to sort it out?</description>
		<content:encoded><![CDATA[<p>@Michael, sorry for the late reply. Are you still having this problem or did you manage to sort it out?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://www.anujgakhar.com/2008/05/18/cfpop-and-gmail/comment-page-1/#comment-3035</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Fri, 31 Oct 2008 02:51:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.anujgakhar.com/?p=132#comment-3035</guid>
		<description>Hey Anuj,

I&#039;m running into a 

An exception occurred when setting up mail server parameters.
This exception was caused by: javax.mail.MessagingException: Connect failed; nested exception is: javax.net.ssl.SSLException: untrusted server cert chain.

while trying this. Any idea what I&#039;m lacking ?</description>
		<content:encoded><![CDATA[<p>Hey Anuj,</p>
<p>I&#8217;m running into a </p>
<p>An exception occurred when setting up mail server parameters.<br />
This exception was caused by: javax.mail.MessagingException: Connect failed; nested exception is: javax.net.ssl.SSLException: untrusted server cert chain.</p>
<p>while trying this. Any idea what I&#8217;m lacking ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anuj Gakhar</title>
		<link>http://www.anujgakhar.com/2008/05/18/cfpop-and-gmail/comment-page-1/#comment-2999</link>
		<dc:creator>Anuj Gakhar</dc:creator>
		<pubDate>Thu, 09 Oct 2008 08:22:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.anujgakhar.com/?p=132#comment-2999</guid>
		<description>@Fabian, good question. Honestly, I havent tried doing that. I would imagine that in the case of a non-SSL mail, you would have to turn it off as it changes the ports that are specific to gmail alone. And since its telling the socketFactory to use the ssl , that will need to change as well. So, I assume this will either have to be turned off or used with the correct values for another mail provider.

Hope that helps.</description>
		<content:encoded><![CDATA[<p>@Fabian, good question. Honestly, I havent tried doing that. I would imagine that in the case of a non-SSL mail, you would have to turn it off as it changes the ports that are specific to gmail alone. And since its telling the socketFactory to use the ssl , that will need to change as well. So, I assume this will either have to be turned off or used with the correct values for another mail provider.</p>
<p>Hope that helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fabian</title>
		<link>http://www.anujgakhar.com/2008/05/18/cfpop-and-gmail/comment-page-1/#comment-2998</link>
		<dc:creator>Fabian</dc:creator>
		<pubDate>Thu, 09 Oct 2008 05:21:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.anujgakhar.com/?p=132#comment-2998</guid>
		<description>I was looking for this!! thanks!! Little question though: do I need to turn it off if I&#039;m going to check another (non-SSL) mail afterwards? How do I do it?

Thanks again</description>
		<content:encoded><![CDATA[<p>I was looking for this!! thanks!! Little question though: do I need to turn it off if I&#8217;m going to check another (non-SSL) mail afterwards? How do I do it?</p>
<p>Thanks again</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chinmay Garde</title>
		<link>http://www.anujgakhar.com/2008/05/18/cfpop-and-gmail/comment-page-1/#comment-2982</link>
		<dc:creator>Chinmay Garde</dc:creator>
		<pubDate>Mon, 29 Sep 2008 13:22:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.anujgakhar.com/?p=132#comment-2982</guid>
		<description>Just what I was looking for. Excellent work !</description>
		<content:encoded><![CDATA[<p>Just what I was looking for. Excellent work !</p>
]]></content:encoded>
	</item>
</channel>
</rss>
