aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Magorsch <arzano@gentoo.org>2020-06-19 17:44:36 +0200
committerMax Magorsch <arzano@gentoo.org>2020-06-19 17:44:36 +0200
commitb79e3651e9c0103509404f17011d6a47c16669bc (patch)
tree0afa72c3b4bc458bf0d1c1ba641fa90646ffbbb1
parentShow number of messages on the landing page (diff)
downloadarchives-b79e3651e9c0103509404f17011d6a47c16669bc.tar.gz
archives-b79e3651e9c0103509404f17011d6a47c16669bc.tar.bz2
archives-b79e3651e9c0103509404f17011d6a47c16669bc.zip
Add all public lists
This is hardcoded for now and will be configurable in future. Signed-off-by: Max Magorsch <arzano@gentoo.org>
-rw-r--r--pkg/config/config.go124
1 files 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 {