Index: Jenkinsfile
===================================================================
--- Jenkinsfile	(revision 7aebc62fa460b0e00e5812f9b1cf6e77bdc2c9b9)
+++ Jenkinsfile	(revision c0122384822c0399ca3691a975fcdd344f719df6)
@@ -12,8 +12,9 @@
 node ('master'){
 	//configure the conpilation
-	sh 'make maintainer-clean'
-	sh 'CC=gcc-4.9 CXX=g++-4.9 ./configure'
+	sh 'make maintainer-clean > /dev/null'
+	sh 'CC=gcc-4.9 CXX=g++-4.9 ./configure > /dev/null'
 	sh 'make -j 8'
 	sh 'blarg'
+	step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: 'tdelisle@uwaterloo.ca', sendToIndividuals: false])
 }
 
