Free SSL Certificates Using Let’s Encrypt and Certbot for Carbonio Community Edition | Carbonio CE

Update on Let’s Encrypt deployment on Carbonio

This article was written during the earlier age of Carbonio. Since then many things have changed. Now deploying Let’s Encrypt certificate is more easy and more convenient. You can use the Carbonio Admin UI panel to deploy Let’s Encrypt for each of your domain individually. Check out our blog for updated articles.

A public-key certificate is an electronic document that provides a reliable way for an entity to prove its identity. A trusted organization that issues these public-key certificates is known as a Certificate Authority (CA). A certificate authority acts as a trusted third party by both the owner of the certificate and those who rely on it.

The subject of such certificates is typically individuals and organizations while it can be a device like a computer which is the case in the context of an e-mail server. Certificate authorities can be commercial such as IdenTrust and DigiCert, or non-profit, like Let’s Encrypt.

In this article, you will see how to install and manage Let’s Encrypt certificates in Carbonio CE using Certbot on Ubuntu 20.04.

What is Let’s Encrypt?

Let’s Encrypt is a global Certificate Authority (CA) providing SSL/TLS certificates to individuals and organizations. Let’s Encrypt certificates are mostly used by websites to enable secure HTTPS connections. However, besides issuing SSL/TLS certificates for websites, Let’s Encrypt is commonly used as Domain Validation (DV) that can be used for any servers using a domain name such as e-mail servers.

Let’s Encrypt certificates remain valid for 90 days but you can renew the certificate at any time during this timespan without any charge that facilitates the setting up and maintaining TLS encryption.

What is Certbot?

Certbot is a free and open-source tool to facilitate obtaining SSL certificates from Let’s Encrypt and configure it onto your server. Certbot is also very useful to manage Let’s Encrypt certificates such as automating the renewal process.

Issue Certificates for Carbonio CE

We’re going to use Certbot to obtain and configure Let’s Encrypt certificates on our Server. The process is very straightforward. You install Certbot, issue the request for your server, obtain an SSL certificate, CA Intermediate, and Private Key for your domain, deploy it on your server, and you’re done.

Step 1: Installing Certbot

Note: Before installing Certbot, you need to remove certbot-auto or any other related Certbot packages installed using an OS package manager like apt and add the latest version maintained by the Certbot team since the one that comes with Ubuntu 20.04 is deprecated. we cannot be sure the command certbot uses the snap as opposed to the one installed by your package manager.

After successfully removing the existing Certbot-auto, it’s time to install the latest version maintained by the Certbot on the machine.

To install latest version of certbot, run the following commands

apt install snapd
snap install --classic certbot
ln -s /snap/bin/certbot /usr/bin/certbot
certbot --version

Now execute the certbot as follows:

certbot certonly --key-type rsa --preferred-chain "ISRG Root X1" -d mail.sampleserver.xyz

After the verification, certificate files – certificate, public key, and the chain – are placed in the /etc/letsencrypt/mail.sampleserver.xyz/ directory.

Check the directory /etc/letsencrypt/live/mail.sampleserver.xyz/. It should have following files:

cert.pem  chain.pem  fullchain.pem  privkey.pem  README

Step 3: Preparing Certificate

By generating the certificate in the last step, you should have now obtained privkey.pem, cert.pem, and chain.pem.

First copy your privkey.pem file from /etc/letsencrypt/live/mail.sampleserver.xyz/ to /opt/zextras/ssl/carbonio/commercial/ as commercial.key using the following command:

cp /etc/letsencrypt/live/mail.sampleserver.xyz/privkey.pem /opt/zextras/ssl/carbonio/commercial/commercial.key

Copy other certificate and chain to the /tmp directory.

cp /etc/letsencrypt/live/mail.sampleserver.xyz/cert.pem /tmp
cp /etc/letsencrypt/live/mail.sampleserver.xyz/chain.pem /tmp

Now, acquire the ISRG Root X1 chain and concatenate it to your file.

wget -O /tmp/ISRG-X1.pem https://letsencrypt.org/certs/isrgrootx1.pem.txt
cat /tmp/ISRG-X1.pem >> /tmp/chain.pem

Step 4: Deploying Certificate

Give access to the commercial.key file using

chown zextras:zextras /opt/zextras/ssl/carbonio/commercial/commercial.key

Now verify the certificate using

su - zextras -c 'zmcertmgr verifycrt comm /opt/zextras/ssl/carbonio/commercial/commercial.key /tmp/cert.pem /tmp/chain.pem'

Note that the deployment should only be executed after completing the verification step successfully.

Finally, deploy the certificate and restart the services to finish the deployment

su - zextras -c 'zmcertmgr deploycrt comm /tmp/cert.pem /tmp/chain.pem'
su - zextras -c 'zmcontrol restart'

Now check the status from your webmail interface.

Let' encrypt on Carbonio CE 22.10.0

You can find more information on the Carbonio Community Edition documentation webpage.

Comments

02/07/2023

I have done this 3 times and it is not matching: # su - zextras -c 'zmcertmgr verifycrt comm /opt/zextras/ssl/carbonio/commercial/commercial.key /tmp/cert.pem /tmp/chain.pem' ** Verifying '/tmp/cert.pem' against '/opt/zextras/ssl/carbonio/commercial/commercial.key' 140091721712960:error:0607907F:digital envelope routines:EVP_PKEY_get0_RSA:expecting an rsa key:crypto/evp/p_lib.c:474: ERROR: Certificate '/tmp/cert.pem' and private key '/opt/zextras/ssl/carbonio/commercial/commercial.key' do not match. Thanks

Md. Shariful Islam
02/08/2023

@Rony, Hi, Could you please tell us some more details about your system? i.e. Your OS version Your Carbonio CE version, Your certbot version Did you followed all instructions mentioned in this guide? Regards, Sharif N.B. A new automated way to deploy certificate in Carbonio CE is being under development.

mrojas
02/26/2023

Hi. I just got the same error message as @Rony: 40516203750528:error:0607907F:digital envelope routines:EVP_PKEY_get0_RSA:expecting an rsa key:crypto/evp/p_lib.c:474: ERROR: Certificate '/tmp/cert.pem' and private key '/opt/zextras/ssl/carbonio/commercial/commercial.key' do not match. In my case, I'm running Carbonio CE 4.0.19-1.el8 under Rocky Linux 8.7 in a Google Cluoud VM. I had to setup dnsmasq for domain resolution because on setup the MX record on my DNS is different from the IP address that Carbonio was resolving (it was using the private IP address instead of the public one). I installed certbot via snap (as indicated) and generated the certificates successfully. Thanks in advance for any pointers for solving this.

After googling around, I found a solution: https://forums.zimbra.org/viewtopic.php?t=69645#p301581 basically we need to change the way the verification is made.

jdavasco
03/02/2023

What authentification way you select? standalone or webroot?

Md. Shariful Islam
07/05/2023

Standalone

nedim
07/05/2023

The key must be of type RSA. Generate it like this: certbot certonly --standalone --agree-tos --renew-by-default --email it@domain.ba --preferred-chain "ISRG Root X1" --force-renewal --key-type rsa --rsa-key-size 4096 -d email.domain.ba

jespinoza95
07/06/2023

Hello, Nedim after executing the mentioned process, which follows to make the installation of SSL certifcado. Best regards

[…] Carbonio CE. Пытался сделать сам, взяв за основу инструкцию https://community.zextras.com/free-ssl-certificates-for-carbonio-community-edition-using-lets-encryp…, но столкнулся с проблемой, а […]

kalvik
09/20/2023

It would be useful to have an article for Red Hat and Letsencrypt

Post your comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Telegram & Data Controllers: Extra-EEA Data Transfer Might Still Happen | Blog
What is Personal Data? The GDPR's Definition | Blog