Upgrade/iRedMail/0.8.2-0.8.3

From iRedMail

(Difference between revisions)
Jump to: navigation, search
(Created page with '__TOC__ ---- This tutorial is still a DRAFT, do NOT apply it. ---- = ChangeLog = * 2012-10-10: [RHEL/CentOS/Scientific 6 only] Fix incorrect path in cron job. * 2012-10-10: [De…')
Line 6: Line 6:
= ChangeLog =
= ChangeLog =
 +
* 2012-10-10: Upgrade iRedAdmin (open source edition).
* 2012-10-10: [RHEL/CentOS/Scientific 6 only] Fix incorrect path in cron job.
* 2012-10-10: [RHEL/CentOS/Scientific 6 only] Fix incorrect path in cron job.
* 2012-10-10: [Debian/Ubuntu only] Fix incorrect SQL table name in /etc/apache2/conf.d/cluebringer.conf
* 2012-10-10: [Debian/Ubuntu only] Fix incorrect SQL table name in /etc/apache2/conf.d/cluebringer.conf
= General (All backends should apply these steps) =
= General (All backends should apply these steps) =
 +
== Upgrade iRedAdmin (open source edition) ==
 +
Please follow this tutorial to upgrade iRedAdmin open source edition to the latest stable release: [[IRedMail/FAQ/Upgrade.iRedAdmin.Open.Source.Edition |How to upgrade iRedAdmin (open source edition) to the latest stable release]]
 +
== [RHEL/CentOS/Scientific 6 only] Incorrect path in cron job ==
== [RHEL/CentOS/Scientific 6 only] Incorrect path in cron job ==
Note: This is applicable to Red Hat Enterprise Linux 6, CentOS 6, Scientific Linux 6. If you're running other distributions or releases, please skip this step.
Note: This is applicable to Red Hat Enterprise Linux 6, CentOS 6, Scientific Linux 6. If you're running other distributions or releases, please skip this step.

Revision as of 05:22, 10 October 2012

Contents



This tutorial is still a DRAFT, do NOT apply it.


ChangeLog

  • 2012-10-10: Upgrade iRedAdmin (open source edition).
  • 2012-10-10: [RHEL/CentOS/Scientific 6 only] Fix incorrect path in cron job.
  • 2012-10-10: [Debian/Ubuntu only] Fix incorrect SQL table name in /etc/apache2/conf.d/cluebringer.conf

General (All backends should apply these steps)

Upgrade iRedAdmin (open source edition)

Please follow this tutorial to upgrade iRedAdmin open source edition to the latest stable release: How to upgrade iRedAdmin (open source edition) to the latest stable release

[RHEL/CentOS/Scientific 6 only] Incorrect path in cron job

Note: This is applicable to Red Hat Enterprise Linux 6, CentOS 6, Scientific Linux 6. If you're running other distributions or releases, please skip this step.

iRedMail uses incorrect path (/) in user amavis's cron job, please change it to /var/virusmails instead. Steps:

  • Execute command crontab like below to edit user amavis's cron job:
Terminal:
# crontab -e -u amavis
  • Find below line:
Terminal:
# Delete virus mails which created 15 days ago.
1   5   *   *   *   find / -ctime +15 | xargs rm -rf {}
  • Change the path / to /var/virusmails/ like below:
Terminal:
1   5   *   *   *   find /var/virusmails/ -ctime +15 | xargs rm -rf {}
  • Save your changes and exit editor.

OpenLDAP backend special

MySQL backend special

[Debian/Ubuntu only] Fix incorrect SQL table name in /etc/apache2/conf.d/cluebringer.conf

Note: This is applicable to Debian and Ubuntu only.

iRedMail uses incorrect SQL table name admin in /etc/apache2/conf.d/cluebringer.conf, please change it to mailbox like below:

File: /etc/apache2/conf.d/cluebringer.conf
    AuthMySQL_Password_Table mailbox

Restarting Apache service is required.

PostgreSQL backend special

Personal tools