forked from External/ergo
propagate require-sasl into tor-listeners.require-sasl
This commit is contained in:
parent
317720bfc8
commit
2d31a16647
1 changed files with 6 additions and 0 deletions
|
|
@ -1333,6 +1333,12 @@ func LoadConfig(filename string) (config *Config, err error) {
|
||||||
config.Accounts.Registration.AllowBeforeConnect = false
|
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)
|
config.Accounts.RequireSasl.exemptedNets, err = utils.ParseNetList(config.Accounts.RequireSasl.Exempted)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("Could not parse require-sasl exempted nets: %v", err.Error())
|
return nil, fmt.Errorf("Could not parse require-sasl exempted nets: %v", err.Error())
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue