<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
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/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
><channel><title>FAQforge &#187; Email</title> <atom:link href="http://www.faqforge.com/tag/email/feed/" rel="self" type="application/rss+xml" /><link>http://www.faqforge.com</link> <description>Just another WordPress weblog</description> <lastBuildDate>Wed, 01 Sep 2010 10:19:51 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.0.1</generator> <item><title>How to enable port 587 (submission) in postfix</title><link>http://www.faqforge.com/linux/how-to-enable-port-587-submission-in-postfix/</link> <comments>http://www.faqforge.com/linux/how-to-enable-port-587-submission-in-postfix/#comments</comments> <pubDate>Mon, 26 Apr 2010 09:36:13 +0000</pubDate> <dc:creator>Till</dc:creator> <category><![CDATA[Debian]]></category> <category><![CDATA[Distributions]]></category> <category><![CDATA[Email]]></category> <category><![CDATA[ISPConfig 2]]></category> <category><![CDATA[ISPConfig 3]]></category> <category><![CDATA[Linux & Unix]]></category> <category><![CDATA[Server]]></category> <category><![CDATA[Ubuntu]]></category> <category><![CDATA[postfix]]></category><guid
isPermaLink="false">http://www.faqforge.com/?p=458</guid> <description><![CDATA[Some internet access providers have port 25 disabled in their routers to prevent spam. If you run your own mailserver in a datacenter, you might have to enable the submission port (587) in postfix to be able to send emails from your local email client to your own mailserver. To enable port 587, edit the [...]]]></description> <content:encoded><![CDATA[<div
class="tweetmeme_button" style="float: right; margin-left: 10px;"> <a
href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.faqforge.com%2Flinux%2Fhow-to-enable-port-587-submission-in-postfix%2F"><br
/> <img
src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.faqforge.com%2Flinux%2Fhow-to-enable-port-587-submission-in-postfix%2F&amp;source=tweetmeme&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br
/> </a></div><p>Some internet access providers have port 25 disabled in their routers to prevent spam. If you run your own mailserver in a datacenter, you might have to enable the submission port (587) in postfix to be able to send emails from your local email client to your own mailserver.</p><p>To enable port 587, edit the file /etc/postfix/master.cf<br
/><p
class="command">vi /etc/postfix/master.cf</p><br
/> and remove the # in front of the line:<br
/><p
class="system">#submission inet n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; smtpd</p><br
/> so that it looks like this:<br
/><p
class="system">submission inet n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; smtpd</p><br
/> and restart postfix:<br
/><p
class="command">/etc/init.d/postfix restart</p></p> ]]></content:encoded> <wfw:commentRss>http://www.faqforge.com/linux/how-to-enable-port-587-submission-in-postfix/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>How to renew the SSL certificate for dovecot on CentOS</title><link>http://www.faqforge.com/linux/how-to-renew-the-ssl-certificate-for-dovecot-on-centos/</link> <comments>http://www.faqforge.com/linux/how-to-renew-the-ssl-certificate-for-dovecot-on-centos/#comments</comments> <pubDate>Wed, 23 Dec 2009 17:00:08 +0000</pubDate> <dc:creator>Till</dc:creator> <category><![CDATA[Email]]></category> <category><![CDATA[Linux & Unix]]></category> <category><![CDATA[Server]]></category> <category><![CDATA[dovecot]]></category> <category><![CDATA[imap]]></category> <category><![CDATA[pop3]]></category><guid
isPermaLink="false">http://www.faqforge.com/?p=355</guid> <description><![CDATA[Make a backup of the old key and certificate file mv /etc/ssl/certs/dovecot.pem /etc/ssl/certs/dovecot.pem.old mv /etc/ssl/private/dovecot.key /etc/ssl/private/dovecot.key.old Create the new SSL certificate openssl genrsa -out /etc/ssl/private/dovecot.key 1024 openssl req -new -x509 -key /etc/ssl/private/dovecot.key -out /etc/ssl/certs/dovecot.pem -days 730 Restart Dovecot: /etc/init.d/dovecot restart]]></description> <content:encoded><![CDATA[<div
class="tweetmeme_button" style="float: right; margin-left: 10px;"> <a
href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.faqforge.com%2Flinux%2Fhow-to-renew-the-ssl-certificate-for-dovecot-on-centos%2F"><br
/> <img
src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.faqforge.com%2Flinux%2Fhow-to-renew-the-ssl-certificate-for-dovecot-on-centos%2F&amp;source=tweetmeme&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br
/> </a></div><p>Make a backup of the old key and certificate file<br
/><pre><p class="command">mv /etc/ssl/certs/dovecot.pem /etc/ssl/certs/dovecot.pem.old
mv /etc/ssl/private/dovecot.key /etc/ssl/private/dovecot.key.old</p></pre><br
/> Create the new SSL certificate<br
/><pre><p class="command">openssl genrsa -out /etc/ssl/private/dovecot.key 1024
openssl req -new -x509 -key /etc/ssl/private/dovecot.key -out /etc/ssl/certs/dovecot.pem -days 730</p></pre><br
/> Restart Dovecot:<br
/><p
class="command">/etc/init.d/dovecot restart</p></p> ]]></content:encoded> <wfw:commentRss>http://www.faqforge.com/linux/how-to-renew-the-ssl-certificate-for-dovecot-on-centos/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (enhanced) (user agent is rejected)
Database Caching 10/32 queries in 0.016 seconds using disk

Served from: www.faqforge.com @ 2010-09-06 19:04:13 -->