Skip to content
Snippets Groups Projects
Commit 8ffd8224 authored by Nicolas Lempereur's avatar Nicolas Lempereur
Browse files

[FIX] mail,test_mass_mailing: unblacklist with mass mailing


The optimization 2ccf0bd0 does not take into account that to
"unblacklist" a user, you have the archive the mail.blacklist record so
only mail.blacklist active records need to be taken into account.

Added test without the fix fails with:

    AssertionError: 2 != 1 : Blacklisted ignored email number incorrect,
    should be equals to 1

opw-2536304

closes odoo/odoo#71125

Signed-off-by: default avatarNicolas Lempereur (nle) <nle@odoo.com>
parent e7a5ba95
No related branches found
No related tags found
No related merge requests found
......@@ -306,7 +306,7 @@ class MailComposer(models.TransientModel):
blacklisted_rec_ids = set()
if mass_mail_mode and issubclass(type(self.env[self.model]), self.pool['mail.thread.blacklist']):
self.env['mail.blacklist'].flush(['email'])
self._cr.execute("SELECT email FROM mail_blacklist")
self._cr.execute("SELECT email FROM mail_blacklist WHERE active=true")
blacklist = {x[0] for x in self._cr.fetchall()}
if blacklist:
targets = self.env[self.model].browse(res_ids).read(['email_normalized'])
......
......@@ -282,17 +282,28 @@ class TestOnResPartner(TransactionCase):
'name': 'test email 2',
'email': 'test2@email.com',
})
partner_c = partners.create({
'name': 'test email 3',
'email': 'test3@email.com',
})
# Set Blacklist
self.blacklist_contact_entry = self.env['mail.blacklist'].create({
'email': 'Test2@email.com',
})
self.env['mail.blacklist'].create({
'email': 'test3@email.com',
})
# Unblacklist
self.env['mail.blacklist']._remove('Test3@email.com')
self.env['mail.blacklist'].flush(['active'])
# create mass mailing record
self.mass_mailing = mass_mailing.create({
'name': 'One',
'subject': 'One',
'mailing_domain': [('id', 'in', [partner_a.id, partner_b.id])],
'mailing_domain': [('id', 'in', [partner_a.id, partner_b.id, partner_c.id])],
'body_html': 'This is mass mail marketing demo'})
self.mass_mailing.mailing_model_real = 'res.partner'
self.mass_mailing.action_put_in_queue()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment