Booleans are passed as strings

This commit is contained in:
David Duque 2020-04-17 18:06:16 +01:00
parent 6d8e2a5bb9
commit 0e583b9e4f
No known key found for this signature in database
GPG Key ID: 2F327738A3C0AE3A
1 changed files with 2 additions and 2 deletions

View File

@ -540,9 +540,9 @@ def smtp_relay_set():
# Write on Postfix config
# Write on daemon env
config["SMTP_RELAY_ENABLED"] = newconf.get("enabled")
config["SMTP_RELAY_HOST"] = newconf.get("host")
config["SMTP_RELAY_HOST"] = (newconf.get("host") == "true")
config["SMTP_RELAY_AUTH"] = newconf.get("auth_enabled")
config["SMTP_RELAY_USER"] = newconf.get("user")
config["SMTP_RELAY_USER"] = (newconf.get("user") == "true")
utils.write_settings(config, env)
# Restart Postfix
return utils.shell("check_output", ["/usr/bin/systemctl", "restart", "postfix"], capture_stderr=True)