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 |
---|---|---|
iRedMail | 0.9.2 | cat /etc/iredmail-release |
OS | Debian Jessie 8.0 with sysvinit | cat /etc/debian_version |
Postfix | 2.11.3 | postconf mail_version |
Dovecot | 2.2.13 | dovecot --version |
Sieve | 2.2.13 | apt-cache policy dovecot-managesieved |
Amavis new | 2.10.1 | amavisd-new -V |
Clamav | 0.98.7 | clamscan -V |
Spamassassin | 3.4.0, Perl 5.20.2 | spamassassin -V |
iRedADP | 1.6.0 | grep version /opt/iredapd/libs/__init__.py |
Roundcube | 1.1.1 | grep -r "'RCUBE_VERSION'" /opt/www/roundcubemail |
Apache | 2.4.10 | apache2 -v |
Mysql | 5.5.43 | mysql -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