<?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>ItHowTo.ro &#187; e-mail</title>
	<atom:link href="http://www.ithowto.ro/category/system-administration/email-system/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ithowto.ro</link>
	<description>Blog about IT realated stuff by WSS</description>
	<lastBuildDate>Tue, 06 Jul 2010 16:35:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Postfix smtp slow speed (delay) when sending e-mail</title>
		<link>http://www.ithowto.ro/2010/07/postfix-smtp-slow-speed-delay-sending-e-mail/</link>
		<comments>http://www.ithowto.ro/2010/07/postfix-smtp-slow-speed-delay-sending-e-mail/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 16:35:28 +0000</pubDate>
		<dc:creator>gkoo</dc:creator>
				<category><![CDATA[System Administration]]></category>
		<category><![CDATA[e-mail]]></category>

		<guid isPermaLink="false">http://www.ithowto.ro/?p=146</guid>
		<description><![CDATA[We own 2 mail-servers running the same configuration postfix + courier + mysql_auth etc.
The servers have the same configuration but one of them had 3-4 seconds delays when sending e-mail.
After a bunch of hours of testing and retesting i found out that the DNS was faulty.
The first server had it&#8217;s own dns server running on [...]]]></description>
			<content:encoded><![CDATA[<p>We own 2 mail-servers running the same configuration postfix + courier + mysql_auth etc.<br />
The servers have the same configuration but one of them had 3-4 seconds delays when sending e-mail.</p>
<p>After a bunch of hours of testing and retesting i found out that the DNS was faulty.<br />
The first server had it&#8217;s own dns server running on localhost, the second one (the one with the delays) connected to our provider&#8217;s dns.<br />
I&#8217;ve installed a bind nameserver on the second server and all is ok now.</p>
<p>Hope it helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ithowto.ro/2010/07/postfix-smtp-slow-speed-delay-sending-e-mail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HowTo: bcc all recieved or sent mail from your postfix server</title>
		<link>http://www.ithowto.ro/2008/11/howto-bcc-all-recieved-or-sent-mail-from-your-postfix-server/</link>
		<comments>http://www.ithowto.ro/2008/11/howto-bcc-all-recieved-or-sent-mail-from-your-postfix-server/#comments</comments>
		<pubDate>Thu, 27 Nov 2008 16:03:54 +0000</pubDate>
		<dc:creator>gkoo</dc:creator>
				<category><![CDATA[System Administration]]></category>
		<category><![CDATA[e-mail]]></category>
		<category><![CDATA[bcc sent recieved mail postfix debian]]></category>

		<guid isPermaLink="false">http://www.ithowto.ro/?p=14</guid>
		<description><![CDATA[Postfix has the option to bcc all sent or recieved emails for a specific domain.
You can bcc all recieved mails for a specific by inserting the following in to /etc/postfix/main.cf :
recipient_bcc_map = pcre:/etc/postfix/bcc_recipient
then edit the file /etc/postfix/bcc_recipient and add your domain like this :
/(.*)@(example.com)/  backup@example.com
then at the console type postmap /etc/postfix/bcc_recipient to load the bcc [...]]]></description>
			<content:encoded><![CDATA[<p>Postfix has the option to bcc all sent or recieved emails for a specific domain.</p>
<p>You can bcc all recieved mails for a specific by inserting the following in to <strong>/etc/postfix/main.cf :</strong></p>
<p><strong><em>recipient_bcc_map = pcre:/etc/postfix/bcc_recipient</em></strong></p>
<p>then edit the file <strong>/etc/postfix/bcc_recipient </strong>and add your domain like this :</p>
<p><em><strong>/(.*)@(example.com)/  backup@example.com</strong></em></p>
<p>then at the console type <em><strong>postmap /etc/postfix/bcc_recipient</strong></em> to load the bcc recipients database. This will create the file <strong>/etc/postfix/bcc_recipient.pcre</strong> which is the database for bcc recipients.</p>
<p>Run postfix reload to insert the new options in postfix&#8217;s config. Now all the e-mails for example.com will be automatically bcc-ed to backup@example.com</p>
<p>______________</p>
<p>If you want to bcc al sent e-mails from a specific domain do the following :</p>
<p>Insert the following into <strong>/etc/postfix/main.cf :</strong></p>
<p><strong><em>sender_bcc_map = pcre:/etc/postfix/bcc_sender</em></strong></p>
<p>then edit the file <strong>/etc/postfix/bcc_sender </strong>and add your domain like this :</p>
<p><em><strong>/(.*)@(example.com)/  backup@example.com</strong></em></p>
<p>then at the console type <em><strong>postmap /etc/postfix/bcc_sender</strong></em> to load the bcc senderdatabase. This will create the file <strong>/etc/postfix/bcc_sender.pcre</strong> which is the database for bcc senders.</p>
<p>Run postfix reload to insert the new options in postfix&#8217;s config. Now every e-mail sent from example.com will get bcc-ed to backup@example.com</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ithowto.ro/2008/11/howto-bcc-all-recieved-or-sent-mail-from-your-postfix-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HowTo : add custom transport routes (maps) in postfix.</title>
		<link>http://www.ithowto.ro/2008/10/howto-add-custom-transport-routes-maps-in-postfix/</link>
		<comments>http://www.ithowto.ro/2008/10/howto-add-custom-transport-routes-maps-in-postfix/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 10:13:27 +0000</pubDate>
		<dc:creator>gkoo</dc:creator>
				<category><![CDATA[e-mail]]></category>
		<category><![CDATA[custom e-mail routes]]></category>
		<category><![CDATA[postfix]]></category>
		<category><![CDATA[transport_map]]></category>

		<guid isPermaLink="false">http://www.ithowto.ro/?p=6</guid>
		<description><![CDATA[In postfix, when you need your e-mails for some specific domains to relay through another server ( your ip is blocked or for some other reason ) you can specify custom transport maps in the postfix config.
You have to setup postfix to use custom transport maps :
in  main.cf enable the transport_maps directive :
 transport_maps = [...]]]></description>
			<content:encoded><![CDATA[<p>In postfix, when you need your e-mails for some specific domains to relay through another server ( your ip is blocked or for some other reason ) you can specify custom transport maps in the postfix config.</p>
<p>You have to setup postfix to use custom transport maps :</p>
<p>in  <em>main.cf</em><strong> </strong>enable the <span style="#000000;"><em>transport_maps</em></span> directive :</p>
<p><em> <strong>transport_maps = hash:/etc/postfix/transport</strong></em></p>
<p>then edit the file <em>/etc/postfix/transport</em> and add to it :</p>
<p><em> <strong>example.com smtp:your.second.mailserver.com</strong></em></p>
<p>close it and then rebuild the transport database file by entering the following command :</p>
<p><strong><em>postmap  /etc/postfix/transport</em></strong></p>
<p>restart postfix and now every e-mail sent to example.com will relay through your specified e-mail server.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ithowto.ro/2008/10/howto-add-custom-transport-routes-maps-in-postfix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
