Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
2 Ответы
2881 Представления
Traceback (most recent call last):
  File "D:\OdooErp\server\odoo\addons\base\models\ir_mail_server.py", line 686, in send_email
    smtp.send_message(message, smtp_from, smtp_to_list)
  File "D:\OdooErp\python\lib\smtplib.py", line 967, in send_message
    rcpt_options)
  File "D:\OdooErp\python\lib\smtplib.py", line 867, in sendmail
    raise SMTPSenderRefused(code, resp, from_addr)
smtplib.SMTPSenderRefused: (553, b'5.7.1 : Sender address rejected: not owned by user info@core2plus.com', 'bounce@core2plus.com')

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "D:\OdooErp\server\odoo\http.py", line 1579, in _serve_db
    return service_model.retrying(self._serve_ir_http, self.env)
  File "D:\OdooErp\server\odoo\service\model.py", line 134, in retrying
    result = func()
  File "D:\OdooErp\server\odoo\http.py", line 1608, in _serve_ir_http
    response = self.dispatcher.dispatch(rule.endpoint, args)
  File "D:\OdooErp\server\odoo\http.py", line 1805, in dispatch
    result = self.request.registry['ir.http']._dispatch(endpoint)
  File "D:\OdooErp\server\odoo\addons\website\models\ir_http.py", line 235, in _dispatch
    response = super()._dispatch(endpoint)
  File "D:\OdooErp\server\odoo\addons\base\models\ir_http.py", line 144, in _dispatch
    result = endpoint(**request.params)
  File "D:\OdooErp\server\odoo\http.py", line 698, in route_wrapper
    result = endpoint(self, *args, **params_ok)
  File "D:\OdooErp\server\odoo\addons\web\controllers\dataset.py", line 46, in call_button
    action = self._call_kw(model, method, args, kwargs)
  File "D:\OdooErp\server\odoo\addons\web\controllers\dataset.py", line 33, in _call_kw
    return call_kw(request.env[model], method, args, kwargs)
  File "D:\OdooErp\server\odoo\api.py", line 461, in call_kw
    result = _call_kw_multi(method, model, args, kwargs)
  File "D:\OdooErp\server\odoo\api.py", line 448, in _call_kw_multi
    result = method(recs, *args, **kwargs)
  File "D:\OdooErp\server\odoo\addons\auth_signup\models\res_users.py", line 202, in action_reset_password
    template.send_mail(user.id, force_send=force_send, raise_exception=True, email_values=email_values)
  File "D:\OdooErp\server\odoo\addons\mail\models\mail_template.py", line 402, in send_mail
    mail.send(raise_exception=raise_exception)
  File "D:\OdooErp\server\odoo\addons\mail\models\mail_mail.py", line 425, in send
    smtp_session=smtp_session)
  File "D:\OdooErp\server\odoo\addons\mail\models\mail_mail.py", line 529, in _send
    msg, mail_server_id=mail.mail_server_id.id, smtp_session=smtp_session)
  File "D:\OdooErp\server\odoo\addons\base\models\ir_mail_server.py", line 697, in send_email
    raise MailDeliveryException(_("Mail Delivery Failed"), msg)
odoo.addons.base.models.ir_mail_server.MailDeliveryException: ('Mail Delivery Failed', "Mail delivery failed via SMTP server 'None'.\nSMTPSenderRefused: 553\n5.7.1 : Sender address rejected: not owned by user info@core2plus.com\nbounce@core2plus.com")

The above server error caused the following client error:
RPC_ERROR: Odoo Server Error
    at makeErrorFromResponse (http://192.168.18.85:8069/web/assets/1743-17f7f02/web.assets_backend.min.js:967:163)
    at XMLHttpRequest. (http://192.168.18.85:8069/web/assets/1743-17f7f02/web.assets_backend.min.js:974:13)


Аватар
Отменить
Лучший ответ

Hi, you can follow this:

https://youtu.be/bx8JXli-Y6A

Hope it helps

Аватар
Отменить
Лучший ответ

This error message is indicating that there is an issue with the SMTP server that you have configured in Odoo to send emails. Specifically, it says that the email address "info@core2plus.com" is not owned by the user "bounce@core2plus.com".

It's likely that the email server you have configured in Odoo is expecting the "From" email address to be an email that is associated with the SMTP server's user account.

You may want to check your outgoing email server settings in Odoo and make sure that the "From" email address is set to an email that is associated with the SMTP server's user account. You can also check with the email server administrator if there is any other issue with the email address.

Another thing to check is that the outgoing email server's hostname, port, username, and password are correctly set in your Odoo settings.

Also check that the email address you are using in the 'From' field is verified by the email server provider.

It's also possible that the SMTP server is blocking the email because it is coming from an IP address that is not authorized to send email on behalf of the domain.

You can check the SMTP server logs to see if there is any more information on the error. If everything seems to be configured correctly, you may want to contact the email server administrator for further assistance.

Аватар
Отменить