mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-03 00:07:05 +00:00
Fix another postgrey reload error
This commit is contained in:
parent
d4cbaaf356
commit
23d895b509
@ -678,7 +678,9 @@ def postgrey_whitelist_handler():
|
||||
contents = request.form["contents"]
|
||||
with open(conf_file, "w") as fp:
|
||||
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:
|
||||
return ("Missing required parameter", 400)
|
||||
except subprocess.CalledProcessError as e:
|
||||
|
Loading…
Reference in New Issue
Block a user