Mention how to disable iredapd integration in en_US/integrations/active.directory.md.

This commit is contained in:
Zhang Huangbin 2016-02-10 23:32:17 +08:00
parent bdeb4fef42
commit 15bc52f87f
4 changed files with 33 additions and 2 deletions

View File

@ -11,6 +11,13 @@ iRedAPD is a simple Postfix policy server, written in Python, with plugin
support. it listens on port `7777` by default, and runs as a low-privileged
user `iredapd`.
## How to disable iRedAPD
To disable iRedAPD service, please remove all
`check_policy_service inet:127.0.0.1:7777` in Postfix config file
`/etc/postfix/main.cf` (Linux/OpenBSD) or `/usr/local/etc/postfix/main.cf`
(FreeBSD), then disable iredapd service.
## Manage white/blacklists
> * White/blacklisting is available in iRedAPD-1.4.4 and later releases.

View File

@ -6,7 +6,7 @@ __NOTES__:
* iRedAdmin-Pro doesn't work with Active Directory, so if you choose to
authenticate mail users against Active Directory, you have to manage mail
accounts with Active Directory management tools, don't buy iRedAdmin-Pro.
accounts with Active Directory management tools.
* This tutorial has been verified on Windows 2000, 2003, 2008, 2012 server, if
you tested it on other versions and works well, please let us know.
@ -27,6 +27,8 @@ Since AD uses different LDAP schema, you will lose some iRedMail special feature
* Per-user, per-domain service control with LDAP (e.g. enable/disable
POP3/IMAP/SMTP services).
* Advanced mail polices implemented by iRedAPD which relies on iRedMail
LDAP scheme.
## Requirements
@ -254,6 +256,14 @@ __NOTE__: `postmap` return nothing if:
1. mail group doesn't exist
1. mail group doesn't have any members
### Remove iRedAPD integration in Postfix
iRedAPD relies on iRedMail LDAP scheme, so it's useless if you integrate
iRedMail with Active Directory. We should remove the integration in Postfix
to save some system resource.
To disable iRedAPD, please read tutorial: [Manage iRedAPD](./manage.iredapd.html).
## Enable Active Directory integration in Dovecot
To query AD instead of local LDAP server, we have to modify Dovecot config file

View File

@ -21,6 +21,7 @@
<li><a href="#create-user-account-in-ad-used-for-ldap-query">Create user account in AD, used for LDAP query</a></li>
<li><a href="#enable-ldap-query-with-ad-in-postfix">Enable LDAP query with AD in Postfix</a></li>
<li><a href="#verify-ldap-query-with-ad-in-postfix">Verify LDAP query with AD in Postfix</a></li>
<li><a href="#remove-iredapd-integration-in-postfix">Remove iRedAPD integration in Postfix</a></li>
</ul>
</li>
<li><a href="#enable-active-directory-integration-in-dovecot">Enable Active Directory integration in Dovecot</a></li>
@ -35,7 +36,7 @@
<li>
<p>iRedAdmin-Pro doesn't work with Active Directory, so if you choose to
authenticate mail users against Active Directory, you have to manage mail
accounts with Active Directory management tools, don't buy iRedAdmin-Pro.</p>
accounts with Active Directory management tools.</p>
</li>
<li>
<p>This tutorial has been verified on Windows 2000, 2003, 2008, 2012 server, if
@ -57,6 +58,8 @@
<ul>
<li>Per-user, per-domain service control with LDAP (e.g. enable/disable
POP3/IMAP/SMTP services).</li>
<li>Advanced mail polices implemented by iRedAPD which relies on iRedMail
LDAP scheme.</li>
</ul>
<h2 id="requirements">Requirements</h2>
<p>To integrate Microsoft Active Directory with iRedMail, you should have:</p>
@ -262,6 +265,11 @@ user@example.com
<li>mail group doesn't exist</li>
<li>mail group doesn't have any members</li>
</ol>
<h3 id="remove-iredapd-integration-in-postfix">Remove iRedAPD integration in Postfix</h3>
<p>iRedAPD relies on iRedMail LDAP scheme, so it's useless if you integrate
iRedMail with Active Directory. We should remove the integration in Postfix
to save some system resource.</p>
<p>To disable iRedAPD, please read tutorial: <a href="./manage.iredapd.html">Manage iRedAPD</a>.</p>
<h2 id="enable-active-directory-integration-in-dovecot">Enable Active Directory integration in Dovecot</h2>
<p>To query AD instead of local LDAP server, we have to modify Dovecot config file
<code>/etc/dovecot/dovecot-ldap.conf</code> like below:</p>

View File

@ -15,6 +15,7 @@
<ul>
<li><a href="#manage-iredapd-whiteblacklists-greylisting">Manage iRedAPD (white/blacklists, greylisting)</a><ul>
<li><a href="#introduce-iredapd">Introduce iRedAPD</a></li>
<li><a href="#how-to-disable-iredapd">How to disable iRedAPD</a></li>
<li><a href="#manage-whiteblacklists">Manage white/blacklists</a><ul>
<li><a href="#how-to-disable-whiteblacklists-completely">How to disable white/blacklists completely</a></li>
<li><a href="#available-arguments">Available arguments</a></li>
@ -40,6 +41,11 @@ web-based admin panel - <a href="../admin_panel.html">iRedAdmin-Pro</a>.</p>
<p>iRedAPD is a simple Postfix policy server, written in Python, with plugin
support. it listens on port <code>7777</code> by default, and runs as a low-privileged
user <code>iredapd</code>.</p>
<h2 id="how-to-disable-iredapd">How to disable iRedAPD</h2>
<p>To disable iRedAPD service, please remove all
<code>check_policy_service inet:127.0.0.1:7777</code> in Postfix config file
<code>/etc/postfix/main.cf</code> (Linux/OpenBSD) or <code>/usr/local/etc/postfix/main.cf</code>
(FreeBSD), then disable iredapd service.</p>
<h2 id="manage-whiteblacklists">Manage white/blacklists</h2>
<blockquote>
<ul>