Updating e-mail watchlist address.

To make it possible to watch trybots without spamming the build sheriffs.

BUG=None
TEST=None

Review URL: https://webrtc-codereview.appspot.com/458008

git-svn-id: http://webrtc.googlecode.com/svn/trunk@1951 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
kjellander@webrtc.org 2012-03-29 00:48:47 +00:00
parent cf706c2b92
commit b754ddc7ce

View File

@ -225,15 +225,15 @@ c['status'] = [web_page]
# Use an environment variable to easily avoid enabling e-mail for development.
if not os.getenv('BUILDBOT_DEVELOPMENT_MODE'):
email_status = mail.MailNotifier(
fromaddr='webrtc-cb-watchlist@google.com',
extraRecipients=['webrtc-cb-watchlist@google.com'],
fromaddr='webrtc-try-watchlist@google.com',
extraRecipients=['webrtc-try-watchlist@google.com'],
sendToInterestedUsers=True,
mode='failing')
c['status'] += [email_status]
# Try job result emails.
c['status'].append(TryMailNotifier(
fromaddr='webrtc-cb-watchlist@google.com',
fromaddr='webrtc-try-watchlist@google.com',
subject='try %(result)s for %(reason)s on %(builder)s @ r%(revision)s',
mode='all',
lookup=master_utils.UsersAreEmails()))