mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-22 04:01:27 +00:00
Updated DKIM path
This commit is contained in:
parent
9bdb68d5a3
commit
7ba0c5820d
4
main.py
4
main.py
|
@ -13,7 +13,9 @@ def uname():
|
|||
return jsonify(uname)
|
||||
@app.route("/getDKIM", methods=["GET"])
|
||||
def getDkimKey():
|
||||
dkim = subprocess.check_output(["cat", "/var/dkim/" + os.getenv("DOMAIN")+".selector.txt"])
|
||||
with open("/var/domain") as domainFile:
|
||||
domain = domainFile.readlines()
|
||||
dkim = subprocess.check_output(["cat", "/var/dkim/" + domain + ".selector.txt"])
|
||||
return jsonify(dkim)
|
||||
@app.route("/pythonVersion", methods=["GET"])
|
||||
def getPythonVersion():
|
||||
|
|
Loading…
Reference in a new issue