Skip to content
This repository has been archived by the owner on Oct 30, 2020. It is now read-only.

Commit

Permalink
Updated emails to point to dummy addresses @example.com
Browse files Browse the repository at this point in the history
  • Loading branch information
santip committed Jan 3, 2012
1 parent 26fb431 commit 80c47e5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions nebu/lib/mail.py
Expand Up @@ -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 <activity@flaptor.com>', [mail_to], fail_silently=False)
send_mail(ENV + ' - ' + subject, body, 'IndexTank Activity <activity@example.com>', [mail_to], fail_silently=False)

0 comments on commit 80c47e5

Please sign in to comment.