Migrate/iRedAdmin-Pro/OSE-Pro
From iRedMail
(→Restart web server to make it work) |
|||
| Line 16: | Line 16: | ||
* Restart apache web server. | * Restart apache web server. | ||
| - | = Uncompress iRedAdmin-Pro, copy config file, set correct file permission = | + | = Uncompress iRedAdmin-Pro, copy config file, set correct file permission, restart apache = |
* For RHEL/CentOS: | * For RHEL/CentOS: | ||
| Line 29: | Line 29: | ||
# chmod -R 0755 iredadmin | # chmod -R 0755 iredadmin | ||
# chmod -R 0640 iredadmin/settings.ini | # chmod -R 0640 iredadmin/settings.ini | ||
| + | |||
| + | # /etc/init.d/httpd restart # <- Restart apache web server | ||
</pre>}} | </pre>}} | ||
| Line 44: | Line 46: | ||
# chmod -R 0755 iredadmin | # chmod -R 0755 iredadmin | ||
# chmod -R 0640 iredadmin/settings.ini | # chmod -R 0640 iredadmin/settings.ini | ||
| + | |||
| + | # /etc/init.d/apache2 restart # <- Restart apache web server | ||
</pre>}} | </pre>}} | ||
| Line 58: | Line 62: | ||
# chmod -R 0755 iredadmin | # chmod -R 0755 iredadmin | ||
# chmod -R 0640 iredadmin/settings.ini | # chmod -R 0640 iredadmin/settings.ini | ||
| + | |||
| + | # /etc/init.d/apache2 restart # <- Restart apache web server | ||
</pre>}} | </pre>}} | ||
| Line 72: | Line 78: | ||
# chmod -R 0755 iredadmin | # chmod -R 0755 iredadmin | ||
# chmod -R 0640 iredadmin/settings.ini | # chmod -R 0640 iredadmin/settings.ini | ||
| + | |||
| + | # /usr/local/etc/rc.d/apache2 restart # <- Restart apache web server | ||
</pre>}} | </pre>}} | ||
| - | = | + | = Quarantining SPAMs and manage them with iRedAdmin-Pro = |
| - | + | ||
| - | + | ||
| - | + | ||
| - | + | iRedMail-0.7.0 has quarantining related settings pre-configured, but users can't manage quarantined mails, so quarantining is disabled by default. | |
| - | + | ||
| - | + | Since iRedAdmin-Pro supports releasing and deleting quarantined mails, you can easily enable quarantining with below tutorial. (Don't worry, it's easy enough.) | |
| - | + | ||
| - | + | * [[IRedMail/FAQ/Quarantining.SPAM |Quarantining SPAM into MySQL database]] | |
= Troubleshooting = | = Troubleshooting = | ||
If it doesn't work for you, please post a new topic in our forum: http://www.iredmail.org/forum/ | If it doesn't work for you, please post a new topic in our forum: http://www.iredmail.org/forum/ | ||
Revision as of 13:50, 31 March 2011
Contents |
This tutorial explains how to migrate iRedAdmin open source edition (v0.1.4) to iRedAdmin-Pro (full-featured edition). If it doesn't work for you, please post a new topic in our forum: http://www.iredmail.org/forum/
Note:
- This tutorial is applicable to iRedMail-0.7.0 and later versions. If you're using iRedMail-0.6.1 or earlier versions, please refer to this tutorial.
- This tutorial works for both iRedAdmin-Pro-LDAP and iRedAdmin-Pro-MySQL.
Summary
iRedMail ships iRedAdmin open source edition since iRedMail-0.5.1, it's easy to migrate from open source edition to iRedAdmin-Pro. Steps:
- Uncompress iRedAdmin-Pro to apache document root
- Copy config file from open source edition. We assume you're using iRedAdmin-0.1.4 (open source edition) in this tutorial, it's shipped in iRedMail-0.7.0.
- Set correct file permission for iRedAdmin-Pro.
- Restart apache web server.
Uncompress iRedAdmin-Pro, copy config file, set correct file permission, restart apache
- For RHEL/CentOS:
| Terminal: |
# tar xjf /path/to/iRedAdmin-Pro-x.y.z.tar.bz2 -C /var/www/ # cd /var/www/ # rm -i /var/www/iredadmin # <- this is a symbol link # ln -s iRedAdmin-Pro-x.y.z iredadmin # cp iRedMail-0.1.4/settings.ini iredadmin/ # <- Copy config file from open source edition. # chown -R iredadmin:iredadmin iredadmin # <- Set correct file permission for iRedAdmin-Pro. # chmod -R 0755 iredadmin # chmod -R 0640 iredadmin/settings.ini # /etc/init.d/httpd restart # <- Restart apache web server |
- For Debian/Ubuntu:
| Terminal: |
# tar xjf /path/to/iRedAdmin-Pro-x.y.z.tar.bz2 -C /usr/share/apache2/ # cd /usr/share/apache2/ # rm -i /usr/share/apache2/iredadmin # <- this is a symbol link # ln -s iRedAdmin-Pro-x.y.z iredadmin # cp iRedMail-0.1.4/settings.ini iredadmin/ # <- Copy config file from open source edition. # chown -R iredadmin:iredadmin iredadmin # <- Set correct file permission for iRedAdmin-Pro. # chmod -R 0755 iredadmin # chmod -R 0640 iredadmin/settings.ini # /etc/init.d/apache2 restart # <- Restart apache web server |
- For openSUSE:
| Terminal: |
# tar xjf /path/to/iRedAdmin-Pro-x.y.z.tar.bz2 -C /srv/www/ # cd /srv/www/ # rm -i /srv/www/iredadmin # <- this is a symbol link # ln -s iRedAdmin-Pro-x.y.z iredadmin # cp iRedMail-0.1.4/settings.ini iredadmin/ # <- Copy config file from open source edition. # chown -R iredadmin iredadmin # <- Set correct file permission for iRedAdmin-Pro. # chmod -R 0755 iredadmin # chmod -R 0640 iredadmin/settings.ini # /etc/init.d/apache2 restart # <- Restart apache web server |
- For FreeBSD:
| Terminal: |
# tar xjf /path/to/iRedAdmin-Pro-x.y.z.tar.bz2 -C /usr/local/www/ # cd /usr/local/www/ # rm -i /usr/local/www/iredadmin # <- this is a symbol link # ln -s iRedAdmin-Pro-x.y.z iredadmin # cp iRedMail-0.1.4/settings.ini iredadmin/ # <- Copy config file from open source edition. # chown -R iredadmin:iredadmin iredadmin # <- Set correct file permission for iRedAdmin-Pro. # chmod -R 0755 iredadmin # chmod -R 0640 iredadmin/settings.ini # /usr/local/etc/rc.d/apache2 restart # <- Restart apache web server |
Quarantining SPAMs and manage them with iRedAdmin-Pro
iRedMail-0.7.0 has quarantining related settings pre-configured, but users can't manage quarantined mails, so quarantining is disabled by default.
Since iRedAdmin-Pro supports releasing and deleting quarantined mails, you can easily enable quarantining with below tutorial. (Don't worry, it's easy enough.)
Troubleshooting
If it doesn't work for you, please post a new topic in our forum: http://www.iredmail.org/forum/
