Forgot to mention commenting out 'forward_method' line in $policy_bank{'ORIGINATING'} block.

This commit is contained in:
Zhang Huangbin 2015-07-16 21:49:59 +08:00
parent a1e05a8785
commit c14427fcd0
2 changed files with 22 additions and 8 deletions

View File

@ -51,7 +51,7 @@ we clearly separate emails submitted by authenticated users and inbound message
sent by others, and Amavisd won't sign DKIM on inbound message anymore.
* Open Amavisd config file, make sure you have below settings. If they don't
exist, please add them.
exist, please add them or update them.
* on RHEL/CentOS: it's `/etc/amavisd/amavisd.conf`.
* on Debian/Ubuntu: it's `/etc/amavis/conf.d/50-user`.
@ -67,12 +67,19 @@ We will configure Postfix to pipe email submitted by authenticated user through
port 10026, others through port 10024. And port 9998 is used to manage
quarantined mails.
* Comment out below line in Amavisd config file:
__WARNING: Do NOT remove `originating => 1,` in other `policy_bank` blocks.__
* Find `$policy_bank{'ORIGINATING'} = {` block, comment out `forward_method`
line in the block:
```
'$originating = 1;'
#forward_method => 'smtp:[127.0.0.1]:10027',
```
* Comment out below line in Amavisd config file:
__WARNING: Do NOT remove `originating => 1,` in other `$policy_bank` blocks.__
```
$originating = 1;
```
* Comment out the whole `$policy_bank{'MYUSERS'}` block:

View File

@ -80,7 +80,7 @@ sent by others, and Amavisd won't sign DKIM on inbound message anymore.</p>
<ul>
<li>
<p>Open Amavisd config file, make sure you have below settings. If they don't
exist, please add them.</p>
exist, please add them or update them.</p>
<ul>
<li>on RHEL/CentOS: it's <code>/etc/amavisd/amavisd.conf</code>.</li>
<li>on Debian/Ubuntu: it's <code>/etc/amavis/conf.d/50-user</code>.</li>
@ -96,13 +96,20 @@ $interface_policy{'10026'} = 'ORIGINATING';
<p>We will configure Postfix to pipe email submitted by authenticated user through
port 10026, others through port 10024. And port 9998 is used to manage
quarantined mails.</p>
<ul>
<li>Find <code>$policy_bank{'ORIGINATING'} = {</code> block, comment out <code>forward_method</code>
line in the block:</li>
</ul>
<pre><code> #forward_method =&gt; 'smtp:[127.0.0.1]:10027',
</code></pre>
<ul>
<li>
<p>Comment out below line in Amavisd config file:</p>
<p><strong>WARNING: Do NOT remove <code>originating =&gt; 1,</code> in other <code>policy_bank</code> blocks.</strong></p>
<p><strong>WARNING: Do NOT remove <code>originating =&gt; 1,</code> in other <code>$policy_bank</code> blocks.</strong></p>
</li>
</ul>
<pre><code>'$originating = 1;'
<pre><code>$originating = 1;
</code></pre>
<ul>