You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Documentation doesn't match the Odoo implementation/code anymore, since version 15.
This isn't an issue (ignore) for version 14, 13 (and maybe earlier).
Both config params mail.force.smtp.from, mail.dynamic.smtp.from can be used to provide/override the outbound sender (From) address.
When obtaining and setup according to the documentation (links above), the outbound mails still result in error which the (documented) feature solved in version 14 and 13.
The implementation (code) exists in version 14, but not in version 15 and 16 (just search the params).
See code in version 14 (which doesn't exist in 15, 16):
This seems fixed in the documentation, it is still very confusing to implement. But I think the new feature is more dynamic then just setting a forced parameter.
To get the same behavior as with mail.force.smtp.from you set mail.default.from and mail.catchall.domain correctly. And as last step you make sure your outgoing email configuration has a proper from filter. Odoo will then look around and set the email with the default email address.
Impacted versions: 15, 16
Documentation doesn't match the Odoo implementation/code anymore, since version 15.
This isn't an issue (ignore) for version 14, 13 (and maybe earlier).
According to documentation:
Both config params
mail.force.smtp.from
,mail.dynamic.smtp.from
can be used to provide/override the outbound sender (From) address.When obtaining and setup according to the documentation (links above), the outbound mails still result in error which the (documented) feature solved in version 14 and 13.
(example mail addresses non real-world):
SMTPRecipientsRefused: {'[email protected]': (553, b'5.7.1 <[email protected]>: Sender address rejected: not owned by user [email protected]')}
The implementation (code) exists in version 14, but not in version 15 and 16 (just search the params).
See code in version 14 (which doesn't exist in 15, 16):
ir.mail_server
_get_email_from
Currently: https://github.com/odoo/odoo/blob/14.0/odoo/addons/base/models/ir_mail_server.py#L356
The text was updated successfully, but these errors were encountered: