2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
import logging
|
|
|
|
import re
|
|
|
|
|
2018-01-16 11:34:37 +01:00
|
|
|
from flectra import api, models, tools
|
|
|
|
from flectra.tools import decode_smtp_header, decode_message_header
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
_logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class MailThread(models.AbstractModel):
|
|
|
|
""" Update MailThread to add the support of bounce management in mass mailing statistics. """
|
|
|
|
_inherit = 'mail.thread'
|
|
|
|
|
|
|
|
@api.model
|
|
|
|
def message_route(self, message, message_dict, model=None, thread_id=None, custom_values=None):
|
|
|
|
""" Override to udpate mass mailing statistics based on bounce emails """
|
|
|
|
bounce_alias = self.env['ir.config_parameter'].sudo().get_param("mail.bounce.alias")
|
|
|
|
email_to = decode_message_header(message, 'To')
|
|
|
|
email_to_localpart = (tools.email_split(email_to) or [''])[0].split('@', 1)[0].lower()
|
|
|
|
|
|
|
|
if bounce_alias and bounce_alias in email_to_localpart:
|
|
|
|
bounce_re = re.compile("%s\+(\d+)-?([\w.]+)?-?(\d+)?" % re.escape(bounce_alias), re.UNICODE)
|
|
|
|
bounce_match = bounce_re.search(email_to)
|
|
|
|
if bounce_match:
|
|
|
|
bounced_mail_id = bounce_match.group(1)
|
|
|
|
self.env['mail.mail.statistics'].set_bounced(mail_mail_ids=[bounced_mail_id])
|
|
|
|
|
|
|
|
return super(MailThread, self).message_route(message, message_dict, model, thread_id, custom_values)
|
|
|
|
|
|
|
|
@api.model
|
|
|
|
def message_route_process(self, message, message_dict, routes):
|
|
|
|
""" Override to update the parent mail statistics. The parent is found
|
|
|
|
by using the References header of the incoming message and looking for
|
|
|
|
matching message_id in mail.mail.statistics. """
|
|
|
|
if message.get('References'):
|
|
|
|
message_ids = [x.strip() for x in decode_smtp_header(message['References']).split()]
|
|
|
|
self.env['mail.mail.statistics'].set_opened(mail_message_ids=message_ids)
|
|
|
|
self.env['mail.mail.statistics'].set_replied(mail_message_ids=message_ids)
|
|
|
|
return super(MailThread, self).message_route_process(message, message_dict, routes)
|
|
|
|
|
|
|
|
@api.multi
|
|
|
|
def message_post_with_template(self, template_id, **kwargs):
|
|
|
|
# avoid having message send through `message_post*` methods being implicitly considered as
|
|
|
|
# mass-mailing
|
|
|
|
no_massmail = self.with_context(
|
|
|
|
default_mass_mailing_name=False,
|
|
|
|
default_mass_mailing_id=False,
|
|
|
|
)
|
|
|
|
return super(MailThread, no_massmail).message_post_with_template(template_id, **kwargs)
|