mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Added: mod_register now replies with an error stanza when file write fails
This commit is contained in:
parent
4202397776
commit
c27c01b893
1 changed files with 4 additions and 2 deletions
|
@ -29,7 +29,8 @@ add_iq_handler("c2s", "jabber:iq:register", function (session, stanza)
|
|||
if usermanager_create_user(username, password, session.host) then -- password change -- TODO is this the right way?
|
||||
send(session, st.reply(stanza));
|
||||
else
|
||||
-- TODO internal error, unable to write file, file may be locked, etc
|
||||
-- TODO unable to write file, file may be locked, etc, what's the correct error?
|
||||
send(session, st.error_reply(stanza, "wait", "internal-server-error"));
|
||||
end
|
||||
else
|
||||
send(session, st.error_reply(stanza, "modify", "bad-request"));
|
||||
|
@ -70,7 +71,8 @@ add_iq_handler("c2s_unauthed", "jabber:iq:register", function (session, stanza)
|
|||
if usermanager_create_user(username, password, session.host) then
|
||||
send(session, st.reply(stanza)); -- user created!
|
||||
else
|
||||
-- TODO internal error, unable to write file, file may be locked, etc
|
||||
-- TODO unable to write file, file may be locked, etc, what's the correct error?
|
||||
send(session, st.error_reply(stanza, "wait", "internal-server-error"));
|
||||
end
|
||||
end
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue