24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-08 21:43:07 +02:00

Generate 'remote-server-not-found' stanza error for non-IDN domains

Fixes #2969
This commit is contained in:
Evgeny Khramtsov 2019-07-29 22:45:38 +03:00
parent d64951c2b2
commit 949e4c1c59

View File

@ -367,6 +367,8 @@ mk_bounce_error(Lang, #{stop_reason := Why}) ->
xmpp:err_resource_constraint(Reason, Lang);
{dns, _} ->
xmpp:err_remote_server_not_found(Reason, Lang);
{idna, _} ->
xmpp:err_remote_server_not_found(Reason, Lang);
_ ->
xmpp:err_remote_server_timeout(Reason, Lang)
end;