iRedMail

Version 0.9.2

> iRedMail > version 0.9.2

Components used

Software is changing often and there are many linux distributions. iRedMail has a few choices, we installed apache, mysql, no firewall and no SoGo. Please note the documentation is based on these components:

Component Version Hint
iRedMail0.9.2cat /etc/iredmail-release
OSDebian Jessie 8.0 with sysvinitcat /etc/debian_version
Postfix2.11.3postconf mail_version
Dovecot2.2.13dovecot --version
Sieve2.2.13apt-cache policy dovecot-managesieved
Amavis new2.10.1amavisd-new -V
Clamav0.98.7clamscan -V
Spamassassin3.4.0, Perl 5.20.2spamassassin -V
iRedADP1.6.0grep version /opt/iredapd/libs/__init__.py
Roundcube1.1.1grep -r "'RCUBE_VERSION'" /opt/www/roundcubemail
Apache2.4.10apache2 -v
Mysql5.5.43mysql -V

Helper script

#!/bin/bash
echo -n "iRedMail: " && cat /etc/iredmail-release; \
echo -n "OS Debian: " && cat /etc/debian_version; \
echo -n "Postfix: " && postconf mail_version; \
echo -n "Dovecot: " && dovecot --version; \
echo -n "Sieve: " && apt-cache policy dovecot-managesieved | grep Installed; \
echo -n "Amavis new: " && amavisd-new -V; \
echo -n "Clamav: " && clamscan -V; \
echo -n "Spamassassin: " && spamassassin -V; \
echo -n "iRedADP: " && grep version /opt/iredapd/libs/__init__.py; \
echo -n "Roundcube: " && grep -r "'RCUBE_VERSION'" /opt/www/roundcubemail; \
echo -n "Apache: " && apache2 -v; \
echo -n "Mysql: " && mysql -V