Mercurial > prosody-hg
comparison plugins/mod_saslauth.lua @ 6488:c91193b7e72c
mod_saslauth: Use type-specific config option getters
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Tue, 21 Oct 2014 12:56:19 +0200 |
| parents | edc63dc72566 |
| children | 1f07c72112d2 |
comparison
equal
deleted
inserted
replaced
| 6487:edc63dc72566 | 6488:c91193b7e72c |
|---|---|
| 14 local base64 = require "util.encodings".base64; | 14 local base64 = require "util.encodings".base64; |
| 15 | 15 |
| 16 local usermanager_get_sasl_handler = require "core.usermanager".get_sasl_handler; | 16 local usermanager_get_sasl_handler = require "core.usermanager".get_sasl_handler; |
| 17 local tostring = tostring; | 17 local tostring = tostring; |
| 18 | 18 |
| 19 local secure_auth_only = module:get_option("c2s_require_encryption", module:get_option("require_encryption")); | 19 local secure_auth_only = module:get_option_boolean("c2s_require_encryption", module:get_option_boolean("require_encryption", false)); |
| 20 local allow_unencrypted_plain_auth = module:get_option("allow_unencrypted_plain_auth") | 20 local allow_unencrypted_plain_auth = module:get_option_boolean("allow_unencrypted_plain_auth", false) |
| 21 | 21 |
| 22 local log = module._log; | 22 local log = module._log; |
| 23 | 23 |
| 24 local xmlns_sasl ='urn:ietf:params:xml:ns:xmpp-sasl'; | 24 local xmlns_sasl ='urn:ietf:params:xml:ns:xmpp-sasl'; |
| 25 local xmlns_bind ='urn:ietf:params:xml:ns:xmpp-bind'; | 25 local xmlns_bind ='urn:ietf:params:xml:ns:xmpp-bind'; |
