Merge pull request #1636 from slingamn/tor_require_sasl

propagate require-sasl into tor-listeners.require-sasl
This commit is contained in:
Shivaram Lingamneni 2021-04-26 10:38:59 -04:00 committed by GitHub
commit 5c157adf45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -1333,6 +1333,12 @@ func LoadConfig(filename string) (config *Config, err error) {
config.Accounts.Registration.AllowBeforeConnect = false
}
if config.Accounts.RequireSasl.Enabled {
// minor gotcha: Tor listeners will typically be loopback and
// therefore exempted from require-sasl. if require-sasl is enabled
// for non-Tor (non-local) connections, enable it for Tor as well:
config.Server.TorListeners.RequireSasl = true
}
config.Accounts.RequireSasl.exemptedNets, err = utils.ParseNetList(config.Accounts.RequireSasl.Exempted)
if err != nil {
return nil, fmt.Errorf("Could not parse require-sasl exempted nets: %v", err.Error())