Fix typos.

This commit is contained in:
Zhang Huangbin 2016-07-25 11:35:57 +08:00
parent 9b0077df47
commit 45623d0aec
6 changed files with 33 additions and 22 deletions

View File

@ -81,6 +81,18 @@ enabledService=recipientbcc
userRecipientBccAddress=inbound@example.com
```
## Monitor all inbound and outbound
To monitor all inbound and outbound on the server, please specify the email
address used to receive BCCed email in Postfix parameter `always_bcc`. For
example:
```
always_bcc = user@domain.com
```
Then all inbound and outbound will be BCCed to `user@domain.com`.
## Screenshot of iRedAdmin-Pro
Per-domain bcc settings:

View File

@ -959,7 +959,7 @@ Please switch to PostgreSQL daemon user, then execute SQL commands to import it:
# su - postgres
$ psql -d amavisd
sql> CREATE TABLE outbound_wblist (rid integer NOT NULL CHECK (rid >= 0), sid integer NOT NULL CHECK (sid >= 0), wb varchar(10) NOT NULL, PRIMARY KEY (rid,sid));
sql> ALTER TABLE outbound_wblist OWNER TO 'amavisd';
sql> ALTER TABLE outbound_wblist OWNER TO amavisd;
```
After table created, please restart iRedAPD service.

View File

@ -57,18 +57,13 @@ Restarting or reloading Postfix service is required.
iRedMail-0.9.5 sets incorrect command for parameter `compresscmd` and
`uncompresscmd`, please fix it with commands below:
* On RHEL/CentOS:
* On RHEL/CentOS/Debian/Ubuntu:
```
perl -pi -e 's#\$\(which bzip2\)#/bin/bzip2#g' /etc/logrotate.d/*
perl -pi -e 's#\$\(which bunzip2\)#/bin/bunzip2#g' /etc/logrotate.d/*
```
* On Debian/Ubuntu:
```
perl -pi -e 's#\$\(which bzip2\)#/bin/bzip2#g' /etc/logrotate.d/*
perl -pi -e 's#\$\(which bunzip2\)#/bin/bunzip2#g' /etc/logrotate.d/*
export _Z="$(which bzip2)"
export _UZ="$(which bunzip2)"
perl -pi -e 's# /bin/bzip2#$ENV{_Z}#g' /etc/logrotate.d/*
perl -pi -e 's# /bin/bunzip2#$ENV{_UZ}#g' /etc/logrotate.d/*
```
* On FreeBSD, OpenBSD: no fix required since FreeBSD/OpenBSD rotates log files

View File

@ -22,6 +22,7 @@
<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="#monitor-all-inbound-and-outbound">Monitor all inbound and outbound</a></li>
<li><a href="#screenshot-of-iredadmin-pro">Screenshot of iRedAdmin-Pro</a></li>
</ul>
</li>
@ -104,6 +105,14 @@ enabledService=recipientbcc
userRecipientBccAddress=inbound@example.com
</code></pre>
<h2 id="monitor-all-inbound-and-outbound">Monitor all inbound and outbound</h2>
<p>To monitor all inbound and outbound on the server, please specify the email
address used to receive BCCed email in Postfix parameter <code>always_bcc</code>. For
example:</p>
<pre><code>always_bcc = user@domain.com
</code></pre>
<p>Then all inbound and outbound will be BCCed to <code>user@domain.com</code>.</p>
<h2 id="screenshot-of-iredadmin-pro">Screenshot of iRedAdmin-Pro</h2>
<p>Per-domain bcc settings:</p>
<p><img alt="" src="../images/iredadmin/domain_profile_bcc.png" /></p>

View File

@ -901,7 +901,7 @@ to store white/blacklists for outbound message, required by iRedAPD plugin
<pre><code># su - postgres
$ psql -d amavisd
sql&gt; CREATE TABLE outbound_wblist (rid integer NOT NULL CHECK (rid &gt;= 0), sid integer NOT NULL CHECK (sid &gt;= 0), wb varchar(10) NOT NULL, PRIMARY KEY (rid,sid));
sql&gt; ALTER TABLE outbound_wblist OWNER TO 'amavisd';
sql&gt; ALTER TABLE outbound_wblist OWNER TO amavisd;
</code></pre>
<p>After table created, please restart iRedAPD service.</p>

View File

@ -77,17 +77,12 @@ iRedMail-0.9.4 or earlier release, it's safe to ignore this step.</p>
<p>iRedMail-0.9.5 sets incorrect command for parameter <code>compresscmd</code> and
<code>uncompresscmd</code>, please fix it with commands below:</p>
<ul>
<li>On RHEL/CentOS:</li>
<li>On RHEL/CentOS/Debian/Ubuntu:</li>
</ul>
<pre><code>perl -pi -e 's#\$\(which bzip2\)#/bin/bzip2#g' /etc/logrotate.d/*
perl -pi -e 's#\$\(which bunzip2\)#/bin/bunzip2#g' /etc/logrotate.d/*
</code></pre>
<ul>
<li>On Debian/Ubuntu:</li>
</ul>
<pre><code>perl -pi -e 's#\$\(which bzip2\)#/bin/bzip2#g' /etc/logrotate.d/*
perl -pi -e 's#\$\(which bunzip2\)#/bin/bunzip2#g' /etc/logrotate.d/*
<pre><code>export _Z=&quot;$(which bzip2)&quot;
export _UZ=&quot;$(which bunzip2)&quot;
perl -pi -e 's# /bin/bzip2#$ENV{_Z}#g' /etc/logrotate.d/*
perl -pi -e 's# /bin/bunzip2#$ENV{_UZ}#g' /etc/logrotate.d/*
</code></pre>
<ul>