New: html/zh_CN/install.iredmail.on.rhel.html.

This commit is contained in:
Zhang Huangbin 2016-04-20 01:48:51 +08:00
parent 581979d4c1
commit f5237e66fd
161 changed files with 1533 additions and 245 deletions

View File

@ -59,9 +59,11 @@ for lang in ${all_languages}; do
# Directory used to store converted html files. # Directory used to store converted html files.
OUTPUT_DIR="${ROOTDIR}/html" OUTPUT_DIR="${ROOTDIR}/html"
CSS_FILE='./css/markdown.css' CSS_FILE='./css/markdown.css'
IS_SUB_FOLDER='NO'
if [ X"${lang}" != X'en_US' ]; then if [ X"${lang}" != X'en_US' ]; then
OUTPUT_DIR="${ROOTDIR}/html/${lang}" OUTPUT_DIR="${ROOTDIR}/html/${lang}"
CSS_FILE='../css/markdown.css' CSS_FILE='../css/markdown.css'
IS_SUB_FOLDER='YES'
fi fi
# Markdown file used to store index of chapters/articles. # Markdown file used to store index of chapters/articles.
@ -158,7 +160,8 @@ for lang in ${all_languages}; do
output_filename="${article_html_file}" \ output_filename="${article_html_file}" \
title="${_article_title}" \ title="${_article_title}" \
add_index_link='yes' \ add_index_link='yes' \
css="${CSS_FILE}" css="${CSS_FILE}" \
is_sub_folder="${IS_SUB_FOLDER}"
if [ X"$?" == X'0' ]; then if [ X"$?" == X'0' ]; then
echo -e ' [DONE]' echo -e ' [DONE]'
@ -192,7 +195,10 @@ for lang in ${all_languages}; do
echo "* ${article_counter} files total for ${lang}." echo "* ${article_counter} files total for ${lang}."
echo "* Converting ${INDEX_MD} for index page." echo "* Converting ${INDEX_MD} for index page."
${CMD_CONVERT} ${INDEX_MD} ${OUTPUT_DIR} title="iRedMail Documentations" css="${CSS_FILE}" ${CMD_CONVERT} ${INDEX_MD} ${OUTPUT_DIR} \
title="iRedMail Documentations" \
css="${CSS_FILE}" \
is_sub_folder="${IS_SUB_FOLDER}"
# Cleanup and reset variables # Cleanup and reset variables
rm -f ${INDEX_MD} rm -f ${INDEX_MD}

View File

@ -26,11 +26,9 @@ pw = 'my_password'
r = requests.post(url + '/login', data={'username': admin, r = requests.post(url + '/login', data={'username': admin,
'password': pw}) 'password': pw})
# Get returned JSON data and get auth_token. # Get returned JSON data
data = r.json() data = r.json()
if data['success']: if not data['success']:
auth_token = r.text['auth_token']
else:
sys.exit('Login failed') sys.exit('Login failed')
cookies = r.cookies cookies = r.cookies

View File

@ -135,16 +135,10 @@ with iRedAdmin, our web-based iRedMail admin panel.
![](../images/installation/iredmail/backend.png) ![](../images/installation/iredmail/backend.png)
* If you choose to store mail accounts in OpenLDAP, iRedMail installer will * If you choose to store mail accounts in OpenLDAP, iRedMail installer will
ask you two questions about OpenLDAP. ask to set the LDAP suffix.
LDAP suffix.
![](../images/installation/iredmail/ldap_suffix.png) ![](../images/installation/iredmail/ldap_suffix.png)
Password of LDAP root dn.
![](../images/installation/iredmail/pw_of_ldap_root_dn.png)
!!! note "To MySQL/MariaDB/PostgreSQL users" !!! note "To MySQL/MariaDB/PostgreSQL users"
If you choose to store mail accounts in MySQL/MariaDB/PostgreSQL, iRedMail If you choose to store mail accounts in MySQL/MariaDB/PostgreSQL, iRedMail
@ -208,7 +202,7 @@ Configuration completed.
message in web browser or mail clients when accessing mailbox via message in web browser or mail clients when accessing mailbox via
HTTPS/IMAPS/POP3/SMTPS. [Let's Encrypt offers __FREE__ SSL certificate](https://letsencrypt.org). HTTPS/IMAPS/POP3/SMTPS. [Let's Encrypt offers __FREE__ SSL certificate](https://letsencrypt.org).
We have a document for you to We have a document for you to
[use a SSL certificate](http://www.iredmail.org/docs/use.a.bought.ssl.certificate.html). [use a SSL certificate](./use.a.bought.ssl.certificate.html).
* If you need to bulk create mail users, check our document for * If you need to bulk create mail users, check our document for
[OpenLDAP](./ldap.bulk.create.mail.users.html) and [OpenLDAP](./ldap.bulk.create.mail.users.html) and
[MySQL/MariaDB/PostgreSQL](./sql.bulk.create.mail.users.html). [MySQL/MariaDB/PostgreSQL](./sql.bulk.create.mail.users.html).

View File

@ -136,16 +136,10 @@ with iRedAdmin, our web-based iRedMail admin panel.
![](../images/installation/iredmail/backend.png) ![](../images/installation/iredmail/backend.png)
* If you choose to store mail accounts in OpenLDAP, iRedMail installer will * If you choose to store mail accounts in OpenLDAP, iRedMail installer will
ask you two questions about OpenLDAP. ask to set the LDAP suffix.
LDAP suffix.
![](../images/installation/iredmail/ldap_suffix.png) ![](../images/installation/iredmail/ldap_suffix.png)
Password of LDAP root dn.
![](../images/installation/iredmail/pw_of_ldap_root_dn.png)
!!! note "To MySQL/MariaDB/PostgreSQL users" !!! note "To MySQL/MariaDB/PostgreSQL users"
If you choose to store mail accounts in MySQL/MariaDB/PostgreSQL, iRedMail If you choose to store mail accounts in MySQL/MariaDB/PostgreSQL, iRedMail
@ -209,7 +203,7 @@ Configuration completed.
message in web browser or mail clients when accessing mailbox via message in web browser or mail clients when accessing mailbox via
HTTPS/IMAPS/POP3/SMTPS. [Let's Encrypt offers __FREE__ SSL certificate](https://letsencrypt.org). HTTPS/IMAPS/POP3/SMTPS. [Let's Encrypt offers __FREE__ SSL certificate](https://letsencrypt.org).
We have a document for you to We have a document for you to
[use a SSL certificate](http://www.iredmail.org/docs/use.a.bought.ssl.certificate.html). [use a SSL certificate](./use.a.bought.ssl.certificate.html).
* If you need to bulk create mail users, check our document for * If you need to bulk create mail users, check our document for
[OpenLDAP](./ldap.bulk.create.mail.users.html) and [OpenLDAP](./ldap.bulk.create.mail.users.html) and
[MySQL/MariaDB/PostgreSQL](./sql.bulk.create.mail.users.html). [MySQL/MariaDB/PostgreSQL](./sql.bulk.create.mail.users.html).

View File

@ -152,16 +152,10 @@ with iRedAdmin, our web-based iRedMail admin panel.
![](../images/installation/iredmail/backend.png) ![](../images/installation/iredmail/backend.png)
* If you choose to store mail accounts in OpenLDAP, iRedMail installer will * If you choose to store mail accounts in OpenLDAP, iRedMail installer will
ask you two questions about OpenLDAP. ask to set the LDAP suffix.
LDAP suffix.
![](../images/installation/iredmail/ldap_suffix.png) ![](../images/installation/iredmail/ldap_suffix.png)
Password of LDAP root dn.
![](../images/installation/iredmail/pw_of_ldap_root_dn.png)
!!! note "To MySQL/MariaDB/PostgreSQL users" !!! note "To MySQL/MariaDB/PostgreSQL users"
If you choose to store mail accounts in MySQL/MariaDB/PostgreSQL, iRedMail If you choose to store mail accounts in MySQL/MariaDB/PostgreSQL, iRedMail
@ -225,7 +219,7 @@ Configuration completed.
message in web browser or mail clients when accessing mailbox via message in web browser or mail clients when accessing mailbox via
HTTPS/IMAPS/POP3/SMTPS. [Let's Encrypt offers __FREE__ SSL certificate](https://letsencrypt.org). HTTPS/IMAPS/POP3/SMTPS. [Let's Encrypt offers __FREE__ SSL certificate](https://letsencrypt.org).
We have a document for you to We have a document for you to
[use a SSL certificate](http://www.iredmail.org/docs/use.a.bought.ssl.certificate.html). [use a SSL certificate](./use.a.bought.ssl.certificate.html).
* If you need to bulk create mail users, check our document for * If you need to bulk create mail users, check our document for
[OpenLDAP](./ldap.bulk.create.mail.users.html) and [OpenLDAP](./ldap.bulk.create.mail.users.html) and
[MySQL/MariaDB/PostgreSQL](./sql.bulk.create.mail.users.html). [MySQL/MariaDB/PostgreSQL](./sql.bulk.create.mail.users.html).

View File

@ -159,16 +159,10 @@ with iRedAdmin, our web-based iRedMail admin panel.
![](../images/installation/iredmail/backend.png) ![](../images/installation/iredmail/backend.png)
* If you choose to store mail accounts in OpenLDAP, iRedMail installer will * If you choose to store mail accounts in OpenLDAP, iRedMail installer will
ask you two questions about OpenLDAP. ask to set the LDAP suffix.
LDAP suffix.
![](../images/installation/iredmail/ldap_suffix.png) ![](../images/installation/iredmail/ldap_suffix.png)
Password of LDAP root dn.
![](../images/installation/iredmail/pw_of_ldap_root_dn.png)
!!! note "To MySQL/MariaDB/PostgreSQL users" !!! note "To MySQL/MariaDB/PostgreSQL users"
If you choose to store mail accounts in MySQL/MariaDB/PostgreSQL, iRedMail If you choose to store mail accounts in MySQL/MariaDB/PostgreSQL, iRedMail
@ -232,7 +226,7 @@ Configuration completed.
message in web browser or mail clients when accessing mailbox via message in web browser or mail clients when accessing mailbox via
HTTPS/IMAPS/POP3/SMTPS. [Let's Encrypt offers __FREE__ SSL certificate](https://letsencrypt.org). HTTPS/IMAPS/POP3/SMTPS. [Let's Encrypt offers __FREE__ SSL certificate](https://letsencrypt.org).
We have a document for you to We have a document for you to
[use a SSL certificate](http://www.iredmail.org/docs/use.a.bought.ssl.certificate.html). [use a SSL certificate](./use.a.bought.ssl.certificate.html).
* If you need to bulk create mail users, check our document for * If you need to bulk create mail users, check our document for
[OpenLDAP](./ldap.bulk.create.mail.users.html) and [OpenLDAP](./ldap.bulk.create.mail.users.html) and
[MySQL/MariaDB/PostgreSQL](./sql.bulk.create.mail.users.html). [MySQL/MariaDB/PostgreSQL](./sql.bulk.create.mail.users.html).

View File

@ -5,6 +5,7 @@
> This tutorial is available in other languages: > This tutorial is available in other languages:
> >
> * [Russian](http://www.everycloudtech.com/install.iredmail.on.rhel). Thanks to [Everycloudtech](http://www.everycloudtech.com/). > * [Russian](http://www.everycloudtech.com/install.iredmail.on.rhel). Thanks to [Everycloudtech](http://www.everycloudtech.com/).
> * [简体中文](./zh_CN/install.iredmail.on.rhel.html)
## System Requirements ## System Requirements
@ -167,16 +168,10 @@ with iRedAdmin, our web-based iRedMail admin panel.
![](../images/installation/iredmail/backend.png) ![](../images/installation/iredmail/backend.png)
* If you choose to store mail accounts in OpenLDAP, iRedMail installer will * If you choose to store mail accounts in OpenLDAP, iRedMail installer will
ask you two questions about OpenLDAP. ask to set the LDAP suffix.
* LDAP suffix.
![](../images/installation/iredmail/ldap_suffix.png) ![](../images/installation/iredmail/ldap_suffix.png)
* Password of LDAP root dn.
![](../images/installation/iredmail/pw_of_ldap_root_dn.png)
!!! note "To MySQL/MariaDB/PostgreSQL users" !!! note "To MySQL/MariaDB/PostgreSQL users"
If you choose to store mail accounts in MySQL/MariaDB/PostgreSQL, iRedMail If you choose to store mail accounts in MySQL/MariaDB/PostgreSQL, iRedMail
@ -240,7 +235,7 @@ Configuration completed.
message in web browser or mail clients when accessing mailbox via message in web browser or mail clients when accessing mailbox via
HTTPS/IMAPS/POP3/SMTPS. [Let's Encrypt offers __FREE__ SSL certificate](https://letsencrypt.org). HTTPS/IMAPS/POP3/SMTPS. [Let's Encrypt offers __FREE__ SSL certificate](https://letsencrypt.org).
We have a document for you to We have a document for you to
[use a SSL certificate](http://www.iredmail.org/docs/use.a.bought.ssl.certificate.html). [use a SSL certificate](./use.a.bought.ssl.certificate.html).
* If you need to bulk create mail users, check our document for * If you need to bulk create mail users, check our document for
[OpenLDAP](./ldap.bulk.create.mail.users.html) and [OpenLDAP](./ldap.bulk.create.mail.users.html) and
[MySQL/MariaDB/PostgreSQL](./sql.bulk.create.mail.users.html). [MySQL/MariaDB/PostgreSQL](./sql.bulk.create.mail.users.html).

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="integrate-microsoft-active-directory-in-iredmail">Integrate Microsoft Active Directory in iRedMail</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="integrate-microsoft-active-directory-in-iredmail">Integrate Microsoft Active Directory in iRedMail</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="exchange-activesync-setup-android-devices">Exchange ActiveSync: Setup Android devices</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="exchange-activesync-setup-android-devices">Exchange ActiveSync: Setup Android devices</h1>
<div class="admonition note"> <div class="admonition note">
<p class="admonition-title">Important Notes</p> <p class="admonition-title">Important Notes</p>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="exchange-activesync-setup-blackberry-10-devices">Exchange ActiveSync: Setup BlackBerry 10 devices</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="exchange-activesync-setup-blackberry-10-devices">Exchange ActiveSync: Setup BlackBerry 10 devices</h1>
<div class="admonition note"> <div class="admonition note">
<p class="admonition-title">Important Notes</p> <p class="admonition-title">Important Notes</p>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="exchange-activesync-setup-ios-devices">Exchange ActiveSync: Setup iOS devices</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="exchange-activesync-setup-ios-devices">Exchange ActiveSync: Setup iOS devices</h1>
<div class="admonition note"> <div class="admonition note">
<p class="admonition-title">Important Notes</p> <p class="admonition-title">Important Notes</p>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="exchange-activesync-setup-outlook-2013-for-windows">Exchange ActiveSync: Setup Outlook 2013 for Windows</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="exchange-activesync-setup-outlook-2013-for-windows">Exchange ActiveSync: Setup Outlook 2013 for Windows</h1>
<div class="admonition note"> <div class="admonition note">
<p class="admonition-title">Important Notes</p> <p class="admonition-title">Important Notes</p>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="allow-internal-network-devices-to-send-email-with-insecure-connection">Allow internal network devices to send email with insecure connection</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="allow-internal-network-devices-to-send-email-with-insecure-connection">Allow internal network devices to send email with insecure connection</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="allow-certain-users-to-send-email-as-another-user">Allow certain users to send email as another user</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="allow-certain-users-to-send-email-as-another-user">Allow certain users to send email as another user</h1>
<p>iRedMail configures Postfix to <p>iRedMail configures Postfix to
reject the request when sender specifies an owner for the MAIL FROM address reject the request when sender specifies an owner for the MAIL FROM address

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="allow-insecure-pop3imapsmtp-connections-without-starttls">Allow insecure POP3/IMAP/SMTP connections without STARTTLS</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="allow-insecure-pop3imapsmtp-connections-without-starttls">Allow insecure POP3/IMAP/SMTP connections without STARTTLS</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="allow-member-to-send-email-as-mailing-list-or-mail-alias">Allow member to send email as mailing list or mail alias</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="allow-member-to-send-email-as-mailing-list-or-mail-alias">Allow member to send email as mailing list or mail alias</h1>
<p>To allow member of mailing list (or mail alias) account to send email as this <p>To allow member of mailing list (or mail alias) account to send email as this
mailing list (or mail alias), please follw steps below:</p> mailing list (or mail alias), please follw steps below:</p>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="allow-user-to-send-email-without-smtp-authentication">Allow user to send email without smtp authentication</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="allow-user-to-send-email-without-smtp-authentication">Allow user to send email without smtp authentication</h1>
<p>Create a plain text file: <code>/etc/postfix/accepted_unauth_senders</code>, list all <p>Create a plain text file: <code>/etc/postfix/accepted_unauth_senders</code>, list all
users' email addresses which are allowed to send email without smtp users' email addresses which are allowed to send email without smtp

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="amavisd-enable-per-recipient-policy-lookup">Amavisd: Enable per-recipient policy lookup</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="amavisd-enable-per-recipient-policy-lookup">Amavisd: Enable per-recipient policy lookup</h1>
<p>With per-recipient policy lookup, you can achieve per-recipient white/blacklists, <p>With per-recipient policy lookup, you can achieve per-recipient white/blacklists,
basic spamassassin preferences, etc. Settings are available as global setting, basic spamassassin preferences, etc. Settings are available as global setting,

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="explanation-of-amavisd-sql-database">Explanation of Amavisd SQL database</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="explanation-of-amavisd-sql-database">Explanation of Amavisd SQL database</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="whitelists-and-blacklists">Whitelists and Blacklists</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="whitelists-and-blacklists">Whitelists and Blacklists</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="authenticate-without-domain-part-in-email-address">Authenticate without domain part in email address</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="authenticate-without-domain-part-in-email-address">Authenticate without domain part in email address</h1>
<p>With default settings, client must use full email address as username for <p>With default settings, client must use full email address as username for
POP3/IMAP/SMTP/webmail login, if you want to login without domain name part in POP3/IMAP/SMTP/webmail login, if you want to login without domain name part in

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="backup-and-restore">Backup and restore</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="backup-and-restore">Backup and restore</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="change-mail-attachment-size">Change mail attachment size</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="change-mail-attachment-size">Change mail attachment size</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="change-server-hostname">Change server hostname</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="change-server-hostname">Change server hostname</h1>
<p>To change server hostname after iRedMail installation, please update below <p>To change server hostname after iRedMail installation, please update below
files to replace old hostname by the new one:</p> files to replace old hostname by the new one:</p>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="migrate-from-cluebringer-to-iredapd">Migrate from Cluebringer to iRedAPD</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="migrate-from-cluebringer-to-iredapd">Migrate from Cluebringer to iRedAPD</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="completely-disable-amavisd-clamav-spamassassin">Completely disable Amavisd + ClamAV + SpamAssassin</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="completely-disable-amavisd-clamav-spamassassin">Completely disable Amavisd + ClamAV + SpamAssassin</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="process-more-emails-concurrently">Process more emails concurrently</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="process-more-emails-concurrently">Process more emails concurrently</h1>
<p><strong>WARNING</strong>: Processing more concurrent emails require more RAM.</p> <p><strong>WARNING</strong>: Processing more concurrent emails require more RAM.</p>
<p>Amavisd-new is content filter, it invokes SpamAssassin and ClamAV for <p>Amavisd-new is content filter, it invokes SpamAssassin and ClamAV for

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="setup-thunderbird-pop3imap-smtp-and-global-ldap-address-book">Setup Thunderbird: POP3/IMAP, SMTP and global ldap address book</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="setup-thunderbird-pop3imap-smtp-and-global-ldap-address-book">Setup Thunderbird: POP3/IMAP, SMTP and global ldap address book</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="customize-maildir-path">Customize maildir path</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="customize-maildir-path">Customize maildir path</h1>
<p>iRedAdmin offers several settings to customize the maildir path, default values <p>iRedAdmin offers several settings to customize the maildir path, default values
are stored in file <code>libs/default_settings.py</code>, if you need to change them, are stored in file <code>libs/default_settings.py</code>, if you need to change them,

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="integrate-dbmail-with-iredmail-mysql-backend-on-centos">Integrate DBMail with iRedMail (MySQL backend) on CentOS</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="integrate-dbmail-with-iredmail-mysql-backend-on-centos">Integrate DBMail with iRedMail (MySQL backend) on CentOS</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="turn-on-debug-mode-in-amavisd-and-spamassassin">Turn on debug mode in Amavisd and SpamAssassin</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="turn-on-debug-mode-in-amavisd-and-spamassassin">Turn on debug mode in Amavisd and SpamAssassin</h1>
<p>In <a href="./file.locations.html#amavisd">Amavisd config file</a>, change <code>$log_level</code>, <p>In <a href="./file.locations.html#amavisd">Amavisd config file</a>, change <code>$log_level</code>,
then restart amavis service.</p> then restart amavis service.</p>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="turn-on-debug-mode-in-cluebringer">Turn on debug mode in Cluebringer</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="turn-on-debug-mode-in-cluebringer">Turn on debug mode in Cluebringer</h1>
<div class="admonition warning"> <div class="admonition warning">
<p class="admonition-title">Warning</p> <p class="admonition-title">Warning</p>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="turn-on-debug-mode-in-dovecot">Turn on debug mode in Dovecot</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="turn-on-debug-mode-in-dovecot">Turn on debug mode in Dovecot</h1>
<blockquote> <blockquote>
<p>Don't know where Dovecot config files are? check this tutorial: <p>Don't know where Dovecot config files are? check this tutorial:

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="turn-on-debug-mode-in-iredapd">Turn on debug mode in iRedAPD</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="turn-on-debug-mode-in-iredapd">Turn on debug mode in iRedAPD</h1>
<p>To turn on debug mode in iRedAPD, please set its log level to <code>debug</code> in <p>To turn on debug mode in iRedAPD, please set its log level to <code>debug</code> in
iRedAPD config file <code>/opt/iredapd/settings.py</code>, then restart iRedAPD iRedAPD config file <code>/opt/iredapd/settings.py</code>, then restart iRedAPD

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="log-executed-sql-commands-in-mysqlmariadb">Log executed SQL commands in MySQL/MariaDB</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="log-executed-sql-commands-in-mysqlmariadb">Log executed SQL commands in MySQL/MariaDB</h1>
<blockquote> <blockquote>
<p>Don't know where MySQL config file is? check this tutorial: <p>Don't know where MySQL config file is? check this tutorial:

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="turn-on-debug-mode-in-openldap">Turn on debug mode in OpenLDAP</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="turn-on-debug-mode-in-openldap">Turn on debug mode in OpenLDAP</h1>
<p>In OpenLDAP config file <code>slapd.conf</code>, update parameter <code>loglevel</code> to value <code>256</code>, then restart OpenLDAP service.</p> <p>In OpenLDAP config file <code>slapd.conf</code>, update parameter <code>loglevel</code> to value <code>256</code>, then restart OpenLDAP service.</p>
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="turn-on-debug-mode-in-roundcube-webmail">Turn on debug mode in Roundcube webmail</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="turn-on-debug-mode-in-roundcube-webmail">Turn on debug mode in Roundcube webmail</h1>
<p>Please follow the tutorial to find Roundcube config file <p>Please follow the tutorial to find Roundcube config file
(<code>config/config.inc.php</code>) first: (<code>config/config.inc.php</code>) first:

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="disable-greylisting-in-cluebringer">Disable greylisting in Cluebringer</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="disable-greylisting-in-cluebringer">Disable greylisting in Cluebringer</h1>
<div class="admonition warning"> <div class="admonition warning">
<p class="admonition-title">Warning</p> <p class="admonition-title">Warning</p>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="disable-spam-virus-scanning-for-outgoing-mails">Disable spam virus scanning for outgoing mails</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="disable-spam-virus-scanning-for-outgoing-mails">Disable spam virus scanning for outgoing mails</h1>
<p>To disable spam/virus scanning for outgoing mails, you can add bypass settings <p>To disable spam/virus scanning for outgoing mails, you can add bypass settings
in Amavisd config file: <code>/etc/amavisd/amavisd.conf</code> (RHEL/CentOS) or in Amavisd config file: <code>/etc/amavisd/amavisd.conf</code> (RHEL/CentOS) or

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="dovecot-master-user-access-users-mailbox-without-owners-password">Dovecot Master User: Access user's mailbox without owner's password.</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="dovecot-master-user-access-users-mailbox-without-owners-password">Dovecot Master User: Access user's mailbox without owner's password.</h1>
<p>iRedMail-0.8.6 and later releases have Dovecot Master User enabled for all <p>iRedMail-0.8.6 and later releases have Dovecot Master User enabled for all
backends (OpenLDAP, MySQL/MariaDB, PostgreSQL) by default, what you need to do backends (OpenLDAP, MySQL/MariaDB, PostgreSQL) by default, what you need to do

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="integrate-ejabberd-with-iredmail">Integrate ejabberd with iRedMail</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="integrate-ejabberd-with-iredmail">Integrate ejabberd with iRedMail</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="enable-dnsbl-service-in-postfix-to-reduce-spam">Enable DNSBL service in Postfix to reduce spam</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="enable-dnsbl-service-in-postfix-to-reduce-spam">Enable DNSBL service in Postfix to reduce spam</h1>
<div class="admonition note"> <div class="admonition note">
<p class="admonition-title">Important Note</p> <p class="admonition-title">Important Note</p>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="enable-postscreen-service">Enable postscreen service</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="enable-postscreen-service">Enable postscreen service</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="enable-smtps-service-smtp-over-ssl-port-465">Enable SMTPS service (SMTP over SSL, port 465)</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="enable-smtps-service-smtp-over-ssl-port-465">Enable SMTPS service (SMTP over SSL, port 465)</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="errors-you-may-see-while-maintaining-iredmail-server">Errors you may see while maintaining iRedMail server</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="errors-you-may-see-while-maintaining-iredmail-server">Errors you may see while maintaining iRedMail server</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="locations-of-configuration-and-log-files-of-major-components">Locations of configuration and log files of major components</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="locations-of-configuration-and-log-files-of-major-components">Locations of configuration and log files of major components</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="force-mail-user-to-change-password-in-90-days">Force mail user to change password in 90 days</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="force-mail-user-to-change-password-in-90-days">Force mail user to change password in 90 days</h1>
<h2 id="how-it-works">How it works</h2> <h2 id="how-it-works">How it works</h2>
<p>iRedMail configures Roundcube webmail to store last password change date while <p>iRedMail configures Roundcube webmail to store last password change date while

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="build-an-iredmail-fail-over-cluster-with-keepalived-haproxy-glusterfs-openldap-mariadb">Build an iRedMail fail-over Cluster with KeepAlived, HAProxy, GlusterFS, OpenLDAP, Mariadb</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="build-an-iredmail-fail-over-cluster-with-keepalived-haproxy-glusterfs-openldap-mariadb">Build an iRedMail fail-over Cluster with KeepAlived, HAProxy, GlusterFS, OpenLDAP, Mariadb</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="ignore-trash-folder-in-mailbox-quota">Ignore Trash folder in mailbox quota</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="ignore-trash-folder-in-mailbox-quota">Ignore Trash folder in mailbox quota</h1>
<p>Per-user mailbox quota rule is defined in Dovecot, in one of below files:</p> <p>Per-user mailbox quota rule is defined in Dovecot, in one of below files:</p>
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" target="_blank">
<img alt="iRedMail web site"
src="./images/logo-iredmail.png"
style="vertical-align: middle; height: 30px;"
/>&nbsp;
<span>iRedMail</span>
</a>
</div><h3 id="overview">Overview</h3> </div><h3 id="overview">Overview</h3>
<ul> <ul>
<li><a href="./why.build.your.own.mail.server.html">Why build your own mail server instead of outsourcing to external entities</a></li> <li><a href="./why.build.your.own.mail.server.html">Why build your own mail server instead of outsourcing to external entities</a></li>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="install-iredadmin-on-debian-ubuntu">Install iRedAdmin on Debian, Ubuntu</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="install-iredadmin-on-debian-ubuntu">Install iRedAdmin on Debian, Ubuntu</h1>
<blockquote> <blockquote>
<p>This tutorial is used to install iRedAdmin from scratch, running under Apache <p>This tutorial is used to install iRedAdmin from scratch, running under Apache

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="install-iredadmin-on-freebsd">Install iRedAdmin on FreeBSD</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="install-iredadmin-on-freebsd">Install iRedAdmin on FreeBSD</h1>
<blockquote> <blockquote>
<p>This tutorial is used to install iRedAdmin from scratch, running under Apache <p>This tutorial is used to install iRedAdmin from scratch, running under Apache

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="install-iredadmin-on-openbsd">Install iRedAdmin on OpenBSD</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="install-iredadmin-on-openbsd">Install iRedAdmin on OpenBSD</h1>
<blockquote> <blockquote>
<p>This tutorial is used to install iRedAdmin from scratch, running under Apache <p>This tutorial is used to install iRedAdmin from scratch, running under Apache

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="install-iredadmin-on-red-hat-enterprise-linux-centos-scientific-linux">Install iRedAdmin on Red Hat Enterprise Linux, CentOS, Scientific Linux</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="install-iredadmin-on-red-hat-enterprise-linux-centos-scientific-linux">Install iRedAdmin on Red Hat Enterprise Linux, CentOS, Scientific Linux</h1>
<blockquote> <blockquote>
<p>This tutorial is used to install iRedAdmin from scratch, running under Apache <p>This tutorial is used to install iRedAdmin from scratch, running under Apache

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="install-iredmail-on-debian-or-ubuntu-linux">Install iRedMail on Debian or Ubuntu Linux</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="install-iredmail-on-debian-or-ubuntu-linux">Install iRedMail on Debian or Ubuntu Linux</h1>
<div class="toc"> <div class="toc">
<ul> <ul>
@ -150,12 +156,9 @@ management and maintenance after installation.</p>
<p><img alt="" src="../images/installation/iredmail/backend.png" /></p> <p><img alt="" src="../images/installation/iredmail/backend.png" /></p>
<ul> <ul>
<li>If you choose to store mail accounts in OpenLDAP, iRedMail installer will <li>If you choose to store mail accounts in OpenLDAP, iRedMail installer will
ask you two questions about OpenLDAP.</li> ask to set the LDAP suffix.</li>
</ul> </ul>
<p>LDAP suffix.</p>
<p><img alt="" src="../images/installation/iredmail/ldap_suffix.png" /></p> <p><img alt="" src="../images/installation/iredmail/ldap_suffix.png" /></p>
<p>Password of LDAP root dn.</p>
<p><img alt="" src="../images/installation/iredmail/pw_of_ldap_root_dn.png" /></p>
<div class="admonition note"> <div class="admonition note">
<p class="admonition-title">To MySQL/MariaDB/PostgreSQL users</p> <p class="admonition-title">To MySQL/MariaDB/PostgreSQL users</p>
<p>If you choose to store mail accounts in MySQL/MariaDB/PostgreSQL, iRedMail <p>If you choose to store mail accounts in MySQL/MariaDB/PostgreSQL, iRedMail
@ -220,7 +223,7 @@ Please <strong>ALWAYS ALWAYS ALWAYS</strong> force users to use a strong passwor
message in web browser or mail clients when accessing mailbox via message in web browser or mail clients when accessing mailbox via
HTTPS/IMAPS/POP3/SMTPS. <a href="https://letsencrypt.org">Let's Encrypt offers <strong>FREE</strong> SSL certificate</a>. HTTPS/IMAPS/POP3/SMTPS. <a href="https://letsencrypt.org">Let's Encrypt offers <strong>FREE</strong> SSL certificate</a>.
We have a document for you to We have a document for you to
<a href="http://www.iredmail.org/docs/use.a.bought.ssl.certificate.html">use a SSL certificate</a>.</li> <a href="./use.a.bought.ssl.certificate.html">use a SSL certificate</a>.</li>
<li>If you need to bulk create mail users, check our document for <li>If you need to bulk create mail users, check our document for
<a href="./ldap.bulk.create.mail.users.html">OpenLDAP</a> and <a href="./ldap.bulk.create.mail.users.html">OpenLDAP</a> and
<a href="./sql.bulk.create.mail.users.html">MySQL/MariaDB/PostgreSQL</a>.</li> <a href="./sql.bulk.create.mail.users.html">MySQL/MariaDB/PostgreSQL</a>.</li>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="install-iredmail-on-freebsd">Install iRedMail on FreeBSD</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="install-iredmail-on-freebsd">Install iRedMail on FreeBSD</h1>
<div class="toc"> <div class="toc">
<ul> <ul>
@ -149,12 +155,9 @@ management and maintenance after installation.</p>
<p><img alt="" src="../images/installation/iredmail/backend.png" /></p> <p><img alt="" src="../images/installation/iredmail/backend.png" /></p>
<ul> <ul>
<li>If you choose to store mail accounts in OpenLDAP, iRedMail installer will <li>If you choose to store mail accounts in OpenLDAP, iRedMail installer will
ask you two questions about OpenLDAP.</li> ask to set the LDAP suffix.</li>
</ul> </ul>
<p>LDAP suffix.</p>
<p><img alt="" src="../images/installation/iredmail/ldap_suffix.png" /></p> <p><img alt="" src="../images/installation/iredmail/ldap_suffix.png" /></p>
<p>Password of LDAP root dn.</p>
<p><img alt="" src="../images/installation/iredmail/pw_of_ldap_root_dn.png" /></p>
<div class="admonition note"> <div class="admonition note">
<p class="admonition-title">To MySQL/MariaDB/PostgreSQL users</p> <p class="admonition-title">To MySQL/MariaDB/PostgreSQL users</p>
<p>If you choose to store mail accounts in MySQL/MariaDB/PostgreSQL, iRedMail <p>If you choose to store mail accounts in MySQL/MariaDB/PostgreSQL, iRedMail
@ -219,7 +222,7 @@ Please <strong>ALWAYS ALWAYS ALWAYS</strong> force users to use a strong passwor
message in web browser or mail clients when accessing mailbox via message in web browser or mail clients when accessing mailbox via
HTTPS/IMAPS/POP3/SMTPS. <a href="https://letsencrypt.org">Let's Encrypt offers <strong>FREE</strong> SSL certificate</a>. HTTPS/IMAPS/POP3/SMTPS. <a href="https://letsencrypt.org">Let's Encrypt offers <strong>FREE</strong> SSL certificate</a>.
We have a document for you to We have a document for you to
<a href="http://www.iredmail.org/docs/use.a.bought.ssl.certificate.html">use a SSL certificate</a>.</li> <a href="./use.a.bought.ssl.certificate.html">use a SSL certificate</a>.</li>
<li>If you need to bulk create mail users, check our document for <li>If you need to bulk create mail users, check our document for
<a href="./ldap.bulk.create.mail.users.html">OpenLDAP</a> and <a href="./ldap.bulk.create.mail.users.html">OpenLDAP</a> and
<a href="./sql.bulk.create.mail.users.html">MySQL/MariaDB/PostgreSQL</a>.</li> <a href="./sql.bulk.create.mail.users.html">MySQL/MariaDB/PostgreSQL</a>.</li>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="install-iredmail-on-freebsd-inside-jail-with-ezjail">Install iRedMail on FreeBSD inside Jail (with ezjail)</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="install-iredmail-on-freebsd-inside-jail-with-ezjail">Install iRedMail on FreeBSD inside Jail (with ezjail)</h1>
<div class="toc"> <div class="toc">
<ul> <ul>
@ -176,12 +182,9 @@ management and maintenance after installation.</p>
<p><img alt="" src="../images/installation/iredmail/backend.png" /></p> <p><img alt="" src="../images/installation/iredmail/backend.png" /></p>
<ul> <ul>
<li>If you choose to store mail accounts in OpenLDAP, iRedMail installer will <li>If you choose to store mail accounts in OpenLDAP, iRedMail installer will
ask you two questions about OpenLDAP.</li> ask to set the LDAP suffix.</li>
</ul> </ul>
<p>LDAP suffix.</p>
<p><img alt="" src="../images/installation/iredmail/ldap_suffix.png" /></p> <p><img alt="" src="../images/installation/iredmail/ldap_suffix.png" /></p>
<p>Password of LDAP root dn.</p>
<p><img alt="" src="../images/installation/iredmail/pw_of_ldap_root_dn.png" /></p>
<div class="admonition note"> <div class="admonition note">
<p class="admonition-title">To MySQL/MariaDB/PostgreSQL users</p> <p class="admonition-title">To MySQL/MariaDB/PostgreSQL users</p>
<p>If you choose to store mail accounts in MySQL/MariaDB/PostgreSQL, iRedMail <p>If you choose to store mail accounts in MySQL/MariaDB/PostgreSQL, iRedMail
@ -246,7 +249,7 @@ Please <strong>ALWAYS ALWAYS ALWAYS</strong> force users to use a strong passwor
message in web browser or mail clients when accessing mailbox via message in web browser or mail clients when accessing mailbox via
HTTPS/IMAPS/POP3/SMTPS. <a href="https://letsencrypt.org">Let's Encrypt offers <strong>FREE</strong> SSL certificate</a>. HTTPS/IMAPS/POP3/SMTPS. <a href="https://letsencrypt.org">Let's Encrypt offers <strong>FREE</strong> SSL certificate</a>.
We have a document for you to We have a document for you to
<a href="http://www.iredmail.org/docs/use.a.bought.ssl.certificate.html">use a SSL certificate</a>.</li> <a href="./use.a.bought.ssl.certificate.html">use a SSL certificate</a>.</li>
<li>If you need to bulk create mail users, check our document for <li>If you need to bulk create mail users, check our document for
<a href="./ldap.bulk.create.mail.users.html">OpenLDAP</a> and <a href="./ldap.bulk.create.mail.users.html">OpenLDAP</a> and
<a href="./sql.bulk.create.mail.users.html">MySQL/MariaDB/PostgreSQL</a>.</li> <a href="./sql.bulk.create.mail.users.html">MySQL/MariaDB/PostgreSQL</a>.</li>
@ -264,7 +267,7 @@ hostname or IP address.</p>
<li><strong>Awstats</strong>: <a href="httpS://your_server/awstats/awstats.pl?config=web">httpS://your_server/awstats/awstats.pl?config=web</a> (or <code>?config=smtp</code> for SMTP log)</li> <li><strong>Awstats</strong>: <a href="httpS://your_server/awstats/awstats.pl?config=web">httpS://your_server/awstats/awstats.pl?config=web</a> (or <code>?config=smtp</code> for SMTP log)</li>
</ul> </ul>
<h2 id="get-technical-support">Get technical support</h2> <h2 id="get-technical-support">Get technical support</h2>
<p>Please post all issues, feedbacks, feature requests, suggestions in our <a href="../forum/">online <p>Please post all issues, feedbacks, feature requests, suggestions in our <a href="http://www.iredmail.org/forum/">online
support forum</a>, it's more responsible than you support forum</a>, it's more responsible than you
expected.</p> expected.</p>
<h2 id="some-tips-for-freebsd-jail">Some Tips for FreeBSD Jail</h2> <h2 id="some-tips-for-freebsd-jail">Some Tips for FreeBSD Jail</h2>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="install-iredmail-on-openbsd">Install iRedMail on OpenBSD</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="install-iredmail-on-openbsd">Install iRedMail on OpenBSD</h1>
<div class="toc"> <div class="toc">
<ul> <ul>
@ -177,12 +183,9 @@ management and maintenance after installation.</p>
<p><img alt="" src="../images/installation/iredmail/backend.png" /></p> <p><img alt="" src="../images/installation/iredmail/backend.png" /></p>
<ul> <ul>
<li>If you choose to store mail accounts in OpenLDAP, iRedMail installer will <li>If you choose to store mail accounts in OpenLDAP, iRedMail installer will
ask you two questions about OpenLDAP.</li> ask to set the LDAP suffix.</li>
</ul> </ul>
<p>LDAP suffix.</p>
<p><img alt="" src="../images/installation/iredmail/ldap_suffix.png" /></p> <p><img alt="" src="../images/installation/iredmail/ldap_suffix.png" /></p>
<p>Password of LDAP root dn.</p>
<p><img alt="" src="../images/installation/iredmail/pw_of_ldap_root_dn.png" /></p>
<div class="admonition note"> <div class="admonition note">
<p class="admonition-title">To MySQL/MariaDB/PostgreSQL users</p> <p class="admonition-title">To MySQL/MariaDB/PostgreSQL users</p>
<p>If you choose to store mail accounts in MySQL/MariaDB/PostgreSQL, iRedMail <p>If you choose to store mail accounts in MySQL/MariaDB/PostgreSQL, iRedMail
@ -247,7 +250,7 @@ Please <strong>ALWAYS ALWAYS ALWAYS</strong> force users to use a strong passwor
message in web browser or mail clients when accessing mailbox via message in web browser or mail clients when accessing mailbox via
HTTPS/IMAPS/POP3/SMTPS. <a href="https://letsencrypt.org">Let's Encrypt offers <strong>FREE</strong> SSL certificate</a>. HTTPS/IMAPS/POP3/SMTPS. <a href="https://letsencrypt.org">Let's Encrypt offers <strong>FREE</strong> SSL certificate</a>.
We have a document for you to We have a document for you to
<a href="http://www.iredmail.org/docs/use.a.bought.ssl.certificate.html">use a SSL certificate</a>.</li> <a href="./use.a.bought.ssl.certificate.html">use a SSL certificate</a>.</li>
<li>If you need to bulk create mail users, check our document for <li>If you need to bulk create mail users, check our document for
<a href="./ldap.bulk.create.mail.users.html">OpenLDAP</a> and <a href="./ldap.bulk.create.mail.users.html">OpenLDAP</a> and
<a href="./sql.bulk.create.mail.users.html">MySQL/MariaDB/PostgreSQL</a>.</li> <a href="./sql.bulk.create.mail.users.html">MySQL/MariaDB/PostgreSQL</a>.</li>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="install-iredmail-on-red-hat-enterprise-linux-centos">Install iRedMail on Red Hat Enterprise Linux, CentOS</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="install-iredmail-on-red-hat-enterprise-linux-centos">Install iRedMail on Red Hat Enterprise Linux, CentOS</h1>
<div class="toc"> <div class="toc">
<ul> <ul>
@ -33,6 +39,7 @@
<p>This tutorial is available in other languages:</p> <p>This tutorial is available in other languages:</p>
<ul> <ul>
<li><a href="http://www.everycloudtech.com/install.iredmail.on.rhel">Russian</a>. Thanks to <a href="http://www.everycloudtech.com/">Everycloudtech</a>.</li> <li><a href="http://www.everycloudtech.com/install.iredmail.on.rhel">Russian</a>. Thanks to <a href="http://www.everycloudtech.com/">Everycloudtech</a>.</li>
<li><a href="./zh_CN/install.iredmail.on.rhel.html">简体中文</a></li>
</ul> </ul>
</blockquote> </blockquote>
<h2 id="system-requirements">System Requirements</h2> <h2 id="system-requirements">System Requirements</h2>
@ -180,18 +187,10 @@ management and maintenance after installation.</p>
</div> </div>
<p><img alt="" src="../images/installation/iredmail/backend.png" /></p> <p><img alt="" src="../images/installation/iredmail/backend.png" /></p>
<ul> <ul>
<li> <li>If you choose to store mail accounts in OpenLDAP, iRedMail installer will
<p>If you choose to store mail accounts in OpenLDAP, iRedMail installer will ask to set the LDAP suffix.</li>
ask you two questions about OpenLDAP.</p>
<ul>
<li>LDAP suffix.</li>
</ul>
</li>
</ul> </ul>
<p><img alt="" src="../images/installation/iredmail/ldap_suffix.png" /></p> <p><img alt="" src="../images/installation/iredmail/ldap_suffix.png" /></p>
<pre><code>* Password of LDAP root dn.
</code></pre>
<p><img alt="" src="../images/installation/iredmail/pw_of_ldap_root_dn.png" /></p>
<div class="admonition note"> <div class="admonition note">
<p class="admonition-title">To MySQL/MariaDB/PostgreSQL users</p> <p class="admonition-title">To MySQL/MariaDB/PostgreSQL users</p>
<p>If you choose to store mail accounts in MySQL/MariaDB/PostgreSQL, iRedMail <p>If you choose to store mail accounts in MySQL/MariaDB/PostgreSQL, iRedMail
@ -256,7 +255,7 @@ Please <strong>ALWAYS ALWAYS ALWAYS</strong> force users to use a strong passwor
message in web browser or mail clients when accessing mailbox via message in web browser or mail clients when accessing mailbox via
HTTPS/IMAPS/POP3/SMTPS. <a href="https://letsencrypt.org">Let's Encrypt offers <strong>FREE</strong> SSL certificate</a>. HTTPS/IMAPS/POP3/SMTPS. <a href="https://letsencrypt.org">Let's Encrypt offers <strong>FREE</strong> SSL certificate</a>.
We have a document for you to We have a document for you to
<a href="http://www.iredmail.org/docs/use.a.bought.ssl.certificate.html">use a SSL certificate</a>.</li> <a href="./use.a.bought.ssl.certificate.html">use a SSL certificate</a>.</li>
<li>If you need to bulk create mail users, check our document for <li>If you need to bulk create mail users, check our document for
<a href="./ldap.bulk.create.mail.users.html">OpenLDAP</a> and <a href="./ldap.bulk.create.mail.users.html">OpenLDAP</a> and
<a href="./sql.bulk.create.mail.users.html">MySQL/MariaDB/PostgreSQL</a>.</li> <a href="./sql.bulk.create.mail.users.html">MySQL/MariaDB/PostgreSQL</a>.</li>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="install-iredmail-with-a-remote-mysql-server">Install iRedMail with a remote MySQL server</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="install-iredmail-with-a-remote-mysql-server">Install iRedMail with a remote MySQL server</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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-default-password-restrictions">iRedAdmin-Pro: Default password restrictions</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="iredadmin-pro-default-password-restrictions">iRedAdmin-Pro: Default password restrictions</h1>
<p>iRedAdmin-Pro has some default password restrictions, you can find default <p>iRedAdmin-Pro has some default password restrictions, you can find default
settings in file <code>libs/default_settings.py</code> under iRedAdmin-Pro directory. settings in file <code>libs/default_settings.py</code> under iRedAdmin-Pro directory.

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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-web-based-admin-panel-release-notes-and-upgrade-tutorials">iRedAdmin-Pro (web-based admin panel) release notes and upgrade tutorials</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="iredadmin-pro-web-based-admin-panel-release-notes-and-upgrade-tutorials">iRedAdmin-Pro (web-based admin panel) release notes and upgrade tutorials</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="interact-iredadmin-pro-restful-api-with-curl">Interact iRedAdmin-Pro RESTful API with <code>curl</code></h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="interact-iredadmin-pro-restful-api-with-curl">Interact iRedAdmin-Pro RESTful API with <code>curl</code></h1>
<div class="admonition note"> <div class="admonition note">
<p class="admonition-title">Note</p> <p class="admonition-title">Note</p>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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-restful-api">iRedAdmin-Pro: RESTful API</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="iredadmin-pro-restful-api">iRedAdmin-Pro: RESTful API</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="interact-iredadmin-pro-restful-api-with-python">Interact iRedAdmin-Pro RESTful API with Python</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="interact-iredadmin-pro-restful-api-with-python">Interact iRedAdmin-Pro RESTful API with Python</h1>
<div class="admonition note"> <div class="admonition note">
<p class="admonition-title">Note</p> <p class="admonition-title">Note</p>
@ -35,11 +41,9 @@ pw = 'my_password'
r = requests.post(url + '/login', data={'username': admin, r = requests.post(url + '/login', data={'username': admin,
'password': pw}) 'password': pw})
# Get returned JSON data and get auth_token. # Get returned JSON data
data = r.json() data = r.json()
if data['success']: if not data['success']:
auth_token = r.text['auth_token']
else:
sys.exit('Login failed') sys.exit('Login failed')
cookies = r.cookies cookies = r.cookies

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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-enable-self-service-to-allow-users-to-manage-their-own-preferences-and-more">iRedAdmin-Pro: Enable self-service to allow users to manage their own preferences and more</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="iredadmin-pro-enable-self-service-to-allow-users-to-manage-their-own-preferences-and-more">iRedAdmin-Pro: Enable self-service to allow users to manage their own preferences and more</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="iredapd-postfix-access-policy-daemon-release-notes-and-upgrade-tutorials">iRedAPD (Postfix Access Policy Daemon) release notes and upgrade tutorials</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="iredapd-postfix-access-policy-daemon-release-notes-and-upgrade-tutorials">iRedAPD (Postfix Access Policy Daemon) release notes and upgrade tutorials</h1>
<div class="admonition note"> <div class="admonition note">
<p class="admonition-title">Note</p> <p class="admonition-title">Note</p>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="iredmail-release-notes-and-upgrade-tutorials">iRedMail release notes and upgrade tutorials</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="iredmail-release-notes-and-upgrade-tutorials">iRedMail release notes and upgrade tutorials</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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-an-alias-domain">LDAP: Add an alias domain</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="ldap-add-an-alias-domain">LDAP: Add an alias domain</h1>
<h2 id="what-an-alias-domain-is-used-for">What an alias domain is used for?</h2> <h2 id="what-an-alias-domain-is-used-for">What an alias domain is used for?</h2>
<p>Let's say you have a mail domain <code>example.com</code> hosted on your iRedMail server, <p>Let's say you have a mail domain <code>example.com</code> hosted on your iRedMail server,

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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> &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 <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 accounts under hosted mail domains. If you want to accept these emails, you

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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-a-mail-alias-account">LDAP: Add a mail alias account</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="ldap-add-a-mail-alias-account">LDAP: Add a mail alias account</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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-a-mail-list-account">LDAP: Add a mail list account</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="ldap-add-a-mail-list-account">LDAP: Add a mail list account</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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-bulk-create-mail-users">LDAP: Bulk create mail users</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="ldap-bulk-create-mail-users">LDAP: Bulk create mail users</h1>
<p>iRedMail ships 2 scripts to help you create many mail users quickly.</p> <p>iRedMail ships 2 scripts to help you create many mail users quickly.</p>
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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-user-mail-forwarding">LDAP: User mail forwarding</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="ldap-user-mail-forwarding">LDAP: User mail forwarding</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="mailbox-sharing-sharing-imap-folder-with-other-users">Mailbox sharing (Sharing IMAP folder with other users)</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="mailbox-sharing-sharing-imap-folder-with-other-users">Mailbox sharing (Sharing IMAP folder with other users)</h1>
<div class="admonition note"> <div class="admonition note">
<p class="admonition-title">Note</p> <p class="admonition-title">Note</p>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="manage-iredapd-whiteblacklists-greylisting">Manage iRedAPD (white/blacklists, greylisting)</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="manage-iredapd-whiteblacklists-greylisting">Manage iRedAPD (white/blacklists, greylisting)</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="migrate-or-upgrade-iredadmin">Migrate or upgrade iRedAdmin</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="migrate-or-upgrade-iredadmin">Migrate or upgrade iRedAdmin</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="migrate-old-iredmail-server-to-the-latest-stable-release">Migrate old iRedMail server to the latest stable release</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="migrate-old-iredmail-server-to-the-latest-stable-release">Migrate old iRedMail server to the latest stable release</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="monitor-incoming-and-outgoing-mails-with-bcc">Monitor incoming and outgoing mails with BCC</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="monitor-incoming-and-outgoing-mails-with-bcc">Monitor incoming and outgoing mails with BCC</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="move-detected-spam-to-junk-folder">Move detected spam to Junk folder</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="move-detected-spam-to-junk-folder">Move detected spam to Junk folder</h1>
<p>To move detected spam to user's Junk folder, you need to enable global sieve <p>To move detected spam to user's Junk folder, you need to enable global sieve
script in Dovecot.</p> script in Dovecot.</p>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="which-network-ports-are-open-by-iredmail">Which network ports are open by iRedMail</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="which-network-ports-are-open-by-iredmail">Which network ports are open by iRedMail</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="amavisd-spamassassin-not-working-no-mail-header-x-spam-inserted">Amavisd + SpamAssassin not working? no mail header (X-Spam-*) inserted</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="amavisd-spamassassin-not-working-no-mail-header-x-spam-inserted">Amavisd + SpamAssassin not working? no mail header (X-Spam-*) inserted</h1>
<p>Amavisd has below setting in its config file <code>/etc/amavisd/amavisd.conf</code> by default:</p> <p>Amavisd has below setting in its config file <code>/etc/amavisd/amavisd.conf</code> by default:</p>
<pre><code>$sa_tag_level_deflt = 2.0; <pre><code>$sa_tag_level_deflt = 2.0;

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="password-hashes">Password hashes</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="password-hashes">Password hashes</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="per-domain-or-per-user-transport-relay">Per-domain or per-user transport (relay)</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="per-domain-or-per-user-transport-relay">Per-domain or per-user transport (relay)</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="deprecated-per-user-outbound-restrictions">[DEPRECATED] Per-user outbound restrictions</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="deprecated-per-user-outbound-restrictions">[DEPRECATED] Per-user outbound restrictions</h1>
<p><strong>WARNING: THIS DOCUMENT IS <em>DEPRECATED</em>, PLEASE DO NOT APPLY IT.</strong></p> <p><strong>WARNING: THIS DOCUMENT IS <em>DEPRECATED</em>, PLEASE DO NOT APPLY IT.</strong></p>
<h2 id="sql-backends">SQL backends</h2> <h2 id="sql-backends">SQL backends</h2>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="performance-tuning">Performance tuning</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="performance-tuning">Performance tuning</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="pipe-incoming-email-for-certain-user-to-external-script">Pipe incoming email for certain user to external script</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="pipe-incoming-email-for-certain-user-to-external-script">Pipe incoming email for certain user to external script</h1>
<p>This tutorial explains how to pipe incoming email for certain user to external script.</p> <p>This tutorial explains how to pipe incoming email for certain user to external script.</p>
<h2 id="configure-postfix-to-use-your-external-script-as-transport">Configure Postfix to use your external script as transport</h2> <h2 id="configure-postfix-to-use-your-external-script-as-transport">Configure Postfix to use your external script as transport</h2>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="how-to-create-and-manage-public-folder">How to create and manage public folder</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="how-to-create-and-manage-public-folder">How to create and manage public folder</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="install-pure-ftpd-with-openldap-backend-on-rhelcentos">Install Pure-FTPd with OpenLDAP backend on RHEL/CentOS</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="install-pure-ftpd-with-openldap-backend-on-rhelcentos">Install Pure-FTPd with OpenLDAP backend on RHEL/CentOS</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="quarantine-clean-emails-sent-fromto-certain-local-user">Quarantine clean emails sent from/to certain local user</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="quarantine-clean-emails-sent-fromto-certain-local-user">Quarantine clean emails sent from/to certain local user</h1>
<p>Update <a href="./file.locations.html#amavisd">Amavisd config file</a>, ask it to listen on one additional network port <p>Update <a href="./file.locations.html#amavisd">Amavisd config file</a>, ask it to listen on one additional network port
<code>10030</code> (you're free to use another port), and one additional <code>policy_bank</code>:</p> <code>10030</code> (you're free to use another port), and one additional <code>policy_bank</code>:</p>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="quarantining">Quarantining</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="quarantining">Quarantining</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="force-dovecot-to-recalculate-mailbox-quota">Force Dovecot to recalculate mailbox quota</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="force-dovecot-to-recalculate-mailbox-quota">Force Dovecot to recalculate mailbox quota</h1>
<h2 id="dovecot-2x">Dovecot-2.x</h2> <h2 id="dovecot-2x">Dovecot-2.x</h2>
<p>Dovecot provides command line tool <code>doveadm</code> to recalcuate mailbox quota. <p>Dovecot provides command line tool <code>doveadm</code> to recalcuate mailbox quota.

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="reset-user-password">Reset user password</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="reset-user-password">Reset user password</h1>
<blockquote> <blockquote>
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="restrict-mail-user-to-login-from-specified-ip-addresses-or-networks">Restrict mail user to login from specified IP addresses or networks</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="restrict-mail-user-to-login-from-specified-ip-addresses-or-networks">Restrict mail user to login from specified IP addresses or networks</h1>
<p>Since iRedMail-0.9.1, it's able to restrict mail users to login from specified <p>Since iRedMail-0.9.1, it's able to restrict mail users to login from specified
IP addresses or networks.</p> IP addresses or networks.</p>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="send-out-email-from-specified-ip-address">Send out email from specified IP address</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="send-out-email-from-specified-ip-address">Send out email from specified IP address</h1>
<p>If you have multiple IP addresses available on your iRedMail server, and would <p>If you have multiple IP addresses available on your iRedMail server, and would
like to send from different IP Addresses for different domains, follow the like to send from different IP Addresses for different domains, follow the

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="setup-dns-records-for-your-iredmail-server-a-ptr-mx-spf-dkim">Setup DNS records for your iRedMail server (A, PTR, MX, SPF, DKIM)</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="setup-dns-records-for-your-iredmail-server-a-ptr-mx-spf-dkim">Setup DNS records for your iRedMail server (A, PTR, MX, SPF, DKIM)</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="sign-dkim-signature-on-outgoing-emails-for-new-mail-domain">Sign DKIM signature on outgoing emails for new mail domain</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="sign-dkim-signature-on-outgoing-emails-for-new-mail-domain">Sign DKIM signature on outgoing emails for new mail domain</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="install-sogo-groupware-on-centos-6-with-iredmail-mysql-backend">Install SOGo groupware on CentOS 6 with iRedMail (MySQL backend)</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="install-sogo-groupware-on-centos-6-with-iredmail-mysql-backend">Install SOGo groupware on CentOS 6 with iRedMail (MySQL backend)</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="install-sogo-groupware-on-centos-6-with-iredmail-openldap-backend">Install SOGo groupware on CentOS 6 with iRedMail (OpenLDAP backend)</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="install-sogo-groupware-on-centos-6-with-iredmail-openldap-backend">Install SOGo groupware on CentOS 6 with iRedMail (OpenLDAP backend)</h1>
<div class="toc"> <div class="toc">
<ul> <ul>

View File

@ -7,7 +7,13 @@
<body> <body>
<div id="navigation"> <div id="navigation">
<a href="/index.html" target="_blank"><img alt="iRedMail web site" src="images/logo-iredmail.png" style="vertical-align: middle; height: 30px;"/> <span>iRedMail</span></a> <a href="/index.html" 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="mac-os-x-add-contact-service-carddav-in-contactsapp">Mac OS X: Add contact service (CardDAV) in Contacts.app</h1> &nbsp;&nbsp;//&nbsp;&nbsp;<a href="./index.html">Document Index</a></div><h1 id="mac-os-x-add-contact-service-carddav-in-contactsapp">Mac OS X: Add contact service (CardDAV) in Contacts.app</h1>
<div class="admonition note"> <div class="admonition note">
<p class="admonition-title">Important Notes</p> <p class="admonition-title">Important Notes</p>

Some files were not shown because too many files have changed in this diff Show More