iredmail-doc/html_bk/ldap.add.catch-all.html

49 lines
2.5 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>LDAP: Add per-domain catch-all account</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="ldap-add-per-domain-catch-all-account">LDAP: Add per-domain catch-all account</h1>
<p>With default setting, iRedMail will reject emails sent to non-existing mail
accounts under hosted mail domains. If you want to accept these emails, you
need a per-domain catch-all account.</p>
<p>With OpenLDAP backend, you can add an catch-all account for mail domain
<code>example.com</code> like below:</p>
<pre><code>dn: mail=@example.com,ou=Users,domainName=example.com,o=domains,dc=iredmail,dc=org
accountstatus: active
cn: catch-all
mail: @example.com
mailForwardingAddress: user_1@example.com
mailForwardingAddress: user_2@example.com
objectclass: inetOrgPerson
objectclass: mailUser
sn: catch-all
uid: catch-all
</code></pre>
<p>With above catch-all account, emails sent to non-existing addresses will be
forwarded to both <code>user_1@example.com</code> and <code>user_2@example.com</code>.</p>
<p><strong>NOTES</strong>:</p>
<ul>
<li>Address <code>user_1@example.com</code> and <code>user_2@example.com</code> must exist.</li>
<li>With iRedAdmin-Pro, you can manage catch-all account in domain
profile directly. Screenshot attached.</li>
</ul>
<p><img alt="" src="./images/iredadmin/domain_profile_catchall.png" /></p>
<h2 id="see-also">See also</h2>
<ul>
<li><a href="./sql.add.catch-all.html">Add per-domain catch-all account for MySQL/MariaDB/PostgreSQL backends</a></li>
</ul><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>