You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

165 lines
8.7 KiB

11 years ago
11 years ago
11 years ago
9 years ago
11 years ago
11 years ago
  1. # -*- coding: utf-8 -*-
  2. import base64
  3. import logging
  4. import re
  5. from email.utils import formataddr
  6. from openerp import tools
  7. from openerp import SUPERUSER_ID
  8. from openerp.addons.base.ir.ir_mail_server import MailDeliveryException
  9. from openerp.osv import osv
  10. from openerp.tools.safe_eval import safe_eval as eval
  11. from openerp.tools.translate import _
  12. _logger = logging.getLogger(__name__)
  13. class MailMail(osv.Model):
  14. _inherit = "mail.mail"
  15. def send(self, cr, uid, ids, auto_commit=False, raise_exception=False, context=None):
  16. # copy-paste from addons/mail/mail_mail.py
  17. """ Sends the selected emails immediately, ignoring their current
  18. state (mails that have already been sent should not be passed
  19. unless they should actually be re-sent).
  20. Emails successfully delivered are marked as 'sent', and those
  21. that fail to be deliver are marked as 'exception', and the
  22. corresponding error mail is output in the server logs.
  23. :param bool auto_commit: whether to force a commit of the mail status
  24. after sending each mail (meant only for scheduler processing);
  25. should never be True during normal transactions (default: False)
  26. :param bool raise_exception: whether to raise an exception if the
  27. email sending process has failed
  28. :return: True
  29. """
  30. # NEW STUFF
  31. catchall_alias = self.pool['ir.config_parameter'].get_param(cr, uid, "mail.catchall.alias_from", context=context)
  32. catchall_alias_name = self.pool['ir.config_parameter'].get_param(cr, uid, "mail.catchall.name_alias_from", context=context)
  33. catchall_domain = self.pool['ir.config_parameter'].get_param(cr, uid, "mail.catchall.domain", context=context)
  34. correct_email_from = r'@%s>?\s*$' % catchall_domain
  35. default_email_from = '%s@%s' % (catchall_alias, catchall_domain)
  36. context = dict(context or {})
  37. ir_mail_server = self.pool.get('ir.mail_server')
  38. ir_attachment = self.pool['ir.attachment']
  39. for mail in self.browse(cr, SUPERUSER_ID, ids, context=context):
  40. try:
  41. # TDE note: remove me when model_id field is present on mail.message - done here to avoid doing it multiple times in the sub method
  42. if mail.model:
  43. model_id = self.pool['ir.model'].search(cr, SUPERUSER_ID, [('model', '=', mail.model)], context=context)[0]
  44. model = self.pool['ir.model'].browse(cr, SUPERUSER_ID, model_id, context=context)
  45. else:
  46. model = None
  47. if model:
  48. context['model_name'] = model.name
  49. # load attachment binary data with a separate read(), as prefetching all
  50. # `datas` (binary field) could bloat the browse cache, triggerring
  51. # soft/hard mem limits with temporary data.
  52. attachment_ids = [a.id for a in mail.attachment_ids]
  53. attachments = [(a['datas_fname'], base64.b64decode(a['datas']))
  54. for a in ir_attachment.read(cr, SUPERUSER_ID, attachment_ids,
  55. ['datas_fname', 'datas'])]
  56. # specific behavior to customize the send email for notified partners
  57. email_list = []
  58. if mail.email_to:
  59. email_list.append(self.send_get_email_dict(cr, uid, mail, context=context))
  60. for partner in mail.recipient_ids:
  61. email_list.append(self.send_get_email_dict(cr, uid, mail, partner=partner, context=context))
  62. # headers
  63. headers = {}
  64. bounce_alias = self.pool['ir.config_parameter'].get_param(cr, uid, "mail.bounce.alias", context=context)
  65. catchall_domain = self.pool['ir.config_parameter'].get_param(cr, uid, "mail.catchall.domain", context=context)
  66. if bounce_alias and catchall_domain:
  67. if mail.model and mail.res_id:
  68. headers['Return-Path'] = '%s-%d-%s-%d@%s' % (bounce_alias, mail.id, mail.model, mail.res_id, catchall_domain)
  69. else:
  70. headers['Return-Path'] = '%s-%d@%s' % (bounce_alias, mail.id, catchall_domain)
  71. if mail.headers:
  72. try:
  73. headers.update(eval(mail.headers))
  74. except Exception:
  75. pass
  76. # Writing on the mail object may fail (e.g. lock on user) which
  77. # would trigger a rollback *after* actually sending the email.
  78. # To avoid sending twice the same email, provoke the failure earlier
  79. mail.write({'state': 'exception'})
  80. mail_sent = False
  81. # build an RFC2822 email.message.Message object and send it without queuing
  82. res = None
  83. for email in email_list:
  84. # NEW STUFF
  85. email_from = mail.email_from
  86. if re.search(correct_email_from, email_from) is None:
  87. email_from = default_email_from
  88. if catchall_alias_name:
  89. email_from = formataddr((catchall_alias_name, email_from))
  90. msg = ir_mail_server.build_email(
  91. email_from=email_from, # NEW STUFF
  92. email_to=email.get('email_to'),
  93. subject=email.get('subject'),
  94. body=email.get('body'),
  95. body_alternative=email.get('body_alternative'),
  96. email_cc=tools.email_split(mail.email_cc),
  97. reply_to=mail.reply_to,
  98. attachments=attachments,
  99. message_id=mail.message_id,
  100. references=mail.references,
  101. object_id=mail.res_id and ('%s-%s' % (mail.res_id, mail.model)),
  102. subtype='html',
  103. subtype_alternative='plain',
  104. headers=headers)
  105. try:
  106. res = ir_mail_server.send_email(cr, uid, msg,
  107. mail_server_id=mail.mail_server_id.id,
  108. context=context)
  109. except AssertionError as error:
  110. if error.message == ir_mail_server.NO_VALID_RECIPIENT:
  111. # No valid recipient found for this particular
  112. # mail item -> ignore error to avoid blocking
  113. # delivery to next recipients, if any. If this is
  114. # the only recipient, the mail will show as failed.
  115. _logger.warning("Ignoring invalid recipients for mail.mail %s: %s",
  116. mail.message_id, email.get('email_to'))
  117. else:
  118. raise
  119. if res:
  120. mail.write({'state': 'sent', 'message_id': res})
  121. mail_sent = True
  122. # /!\ can't use mail.state here, as mail.refresh() will cause an error
  123. # see revid:odo@openerp.com-20120622152536-42b2s28lvdv3odyr in 6.1
  124. if mail_sent:
  125. _logger.info('Mail with ID %r and Message-Id %r successfully sent', mail.id, mail.message_id)
  126. self._postprocess_sent_message(cr, uid, mail, context=context, mail_sent=mail_sent)
  127. except MemoryError:
  128. # prevent catching transient MemoryErrors, bubble up to notify user or abort cron job
  129. # instead of marking the mail as failed
  130. _logger.exception('MemoryError while processing mail with ID %r and Msg-Id %r. '
  131. 'Consider raising the --limit-memory-hard startup option',
  132. mail.id, mail.message_id)
  133. raise
  134. except Exception as e:
  135. _logger.exception('failed sending mail.mail %s', mail.id)
  136. mail.write({'state': 'exception'})
  137. self._postprocess_sent_message(cr, uid, mail, context=context, mail_sent=False)
  138. if raise_exception:
  139. if isinstance(e, AssertionError):
  140. # get the args of the original error, wrap into a value and throw a MailDeliveryException
  141. # that is an except_orm, with name and value as arguments
  142. value = '. '.join(e.args)
  143. raise MailDeliveryException(_("Mail Delivery Failed"), value)
  144. raise
  145. if auto_commit is True:
  146. cr.commit()
  147. return True