Removing Jan's email; improving the way we identify each commit's author

This commit is contained in:
Sergio Durigan Junior 2014-12-23 22:14:54 -05:00
parent 165357d83a
commit 1ba38b09a8

View file

@ -132,7 +132,8 @@ send to the gdb-testers mailing list."""
# Who's to blame?
text += "Author(s):\n"
text += "\t%s\n" % build.getResponsibleUsers()
for author in build.getResponsibleUsers():
text += "\t%s\n" % author
# Including the 'regressions' log. This is the 'diff' of what
# went wrong.
@ -158,7 +159,7 @@ send to the gdb-testers mailing list."""
from buildbot.status import mail
mn = mail.MailNotifier(fromaddr = "sergiodj@redhat.com",
sendToInterestedUsers = False,
extraRecipients = ['sergiodj@redhat.com', 'jan.kratochvil@redhat.com'],
extraRecipients = ['sergiodj@redhat.com'],
# extraRecipients = ['gdb-testers@sourceware.org'],
relayhost = "smtp.corp.redhat.com",
mode = ('failing'),