From c27c01b8930abe50c21269907d8a64e1daa57dbb Mon Sep 17 00:00:00 2001 From: Waqas Hussain Date: Thu, 9 Oct 2008 02:08:33 +0500 Subject: Added: mod_register now replies with an error stanza when file write fails --- plugins/mod_register.lua | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/plugins/mod_register.lua b/plugins/mod_register.lua index b1bf4cc0..ad0ba478 100644 --- a/plugins/mod_register.lua +++ b/plugins/mod_register.lua @@ -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 -- cgit v1.2.3