This commit is contained in:
Zhang Huangbin 2016-01-12 15:48:10 +08:00
parent 223e4f3724
commit eaeb65f723
4 changed files with 8 additions and 8 deletions

View File

@ -10,10 +10,10 @@ in Amavisd config file: `/etc/amavisd/amavisd.conf` (RHEL/CentOS) or
* bypass_header_checks_maps
* bypass_banned_checks_maps
These settings can be added in setting block `$policy_bank{'MYUSERS'}`:
These settings can be added in setting block `$policy_bank{'ORIGINATING'}`:
```perl
$policy_bank{'MYUSERS'} = {
$policy_bank{'ORIGINATING'} = {
[...OMIT OTHER SETTINGS HERE...]
# don't perform spam/virus/header check.

View File

@ -118,10 +118,10 @@ $clean_quarantine_method = 'sql:';
$clean_quarantine_to = 'clean-quarantine';
```
* Find policy bank `MYUSERS`, append two lines in this policy bank:
* Find policy bank `ORIGINATING`, append two lines in this policy bank:
```perl
$policy_bank{'MYUSERS'} = {
$policy_bank{'ORIGINATING'} = {
...
clean_quarantine_method => 'sql:',
final_destiny_by_ccat => {CC_CLEAN, D_DISCARD},

View File

@ -21,8 +21,8 @@ in Amavisd config file: <code>/etc/amavisd/amavisd.conf</code> (RHEL/CentOS) or
<li>bypass_header_checks_maps</li>
<li>bypass_banned_checks_maps</li>
</ul>
<p>These settings can be added in setting block <code>$policy_bank{'MYUSERS'}</code>:</p>
<pre><code class="perl">$policy_bank{'MYUSERS'} = {
<p>These settings can be added in setting block <code>$policy_bank{'ORIGINATING'}</code>:</p>
<pre><code class="perl">$policy_bank{'ORIGINATING'} = {
[...OMIT OTHER SETTINGS HERE...]
# don't perform spam/virus/header check.

View File

@ -123,9 +123,9 @@ $clean_quarantine_to = 'clean-quarantine';
</code></pre>
<ul>
<li>Find policy bank <code>MYUSERS</code>, append two lines in this policy bank:</li>
<li>Find policy bank <code>ORIGINATING</code>, append two lines in this policy bank:</li>
</ul>
<pre><code class="perl">$policy_bank{'MYUSERS'} = {
<pre><code class="perl">$policy_bank{'ORIGINATING'} = {
...
clean_quarantine_method =&gt; 'sql:',
final_destiny_by_ccat =&gt; {CC_CLEAN, D_DISCARD},