plugins/mod_register.lua

changeset 85
a115b99419ad
parent 63
4c27740fdeff
child 311
513bd52e8e19
--- a/plugins/mod_register.lua	Thu Oct 09 01:20:43 2008 +0500
+++ b/plugins/mod_register.lua	Thu Oct 09 02:08:33 2008 +0500
@@ -29,7 +29,8 @@
 						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 @@
 						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

mercurial