I screwed up badly

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

View File

@ -539,10 +539,10 @@ def smtp_relay_set():
try:
# Write on Postfix config
# Write on daemon env
config["SMTP_RELAY_ENABLED"] = newconf.get("enabled")
config["SMTP_RELAY_HOST"] = (newconf.get("host") == "true")
config["SMTP_RELAY_AUTH"] = newconf.get("auth_enabled")
config["SMTP_RELAY_USER"] = (newconf.get("user") == "true")
config["SMTP_RELAY_ENABLED"] = (newconf.get("enabled") == "true")
config["SMTP_RELAY_HOST"] = newconf.get("host")
config["SMTP_RELAY_AUTH"] = (newconf.get("auth_enabled") == "true")
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)