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.

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