From 3a8df82293012dff3bc5f2db82d9676629da4ed2 Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Wed, 23 Jul 2025 15:13:58 +0200 Subject: syz-cluster: configure a Cc list for reported bugs Cc syzkaller-bugs@googlegroups.com in all upstreamed syzbot ci findings. --- syz-cluster/pkg/app/config.go | 4 +++- syz-cluster/pkg/emailclient/sender.go | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) (limited to 'syz-cluster/pkg') diff --git a/syz-cluster/pkg/app/config.go b/syz-cluster/pkg/app/config.go index 38cea5e8a..8cbd022c5 100644 --- a/syz-cluster/pkg/app/config.go +++ b/syz-cluster/pkg/app/config.go @@ -46,8 +46,10 @@ type EmailConfig struct { Dashapi *DashapiConfig `yaml:"dashapiConfig"` // Moderation requests will be sent there. ModerationList string `yaml:"moderationList"` - // The list we listen on. + // The list email-reporter listens on. ArchiveList string `yaml:"archiveList"` + // The lists/emails to be Cc'd for actual reports (not moderation). + ReportCC []string `yaml:"reportCc"` // Lore git archive to poll for incoming messages. LoreArchiveURL string `yaml:"loreArchiveURL"` // The prefix which will be added to all reports' titles. diff --git a/syz-cluster/pkg/emailclient/sender.go b/syz-cluster/pkg/emailclient/sender.go index 5bfd86823..33a781d85 100644 --- a/syz-cluster/pkg/emailclient/sender.go +++ b/syz-cluster/pkg/emailclient/sender.go @@ -60,6 +60,7 @@ func TestEmailConfig() *app.EmailConfig { Name: "name", DocsLink: "docs", ModerationList: "moderation@list.com", + ReportCC: []string{"reported@list.com"}, ArchiveList: "archive@list.com", Sender: app.SenderSMTP, SMTP: &app.SMTPConfig{ -- cgit mrf-deployment