Browse Source

[10.0][MIG][REN] mail_log_messages_to_process migrated and renamed to mail_log_message_to_process

pull/1607/head
Lois Rilo 6 years ago
committed by mreficent
parent
commit
f74138747b
  1. 9
      mail_log_message_to_process/README.rst
  2. 1
      mail_log_message_to_process/__init__.py
  3. 4
      mail_log_message_to_process/__manifest__.py
  4. 0
      mail_log_message_to_process/i18n/ca.po
  5. 0
      mail_log_message_to_process/i18n/de.po
  6. 0
      mail_log_message_to_process/i18n/es.po
  7. 0
      mail_log_message_to_process/i18n/fr.po
  8. 0
      mail_log_message_to_process/i18n/it.po
  9. 0
      mail_log_message_to_process/i18n/mail_log_message_to_process.pot
  10. 0
      mail_log_message_to_process/i18n/pt_BR.po
  11. 0
      mail_log_message_to_process/i18n/pt_PT.po
  12. 0
      mail_log_message_to_process/i18n/sl.po
  13. 0
      mail_log_message_to_process/i18n/tr.po
  14. 1
      mail_log_message_to_process/models/__init__.py
  15. 8
      mail_log_message_to_process/models/mail_thread.py
  16. 0
      mail_log_message_to_process/static/description/icon.png

9
mail_log_messages_to_process/README.rst → mail_log_message_to_process/README.rst

@ -2,9 +2,9 @@
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3 :alt: License: AGPL-3
============================
Mail log messages to process
============================
===========================
Mail log message to process
===========================
This module allows to log into the server the basic information of emails This module allows to log into the server the basic information of emails
that have been fetched from the mail server, before they start to be processed. that have been fetched from the mail server, before they start to be processed.
@ -14,6 +14,9 @@ missing in Odoo. Can help to better resolve questions of the type 'Was it that
the email was never fetched, or a problem found when it was processed by the email was never fetched, or a problem found when it was processed by
Odoo?'. Odoo?'.
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/149/10.0
Bug Tracker Bug Tracker
=========== ===========

1
mail_log_messages_to_process/__init__.py → mail_log_message_to_process/__init__.py

@ -1,5 +1,4 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# © 2017 Eficent Business and IT Consulting Services S.L. (www.eficent.com)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
from . import models from . import models

4
mail_log_messages_to_process/__openerp__.py → mail_log_message_to_process/__manifest__.py

@ -3,8 +3,8 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
{ {
'name': 'Mail Log Messages to Process',
'version': '9.0.1.0.0',
'name': 'Mail Log Message to Process',
'version': '10.0.1.0.0',
'category': 'Tools', 'category': 'Tools',
'summary': 'Log all messages received, before they start to be processed.', 'summary': 'Log all messages received, before they start to be processed.',
'author': "Eficent, " 'author': "Eficent, "

0
mail_log_messages_to_process/i18n/ca.po → mail_log_message_to_process/i18n/ca.po

0
mail_log_messages_to_process/i18n/de.po → mail_log_message_to_process/i18n/de.po

0
mail_log_messages_to_process/i18n/es.po → mail_log_message_to_process/i18n/es.po

0
mail_log_messages_to_process/i18n/fr.po → mail_log_message_to_process/i18n/fr.po

0
mail_log_messages_to_process/i18n/it.po → mail_log_message_to_process/i18n/it.po

0
mail_log_messages_to_process/i18n/mail_log_messages_to_process.pot → mail_log_message_to_process/i18n/mail_log_message_to_process.pot

0
mail_log_messages_to_process/i18n/pt_BR.po → mail_log_message_to_process/i18n/pt_BR.po

0
mail_log_messages_to_process/i18n/pt_PT.po → mail_log_message_to_process/i18n/pt_PT.po

0
mail_log_messages_to_process/i18n/sl.po → mail_log_message_to_process/i18n/sl.po

0
mail_log_messages_to_process/i18n/tr.po → mail_log_message_to_process/i18n/tr.po

1
mail_log_messages_to_process/models/__init__.py → mail_log_message_to_process/models/__init__.py

@ -1,5 +1,4 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# © 2017 Eficent Business and IT Consulting Services S.L. (www.eficent.com)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
from . import mail_thread from . import mail_thread

8
mail_log_messages_to_process/models/mail_thread.py → mail_log_message_to_process/models/mail_thread.py

@ -1,12 +1,14 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# © 2017 Eficent Business and IT Consulting Services S.L. (www.eficent.com)
# Copyright 2017-18 Eficent Business and IT Consulting Services S.L.
# (www.eficent.com)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
import email import email
import xmlrpclib import xmlrpclib
import logging import logging
from email.message import Message from email.message import Message
from openerp import api, models
from openerp.addons.mail.models.mail_message import decode
from odoo import api, models
from odoo.tools import decode_smtp_header as decode
_logger = logging.getLogger(__name__) _logger = logging.getLogger(__name__)

0
mail_log_messages_to_process/static/description/icon.png → mail_log_message_to_process/static/description/icon.png

Before

Width: 128  |  Height: 128  |  Size: 9.2 KiB

After

Width: 128  |  Height: 128  |  Size: 9.2 KiB

Loading…
Cancel
Save