From 7daaa06d53f0f496aa1a87656d16c81ebff37f73 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 22 Feb 2018 12:53:31 +0100 Subject: dashboard/app: restrict patch testing result CC list Currently dashboard sends patch testing result to full bug CC list (which includes kernel mailing lists). This is unnecessary and causes problems with patchwork. Reply only to people in the testing request CC list (adding our mailing list if it was missing). Fixes #526 --- dashboard/app/app_test.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'dashboard/app/app_test.go') diff --git a/dashboard/app/app_test.go b/dashboard/app/app_test.go index 88621cb34..0fe5c3f7b 100644 --- a/dashboard/app/app_test.go +++ b/dashboard/app/app_test.go @@ -74,8 +74,9 @@ var config = GlobalConfig{ Name: "reporting2", DailyLimit: 3, Config: &EmailConfig{ - Email: "bugs@syzkaller.com", - MailMaintainers: true, + Email: "bugs@syzkaller.com", + DefaultMaintainers: []string{"default@maintainers.com"}, + MailMaintainers: true, }, }, }, -- cgit mrf-deployment