diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-07-08 18:48:28 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-07-08 18:48:28 +0100 |
commit | 28df9086d844e7a8ca6f26b55fe6297e044e7be7 (patch) | |
tree | 03f7a2da185371615ec7ca54b84c5f0aaafec986 /plugins/mod_auth_anonymous.lua | |
parent | 364fd6915460a12a2fcdcee972da836ba0244e5a (diff) | |
parent | ff4d31cd03974874de3ea7d0d09ccc852aee4531 (diff) | |
download | prosody-28df9086d844e7a8ca6f26b55fe6297e044e7be7.tar.gz prosody-28df9086d844e7a8ca6f26b55fe6297e044e7be7.zip |
Merge with backout
Diffstat (limited to 'plugins/mod_auth_anonymous.lua')
-rw-r--r-- | plugins/mod_auth_anonymous.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/mod_auth_anonymous.lua b/plugins/mod_auth_anonymous.lua index 3cb7cf98..c080177d 100644 --- a/plugins/mod_auth_anonymous.lua +++ b/plugins/mod_auth_anonymous.lua @@ -32,10 +32,9 @@ function new_default_provider(host) return nil, "Account creation/modification not supported."; end - function provider.get_sasl_handler(session) + function provider.get_sasl_handler() local anonymous_authentication_profile = { anonymous = function(sasl, username, realm) - session.roster = {}; -- so that the null storage backend doesn't upset rostermanager return true; -- for normal usage you should always return true here end }; |