From 18ae91ea921058ef8895b7c1b3a4ec7cf6c9fbfc Mon Sep 17 00:00:00 2001 From: Danimar Ribeiro Date: Tue, 8 Sep 2015 09:01:58 -0300 Subject: [PATCH] [FIX] mass_mailing: Check if bounce_alias is not None If the parameter mail.bounce.alias is not found --- addons/mass_mailing/models/mail_thread.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/mass_mailing/models/mail_thread.py b/addons/mass_mailing/models/mail_thread.py index e4732527f2d..11df611aad1 100644 --- a/addons/mass_mailing/models/mail_thread.py +++ b/addons/mass_mailing/models/mail_thread.py @@ -45,7 +45,7 @@ class MailThread(osv.AbstractModel): email_to = decode_header(message, 'To') # 0. Verify whether this is a bounced email (wrong destination,...) -> use it to collect data, such as dead leads - if bounce_alias in email_to: + if bounce_alias and bounce_alias in email_to: # Bounce regex # Typical form of bounce is bounce_alias-128-crm.lead-34@domain # group(1) = the mail ID; group(2) = the model (if any); group(3) = the record ID