mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_saslauth: Add a sasl_realm option
This commit is contained in:
parent
a99005ba14
commit
5e9e92c9bf
1 changed files with 3 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue