From c5f17aa4a3b53f1616b68580d81f987bb4b84a3a Mon Sep 17 00:00:00 2001 From: Sebastian Speitel Date: Sat, 14 Dec 2019 14:12:21 +0100 Subject: [PATCH] Added mail --- app.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app.py b/app.py index 927da09..2512a4f 100644 --- a/app.py +++ b/app.py @@ -51,6 +51,11 @@ def modultafeln(course=""): return redirect("https://www.tu-ilmenau.de/modultafeln/" + courseToPath.get(course, ""), code=302) +@app.route('/mail/') +@app.route('/webmail/') +def mail(): + return redirect("https://webmail.tu-ilmenau.de/", code=302) + if __name__ == '__main__': # Bind to PORT if defined, otherwise default to 5000. port = int(os.environ.get('PORT', 5000))