iredmail-doc/html/monitor.incoming.and.outgoi...

115 lines
5.4 KiB
HTML
Raw Normal View History

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Monitor incoming and outgoing mails with BCC</title>
<link rel="stylesheet" type="text/css" href="./css/markdown.css" />
</head>
<body>
<div id="navigation">
2016-02-28 09:31:56 -06:00
<a href="http://www.iredmail.org" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a>
// <a href="./index.html">Document Index</a>
</div><h1 id="monitor-incoming-and-outgoing-mails-with-bcc">Monitor incoming and outgoing mails with BCC</h1>
<div class="toc">
<ul>
<li><a href="#monitor-incoming-and-outgoing-mails-with-bcc">Monitor incoming and outgoing mails with BCC</a><ul>
<li><a href="#manage-bcc-settings-with-iredadmin-pro">Manage BCC settings with iRedAdmin-Pro</a></li>
<li><a href="#sql-manage-bcc-settings-with-sql-command-line-tools">SQL: Manage BCC settings with SQL command line tools</a></li>
<li><a href="#ldap-manage-bcc-settings-with-phpldapadmin-or-other-ldap-client-tools">LDAP: Manage BCC settings with phpLDAPadmin or other LDAP client tools</a></li>
<li><a href="#screenshot-of-iredadmin-pro">Screenshot of iRedAdmin-Pro</a></li>
</ul>
</li>
</ul>
</div>
<p>This tutorial describes how to configure your iRedMail server
to monitor incoming and outgoing mails with BCC, via iRedAdmin-Pro or other
tools.</p>
2015-11-16 20:07:05 -06:00
<p><strong>Important notes</strong>:</p>
<ul>
<li>
<p>the destination email address used to store emails must exist. In this
tutorial, they're <code>outbound@example.com</code> and <code>inboud@example.com</code>.</p>
</li>
<li>
<p>Multiple BCC destination addresses are <strong>NOT</strong> supported by Postfix.</p>
</li>
</ul>
<h2 id="manage-bcc-settings-with-iredadmin-pro">Manage BCC settings with iRedAdmin-Pro</h2>
<p>With iRedAdmin-Pro, you can configure BCC easily.</p>
<ul>
<li>For per-domain BCC settings, please go to domain profile page, then you can
manage BCC settings under tab <code>BCC</code>.</li>
<li>For per-user BCC settings, please go to user profile page, then you can
manage BCC settings under tab <code>BCC</code>.</li>
</ul>
<h2 id="sql-manage-bcc-settings-with-sql-command-line-tools">SQL: Manage BCC settings with SQL command line tools</h2>
<p>We take MySQL backend for example, but the SQL commands should work with
PostgreSQL too.</p>
<ul>
<li>To add per-domain bcc settings for domain <code>mydomain.com</code>, you can add
below records in SQL database <code>vmail</code>:</li>
</ul>
<pre><code class="sql">-- BCC outgoing emails to 'outbound@example.com'
mysql&gt; INSERT INTO sender_bcc_domain (domain, bcc_address, active, created)
VALUES ('mydomain.com', 'outbound@example.com', 1, NOW());
-- BCC incoming emails to 'inbound@example.com'
mysql&gt; INSERT INTO recipient_bcc_domain (domain, bcc_address, active, created)
VALUES ('mydomain.com', 'inbound@example.com', 1, NOW());
</code></pre>
<ul>
<li>To add per-user bcc settings for user <code>user@mydomain.com</code>, you can add
below records in SQL database <code>vmail</code>:</li>
</ul>
<pre><code class="sql">-- BCC outgoing emails to 'outbound@example.com'
mysql&gt; INSERT INTO sender_bcc_user (username, bcc_address, domain, active, created)
VALUES ('user@mydomain.com', 'outbound@example.com', 'mydomain.com', 1, NOW());
-- BCC incoming emails to 'inbound@example.com'
mysql&gt; INSERT INTO recipient_bcc_user (username, bcc_address, domain, active, created)
VALUES ('user@mydomain.com', 'inbound@example.com', 'mydomain.com', 1, NOW());
</code></pre>
<h2 id="ldap-manage-bcc-settings-with-phpldapadmin-or-other-ldap-client-tools">LDAP: Manage BCC settings with phpLDAPadmin or other LDAP client tools</h2>
<ul>
<li>For per-domain BCC settings, you can add below LDAP attribute/value pairs
for domain object:</li>
</ul>
<pre><code># per-domain sender bcc
enabledService=senderbcc
2014-10-13 06:06:52 -05:00
domainSenderBccAddress=outbound@example.com
# per-domain recipient bcc
enabledService=recipientbcc
2014-10-13 06:06:52 -05:00
domainRecipientBccAddress=inbound@example.com
</code></pre>
<ul>
<li>For per-user BCC settings, you can add below LDAP attribute/value pairs
for user object:</li>
</ul>
<pre><code># per-domain sender bcc
enabledService=senderbcc
2014-10-13 06:06:52 -05:00
userSenderBccAddress=outbound@example.com
# per-domain recipient bcc
enabledService=recipientbcc
2014-10-13 06:06:52 -05:00
userRecipientBccAddress=inbound@example.com
</code></pre>
<h2 id="screenshot-of-iredadmin-pro">Screenshot of iRedAdmin-Pro</h2>
2014-10-13 06:06:52 -05:00
<p>Per-domain bcc settings:</p>
<p><img alt="" src="../images/iredadmin/domain_profile_bcc.png" /></p>
<p>Per-user bcc settings:</p>
2015-12-13 23:04:21 -06:00
<p><img alt="" src="../images/iredadmin/user_profile_bcc.png" /></p><p style="text-align: center; color: grey;">All documents are available in <a href="https://bitbucket.org/zhb/iredmail-docs/src">BitBucket repository</a>, and published under <a href="http://creativecommons.org/licenses/by-nd/3.0/us/" target="_blank">Creative Commons</a> license. If you found something wrong, please do <a href="http://www.iredmail.org/contact.html">contact us</a> to fix it.<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-3293801-21', 'auto');
ga('send', 'pageview');
2014-10-13 19:28:43 -05:00
</script>
</body></html>