Skip to content

Commit

Permalink
Merge PR #5 into 18.0
Browse files Browse the repository at this point in the history
Signed-off-by hbrunn
  • Loading branch information
OCA-git-bot committed Dec 6, 2024
2 parents 4b4df74 + decd514 commit 9f95042
Show file tree
Hide file tree
Showing 29 changed files with 1,663 additions and 0 deletions.
131 changes: 131 additions & 0 deletions mail_debrand/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
============
Mail Debrand
============

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:8894aff06c4c2d15c42f627ef109899961a28b70155b30b6fa26dfa1508c4594
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
:target: https://odoo-community.org/page/development-status
:alt: Production/Stable
.. |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%2Fmail-lightgray.png?logo=github
:target: https://github.com/OCA/mail/tree/18.0/mail_debrand
:alt: OCA/mail
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/mail-18-0/mail-18-0-mail_debrand
: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/mail&target_branch=18.0
:alt: Try me on Runboat

|badge1| |badge2| |badge3| |badge4| |badge5|

This module modifies the functionality of emails to remove the Odoo
branding, specifically the 'Powered by Odoo'

**Table of contents**

.. contents::
:local:

Usage
=====

To use this module, you need to:

- Install it.
- Send an email.
- Nobody will know it comes from Odoo.

Known issues / Roadmap
======================

Known issues:

- Not all branding is removed from auth_signup's invitation email
because it is a longer, more complex snippet of HTML. Only the line
containing the link to Odoo.com is removed.

Changelog
=========

15.0.1.2.3 (2022-07-19)
-----------------------

- [FIX] https://github.com/OCA/social/issues/915
- [FIX] https://github.com/OCA/social/issues/936

12.0.1.0.0 (2018-11-06)
-----------------------

- [NEW] Initial V12 version. Complete rewrite from v11.

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/mail/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 <https://github.com/OCA/mail/issues/new?body=module:%20mail_debrand%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

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

Credits
=======

Authors
-------

* Tecnativa
* ForgeFlow
* Onestein
* Sodexis
* Nexterp Romania

Contributors
------------

- Lois Rilo <lois.rilo@forgeflow.com>
- Graeme Gellatly <graeme@o4sb.com>
- `Tecnativa <https://www.tecnativa.com>`__:

- Pedro M. Baeza
- João Marques

- Stefan Rijnhart stefan@opener.amsterdam

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.

.. |maintainer-pedrobaeza| image:: https://github.com/pedrobaeza.png?size=40px
:target: https://github.com/pedrobaeza
:alt: pedrobaeza
.. |maintainer-joao-p-marques| image:: https://github.com/joao-p-marques.png?size=40px
:target: https://github.com/joao-p-marques
:alt: joao-p-marques

Current `maintainers <https://odoo-community.org/page/maintainer-role>`__:

|maintainer-pedrobaeza| |maintainer-joao-p-marques|

This module is part of the `OCA/mail <https://github.com/OCA/mail/tree/18.0/mail_debrand>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
1 change: 1 addition & 0 deletions mail_debrand/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
25 changes: 25 additions & 0 deletions mail_debrand/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Copyright 2016 Tecnativa - Jairo Llopis
# Copyright 2017 Tecnativa - Pedro M. Baeza
# Copyright 2019 ForgeFlow S.L. - Lois Rilo <lois.rilo@forgeflow.com>
# 2020 NextERP Romania
# Copyright 2021 Tecnativa - João Marques
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

{
"name": "Mail Debrand",
"summary": """Remove Odoo branding in sent emails
Removes anchor <a href odoo.com togheder with it's parent
( for powerd by) form all the templates
removes any 'odoo' that are in tempalte texts > 20characters
""",
"version": "18.0.1.0.0",
"category": "Social Network",
"website": "https://github.com/OCA/mail",
"author": """Tecnativa, ForgeFlow, Onestein, Sodexis, Nexterp Romania,
Odoo Community Association (OCA)""",
"license": "AGPL-3",
"installable": True,
"depends": ["mail"],
"development_status": "Production/Stable",
"maintainers": ["pedrobaeza", "joao-p-marques"],
}
40 changes: 40 additions & 0 deletions mail_debrand/i18n/es.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * mail_debrand
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 14.0\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-09-03 13:36+0000\n"
"Last-Translator: Ivorra78 <informatica@totmaterial.es>\n"
"Language-Team: none\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.17\n"

#. module: mail_debrand
#. odoo-python
#: code:addons/mail_debrand/tests/test_mail_debrand_digest.py:0
#, python-format
msgid "Connect"
msgstr "Conectar"

#. module: mail_debrand
#: model:ir.model,name:mail_debrand.model_mail_render_mixin
msgid "Mail Render Mixin"
msgstr "Mezcla de renderizado de correo"

#. module: mail_debrand
#: model:ir.model,name:mail_debrand.model_mail_mail
msgid "Outgoing Mails"
msgstr "Correos salientes"

#~ msgid "Display Name"
#~ msgstr "Nombre mostrado"

#~ msgid "Last Modified on"
#~ msgstr "Última modificación en"
49 changes: 49 additions & 0 deletions mail_debrand/i18n/fr.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * mail_debrand
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 13.0\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2024-02-23 16:34+0000\n"
"Last-Translator: Vincent Hatakeyama <vincent+github@hatakeyama.fr>\n"
"Language-Team: none\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.17\n"

#. module: mail_debrand
#. odoo-python
#: code:addons/mail_debrand/tests/test_mail_debrand_digest.py:0
#, python-format
msgid "Connect"
msgstr "Connexion"

#. module: mail_debrand
#: model:ir.model,name:mail_debrand.model_mail_render_mixin
msgid "Mail Render Mixin"
msgstr "Mixin de rendu de courriel"

#. module: mail_debrand
#: model:ir.model,name:mail_debrand.model_mail_mail
msgid "Outgoing Mails"
msgstr "Courriels sortants"

#~ msgid "Email Templates"
#~ msgstr "Modèles d'emails"

#~ msgid "Email Thread"
#~ msgstr "Discussion par email"

#~ msgid "Odoo"
#~ msgstr "Odoo"

#~ msgid "Powered by"
#~ msgstr "Propulsé par"

#~ msgid "using"
#~ msgstr "utilisant"
40 changes: 40 additions & 0 deletions mail_debrand/i18n/fr_FR.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * mail_debrand
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 14.0\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2021-04-11 18:46+0000\n"
"Last-Translator: Yves Le Doeuff <yld@alliasys.fr>\n"
"Language-Team: none\n"
"Language: fr_FR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.3.2\n"

#. module: mail_debrand
#. odoo-python
#: code:addons/mail_debrand/tests/test_mail_debrand_digest.py:0
#, python-format
msgid "Connect"
msgstr ""

#. module: mail_debrand
#: model:ir.model,name:mail_debrand.model_mail_render_mixin
msgid "Mail Render Mixin"
msgstr "Rendu du courrier"

#. module: mail_debrand
#: model:ir.model,name:mail_debrand.model_mail_mail
msgid "Outgoing Mails"
msgstr "E-mails sortants"

#~ msgid "Display Name"
#~ msgstr "Nom affiché"

#~ msgid "Last Modified on"
#~ msgstr "Dernière modification"
43 changes: 43 additions & 0 deletions mail_debrand/i18n/it.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * mail_debrand
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 14.0\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2024-07-08 08:59+0000\n"
"Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
"Language-Team: none\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.6.2\n"

#. module: mail_debrand
#. odoo-python
#: code:addons/mail_debrand/tests/test_mail_debrand_digest.py:0
#, python-format
msgid "Connect"
msgstr "Connetti"

#. module: mail_debrand
#: model:ir.model,name:mail_debrand.model_mail_render_mixin
msgid "Mail Render Mixin"
msgstr "Mixin resa posta"

#. module: mail_debrand
#: model:ir.model,name:mail_debrand.model_mail_mail
msgid "Outgoing Mails"
msgstr "Posta in uscita"

#~ msgid "Display Name"
#~ msgstr "Nome visualizzato"

#~ msgid "ID"
#~ msgstr "ID"

#~ msgid "Last Modified on"
#~ msgstr "Ultima modifica il"
31 changes: 31 additions & 0 deletions mail_debrand/i18n/mail_debrand.pot
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * mail_debrand
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 17.0\n"
"Report-Msgid-Bugs-To: \n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"

#. module: mail_debrand
#. odoo-python
#: code:addons/mail_debrand/tests/test_mail_debrand_digest.py:0
#, python-format
msgid "Connect"
msgstr ""

#. module: mail_debrand
#: model:ir.model,name:mail_debrand.model_mail_render_mixin
msgid "Mail Render Mixin"
msgstr ""

#. module: mail_debrand
#: model:ir.model,name:mail_debrand.model_mail_mail
msgid "Outgoing Mails"
msgstr ""
Loading

0 comments on commit 9f95042

Please sign in to comment.