From 3056738134bf9e835d3c32f605c101f97e485366 Mon Sep 17 00:00:00 2001
From: Vincent Van Rossem
Date: Wed, 29 Jan 2025 14:45:47 +0100
Subject: [PATCH] [MIG] mail_autogenerated_header: Migration to 18.0
---
mail_autogenerated_header/README.rst | 10 ++++-----
mail_autogenerated_header/__manifest__.py | 2 +-
.../static/description/index.html | 6 ++---
.../tests/test_mail_autogenerated_header.py | 22 ++++++++++---------
4 files changed, 21 insertions(+), 19 deletions(-)
diff --git a/mail_autogenerated_header/README.rst b/mail_autogenerated_header/README.rst
index 564a58ad08..2c2d8cba44 100644
--- a/mail_autogenerated_header/README.rst
+++ b/mail_autogenerated_header/README.rst
@@ -17,13 +17,13 @@ Autogenerated headers
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fsocial-lightgray.png?logo=github
- :target: https://github.com/OCA/social/tree/17.0/mail_autogenerated_header
+ :target: https://github.com/OCA/social/tree/18.0/mail_autogenerated_header
:alt: OCA/social
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
- :target: https://translation.odoo-community.org/projects/social-17-0/social-17-0-mail_autogenerated_header
+ :target: https://translation.odoo-community.org/projects/social-18-0/social-18-0-mail_autogenerated_header
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
- :target: https://runboat.odoo-community.org/builds?repo=OCA/social&target_branch=17.0
+ :target: https://runboat.odoo-community.org/builds?repo=OCA/social&target_branch=18.0
:alt: Try me on Runboat
|badge1| |badge2| |badge3| |badge4| |badge5|
@@ -59,7 +59,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 to smash it by providing a detailed and welcomed
-`feedback `_.
+`feedback `_.
Do not contact contributors directly about support or help with technical issues.
@@ -91,6 +91,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/social `_ project on GitHub.
+This module is part of the `OCA/social `_ project on GitHub.
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
diff --git a/mail_autogenerated_header/__manifest__.py b/mail_autogenerated_header/__manifest__.py
index 61cc6301e6..527309077d 100644
--- a/mail_autogenerated_header/__manifest__.py
+++ b/mail_autogenerated_header/__manifest__.py
@@ -3,7 +3,7 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
{
"name": "Autogenerated headers",
- "version": "17.0.1.0.0",
+ "version": "18.0.1.0.0",
"author": "Hunki Enterprises BV, Therp BV,Odoo Community Association (OCA)",
"website": "https://github.com/OCA/social",
"license": "AGPL-3",
diff --git a/mail_autogenerated_header/static/description/index.html b/mail_autogenerated_header/static/description/index.html
index bd178a13ca..5d9037c114 100644
--- a/mail_autogenerated_header/static/description/index.html
+++ b/mail_autogenerated_header/static/description/index.html
@@ -369,7 +369,7 @@ Autogenerated headers
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:bf712f83323c5adb84946e0caf8b89b9646eeb0e0f9a97899c820ee2823b678c
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
-
+
This module was written to mark Odoo’s emails as being autogenerated
according to RFC 3834, section
5. This allows receiving mail servers to act accordingly by for example
@@ -404,7 +404,7 @@
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 to smash it by providing a detailed and welcomed
-feedback.
+feedback.
Do not contact contributors directly about support or help with technical issues.
@@ -432,7 +432,7 @@
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/social project on GitHub.
+
This module is part of the OCA/social project on GitHub.
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
diff --git a/mail_autogenerated_header/tests/test_mail_autogenerated_header.py b/mail_autogenerated_header/tests/test_mail_autogenerated_header.py
index f018da2baf..7a03fc3fed 100644
--- a/mail_autogenerated_header/tests/test_mail_autogenerated_header.py
+++ b/mail_autogenerated_header/tests/test_mail_autogenerated_header.py
@@ -1,14 +1,16 @@
# Copyright 2018 Therp BV
# Copyright 2022 Hunki Enterprises BV
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
-from odoo.tests.common import TransactionCase
from odoo.tools.mail import generate_tracking_message_id
+from odoo.addons.base.tests.common import BaseCommon
-class TestMailAutogeneratedHeader(TransactionCase):
- def setUp(self):
- super().setUp()
- self.mail = self.env["mail.mail"].create(
+
+class TestMailAutogeneratedHeader(BaseCommon):
+ @classmethod
+ def setUpClass(cls):
+ super().setUpClass()
+ cls.mail = cls.env["mail.mail"].create(
{
"subject": "testmessage",
"email_from": "test@test.com",
@@ -16,12 +18,12 @@ def setUp(self):
"message_id": "message_id",
}
)
- self.message = self.env["ir.mail_server"].build_email(
- [self.mail.email_from],
- [self.mail.email_to],
- self.mail.subject,
+ cls.message = cls.env["ir.mail_server"].build_email(
+ [cls.mail.email_from],
+ [cls.mail.email_to],
+ cls.mail.subject,
"",
- message_id=self.mail.message_id,
+ message_id=cls.mail.message_id,
)
def test_sending(self):