1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
class lists {
# please check that the list use the proper code for
# language ( not to be confused with tld or country code )
sympa::public_list {"i18n-af":
subject => "List about translation to Afrikaans",
topics => "i18n",
}
sympa::public_list {"i18n-de":
subject => "List about translation to German",
topics => "i18n",
}
sympa::public_list {"i18n-et":
subject => "List about translation to Estonian",
topics => "i18n",
}
sympa::public_list {"i18n-fr":
subject => "List about translation to French",
topics => "i18n",
}
sympa::public_list {"i18n-nl":
subject => "List about translation to Dutch",
topics => "i18n",
}
sympa::public_list {"i18n-pt_br":
subject => "List about translation to Brazilian Portuguese",
topics => "i18n",
}
sympa::public_list {"i18n-pl":
subject => "List about translation to Polish",
topics => "i18n",
}
sympa::public_list {"i18n-ru":
subject => "List about translation to Russian",
topics => "i18n",
}
sympa::public_list {"i18n-tr":
subject => "List about translation to Turkish",
topics => "i18n",
}
sympa::public_list {"i18n-it":
subject => "List about translation to Italian",
topics => "i18n",
}
sympa::public_list {"i18n-en":
subject => "List about translation to English",
topics => "i18n",
}
sympa::public_list {"i18n-ro":
subject => "List about translation to Romanian",
topics => "i18n",
}
sympa::public_list {"i18n-zh_tw":
subject => "List about translation to Taiwanese",
topics => "i18n",
}
sympa::announce_list_email {"sysadmin-commits":
subject => "List receiving commits mail from sysadmin team repository",
# FIXME change once we migrate
reply_to => "mageia-sysadm@$domain",
sender_email => "root@$domain",
topics => "sysadmin",
}
sympa::announce_list_email {"sysadmin-reports":
subject => "List receiving automated reports from various pieces of infrastructure",
# FIXME change once we migrate
reply_to => "mageia-sysadm@$domain",
sender_email => "root@$domain",
topics => "sysadmin",
}
sympa::announce_list_email { "soft-commits":
subject => "List receiving automated reports from soft/ repositories",
# FIXME change once we migrate
reply_to => "mageia-dev@$domain",
sender_email => "root@$domain",
topics => "developers",
}
sympa::announce_list_email { "bugs":
subject => "List receiving bugs reports from bugzilla ",
# FIXME change once we migrate
reply_to => "mageia-dev@$domain",
sender_email => "bugzilla-daemon@$domain",
topics => "developers",
}
sympa::announce_list_email { "changelog":
subject => "List receiving announces for new packages uploaded",
# FIXME change once we migrate
reply_to => "mageia-dev@$domain",
sender_email => "buildsystem-daemon@$domain",
topics => "developers",
}
}
|