[FIX] mass_mailing: Check if bounce_alias is not None

If the parameter mail.bounce.alias is not found
This commit is contained in:
Danimar Ribeiro 2015-09-08 09:01:58 -03:00 committed by Martin Trigaux
parent eb18925956
commit 18ae91ea92
1 changed files with 1 additions and 1 deletions

View File

@ -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