Enable strict TLS by default

Now strict TLS should be explicitly turned off.

By default it is only turned off for nauta provider.
This commit is contained in:
Alexander Krotov
2020-12-24 21:31:48 +03:00
parent 30c334d887
commit 38ead5b72c
2 changed files with 32 additions and 32 deletions

View File

@@ -101,7 +101,7 @@ def process_data(data, file):
config_defaults = process_config_defaults(data)
strict_tls = data.get("strict_tls", False)
strict_tls = data.get("strict_tls", True)
strict_tls = "true" if strict_tls else "false"
max_smtp_rcpt_to = data.get("max_smtp_rcpt_to", 0)