Attention
Check out the lightweight on-premises email archiving software developed by iRedMail team: Spider Email Archiver.
Remote Upgrade Assistance
Check out our remote upgrade support if you need assistance.
/etc/iredmail-release with new iRedMail version numberiRedMail stores the release version in /etc/iredmail-release after
installation, it's recommended to update this file after you upgraded iRedMail,
so that you can know which version of iRedMail you're running. For example:
0.9.5-1
iRedAPD-1.9.1 fixes a bug in
tools/spf_to_greylist_whitelists.pywhich was introduced in iRedAPD-1.9.0.
Please follow below tutorial to upgrade iRedAPD to the latest stable release: Upgrade iRedAPD to the latest stable release
Detailed release notes are available here.
iRedMail-0.9.5 and early releases have incorrect Postfix settings which causes emails sent to system account cannot be delivered to mailbox. Please follow steps below fix it.
Please open file /etc/postfix/main.cf (Linux/OpenBSD) or
/usr/local/etc/postfix/main.cf (FreeBSD), remove below 2 parameters:
home_mailbox = ...
mailbox_command = ...
Restarting or reloading Postfix service is required.
This bug was introduced in iRedMail-0.9.5. If you're upgrading from iRedMail-0.9.4 or earlier release, it's safe to ignore this step.
iRedMail-0.9.5 sets incorrect command for parameter compresscmd and
uncompresscmd, please fix it with commands below:
export _Z="$(which bzip2)"
export _UZ="$(which bunzip2)"
perl -pi -e 's# /bin/bzip2# $ENV{_Z}#g' /etc/logrotate.d/*
perl -pi -e 's# /bin/bunzip2# $ENV{_UZ}#g' /etc/logrotate.d/*
newsyslog (/etc/newsyslog.conf), not logrotate program.This bug was introduced in iRedMail-0.9.5. If you're upgrading from iRedMail-0.9.4 or earlier release, it's safe to ignore this step.
Roundcube cannot call command to change password without PHP functions:
popen, openlog, please remove them in PHP config file php.ini.
/etc/php.ini/etc/php5/apache2/php.ini (Debian 8, Ubuntu 14.04)/etc/php/7.0/cli/php.ini (Ubuntu 16.04)/etc/php5/fpm/php.ini./etc/php5/fpm/php.ini (Debian 8, Ubuntu 14.04)/etc/php/7.0/fpm/php.ini (Ubuntu 16.04)/usr/local/etc/php.ini./etc/php-5.X.iniFind parameter disable_functions =, remove function name popen and
openlog, then restart Apache or php fpm service.
This bug was introduced in iRedMail-0.9.5. If you're upgrading from iRedMail-0.9.4 or earlier release, it's safe to ignore this step.
Roundcube cannot change password due to miss package mcrypt, please install
it as root user with commands below:
yum -y install mcrypt