mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 06:37:37 +03:00
mod_carbons: Carbon incoming message delivery failure reports
Ensures that all your clients know about sent messages that failed.
This commit is contained in:
parent
bec170ac73
commit
9e3ef1c01b
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue