<?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: Implementing a stand alone Email Server &#8211; Getting Started with Apache James</title>
	<atom:link href="http://technology.amis.nl/2006/04/10/implementing-a-stand-alone-email-server-getting-started-with-apache-james/feed/" rel="self" type="application/rss+xml" />
	<link>http://technology.amis.nl/2006/04/10/implementing-a-stand-alone-email-server-getting-started-with-apache-james/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=implementing-a-stand-alone-email-server-getting-started-with-apache-james</link>
	<description></description>
	<lastBuildDate>Fri, 12 Apr 2013 10:04:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: sumeet</title>
		<link>http://technology.amis.nl/2006/04/10/implementing-a-stand-alone-email-server-getting-started-with-apache-james/#comment-3088</link>
		<dc:creator>sumeet</dc:creator>
		<pubDate>Sun, 20 Mar 2011 18:06:01 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1143#comment-3088</guid>
		<description><![CDATA[when i run your program i get following error with
i have made appropriate changes like username,etc
Exception in thread &quot;main&quot; com.sun.mail.smtp.SMTPSendFailedException: 550 The address is not valid.
;
  nested exception is:
        com.sun.mail.smtp.SMTPSenderFailedException: 550 The address is not valid.]]></description>
		<content:encoded><![CDATA[<p>when i run your program i get following error with<br />
i have made appropriate changes like username,etc<br />
Exception in thread &#8220;main&#8221; com.sun.mail.smtp.SMTPSendFailedException: 550 The address is not valid.<br />
;<br />
  nested exception is:<br />
        com.sun.mail.smtp.SMTPSenderFailedException: 550 The address is not valid.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ria</title>
		<link>http://technology.amis.nl/2006/04/10/implementing-a-stand-alone-email-server-getting-started-with-apache-james/#comment-3087</link>
		<dc:creator>Ria</dc:creator>
		<pubDate>Tue, 29 Sep 2009 12:16:28 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1143#comment-3087</guid>
		<description><![CDATA[I recently came across your blog and have been reading along. I thought I would leave my first comment. I donâ€™t know what to say except that I have enjoyed reading. I was searching regarding mail servers and landed here. Although this is an old blog this content is very informative now also. Thanks for the post.]]></description>
		<content:encoded><![CDATA[<p>I recently came across your blog and have been reading along. I thought I would leave my first comment. I donâ€™t know what to say except that I have enjoyed reading. I was searching regarding mail servers and landed here. Although this is an old blog this content is very informative now also. Thanks for the post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amit Gupta</title>
		<link>http://technology.amis.nl/2006/04/10/implementing-a-stand-alone-email-server-getting-started-with-apache-james/#comment-3086</link>
		<dc:creator>Amit Gupta</dc:creator>
		<pubDate>Mon, 24 Nov 2008 18:30:50 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1143#comment-3086</guid>
		<description><![CDATA[Beautiful article...it got me started with James.  Also, the case study being worked out is extremely useful.  thanks a lot for sharing these. AMIS rocks!]]></description>
		<content:encoded><![CDATA[<p>Beautiful article&#8230;it got me started with James.  Also, the case study being worked out is extremely useful.  thanks a lot for sharing these. AMIS rocks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lucas Jellema</title>
		<link>http://technology.amis.nl/2006/04/10/implementing-a-stand-alone-email-server-getting-started-with-apache-james/#comment-3085</link>
		<dc:creator>Lucas Jellema</dc:creator>
		<pubDate>Sat, 07 Oct 2006 22:48:15 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1143#comment-3085</guid>
		<description><![CDATA[It turned out the Virus Scan software blocked requests to port 25.]]></description>
		<content:encoded><![CDATA[<p>It turned out the Virus Scan software blocked requests to port 25.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lucas Jellema</title>
		<link>http://technology.amis.nl/2006/04/10/implementing-a-stand-alone-email-server-getting-started-with-apache-james/#comment-3084</link>
		<dc:creator>Lucas Jellema</dc:creator>
		<pubDate>Thu, 05 Oct 2006 07:37:34 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1143#comment-3084</guid>
		<description><![CDATA[I had a bit of a problem suddenly with sending emails on my local XP machine - and even with telnet localhost 25.

I have not been able so far to determine what I have changed in my Windows settings, but I could resolve the issue by changing the port number for the SMTP server. The default port of 25 is protected by Windows; when I changed it to 8765

(in the file JAMES_HOME\sar-inf\config.xml:



      8765

)

and added the line:
  props.setProperty(&quot;mail.smtp.port&quot;, &quot;8765&quot;);
to my Java Class, I was back in business.

Lucas]]></description>
		<content:encoded><![CDATA[<p>I had a bit of a problem suddenly with sending emails on my local XP machine &#8211; and even with telnet localhost 25.</p>
<p>I have not been able so far to determine what I have changed in my Windows settings, but I could resolve the issue by changing the port number for the SMTP server. The default port of 25 is protected by Windows; when I changed it to 8765</p>
<p>(in the file JAMES_HOME\sar-inf\config.xml:</p>
<p>      8765</p>
<p>)</p>
<p>and added the line:<br />
  props.setProperty(&#8220;mail.smtp.port&#8221;, &#8220;8765&#8243;);<br />
to my Java Class, I was back in business.</p>
<p>Lucas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Krishnan</title>
		<link>http://technology.amis.nl/2006/04/10/implementing-a-stand-alone-email-server-getting-started-with-apache-james/#comment-3083</link>
		<dc:creator>Krishnan</dc:creator>
		<pubDate>Mon, 12 Jun 2006 12:10:47 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1143#comment-3083</guid>
		<description><![CDATA[This Article helped me a lot to understand the structure of James email server. Thanks!!]]></description>
		<content:encoded><![CDATA[<p>This Article helped me a lot to understand the structure of James email server. Thanks!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Medinets</title>
		<link>http://technology.amis.nl/2006/04/10/implementing-a-stand-alone-email-server-getting-started-with-apache-james/#comment-3082</link>
		<dc:creator>David Medinets</dc:creator>
		<pubDate>Tue, 11 Apr 2006 16:32:06 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=1143#comment-3082</guid>
		<description><![CDATA[Nice article! Thanks.]]></description>
		<content:encoded><![CDATA[<p>Nice article! Thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
