mod_register: Return a <not-acceptable/> error on empty usernames (thanks Neustradamus).
authorWaqas Hussain <waqas20@gmail.com>
Mon, 11 Jan 2010 17:52:28 +0500
changeset 2831 8ee7ec6fc5fc
parent 2830 1df57426263a
child 2832 8c754c61c72e
mod_register: Return a <not-acceptable/> error on empty usernames (thanks Neustradamus).
plugins/mod_register.lua
--- a/plugins/mod_register.lua	Sun Jan 10 20:21:48 2010 +0000
+++ b/plugins/mod_register.lua	Mon Jan 11 17:52:28 2010 +0500
@@ -141,7 +141,7 @@
 					username = nodeprep(table.concat(username));
 					password = table.concat(password);
 					local host = module.host;
-					if not username then
+					if not username or username == "" then
 						session.send(st.error_reply(stanza, "modify", "not-acceptable", "The requested username is invalid."));
 					elseif usermanager_user_exists(username, host) then
 						session.send(st.error_reply(stanza, "cancel", "conflict", "The requested username already exists."));