From 0df9de30c9aa4d2447407878290e45352fea7d59 Mon Sep 17 00:00:00 2001 From: downtownallday Date: Fri, 9 Apr 2021 09:47:07 -0400 Subject: [PATCH 1/2] Manage the local Postgrey whitelist in the admin console --- management/daemon.py | 27 ++++++++++ management/templates/index.html | 5 ++ management/templates/postgrey-whitelist.html | 53 ++++++++++++++++++++ setup/mail-postfix.sh | 12 +++++ 4 files changed, 97 insertions(+) create mode 100644 management/templates/postgrey-whitelist.html diff --git a/management/daemon.py b/management/daemon.py index 1ccb161a..542443ce 100755 --- a/management/daemon.py +++ b/management/daemon.py @@ -645,6 +645,33 @@ def privacy_status_set(): utils.write_settings(config, env) return "OK" +@app.route('/system/postgrey-whitelist', methods=["GET","POST"]) +@authorized_personnel_only +def postgrey_whitelist_handler(): + conf_file="/etc/postgrey/whitelist_clients.local" + if request.method == "GET": + contents = "" + try: + with open(conf_file) as fp: + contents = fp.read() + except FileNotFoundError: + pass + return Response(contents, status=200, mimetype='text/plain') + + elif request.method == "POST": + try: + contents = request.form["contents"] + with open(conf_file, "w") as fp: + fp.write(contents) + utils.shell("check_call", ["/bin/systemctl", "reload", "postgrey"]) + except KeyError: + return ("Missing required parameter", 400) + except subprocess.CalledProcessError as e: + app.logger.exception(e) + return ("Postgrey reload failed", 500) + + return "OK. Saved and Postgrey reloaded." + # MUNIN @app.route('/munin/') diff --git a/management/templates/index.html b/management/templates/index.html index 35be0616..6ff38725 100644 --- a/management/templates/index.html +++ b/management/templates/index.html @@ -94,6 +94,7 @@
  • Custom DNS
  • External DNS
  • Munin Monitoring
  • +
  • Postgrey whitelist
  • Custom DNS
  • External DNS
  • Munin Monitoring
  • -
  • Postgrey whitelist
  • +
  • Postgrey Whitelist