From 80c47e52520ad0c8c988c35e23ce62696e327266 Mon Sep 17 00:00:00 2001 From: Santiago Perez Date: Tue, 3 Jan 2012 11:27:03 -0200 Subject: [PATCH] Updated emails to point to dummy addresses @example.com --- nebu/lib/mail.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nebu/lib/mail.py b/nebu/lib/mail.py index b1d3a08..84e2b58 100644 --- a/nebu/lib/mail.py +++ b/nebu/lib/mail.py @@ -90,12 +90,12 @@ def report_automatic_redeploy(deploy, initial_xmx, new_xmx): @_no_fail def report_activity(subject, body, type='b'): if type == 'b': - mail_to = 'activity@indextank.com' + mail_to = 'activity@example.com' elif type == 't': - mail_to = 'activitytech@indextank.com' + mail_to = 'activitytech@example.com' elif type == 'l': - mail_to = 'lowactivity@indextank.com' + mail_to = 'lowactivity@example.com' else: raise Exception('Wrong report type') - send_mail(ENV + ' - ' + subject, body, 'IndexTank Activity ', [mail_to], fail_silently=False) + send_mail(ENV + ' - ' + subject, body, 'IndexTank Activity ', [mail_to], fail_silently=False)