Once an SSL order with the CSR code is activated and all validation requirements are met, the SSL certificate will be issued and sent to your administrative contact email address. When the SSL certificate is received, you are welcome to start the installation process.
Zimbra mail server supports two possible ways of SSL installation:
- zimbra administration console (web interface)
- zimbra certificate manager (command line interface).
SSL certificate installation via Zimbra Administration Console
- Click on 'Configure' from the left list of the main menu:
- In the next window, click on 'Certificates' and pick the option 'Install Certificate':
- You will see a separate window where you need to choose the required mail server. Click 'Next' afterwards:
- Pick 'Install the commercially signed certificate' option to start the installation process:
- Review all information that was used for CSR generation. If the information is correct, click on the 'Next' button:
- Upload the SSL certificate file, root certificate and intermediate certificates received from the Certificate Authority. If intermediate and root certificates were received in one bundled file, you can download them separately here.
- On the next step, click 'Install' to install the chosen SSL certificate. The installation process can take a few minutes:
- When the SSL installation process is completed, you will see the notification:
- To apply changes, you need to restart Zimbra services like zimbra user in a CLI session:
- When all services are restarted, new SSL certificate details can checked here:
sudo su
su zimbra
Once the default user is switched to the zimbra user, run this command to restart services:
zmcontrol restart
The SSL certificate has been successfully installed for the following services:
LDAP service: port 389
Mailbox service: ports 8443, 7071
MTA service: ports 25 (SMTP TLS), 465 (SMTP SSL), 7110 (POP3 TLS), 7143 (IMAP TLS), 7993 (IMAP SSL), 7995 (POP3 SSL)
Proxy service: 443, 110 (POP3 TLS), 143 (IMAP TLS), 993 (IMAP SSL), 995 (POP3 SSL).
It is possible to check SSL installation by using this online tool: here.
SSL certificate installation via Zimbra Certificate Manager (command line interface)
A Zimbra package has the 'zmcertmgr' tool to manage SSL certificates.
For version 8.6 or lower, this tool must be run as root. Run this command in the terminal to switch from the default user to the root:
sudo su
Starting from version 8.7 this tool should be run as zimbra user.
Run these commands to switch from the default user to the zimbra user:
sudo su
su zimbra
- To start the installation process, you need to upload the SSL certificate file (server_domain_com.crt) and CA bundle file (server_domain_com.ca-bundle) to any folder to your hosting server on the temporary basis. For this example, SSL files have been uploaded to the /opt/ directory.
- Verify that your certificate received from the Certificate Authority matches the private key generated along with the CSR: /opt/zimbra/bin/zmcertmgr verifycrt comm
/opt/zimbra/ssl/zimbra/commercial/commercial.key /opt/server_domain_com.crt /opt/server_domain_com.ca-bundle - Deploy your commercial certificate.
/opt/zimbra/bin/zmcertmgr deploycrt comm /opt/server_domain_com.crt /opt/server_domain_com.ca-bundle - Verify that the correct certificate has been deployed.
/opt/zimbra/bin/zmcertmgr viewdeployedcrt - To apply changes, you need to restart Zimbra services like zimbra user:
The output should look like:
The successful output should look like:
For example, the details of the PositiveSSL certificate will look like:
sudo su
su zimbra
Once the default user is switched to zimbra user, run this command to restart services:
zmcontrol restart
When all services are restarted, new SSL certificate details can checked by using this online tool: here.
How to deploy a Multi-Domain SSL certificate or SSL Wildcard certificate installed on another hosting server for Zimbra?
- Copy the SSL certificate file (server_domain_com.crt), CA bundle file (server_domain_com.ca-bundle) and private key (commercial.key) to any folder of your hosting server on the temporary basis. For this example, SSL files have been uploaded to the /opt/ directory.
- Copy the private key from the temporary location to the default folder of commercial certificates.
- Set default permissions for the private key.
- Verify that your certificate received from the Certificate Authority matches the private key
- Deploy your commercial certificate.
- Verify that the correct certificate has been deployed.
- To apply changes, you need to restart Zimbra services like zimbra user in the terminal:
cp /opt/commercial.key /opt/zimbra/ssl/zimbra/commercial/
chmod 640 /opt/zimbra/ssl/zimbra/commercial/commercial.key
/opt/zimbra/bin/zmcertmgr verifycrt comm /opt/zimbra/ssl/zimbra/commercial/commercial.key /opt/server_domain_com.crt /opt/server_domain_com.ca-bundle
The output should look like:
/opt/zimbra/bin/zmcertmgr deploycrt comm /opt/server_domain_com.crt /opt/server_domain_com.ca-bundle
The successful output should look like:
/opt/zimbra/bin/zmcertmgr viewdeployedcrt
For example, the details of the PositiveSSL certificate will look like:
sudo su
su zimbra
Once the default user is switched to zimbra user, run this command to restart services:
zmcontrol restart
When all services are restarted, new SSL certificate details can checked by using this online tool: here.