Removed path independent checks as a proof-of-concept failed

pull/2/head
Illia Chub 2021-01-04 16:00:44 +02:00
parent 9f74fb3d4e
commit 8cca0f0625
1 changed files with 2 additions and 2 deletions

View File

@ -13,10 +13,10 @@ def uname():
return jsonify(uname)
@app.route("/getDKIM", methods=["GET"])
def getDkimKey():
with open("domain") as domainFile:
with open("/var/domain") as domainFile:
domain = domainFile.readline()
domain = domain.rstrip("\n")
dkim = subprocess.check_output(["cat", domain + ".selector.txt"])
dkim = subprocess.check_output(["cat", "/var/dkim/" + domain + ".selector.txt"])
return jsonify(dkim)
@app.route("/pythonVersion", methods=["GET"])
def getPythonVersion():