573181bcea
This change let odoo process a state sent from mailgun legacy webhooks that seems to apply when the message is not sent because the related email has been mark us as spam or have bounced before. For solve this add two new states to _mailgun_event_type_mapping_mailgun_event_type_mapping method: * failed: Mailgun could not deliver the email to the recipient email server * rejected: Mailgun rejected the request to send/forward the email source in https://documentation.mailgun.com/en/latest/quickstart-events.html#events.
25 lines
759 B
Python
25 lines
759 B
Python
# Copyright 2016 Tecnativa - Antonio Espinosa
|
|
# Copyright 2016 Tecnativa - Carlos Dauden
|
|
# Copyright 2017 Tecnativa - Pedro M. Baeza
|
|
# Copyright 2017-18 Tecnativa - David Vidal
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
{
|
|
"name": "Mail tracking for Mailgun",
|
|
"summary": "Mail tracking and Mailgun webhooks integration",
|
|
"version": "12.0.1.0.2",
|
|
"category": "Social Network",
|
|
"website": "https://github.com/OCA/social",
|
|
"author": "Tecnativa, "
|
|
"Odoo Community Association (OCA)",
|
|
"license": "AGPL-3",
|
|
"application": False,
|
|
'installable': True,
|
|
"depends": [
|
|
"mail_tracking",
|
|
],
|
|
"data": [
|
|
"views/res_partner.xml",
|
|
"views/mail_tracking_email.xml",
|
|
]
|
|
}
|