mod_carbons: Carbon incoming message delivery failure reports

Ensures that all your clients know about sent messages that failed.
This commit is contained in:
Kim Alvefur 2020-04-26 20:23:50 +02:00
parent bec170ac73
commit 9e3ef1c01b

View file

@ -43,6 +43,10 @@ local function should_copy(stanza, c2s, user_bare)
return true, "type";
end
if st_type == "error" and not c2s and not (stanza.attr.from or ""):find("/") then
return true, "bounce";
end
return false, "default";
end