# HG changeset patch # User Waqas Hussain # Date 1279457438 -18000 # Node ID 8ac3f60af3c472c916fd2d862a4e05d6d5e909f0 # Parent a88576f675cbe2060296683fed35375deeec47b9 mod_saslauth: Got rid of undocumented and useless 'sasl_realm' config option (was only used for anonymous auth, and that didn't make sense). diff -r a88576f675cb -r 8ac3f60af3c4 plugins/mod_saslauth.lua --- a/plugins/mod_saslauth.lua Sat Jul 17 19:36:14 2010 +0500 +++ b/plugins/mod_saslauth.lua Sun Jul 18 17:50:38 2010 +0500 @@ -159,9 +159,8 @@ if secure_auth_only and not origin.secure then return; end - local realm = module:get_option("sasl_realm") or origin.host; if anonymous_login then - origin.sasl_handler = new_sasl(realm, anonymous_authentication_profile); + origin.sasl_handler = new_sasl(module.host, anonymous_authentication_profile); else origin.sasl_handler = usermanager_get_sasl_handler(module.host); if not (module:get_option("allow_unencrypted_plain_auth")) and not origin.secure then