From f8345c34e27962d3b6e8b7d42f8ef94535b8b649 Mon Sep 17 00:00:00 2001
From: Piotr Gawron <piotr.gawron@uni.lu>
Date: Wed, 5 Apr 2017 16:06:18 +0200
Subject: [PATCH] default settings for sending mails

---
 smash/smash/settings.py | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/smash/smash/settings.py b/smash/smash/settings.py
index fd634ff8..0e57c976 100644
--- a/smash/smash/settings.py
+++ b/smash/smash/settings.py
@@ -22,6 +22,13 @@ ALLOWED_HOSTS = ['prc.parkinson.lu', 'localhost']
 
 DEBUG = True
 
+EMAIL_HOST = 'smtp.uni.lu'
+EMAIL_HOST_USER = ''
+EMAIL_HOST_PASSWORD = ''
+EMAIL_PORT = 25
+EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
+DEFAULT_FROM_EMAIL = 'prc-scheduling-admin@uni.lu'
+
 # Application definition
 
 INSTALLED_APPS = [
-- 
GitLab