diff --git a/master.cfg b/master.cfg index 3b34fe0..5d1c5bb 100644 --- a/master.cfg +++ b/master.cfg @@ -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'),