From 0168ca56b2e5f51ac98be2a78ddfcea4a688b74f Mon Sep 17 00:00:00 2001 From: smizrahi Date: Wed, 5 Jun 2024 11:30:23 +0200 Subject: [PATCH] feat(core): Add MySQL/MariaDB SSL connection support --- Documentation/SOGoInstallationGuide.asciidoc | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/Documentation/SOGoInstallationGuide.asciidoc b/Documentation/SOGoInstallationGuide.asciidoc index 3463e262f..a4e9613d7 100644 --- a/Documentation/SOGoInstallationGuide.asciidoc +++ b/Documentation/SOGoInstallationGuide.asciidoc @@ -1730,6 +1730,19 @@ default-character-set=utf8 default-character-set=utf8 ---- +MySQL SSL Connection +^^^^^^^^^^^^^^^^^^^^ + +Add the following settings in the `sogo.conf` file to enable SSL connection between SOGo and MySQL / MariaDB : + +---- +MySQL4SSLEnabled = YES; +MySQL4SSLKeyPath = "/mysql_keys/client-key.pem"; +MySQL4SSLCertPath = "/mysql_keys/client-cert.pem"; +MySQL4SSLCaPath = "/mysql_keys/ca-cert.pem"; +---- + + MySQL complete Unicode compliance ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^