mirror of
https://github.com/processone/ejabberd.git
synced 2024-12-20 17:27:00 +01:00
Generate 'remote-server-not-found' stanza error for non-IDN domains
Fixes #2969
This commit is contained in:
parent
d64951c2b2
commit
949e4c1c59
@ -367,9 +367,11 @@ 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;
|
||||
end;
|
||||
mk_bounce_error(_Lang, _State) ->
|
||||
%% We should not be here. Probably :)
|
||||
xmpp:err_remote_server_not_found().
|
||||
|
Loading…
Reference in New Issue
Block a user