From 632ed24936000cfb4cb3296a25ff6195a89109a0 Mon Sep 17 00:00:00 2001
From: "Nasreddin Boulif (bon)" <bon@odoo.com>
Date: Fri, 16 Jul 2021 14:23:40 +0000
Subject: [PATCH] [FIX] base: add an alias for iso-8859-8-i == iso-8859-8
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Steps to reproduce:

  - Install "Sales" module (for test purpose)
  - Active `External Email Servers` email feature and set an alias
  - Go to any Sale Team, and set an Email Alias
  - Send an email (from outside Odoo) to the sale team email alias
    - Write the body text in hebrew
    - !must ensure that the mail is encoded in iso-8859-8-i.
  - Go to Settings -> Technical -> Messages and open the receveid mail

Issue:

  Hebrew character are replaced by `�`.

Cause:

  Python does not have -e and -i codecs.
  More info here: https://bugs.python.org/issue18624

Solution:

  Create an alias for iso-8859-8-i == iso-8859-8.

opw-2482579

closes odoo/odoo#73893

Signed-off-by: bon-odoo <nboulif@users.noreply.github.com>
---
 odoo/loglevels.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/odoo/loglevels.py b/odoo/loglevels.py
index bbf7204607b6..e0d9e365e359 100644
--- a/odoo/loglevels.py
+++ b/odoo/loglevels.py
@@ -17,6 +17,7 @@ def get_encodings(hint_encoding='utf-8'):
     fallbacks = {
         'latin1': 'latin9',
         'iso-8859-1': 'iso8859-15',
+        'iso-8859-8-i': 'iso8859-8',
         'cp1252': '1252',
     }
     if hint_encoding:
-- 
GitLab