Add missing tls_client directive to ReadGlobals

See #674.
This commit is contained in:
fox.cpp 2024-01-27 16:32:15 +03:00
parent d8232a46d6
commit dd06ffe435
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0

View file

@ -294,6 +294,7 @@ func ReadGlobals(cfg []config.Node) (map[string]interface{}, []config.Node, erro
globals.String("hostname", false, false, "", nil)
globals.String("autogenerated_msg_domain", false, false, "", nil)
globals.Custom("tls", false, false, nil, tls.TLSDirective, nil)
globals.Custom("tls_client", false, false, nil, tls.TLSClientBlock, nil)
globals.Bool("storage_perdomain", false, false, nil)
globals.Bool("auth_perdomain", false, false, nil)
globals.StringList("auth_domains", false, false, nil, nil)