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.

44 lines
1.6 KiB

9 years ago
9 years ago
  1. Fix mail error 553
  2. ==================
  3. Module updates 'FROM' field to portal@MYDOMAIN.COM value in order to fix 553 error on a mail service that checks FROM field.
  4. E.g:
  5. * Customer send email from USER@CUSTOMER.com to info@MYDOMAIN.COM
  6. * odoo accept email and try to send notifcation to related odoo users. E.g to admin@gmail.com.
  7. * By default odoo prepare notification email with parameters as follows:
  8. * FROM: user@CUSTOMER.com
  9. * TO: admin@gmail.com
  10. if you mail service provider, e.g. pdd.yandex.ru, doesn't allow emails with a FROM value differ from ...@MYDOMAIN.COM, then you get 553. This is why you need to update FROM value to portal@MYDOMAIN.COM
  11. Configuration
  12. =============
  13. You can configure default alias at Settings -> System Parameters -> mail.catchall.alias_from
  14. You can configure name for default alias at Settings -> System Parameters -> mail.catchall.name_alias_from
  15. You can configure name for default alias at Settings -> System Parameters -> mail.catchall.name_alias_from
  16. Known issues / Roadmap
  17. ======================
  18. The module is consist of redefined send function from mail.mail
  19. model. So it is just copy pasted source code with some
  20. modification. This function is changed very rarely, but sometime it
  21. can happens and the module should be updated. You can check commits
  22. for mail_mail.py here:
  23. https://github.com/odoo/odoo/commits/8.0/addons/mail/mail_mail.py
  24. Tested on Odoo 8.0 d023c079ed86468436f25da613bf486a4a17d625
  25. Status
  26. ======
  27. Related issues at odoo's tracker:
  28. * https://github.com/odoo/odoo/issues/5864
  29. * https://github.com/odoo/odoo/issues/3347
  30. Fix: https://github.com/odoo-dev/odoo/commit/a4597fe34fcfa8dae28b156410080346bb33af33