From 9d1acfb22a0a973f2813cc76f44ab2d0e8cd106f Mon Sep 17 00:00:00 2001 From: OCA-git-bot Date: Fri, 16 Jun 2023 12:05:05 +0000 Subject: [PATCH] [UPD] README.rst --- mail_environment/README.rst | 7 +++++++ mail_environment/static/description/index.html | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/mail_environment/README.rst b/mail_environment/README.rst index dabf19e..db04a8d 100644 --- a/mail_environment/README.rst +++ b/mail_environment/README.rst @@ -84,6 +84,13 @@ You will need to create 2 records in the database, one outgoing mail server with the field `name` set to "odoo_smtp_server1" and one incoming mail server with the field `name` set to "odoo_pop_mail1". +It is possible to use a SSL certificate for SMTP authentication. In this case, +you need to set the following entries in the configuration entry :: + + smtp_authentication = certificate + smtp_ssl_certificate = + smtp_ssl_private_key = + Usage ===== diff --git a/mail_environment/static/description/index.html b/mail_environment/static/description/index.html index 6fe7f75..1e51c2a 100644 --- a/mail_environment/static/description/index.html +++ b/mail_environment/static/description/index.html @@ -431,6 +431,13 @@ password = uas1ohV0

You will need to create 2 records in the database, one outgoing mail server with the field name set to “odoo_smtp_server1” and one incoming mail server with the field name set to “odoo_pop_mail1”.

+

It is possible to use a SSL certificate for SMTP authentication. In this case, +you need to set the following entries in the configuration entry

+
+smtp_authentication = certificate
+smtp_ssl_certificate = <base64 encoded certificate>
+smtp_ssl_private_key = <base64 encoded certificate>
+