iredmail-doc/html_bk/iredadmin-pro.custom.user.s...

66 lines
3.7 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>iRedAdmin-Pro (LDAP backend): Add and manage custom services for mail user</title>
<link rel="stylesheet" type="text/css" href="./css/markdown.css" />
</head>
<body>
<div id="navigation">
<a href="https://www.iredmail.org" target="_blank">
<img alt="iRedMail web site"
src="./images/logo-iredmail.png"
style="vertical-align: middle; height: 30px;"
/>&nbsp;
<span>iRedMail</span>
</a>
&nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="iredadmin-pro-ldap-backend-add-and-manage-custom-services-for-mail-user">iRedAdmin-Pro (LDAP backend): Add and manage custom services for mail user</h1>
<p>It's reasonable that you want to use OpenLDAP server running on iRedMail
server as a central identity management database. If you have other
softwares/services, and need to restrict some users to use these
software/services, the easiest and most elegent soluion is adding extra service
name in LDAP database, and update your softwares to use a proper LDAP filter to
query users.</p>
<p>We assume you have a GitLab server and Jabber (XMPP) server running on internal
servers, and allow different users to use them.
In this tutorial, we use service name <code>gitlab</code> for GitLab service, and <code>jabber</code>
for Jabber.</p>
<p>With iRedAdmin-Pro, please open its config file
<code>/opt/www/iredadmin/settings.py</code>
, add a new parameter <code>ADDITIONAL_ENABLED_USER_SERVICES</code> like
below:</p>
<div class="admonition attention">
<p class="admonition-title">Attention</p>
<ul>
<li>If you deployed iRedMail with the <a href="https://www.iredmail.org/easy.html">iRedMail Easy
platform</a>, you should add
this setting in config file <code>/opt/iredmail/custom/iredadmin/settings.py</code>
instead.</li>
<li>Old iRedMail releases may deploy iRedAdmin-Pro to different directory,
please check <a href="./file.locations.html#iredadmin">this tutorial</a> to figure
it out.</li>
</ul>
</div>
<pre><code>ADDITIONAL_ENABLED_USER_SERVICES = ['gitlab', 'jabber']
</code></pre>
<p>Then restart <code>iredadmin</code> service.</p>
<p><strong>Newly</strong> created mail user will have these 2 services enabled by default, but
for existing users, you have to add them either manually or do it with some
scripting/programming.</p>
<p>You can find these 2 custom service names after logged in to iRedAdmin-Pro,
in user profile page, under tab <code>Advanced</code>. Screenshot attached.</p>
<p><img alt="" src="./images/iredadmin/custom_user_services.png" width="700px" /></p>
<p>In OpenLDAP, mail user with these 2 services enabled will have 2 new LDAP
attribute/value pairs:</p>
<pre><code>enabledService=gitlab
enabledService=jabber
</code></pre>
<p>For GitLab, the LDAP filter used to query user should look like this:</p>
<pre><code>(&amp;(objectClass=mailUser)(accountStatus=active)(enabledService=gitlab))
</code></pre>
<p>For Jabber, the LDAP filter used to query user should look like this:</p>
<pre><code>(&amp;(objectClass=mailUser)(accountStatus=active)(enabledService=jabber))
</code></pre><div class="footer">
<p style="text-align: center; color: grey;">All documents are available in <a href="https://github.com/iredmail/docs/">GitHub repository</a>, and published under <a href="http://creativecommons.org/licenses/by-nd/3.0/us/" target="_blank">Creative Commons</a> license. You can <a href="https://github.com/iredmail/docs/archive/master.zip">download the latest version</a> for offline reading. If you found something wrong, please do <a href="https://www.iredmail.org/contact.html">contact us</a> to fix it.</p>
</div></body></html>