From b79e3651e9c0103509404f17011d6a47c16669bc Mon Sep 17 00:00:00 2001 From: Max Magorsch Date: Fri, 19 Jun 2020 17:44:36 +0200 Subject: Add all public lists This is hardcoded for now and will be configurable in future. Signed-off-by: Max Magorsch --- pkg/config/config.go | 124 ++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 122 insertions(+), 2 deletions(-) diff --git a/pkg/config/config.go b/pkg/config/config.go index 70ab9cc..1016831 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -59,11 +59,131 @@ func AllPublicMailingLists() []string { } func CurrentMailingLists() []string { - return []string{"gentoo-announce", "gentoo-commits", "gentoo-dev", "gentoo-dev-announce", "gentoo-nfp", "gentoo-project", "gentoo-user"} + return []string{ + "gentoo-announce", + "eudev", + "gentoo-accessibility", + "gentoo-admin", + "gentoo-alpha", + "gentoo-alt", + "gentoo-amd64", + "gentoo-announce", + "gentoo-automated-testing", + "gentoo-bsd", + "gentoo-catalyst", + "gentoo-cluster", + "gentoo-commits", + "gentoo-containers", + "gentoo-desktop", + "gentoo-dev", + "gentoo-dev-announce", + "gentoo-devhelp", + "gentoo-doc", + "gentoo-doc-cvs", + "gentoo-embedded", + "gentoo-foundation-announce", + "gentoo-genkernel", + "gentoo-github-gentoo", + "gentoo-guis", + "gentoo-hardened", + "gentoo-hppa", + "gentoo-java", + "gentoo-kernel", + "gentoo-keys", + "gentoo-licenses", + "gentoo-lisp", + "gentoo-mips", + "gentoo-mirrors", + "gentoo-musl", + "gentoo-nfp", + "gentoo-openstack", + "gentoo-perl", + "gentoo-pms", + "gentoo-portage-dev", + "gentoo-powerpc", + "gentoo-ppc-stable", + "gentoo-pr", + "gentoo-project", + "gentoo-proxy-maint", + "gentoo-python", + "gentoo-qa", + "gentoo-releng", + "gentoo-releng-autobuilds", + "gentoo-science", + "gentoo-scm", + "gentoo-security", + "gentoo-server", + "gentoo-soc", + "gentoo-sparc", + "gentoo-systemd", + "gentoo-translators", + "gentoo-user", + "gentoo-user-br", + "gentoo-user-cs", + "gentoo-user-de", + "gentoo-user-el", + "gentoo-user-es", + "gentoo-user-fr", + "gentoo-user-hu", + "gentoo-user-id", + "gentoo-user-kr", + "gentoo-user-pl", + "gentoo-user-ru", + "gentoo-user-tr"} } func FrozenArchives() []string { - return []string{"gentoo-arm", "gentoo-au", "gentoo-council", "gentoo-cygwin", "gentoo-desktop-research"} + return []string{ + "gentoo-arm", + "gentoo-arm", + "gentoo-au", + "gentoo-council", + "gentoo-cygwin", + "gentoo-desktop-research", + "gentoo-dev-lang", + "gentoo-devrel", + "gentoo-doc-de", + "gentoo-doc-el", + "gentoo-doc-es", + "gentoo-doc-fi", + "gentoo-doc-fr", + "gentoo-doc-hu", + "gentoo-doc-id", + "gentoo-doc-lt", + "gentoo-doc-nl", + "gentoo-doc-pl", + "gentoo-doc-ru", + "gentoo-docs-it", + "gentoo-extreme-security", + "gentoo-forum-translations", + "gentoo-gnustep", + "gentoo-gwn", + "gentoo-gwn-de", + "gentoo-gwn-es", + "gentoo-gwn-fr", + "gentoo-gwn-nl", + "gentoo-gwn-pl", + "gentoo-ia64", + "gentoo-installer", + "gentoo-kbase", + "gentoo-laptop", + "gentoo-media", + "gentoo-nx", + "gentoo-osx", + "gentoo-performance", + "gentoo-ppc-dev", + "gentoo-ppc-user", + "gentoo-proctors", + "gentoo-scire", + "gentoo-trustees", + "gentoo-uk", + "gentoo-vdr", + "gentoo-web-user", + "gentoo-xbox", + "gnap-dev", + "tenshi-announce", + "tenshi-user", + "www-redesign"} } func getEnv(key string, fallback string) string { -- cgit v1.2.3-65-gdbad