diff --git a/fetchmail_incoming_log/README.rst b/fetchmail_incoming_log/README.rst index 7c8673af3..9119fc5f2 100644 --- a/fetchmail_incoming_log/README.rst +++ b/fetchmail_incoming_log/README.rst @@ -14,13 +14,13 @@ Fetchmail Incoming Log :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github - :target: https://github.com/OCA/server-tools/tree/11.0/fetchmail_incoming_log + :target: https://github.com/OCA/server-tools/tree/12.0/fetchmail_incoming_log :alt: OCA/server-tools .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/server-tools-11-0/server-tools-11-0-fetchmail_incoming_log + :target: https://translation.odoo-community.org/projects/server-tools-12-0/server-tools-12-0-fetchmail_incoming_log :alt: Translate me on Weblate .. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png - :target: https://runbot.odoo-community.org/runbot/149/11.0 + :target: https://runbot.odoo-community.org/runbot/149/12.0 :alt: Try me on Runbot |badge1| |badge2| |badge3| |badge4| |badge5| @@ -44,7 +44,7 @@ Bug Tracker Bugs are tracked on `GitHub Issues `_. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us smashing it by providing a detailed and welcomed -`feedback `_. +`feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -75,6 +75,6 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use. -This module is part of the `OCA/server-tools `_ project on GitHub. +This module is part of the `OCA/server-tools `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/fetchmail_incoming_log/__manifest__.py b/fetchmail_incoming_log/__manifest__.py index 1e724e720..1e49e5884 100644 --- a/fetchmail_incoming_log/__manifest__.py +++ b/fetchmail_incoming_log/__manifest__.py @@ -3,13 +3,15 @@ { 'name': 'Fetchmail Incoming Log', - 'version': '11.0.1.0.0', + 'version': '12.0.1.0.0', 'category': 'Tools', 'summary': 'Log all messages received, before they start to be processed.', 'author': "Eficent, " "Odoo Community Association (OCA)", 'license': 'AGPL-3', 'website': 'https://github.com/OCA/server-tools', - 'depends': ['mail'], + 'depends': [ + 'mail', 'test_mail', + ], 'installable': True, } diff --git a/fetchmail_incoming_log/static/description/index.html b/fetchmail_incoming_log/static/description/index.html index 853895989..270192cd7 100644 --- a/fetchmail_incoming_log/static/description/index.html +++ b/fetchmail_incoming_log/static/description/index.html @@ -367,7 +367,7 @@ ul.auto-toc { !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

Beta License: AGPL-3 OCA/server-tools Translate me on Weblate Try me on Runbot

+

Beta License: AGPL-3 OCA/server-tools Translate me on Weblate Try me on Runbot

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.

This allows for a better analysis of situations where emails are found to be @@ -391,7 +391,7 @@ Odoo?’.

Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us smashing it by providing a detailed and welcomed -feedback.

+feedback.

Do not contact contributors directly about support or help with technical issues.

@@ -416,7 +416,7 @@ If you spotted it first, help us smashing it by providing a detailed and welcome

OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use.

-

This module is part of the OCA/server-tools project on GitHub.

+

This module is part of the OCA/server-tools project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

diff --git a/fetchmail_incoming_log/tests/__init__.py b/fetchmail_incoming_log/tests/__init__.py index b52c88e2f..85aed3ed2 100644 --- a/fetchmail_incoming_log/tests/__init__.py +++ b/fetchmail_incoming_log/tests/__init__.py @@ -1 +1 @@ -from . import test_fetchmail_incoming_log \ No newline at end of file +from . import test_fetchmail_incoming_log diff --git a/fetchmail_incoming_log/tests/test_fetchmail_incoming_log.py b/fetchmail_incoming_log/tests/test_fetchmail_incoming_log.py index db3684969..08c9c22b8 100644 --- a/fetchmail_incoming_log/tests/test_fetchmail_incoming_log.py +++ b/fetchmail_incoming_log/tests/test_fetchmail_incoming_log.py @@ -3,11 +3,11 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -from odoo.addons.mail.tests.common import TestMail -from odoo.addons.mail.tests.test_mail_gateway import MAIL_TEMPLATE +from odoo.addons.test_mail.tests.test_mail_gateway import TestMailgateway +from odoo.addons.test_mail.data.test_mail_data import MAIL_TEMPLATE -class TestFetchmailIncomingLog(TestMail): +class TestFetchmailIncomingLog(TestMailgateway): def setUp(self): super(TestFetchmailIncomingLog, self).setUp()