1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-04-04 00:17:06 +00:00

Fix another postgrey reload error

This commit is contained in:
downtownallday 2022-06-27 14:28:43 -04:00
parent d4cbaaf356
commit 23d895b509

View File

@ -678,7 +678,9 @@ def postgrey_whitelist_handler():
contents = request.form["contents"] contents = request.form["contents"]
with open(conf_file, "w") as fp: with open(conf_file, "w") as fp:
fp.write(contents) fp.write(contents)
utils.shell("check_call", ["/bin/systemctl", "reload", "postgrey"]) # TODO: use "reload" when reload is fixed - it fails starting with ubuntu 22.04 jammy
#utils.shell("check_call", ["/bin/systemctl", "reload", "postgrey"])
utils.shell("check_call", ["/bin/systemctl", "restart", "postgrey"])
except KeyError: except KeyError:
return ("Missing required parameter", 400) return ("Missing required parameter", 400)
except subprocess.CalledProcessError as e: except subprocess.CalledProcessError as e: