Installation instructions
The installer was tested on Ubuntu Server 20.04. Below, you'll find installation instructions for that system.
- Download the installer:
curl https://afterlogic.com/download/afterlogic-mailsuite-ubuntu.tar.bz2 -o afterlogic-mailsuite-ubuntu.tar.bz2
- Install the prerequisites:
sudo apt install ansible unzip bzip2 -y
- Unpack the installer:
tar jxvf afterlogic-mailsuite-ubuntu.tar.bz2
chmod 0755 -R ./afterlogic-mailsuite-ubuntu
cd afterlogic-mailsuite-ubuntu/
- Start the installation process:
sudo ansible-playbook install.yml
Installing antivirus package
MailSuite Pro all-in-one package can be integrated with ClamAV antivirus, but due to its high resource usage, antivirus isn't included in the package. You can install it additionally, just make sure your system has 4Gb RAM or more.
curl -O https://afterlogic.com/download/add-clamav-ubuntu.tar.bz2
tar jxvf add-clamav-ubuntu.tar.bz2
cd add-clamav-ubuntu/
sudo ansible-playbook install-clamav.yml
Finalizing the installation
Once the installation is completed, you should be able to access the web interface via URL of the server with /adminpanel/
appended to it and proceed with configuring the product. Default admin login is superadmin, with an empty password.
Make sure you have primary hostname of your mailserver installation specified in /etc/exim4/exim4.cnf
file, e.g.:
primary_hostname = yourdomain.com
Restart Exim service to apply changes:
service exim4 restart