diff options
author | Matthew Wild <mwild1@gmail.com> | 2010-05-20 11:52:20 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2010-05-20 11:52:20 +0100 |
commit | 5cba72527ed1697d41af3615b3ff48f6e541fc62 (patch) | |
tree | b756c98351ade884541129435aa419599eda9419 | |
parent | ac685e8a5d88a012d06fb620622d765e59054c88 (diff) | |
parent | 58ceb41a9495c734a9ff3fa9eece8ef6fc29ecbe (diff) | |
download | prosody-5cba72527ed1697d41af3615b3ff48f6e541fc62.tar.gz prosody-5cba72527ed1697d41af3615b3ff48f6e541fc62.zip |
Merge 0.7->trunk
-rw-r--r-- | plugins/mod_saslauth.lua | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/plugins/mod_saslauth.lua b/plugins/mod_saslauth.lua index 773a44a1..9f940c37 100644 --- a/plugins/mod_saslauth.lua +++ b/plugins/mod_saslauth.lua @@ -27,7 +27,12 @@ local config = require "core.configmanager"; local secure_auth_only = module:get_option("c2s_require_encryption") or module:get_option("require_encryption"); local sasl_backend = module:get_option("sasl_backend") or "builtin"; + +-- Cyrus config options local require_provisioning = module:get_option("cyrus_require_provisioning") or false; +local cyrus_service_realm = module:get_option("cyrus_service_realm"); +local cyrus_service_name = module:get_option("cyrus_service_name"); +local cyrus_application_name = module:get_option("cyrus_application_name"); local log = module._log; @@ -46,7 +51,11 @@ elseif sasl_backend == "cyrus" then if ok then local cyrus_new = cyrus.new; new_sasl = function(realm) - return cyrus_new(module:get_option("cyrus_service_realm") or realm, module:get_option("cyrus_service_name") or "xmpp"); + return cyrus_new( + cyrus_service_realm or realm, + cyrus_service_name or "xmpp", + cyrus_application_name or "prosody" + ); end else module:log("error", "Failed to load Cyrus SASL because: %s", cyrus); |