/[adm]/puppet/deployment/lists/manifests/init.pp
ViewVC logotype

Contents of /puppet/deployment/lists/manifests/init.pp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2610 - (show annotations) (download)
Mon Mar 19 16:21:06 2012 UTC (12 years, 1 month ago) by misc
File size: 5927 byte(s)
move private_list to the new layout
1 class lists {
2 # please check that the list use the proper code for
3 # language ( not to be confused with tld or country code )
4 sympa::public_list {'i18n-af':
5 subject => 'Translation to Afrikaans',
6 topics => 'i18n',
7 }
8
9 sympa::public_list {'i18n-de':
10 subject => 'Translation to German',
11 topics => 'i18n',
12 }
13
14 sympa::public_list {'i18n-et':
15 subject => 'Translation to Estonian',
16 topics => 'i18n',
17 }
18
19 sympa::public_list {'i18n-fr':
20 subject => 'Translation to French',
21 topics => 'i18n',
22 }
23
24 sympa::public_list {'i18n-el':
25 subject => 'Translation to Greek',
26 topics => 'i18n',
27 }
28
29 sympa::public_list {'i18n-nl':
30 subject => 'Translation to Dutch',
31 topics => 'i18n',
32 }
33
34 sympa::public_list {'i18n-pt_br':
35 subject => 'Translation to Brazilian Portuguese',
36 topics => 'i18n',
37 }
38
39 sympa::public_list {'i18n-pl':
40 subject => 'Translation to Polish',
41 topics => 'i18n',
42 }
43
44 sympa::public_list {'i18n-ru':
45 subject => 'Translation to Russian',
46 topics => 'i18n',
47 }
48
49 sympa::public_list {'i18n-tr':
50 subject => 'Translation to Turkish',
51 topics => 'i18n',
52 }
53
54 sympa::public_list {'i18n-it':
55 subject => 'Translation to Italian',
56 topics => 'i18n',
57 }
58
59 sympa::public_list {'i18n-en':
60 subject => 'Translation to English',
61 topics => 'i18n',
62 }
63
64 sympa::public_list {'i18n-ro':
65 subject => 'Translation to Romanian',
66 topics => 'i18n',
67 }
68
69 sympa::public_list {'i18n-zh_tw':
70 subject => 'Translation to Taiwanese',
71 topics => 'i18n',
72 }
73
74 sympa::public_list {'qa-discuss':
75 subject => 'Discussions about QA tasks and requests',
76 topics => 'qa',
77 }
78
79 sympa::announce_list_email {'qa-bugs':
80 subject => 'QA bug reports from bugzilla',
81 reply_to => "qa-discuss@ml.$::domain",
82 sender_email => "bugzilla-daemon@$::domain",
83 topics => 'qa',
84 }
85
86 sympa::public_list {'forums-discuss':
87 subject => 'Discuss forums matters, policies and processes, as well as publish summaries of notable events/feedback',
88 topics => 'forums',
89 }
90
91 sympa::public_list {'doc-discuss':
92 subject => 'Discussions about Mageia documentation',
93 topics => 'doc',
94 }
95
96 sympa::announce_list_email { 'doc-bugs':
97 subject => 'Documentation bug reports from bugzilla',
98 reply_to => "doc-discuss@ml.$::domain",
99 sender_email => "bugzilla-daemon@$::domain",
100 topics => 'doc',
101 }
102
103 sympa::announce_list_email { 'packages-commits':
104 subject => 'Commits on packages repository',
105 # FIXME change once we migrate
106 reply_to => "mageia-dev@$::domain",
107 sender_email => "root@$::domain",
108 topics => 'developers',
109 }
110
111 sympa::announce_list_email { 'mirrors-announce':
112 subject => 'Important announces about mirrors updates',
113 # FIXME change once we migrate
114 reply_to => "mageia-sysadm@$::domain",
115 sender_email => "root@$::domain",
116 topics => 'sysadmin',
117 }
118
119 sympa::announce_list_email {'sysadmin-commits':
120 subject => 'Commits on sysadmin repository',
121 # FIXME change once we migrate
122 reply_to => "mageia-sysadm@$::domain",
123 sender_email => "root@$::domain",
124 topics => 'sysadmin',
125 }
126
127 sympa::announce_list_email {'sysadmin-reports':
128 subject => 'Automated reports from various pieces of infrastructure',
129 # FIXME change once we migrate
130 reply_to => "mageia-sysadm@$::domain",
131 sender_email => "root@$::domain",
132 topics => 'sysadmin',
133 }
134
135 sympa::announce_list_email { 'sysadmin-bugs':
136 subject => 'Sysadmin bug reports from bugzilla',
137 # FIXME change once we migrate
138 reply_to => "mageia-sysadm@$::domain",
139 sender_email => "bugzilla-daemon@$::domain",
140 topics => 'sysadmin',
141 }
142
143 sympa::announce_list_email { 'soft-commits':
144 subject => 'Commits on soft repository',
145 # FIXME change once we migrate
146 reply_to => "mageia-dev@$::domain",
147 sender_email => "root@$::domain",
148 topics => 'developers',
149 }
150
151 sympa::announce_list_email { 'bugs':
152 subject => 'Bug reports from bugzilla',
153 # FIXME change once we migrate
154 reply_to => "mageia-dev@$::domain",
155 sender_email => "bugzilla-daemon@$::domain",
156 topics => 'developers',
157 }
158
159 sympa::announce_list_email { 'updates-announce':
160 subject => 'Packages update for stable release',
161 reply_to => "mageia-dev@$::domain",
162 sender_email => "buildsystem-daemon@$::domain",
163 topics => 'developers',
164 }
165
166 sympa::announce_list_email { 'changelog':
167 subject => 'Announces for new packages uploaded',
168 # FIXME change once we migrate
169 reply_to => "mageia-dev@$::domain",
170 sender_email => "buildsystem-daemon@$::domain",
171 topics => 'developers',
172 }
173
174 sympa::public_restricted_list { 'board-public':
175 subject => 'Public board discussion',
176 subscriber_ldap_group => 'mga-board',
177 topics => 'governance',
178 }
179
180 sympa::list::private { 'board-private':
181 subject => 'Private board discussion',
182 subscriber_ldap_group => 'mga-board',
183 topics => 'governance',
184 }
185
186 sympa::public_restricted_list { 'council':
187 subject => 'Council discussions',
188 subscriber_ldap_group => 'mga-council',
189 topics => 'governance',
190 }
191 }

  ViewVC Help
Powered by ViewVC 1.1.30