aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_saslauth.lua
diff options
context:
space:
mode:
authorPaul Aurich <paul@darkrain42.org>2010-03-17 15:29:14 -0700
committerPaul Aurich <paul@darkrain42.org>2010-03-17 15:29:14 -0700
commitfe0f1c99368aa0009ab3ba85236f334ef2d256af (patch)
treedaea0eca76d253e9c3e29b515c9da4467c114539 /plugins/mod_saslauth.lua
parente99e23509b0b20f49bc1d0763947514bb6f5d4d7 (diff)
downloadprosody-fe0f1c99368aa0009ab3ba85236f334ef2d256af.tar.gz
prosody-fe0f1c99368aa0009ab3ba85236f334ef2d256af.zip
mod_saslauth: Add a sasl_realm option
Diffstat (limited to 'plugins/mod_saslauth.lua')
-rw-r--r--plugins/mod_saslauth.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/mod_saslauth.lua b/plugins/mod_saslauth.lua
index 0cae5833..1143549a 100644
--- a/plugins/mod_saslauth.lua
+++ b/plugins/mod_saslauth.lua
@@ -161,10 +161,11 @@ module:hook("stream-features", function(event)
if secure_auth_only and not origin.secure then
return;
end
+ local realm = module:get_option("sasl_realm") or origin.host;
if module:get_option("anonymous_login") then
- origin.sasl_handler = new_sasl(origin.host, anonymous_authentication_profile);
+ origin.sasl_handler = new_sasl(realm, anonymous_authentication_profile);
else
- origin.sasl_handler = new_sasl(origin.host, default_authentication_profile);
+ origin.sasl_handler = new_sasl(realm, default_authentication_profile);
if not (module:get_option("allow_unencrypted_plain_auth")) and not origin.secure then
origin.sasl_handler:forbidden({"PLAIN"});
end