<?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: How to enable port 587 (submission) in postfix</title>
	<atom:link href="http://www.faqforge.com/linux/how-to-enable-port-587-submission-in-postfix/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.faqforge.com/linux/how-to-enable-port-587-submission-in-postfix/</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Fri, 17 May 2013 03:00:50 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Joseph</title>
		<link>http://www.faqforge.com/linux/how-to-enable-port-587-submission-in-postfix/comment-page-1/#comment-4497</link>
		<dc:creator>Joseph</dc:creator>
		<pubDate>Wed, 10 Apr 2013 05:08:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.faqforge.com/?p=458#comment-4497</guid>
		<description><![CDATA[Just wondering if its possible to restrict all out-going mails to port 587 and NOT allow any sending out of emails on port 25.

Port 25 should only be used to receive mail and NOT send out ...How can I do this?]]></description>
		<content:encoded><![CDATA[<p>Just wondering if its possible to restrict all out-going mails to port 587 and NOT allow any sending out of emails on port 25.</p>
<p>Port 25 should only be used to receive mail and NOT send out &#8230;How can I do this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chandan</title>
		<link>http://www.faqforge.com/linux/how-to-enable-port-587-submission-in-postfix/comment-page-1/#comment-3887</link>
		<dc:creator>Chandan</dc:creator>
		<pubDate>Thu, 14 Mar 2013 19:06:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.faqforge.com/?p=458#comment-3887</guid>
		<description><![CDATA[Cool....Simply awesome!!!]]></description>
		<content:encoded><![CDATA[<p>Cool&#8230;.Simply awesome!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Boyan Alexiev</title>
		<link>http://www.faqforge.com/linux/how-to-enable-port-587-submission-in-postfix/comment-page-1/#comment-1037</link>
		<dc:creator>Boyan Alexiev</dc:creator>
		<pubDate>Mon, 17 Sep 2012 17:11:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.faqforge.com/?p=458#comment-1037</guid>
		<description><![CDATA[Dear Dylan,

nice note about the TLS. However not only the milter line depends on the specific configuration, but all lines, and they also should exist in the version of postifx that is used. For example, another possible option is &quot;-o smtpd_enforce_tls=yes&quot;, but it may be deprecated (haven&#039;t checked so far).

As for the SSL and port, please note that port 465 is deprecated for SMTPS and is no longer RFC-compliant. This port is already assigned for different purposes. Wiki provides more info, you can also check the RFC. Hope this helps.
http://en.wikipedia.org/wiki/SMTPS]]></description>
		<content:encoded><![CDATA[<p>Dear Dylan,</p>
<p>nice note about the TLS. However not only the milter line depends on the specific configuration, but all lines, and they also should exist in the version of postifx that is used. For example, another possible option is &#8220;-o smtpd_enforce_tls=yes&#8221;, but it may be deprecated (haven&#8217;t checked so far).</p>
<p>As for the SSL and port, please note that port 465 is deprecated for SMTPS and is no longer RFC-compliant. This port is already assigned for different purposes. Wiki provides more info, you can also check the RFC. Hope this helps.<br />
<a href="http://en.wikipedia.org/wiki/SMTPS" rel="nofollow">http://en.wikipedia.org/wiki/SMTPS</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dylan Myers</title>
		<link>http://www.faqforge.com/linux/how-to-enable-port-587-submission-in-postfix/comment-page-1/#comment-941</link>
		<dc:creator>Dylan Myers</dc:creator>
		<pubDate>Sun, 12 Aug 2012 01:29:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.faqforge.com/?p=458#comment-941</guid>
		<description><![CDATA[You guys are all missing something very important here. &quot;Submission&quot; isn&#039;t meant to be a straight copy of the plain auth port 25. Its meant to be encrypted. This is a &#039;correct&#039; &quot;Submission&quot; entry in master.cf:

submission inet n       -       n       -       -       smtpd  
  -o smtpd_tls_security_level=encrypt 
  -o smtpd_sasl_auth_enable=yes 
  -o smtpd_client_restrictions=permit_sasl_authenticated,reject 
  -o milter_macro_daemon_name=ORIGINATING

The milter macro line isn&#039;t needed in all configs, you should know what you&#039;re doing before you rock and roll.

IMO you should probably not be using port 25 OR port 587. You should be using SSL (465), which is properly configured like this:

smtps     inet  n       -       n       -       -       smtpd
  -o smtpd_tls_wrappermode=yes
  -o smtpd_sasl_auth_enable=yes
  -o smtpd_client_restrictions=permit_sasl_authenticated,reject
  -o milter_macro_daemon_name=ORIGINATING

And is what I actually am using on my production server.]]></description>
		<content:encoded><![CDATA[<p>You guys are all missing something very important here. &#8220;Submission&#8221; isn&#8217;t meant to be a straight copy of the plain auth port 25. Its meant to be encrypted. This is a &#8216;correct&#8217; &#8220;Submission&#8221; entry in master.cf:</p>
<p>submission inet n       &#8211;       n       &#8211;       &#8211;       smtpd<br />
  -o smtpd_tls_security_level=encrypt<br />
  -o smtpd_sasl_auth_enable=yes<br />
  -o smtpd_client_restrictions=permit_sasl_authenticated,reject<br />
  -o milter_macro_daemon_name=ORIGINATING</p>
<p>The milter macro line isn&#8217;t needed in all configs, you should know what you&#8217;re doing before you rock and roll.</p>
<p>IMO you should probably not be using port 25 OR port 587. You should be using SSL (465), which is properly configured like this:</p>
<p>smtps     inet  n       &#8211;       n       &#8211;       &#8211;       smtpd<br />
  -o smtpd_tls_wrappermode=yes<br />
  -o smtpd_sasl_auth_enable=yes<br />
  -o smtpd_client_restrictions=permit_sasl_authenticated,reject<br />
  -o milter_macro_daemon_name=ORIGINATING</p>
<p>And is what I actually am using on my production server.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Samuel Peixoto</title>
		<link>http://www.faqforge.com/linux/how-to-enable-port-587-submission-in-postfix/comment-page-1/#comment-829</link>
		<dc:creator>Samuel Peixoto</dc:creator>
		<pubDate>Wed, 30 May 2012 19:36:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.faqforge.com/?p=458#comment-829</guid>
		<description><![CDATA[Show!!!

Simple and objective.]]></description>
		<content:encoded><![CDATA[<p>Show!!!</p>
<p>Simple and objective.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://www.faqforge.com/linux/how-to-enable-port-587-submission-in-postfix/comment-page-1/#comment-711</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Sun, 05 Feb 2012 04:35:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.faqforge.com/?p=458#comment-711</guid>
		<description><![CDATA[Great post.  I have been trying to get my postfix server to accept email from external authenticated clients on both port 25 and 587 for days, and haven&#039;t been able to get it to work.  I uncommented the submission line in master.cf, and opened up port 587 on my amazon server, and it worked!  If only I had found this earlier.  Thanks.]]></description>
		<content:encoded><![CDATA[<p>Great post.  I have been trying to get my postfix server to accept email from external authenticated clients on both port 25 and 587 for days, and haven&#8217;t been able to get it to work.  I uncommented the submission line in master.cf, and opened up port 587 on my amazon server, and it worked!  If only I had found this earlier.  Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://www.faqforge.com/linux/how-to-enable-port-587-submission-in-postfix/comment-page-1/#comment-478</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Mon, 21 Feb 2011 12:50:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.faqforge.com/?p=458#comment-478</guid>
		<description><![CDATA[That is not true And Would not add a benefit]]></description>
		<content:encoded><![CDATA[<p>That is not true And Would not add a benefit</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gboule35</title>
		<link>http://www.faqforge.com/linux/how-to-enable-port-587-submission-in-postfix/comment-page-1/#comment-476</link>
		<dc:creator>gboule35</dc:creator>
		<pubDate>Fri, 18 Feb 2011 08:40:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.faqforge.com/?p=458#comment-476</guid>
		<description><![CDATA[you must also create an iptables prerouting for redirect inbound port 25 to port 587.]]></description>
		<content:encoded><![CDATA[<p>you must also create an iptables prerouting for redirect inbound port 25 to port 587.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: B. Davies</title>
		<link>http://www.faqforge.com/linux/how-to-enable-port-587-submission-in-postfix/comment-page-1/#comment-469</link>
		<dc:creator>B. Davies</dc:creator>
		<pubDate>Tue, 01 Feb 2011 12:55:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.faqforge.com/?p=458#comment-469</guid>
		<description><![CDATA[It should work - I think , just punch in port 587 and voilla !!]]></description>
		<content:encoded><![CDATA[<p>It should work &#8211; I think , just punch in port 587 and voilla !!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robbert</title>
		<link>http://www.faqforge.com/linux/how-to-enable-port-587-submission-in-postfix/comment-page-1/#comment-453</link>
		<dc:creator>Robbert</dc:creator>
		<pubDate>Wed, 05 Jan 2011 20:56:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.faqforge.com/?p=458#comment-453</guid>
		<description><![CDATA[Make sure you enable this port in your firewall settings in ISPCONFIG3 aswell. Otherwise it wont work.]]></description>
		<content:encoded><![CDATA[<p>Make sure you enable this port in your firewall settings in ISPCONFIG3 aswell. Otherwise it wont work.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced (User agent is rejected)

 Served from: www.faqforge.com @ 2013-05-19 17:03:05 by W3 Total Cache -->