diff --git a/mail_drop_target_mailing_trace/README.rst b/mail_drop_target_mailing_trace/README.rst new file mode 100644 index 0000000000..aa9bfe16a7 --- /dev/null +++ b/mail_drop_target_mailing_trace/README.rst @@ -0,0 +1,82 @@ +============================== +Mail Drop Target Mailing Trace +============================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:38b69d0624acdcf278abef571b0d276c6436ced67c49c09243a4fe0705c55250 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Alpha-red.png + :target: https://odoo-community.org/page/development-status + :alt: Alpha +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :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/16.0/mail_drop_target_mailing_trace + :alt: OCA/social +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/social-16-0/social-16-0-mail_drop_target_mailing_trace + :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=16.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +Provide access rights for the model mass_mailing.model_mailing_trace +so that there is no error when user tries to drop email. + +.. IMPORTANT:: + This is an alpha version, the data model and design can change at any time without warning. + Only for development or testing purpose, do not use in production. + `More details on development status `_ + +**Table of contents** + +.. contents:: + :local: + +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 `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Camptocamp + +Contributors +~~~~~~~~~~~~ + +* Anna Janiszewska + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +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. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/mail_drop_target_mailing_trace/__init__.py b/mail_drop_target_mailing_trace/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/mail_drop_target_mailing_trace/__manifest__.py b/mail_drop_target_mailing_trace/__manifest__.py new file mode 100644 index 0000000000..18a7fdbf32 --- /dev/null +++ b/mail_drop_target_mailing_trace/__manifest__.py @@ -0,0 +1,20 @@ +# Copyright 2024 Camptocamp +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +{ + "name": "Mail Drop Target Mailing Trace", + "version": "16.0.1.0.0", + "development_status": "Alpha", + "summary": "Glue module to set access for mailing trace", + "author": "Camptocamp, Odoo Community Association (OCA)", + "website": "https://github.com/OCA/social", + "category": "Marketing", + "license": "AGPL-3", + "depends": ["mail_drop_target", "mass_mailing"], + "data": [ + "security/groups.xml", + "security/ir.model.access.csv", + ], + "installable": True, + "application": True, + "auto_install": True, +} diff --git a/mail_drop_target_mailing_trace/readme/CONTRIBUTORS.rst b/mail_drop_target_mailing_trace/readme/CONTRIBUTORS.rst new file mode 100644 index 0000000000..53c2c7ecc3 --- /dev/null +++ b/mail_drop_target_mailing_trace/readme/CONTRIBUTORS.rst @@ -0,0 +1 @@ +* Anna Janiszewska \ No newline at end of file diff --git a/mail_drop_target_mailing_trace/readme/DESCRIPTION.rst b/mail_drop_target_mailing_trace/readme/DESCRIPTION.rst new file mode 100644 index 0000000000..1c4fc56f2d --- /dev/null +++ b/mail_drop_target_mailing_trace/readme/DESCRIPTION.rst @@ -0,0 +1,4 @@ +Provide access rights for the model mass_mailing.model_mailing_trace +so that there is no error when user tries to drop email. + +This is needed due to odoo commit: 95743d51df09ff08bfa30096740d4986cb01539b \ No newline at end of file diff --git a/mail_drop_target_mailing_trace/security/groups.xml b/mail_drop_target_mailing_trace/security/groups.xml new file mode 100644 index 0000000000..74ae99fcb1 --- /dev/null +++ b/mail_drop_target_mailing_trace/security/groups.xml @@ -0,0 +1,16 @@ + + + + Drop email in chatter + + + + + + diff --git a/mail_drop_target_mailing_trace/security/ir.model.access.csv b/mail_drop_target_mailing_trace/security/ir.model.access.csv new file mode 100644 index 0000000000..609c95ec85 --- /dev/null +++ b/mail_drop_target_mailing_trace/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_mailing_trace_user,mailing.trace.user,mass_mailing.model_mailing_trace,mail_drop_target_mailing_trace.group_mailing_drop_mail,1,1,1,1 diff --git a/mail_drop_target_mailing_trace/static/description/index.html b/mail_drop_target_mailing_trace/static/description/index.html new file mode 100644 index 0000000000..e55d69d588 --- /dev/null +++ b/mail_drop_target_mailing_trace/static/description/index.html @@ -0,0 +1,430 @@ + + + + + +Mail Drop Target Mailing Trace + + + +
+

Mail Drop Target Mailing Trace

+ + +

Alpha License: AGPL-3 OCA/social Translate me on Weblate Try me on Runboat

+

Provide access rights for the model mass_mailing.model_mailing_trace +so that there is no error when user tries to drop email.

+
+

Important

+

This is an alpha version, the data model and design can change at any time without warning. +Only for development or testing purpose, do not use in production. +More details on development status

+
+

Table of contents

+ +
+

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.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Camptocamp
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+ +Odoo Community Association + +

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.

+

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

+
+
+
+ + diff --git a/setup/mail_drop_target_mailing_trace/odoo/addons/mail_drop_target_mailing_trace b/setup/mail_drop_target_mailing_trace/odoo/addons/mail_drop_target_mailing_trace new file mode 120000 index 0000000000..b8e2cc4a43 --- /dev/null +++ b/setup/mail_drop_target_mailing_trace/odoo/addons/mail_drop_target_mailing_trace @@ -0,0 +1 @@ +../../../../mail_drop_target_mailing_trace \ No newline at end of file diff --git a/setup/mail_drop_target_mailing_trace/setup.py b/setup/mail_drop_target_mailing_trace/setup.py new file mode 100644 index 0000000000..28c57bb640 --- /dev/null +++ b/setup/mail_drop_target_mailing_trace/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)