<?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>bcc &#8211; Luxing Huang</title>
	<atom:link href="https://luxing.im/tag/bcc/feed/" rel="self" type="application/rss+xml" />
	<link>https://luxing.im</link>
	<description>Thoughs and things</description>
	<lastBuildDate>Mon, 29 Jul 2019 15:04:05 +0000</lastBuildDate>
	<language>en-CA</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.2</generator>
<site xmlns="com-wordpress:feed-additions:1">58771605</site>	<item>
		<title>Make a secret copy of sent email in Postfix</title>
		<link>https://luxing.im/make-a-secret-copy-of-sent-email-in-postfix/</link>
					<comments>https://luxing.im/make-a-secret-copy-of-sent-email-in-postfix/#comments</comments>
		
		<dc:creator><![CDATA[Luxing Huang]]></dc:creator>
		<pubDate>Sat, 06 Aug 2016 13:53:01 +0000</pubDate>
				<category><![CDATA[Techie Stuff]]></category>
		<category><![CDATA[bcc]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[postfix]]></category>
		<guid isPermaLink="false">https://luxing.im/?p=682</guid>

					<description><![CDATA[I have a business need. I need to send automatically generated email from a specific business address to my customers. Postfix does not help you to save it to &#8220;Sent&#8221; mailbox. Although I have mail logs telling me that emails have been sent to the correct email addresses but I really don&#8217;t know what is &#8230; <p class="link-more"><a href="https://luxing.im/make-a-secret-copy-of-sent-email-in-postfix/" class="more-link">Continue reading<span class="screen-reader-text"> "Make a secret copy of sent email in Postfix"</span></a></p>]]></description>
										<content:encoded><![CDATA[<p>I have a business need. I need to send automatically generated email from a specific business address to my customers. Postfix does not help you to save it to &#8220;Sent&#8221; mailbox. Although I have mail logs telling me that emails have been sent to the correct email addresses but I really don&#8217;t know what is being sent.</p>
<p>Because I setup my own mail server, this is going to be really easy. There is no need to change my business code to BCC a secret address, which is not very nice.</p>
<p><span id="more-682"></span></p>
<p>The steps are simple.</p>
<p>Add the line to /etc/postfix/main.cf</p>
<pre>sender_bcc_maps = hash:/etc/postfix/sender_bcc</pre>
<p>Write your <code>sender_bcc</code> file</p>
<pre>
business@address.com  bcc@example.com
</pre>
<p>Generate the hash.</p>
<pre>cd /etc/postfix
postmap sender_bcc
</pre>
<p>This will generate a .db file.</p>
<p>Reload postfix</p>
<pre>postfix reload</pre>
<p>Then all your email sent from <code>business@address.com</code> will automatically bcc&#8217;d to <code>bcc@example.com</code>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://luxing.im/make-a-secret-copy-of-sent-email-in-postfix/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">682</post-id>	</item>
	</channel>
</rss>
