mod_rest: Special case handling of internal http request errors
authorKim Alvefur <zash@zash.se>
Sat, 25 Jan 2020 20:16:01 +0100
changeset 3869 a44e20cbd986
parent 3868 d845475c75f3
child 3870 c0df50ce96f0
mod_rest: Special case handling of internal http request errors These include connection errors and certificate problems
mod_rest/mod_rest.lua
--- a/mod_rest/mod_rest.lua	Sat Jan 25 20:12:50 2020 +0100
+++ b/mod_rest/mod_rest.lua	Sat Jan 25 20:16:01 2020 +0100
@@ -275,6 +275,8 @@
 						reply = st.error_reply(stanza, "modify", "bad-request", body);
 					elseif code_hundreds == 500 then
 						reply = st.error_reply(stanza, "cancel", "internal-server-error", body);
+					elseif code == 0 then
+						reply = st.error_reply(stanza, "wait", "recipient-unavailable", body);
 					else
 						reply = st.error_reply(stanza, "cancel", "undefined-condition", body);
 					end