Fix incorrect SQL column name in howto/monitor.incoming.and.outgoing.mails.with.bcc.md.

This commit is contained in:
Zhang Huangbin 2015-02-28 15:40:36 +08:00
parent da2a99bdf8
commit 15fae7fe26
2 changed files with 8 additions and 8 deletions

View File

@ -29,12 +29,12 @@ PostgreSQL too.
```sql
-- BCC outgoing emails to 'outbound@example.com'
mysql> INSERT INTO sender_bcc_domain (username, bcc_address, domain, active, created)
VALUES ('mydomain.com', 'outbound@example.com', 'mydomain.com', 1, NOW());
mysql> 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> INSERT INTO recipient_bcc_domain (username, bcc_address, domain, active, created)
VALUES ('mydomain.com', 'inbound@example.com', 'mydomain.com', 1, NOW());
mysql> INSERT INTO recipient_bcc_domain (domain, bcc_address, active, created)
VALUES ('mydomain.com', 'inbound@example.com', 1, NOW());
```
* To add per-user bcc settings for user `user@mydomain.com`, you can add

View File

@ -44,12 +44,12 @@ PostgreSQL too.</p>
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 (username, bcc_address, domain, active, created)
VALUES ('mydomain.com', 'outbound@example.com', 'mydomain.com', 1, NOW());
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 (username, bcc_address, domain, active, created)
VALUES ('mydomain.com', 'inbound@example.com', 'mydomain.com', 1, NOW());
mysql&gt; INSERT INTO recipient_bcc_domain (domain, bcc_address, active, created)
VALUES ('mydomain.com', 'inbound@example.com', 1, NOW());
</code></pre>
<ul>