[FIX] mail: fixed bounce email recognition + invite email headers + mass mailing...
authorThibault Delavallée <tde@openerp.com>
Tue, 5 Aug 2014 10:54:03 +0000 (12:54 +0200)
committerThibault Delavallée <tde@openerp.com>
Mon, 11 Aug 2014 13:39:26 +0000 (15:39 +0200)
commitc64b07736204c0f9f575ee167879ccbdf4603645
tree4c76ac461c017eb8050deafb43bfac3754d09135
parent9b0cac0aa0f5250b1eec5a11a46a02483c29b5ff
[FIX] mail: fixed bounce email recognition + invite email headers + mass mailing statistics not lost anymore
- [FIX] bounce regex: too many emails were considered as bounce and therefore
not displayed in the chatter and lost for the communication history. The regex
was not correctly looking for the bounce alias in the email_to.
- [FIX] invite email: replying to the invitation email (invitation as new
follower) now replies to the user sending the invitation.
- [FIX] mass_mailing: added a column to store the id of the original email
in addition to the many2one column. The many2one is set to null when deleting
the original email. As the information is necessary, it is saved on another
field. The many2one is necessary for indexes purpose as the inverse of
a one2many.
addons/mail/mail_message.py
addons/mail/tests/test_mail_gateway.py
addons/mail/wizard/invite.py
addons/mail/wizard/mail_compose_message.py
addons/mass_mailing/models/mail_mail.py
addons/mass_mailing/models/mail_thread.py
addons/mass_mailing/models/mass_mailing_stats.py
addons/mass_mailing/views/mass_mailing.xml
openerp/tools/mail.py