diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_auth_internal_plain.lua | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/mod_auth_internal_plain.lua b/plugins/mod_auth_internal_plain.lua index 0f65323c..bb3bf7c1 100644 --- a/plugins/mod_auth_internal_plain.lua +++ b/plugins/mod_auth_internal_plain.lua @@ -77,11 +77,14 @@ function provider.users() end function provider.create_user(username, password) + local now = os.time(); + if password == nil then + return accounts:set(username, { created = now, updated = now, disabled = true }); + end password = saslprep(password); if not password then return nil, "Password fails SASLprep."; end - local now = os.time(); return accounts:set(username, { password = password; created = now, updated = now; |