This commit is contained in:
David Duque 2020-04-16 14:04:45 +01:00
parent bf83bd6ff7
commit 09b3c37885
No known key found for this signature in database
GPG Key ID: 2F327738A3C0AE3A
1 changed files with 4 additions and 4 deletions

View File

@ -525,10 +525,10 @@ def privacy_status_set():
def smtp_relay_get():
# Just return something for now.
return {
enabled = False,
host = "",
auth_enabled = True,
user = ""
"enabled": False,
"host": "",
"auth_enabled": True,
"user": ""
}
@app.route('/system/smtp/relay', methods=["POST"])