Gentoo Archives: gentoo-gwn

From: Yuji Kosugi <carlos@g.o>
To: gentoo-gwn@l.g.o
Subject: [gentoo-gwn] Gentoo Weekly Newsletter - Volume 3, Issue 13
Date: Tue, 30 Mar 2004 16:24:25
Message-Id: 20040330161700.GA528@sparda.dyndns.org
1 ---------------------------------------------------------------------------
2 Gentoo Weekly Newsletter
3 http://www.gentoo.org/news/en/gwn/current.xml
4 This is the Gentoo Weekly Newsletter for the week of March 29th, 2004.
5 ---------------------------------------------------------------------------
6
7 ==============
8 1. Gentoo News
9 ==============
10
11 Support for multiple MTAs with mailwrapper
12 ------------------------------------------
13
14 Since 17 March 2004, Gentoo has slowly been gaining support for having
15 multiple mail transfer agents (MTAs) installed simultaneously by using a
16 version of mailwrapper[1] that has been ported from {Free,Open,Net}BSD to
17 Linux.
18
19 1.
20 http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mail-changingmta.
21 html
22
23 The problem is an old one. Because sendmail was the MTA of choice for so
24 long, many mail clients just expect a /usr/sbin/sendmail program to exist
25 on the system that does the "right thing" when invoked with the usual
26 sendmail command flags. Consequently, every modern MTA installs either a
27 /usr/sbin/sendmail binary or a symbolic link that points
28 /usr/sbin/sendmail to the actual MTA binary. Installing more than one MTA
29 then becomes rather difficult, since each MTA will want to install its own
30 version of /usr/sbin/sendmail (and, in the process, clobbering any
31 already-existing version of /usr/sbin/sendmail).
32
33 The solution to this problem that mailwrapper provides is to have
34 /usr/sbin/sendmail be a binary that executes the true MTA binary by
35 looking up the location of the desired MTA in an /etc/mailer.conf text
36 file. For example, somebody who has both sendmail and postfix installed
37 might have an /etc/mailer.conf file that contains:
38
39 ---------------------------------------------------------------------------
40 | Code Listing 1.1: |
41 | Example /etc/mailer.conf |
42 ---------------------------------------------------------------------------
43 | |
44 |# Postfix |
45 |sendmail /usr/sbin/sendmail.postfix |
46 |send-mail /usr/sbin/sendmail.postfix |
47 |mailq /usr/sbin/sendmail.postfix |
48 |newaliases /usr/sbin/sendmail.postfix |
49 |# Sendmail |
50 |#sendmail /usr/sbin/sendmail.sendmail |
51 |#send-mail /usr/sbin/sendmail.sendmail |
52 |#mailq /usr/sbin/sendmail.sendmail |
53 |#newaliases /usr/sbin/sendmail.sendmail |
54 |#hoststat /usr/sbin/sendmail.sendmail |
55 |#purgestat /usr/sbin/sendmail.sendmail |
56 | |
57 ---------------------------------------------------------------------------
58
59 With this version of /etc/mailer.conf, any attempt to run
60 /usr/sbin/sendmail would actually run /usr/sbin/sendmail.postfix.
61 Switching from postfix to sendmail, on the other hand, whould require
62 nothing more than commenting out the postfix lines and uncommenting the
63 sendmail lines in /etc/mailer.conf.
64
65 Right now the latest unstable (~arch) versions of ssmtp, postfix, exim,
66 and sendmail have been modified to take advantage of mailwrapper. Since
67 each new MTA ebuild installs a default version of /etc/mailer.conf with
68 the lines for that mailer uncommented, most users will be able to upgrade
69 or install one of these mailwrapper-enabled MTA packages without ever
70 having to worry about mailwrapper. For users who want to try out various
71 MTAs, however, support for doing so rather painlessly is either available
72 already, or it will be there soon.
73
74 Users who have installed or upgraded a recent unstable versions of ssmtp,
75 postfix, exim, or sendmail might have noticed that net-mail/mailwrapper
76 was pulled in as a dependency. The mailwrapper package has been ported to
77 linux from {free,open,net}BSD[2] and it provides a /usr/sbin/sendmail
78 binary that checks /etc/mailer.conf to see which program should actually
79 get executed when /usr/sbin/sendmail (or a symlink to /usr/sbin/sendmail)
80 is called.
81
82 2.
83 http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mail-changingmta.
84 html
85
86 Apache2 upgrade
87 ---------------
88
89 Apache 2.0.49 has been added to Portage, and marked stable; see below for
90 a GLSA about some security holes in 2.0.48. Users upgrading from
91 apache-2.0.48-r1 and earlier need to note that some files have been moved
92 from /etc/apache2 to /usr/lib/apache2. Specifically, users will need to
93 manually remove these directories once they have emerged apache-2.0.49:
94
95 ---------------------------------------------------------------------------
96 | Code Listing 1.1: |
97 | Directories that need to be manually removed |
98 ---------------------------------------------------------------------------
99 | |
100 |/etc/apache2/lib |
101 |/etc/apache2/logs |
102 |/etc/apache2/modules |
103 |/etc/apache2/extramodules |
104 | |
105 ---------------------------------------------------------------------------
106
107 Gentoo Linux seeking a dedicated Apache maintainer
108 --------------------------------------------------
109
110 The Gentoo Linux Project is seeking a dedicated Apache maintainer. As this
111 week's GLSA has shown, it's clear that there needs to be at least one
112 Gentoo developer whose main responsibility is to look after the Apache
113 ebuilds and the associated modules in the Portage tree. We're looking for
114 a dedicated developer with a good knowledge of Apache and modules, as well
115 as general development experience. If you're interested, send an email to
116 Stuart Herbert[3] with some background information.
117
118 3. stuart@g.o
119
120 ==================
121 2. Gentoo Security
122 ==================
123
124 Multiple security vulnerabilities in Apache 2
125 ---------------------------------------------
126
127 A memory leak in mod_ssl allows a remote denial of service attack against
128 an SSL-enabled server via plain HTTP requests. Another flaw was found when
129 arbitrary client-supplied strings can be written to the error log,
130 allowing the exploit of certain terminal emulators. A third flaw exists
131 with the mod_disk_cache module.
132
133 For more information, please see the GLSA Announcement[4]
134
135 4. http://www.gentoo.org/security/en/glsa/glsa-200403-04.xml
136
137 UUDeview MIME Buffer Overflow
138 -----------------------------
139
140 A specially-crafted MIME file (.mim, .uue, .uu, .b64, .bhx, .hqx, and .xxe
141 extensions) may cause UUDeview to crash or execute arbitrary code.
142
143 For more information, please see the GLSA Announcement[5]
144
145 5. http://www.gentoo.org/security/en/glsa/glsa-200403-05.xml
146
147 Multiple remote buffer overflow vulnerabilities in Courier
148 ----------------------------------------------------------
149
150 Remote buffer overflow vulnerabilites have been found in Courier-IMAP and
151 Courier MTA. These exploits may allow the execution of abritrary code,
152 allowing unauthorized access to a vulnerable system.
153
154 For more information, please see the GLSA Announcement[6]
155
156 6. http://www.gentoo.org/security/en/glsa/glsa-200403-06.xml
157
158 Multiple remote overflows and vulnerabilities in Ethereal
159 ---------------------------------------------------------
160
161 Mulitple overflows and vulnerabilities exist in Ethereal which may allow
162 an attacker to crash the program or run arbitrary code.
163
164 For more information, please see the GLSA Announcement[7]
165
166 7. http://www.gentoo.org/security/en/glsa/glsa-200403-07.xml
167
168 oftpd DoS vulnerability
169 -----------------------
170
171 A remotely-exploitable overflow exists in oftpd, allowing an attacker to
172 crash the oftpd daemon.
173
174 For more information, please see the GLSA Announcement[8]
175
176 8. http://www.gentoo.org/security/en/glsa/glsa-200403-08.xml
177
178 Buffer overflow in Midnight Commander
179 -------------------------------------
180
181 A remotely-exploitable buffer overflow in Midnight Commander allows
182 arbitrary code to be run on a user's computer
183
184 For more information, please see the GLSA Announcement[9]
185
186 9. http://www.gentoo.org/security/en/glsa/glsa-200403-09.xml
187
188 =========================
189 3. Heard in the Community
190 =========================
191
192 gentoo-user
193 -----------
194
195 Saving space in /usr
196
197 It can be easy to underestimate how much space /usr/portage may take up,
198 and occasionally moving /usr/portage[10] can be a quick and painless
199 solution!
200
201 10. http://thread.gmane.org/gmane.linux.gentoo.user/72590
202
203 Console Eye Candy
204
205 Check out some of the things some other Gentoo users have done with their
206 shell prompts as well as a handy escape code color table in this
207 thread[11]!
208
209 11. http://thread.gmane.org/gmane.linux.gentoo.user/72360
210
211 gentoo-dev
212 ----------
213
214 Shell choices.
215
216 Although bash tends to be the overwhelming standard, perhaps there is some
217 room for choice. Despite some bash dependancies in rc-scripts, there are
218 ways around this.Here[12] is a thread discussing the option of giving a
219 little more choice in this area.
220
221 12. http://article.gmane.org/gmane.linux.gentoo.devel/17010/
222
223 Secure Portage.
224
225 Something that we are all in great expectation is the securing of our
226 favorite tree with gpg-signatures. However we will have to wait a little
227 longer as some issues have come up that need to be resolved first. To
228 check out what's going on in the process, have a look here[13]. But watch
229 out! It's a long one!
230
231 13. http://article.gmane.org/gmane.linux.gentoo.devel/16876/
232
233 ===========
234 4. Bugzilla
235 ===========
236
237 Summary
238 -------
239
240 * Statistics
241 * Closed Bug Ranking
242 * New Bug Rankings
243
244 Statistics
245 ----------
246
247 The Gentoo community uses Bugzilla (bugs.gentoo.org[14]) to record and
248 track bugs, notifications, suggestions and other interactions with the
249 development team. Between 19 March 2004 and 25 March 2004, activity on the
250 site has resulted in:
251
252 14. http://bugs.gentoo.org
253
254 * 571 new bugs during this period
255 * 327 bugs closed or resolved during this period
256 * 14 previously closed bugs were reopened this period
257
258 Of the 5446 currently open bugs: 129 are labeled 'blocker', 216 are
259 labeled 'critical', and 447 are labeled 'major'.
260
261 Closed Bug Rankings
262 -------------------
263
264 The developers and teams who have closed the most bugs during this period
265 are:
266
267 * Jeremy Huddleston[15], with 34 closed bugs[16]
268 * AMD64 Porting Team[17], with 30 closed bugs[18]
269 * Gentoo LiveCD Team[19], with 19 closed bugs[20]
270 * Gentoo Gnome Desktop Team[21], with 16 closed bugs[22]
271 * Gentoo KDE Team[23], with 12 closed bugs[24]
272 15. eradicator@g.o
273 16.
274 http://bugs.gentoo.org/buglist.cgi?bug_status=RESOLVED&bug_status=CLOSED&ch
275 field=bug_status&chfieldfrom=2004-03-19&chfieldto=2004-03-25&resolution=FIX
276 ED&assigned_to=eradicator@g.o
277 17. amd64@g.o
278 18.
279 http://bugs.gentoo.org/buglist.cgi?bug_status=RESOLVED&bug_status=CLOSED&ch
280 field=bug_status&chfieldfrom=2004-03-19&chfieldto=2004-03-25&resolution=FIX
281 ED&assigned_to=amd64@g.o
282 19. livecd@g.o
283 20.
284 http://bugs.gentoo.org/buglist.cgi?bug_status=RESOLVED&bug_status=CLOSED&ch
285 field=bug_status&chfieldfrom=2004-03-19&chfieldto=2004-03-25&resolution=FIX
286 ED&assigned_to=livecd@g.o
287 21. gnome@g.o
288 22.
289 http://bugs.gentoo.org/buglist.cgi?bug_status=RESOLVED&bug_status=CLOSED&ch
290 field=bug_status&chfieldfrom=2004-03-19&chfieldto=2004-03-25&resolution=FIX
291 ED&assigned_to=gnome@g.o
292 23. kde@g.o
293 24.
294 http://bugs.gentoo.org/buglist.cgi?bug_status=RESOLVED&bug_status=CLOSED&ch
295 field=bug_status&chfieldfrom=2004-03-19&chfieldto=2004-03-25&resolution=FIX
296 ED&assigned_to=kde@g.o
297
298 New Bug Rankings
299 ----------------
300
301 The developers and teams who have been assigned the most new bugs during
302 this period are:
303
304 * x86 Kernel Team[25], with 25 new bugs[26]
305 * Gentoo Gnome Desktop Team[27], with 17 new bugs[28]
306 * Gentoo KDE Team[29], with 14 new bugs[30]
307 * Core System Packages Team[31], with 14 new bugs[32]
308 * AMD64 Porting Team[33], with 12 new bugs[34]
309 25. x86-kernel@g.o
310 26.
311 http://bugs.gentoo.org/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_s
312 tatus=REOPENED&chfield=assigned_to&chfieldfrom=2004-03-19&chfieldto=2004-03
313 -25&assigned_to=x86-kernel@g.o
314 27. gnome@g.o
315 28.
316 http://bugs.gentoo.org/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_s
317 tatus=REOPENED&chfield=assigned_to&chfieldfrom=2004-03-19&chfieldto=2004-03
318 -25&assigned_to=gnome@g.o
319 29. kde@g.o
320 30.
321 http://bugs.gentoo.org/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_s
322 tatus=REOPENED&chfield=assigned_to&chfieldfrom=2004-03-19&chfieldto=2004-03
323 -25&assigned_to=kde@g.o
324 31. base-system@g.o
325 32.
326 http://bugs.gentoo.org/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_s
327 tatus=REOPENED&chfield=assigned_to&chfieldfrom=2004-03-19&chfieldto=2004-03
328 -25&assigned_to=base-system@g.o
329 33. amd64@g.o
330 34.
331 http://bugs.gentoo.org/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_s
332 tatus=REOPENED&chfield=assigned_to&chfieldfrom=2004-03-19&chfieldto=2004-03
333 -25&assigned_to=amd64@g.o
334
335
336 ==================
337 5. Tips and Tricks
338 ==================
339
340 Timezone conversion using date
341 ------------------------------
342
343 Many users may already use date to check the time from a console, but this
344 week we're going to show you how it can be used to convert timezones. For
345 example, most Gentoo announcements are timestamped in UTC. To convert a
346 time to your timezone, use the following, which uses /etc/localtime to
347 determine the target timezone:
348
349 ---------------------------------------------------------------------------
350 | Code Listing 5.1: |
351 | Converting to the local timezone |
352 ---------------------------------------------------------------------------
353 | |
354 |% date -d '17:00 UTC' |
355 |Sun Mar 28 12:00:00 EST 2004 |
356 | |
357 ---------------------------------------------------------------------------
358
359 If you want to convert to a different timezone, you can set the TZ
360 enviornment variable to the appropriate timezone. There's a pitfall here:
361 if GNU date doesn't find TZ in /usr/share/zoneinfo, it'll fall back to
362 /etc/localtime without warning or error, so be careful. Here's an example
363 of doing the reverse conversion from the previous example:
364
365 ---------------------------------------------------------------------------
366 | Code Listing 5.2: |
367 | Converting to UTC |
368 ---------------------------------------------------------------------------
369 | |
370 |% TZ=UTC date -d '12:00 EST' |
371 |Sun Mar 28 17:00:00 EST 2004 |
372 ---------------------------------------------------------------------------
373
374 ===========================
375 6. Moves, Adds, and Changes
376 ===========================
377
378 Moves
379 -----
380
381 The following developers recently left the Gentoo team:
382 * none this week
383
384 Adds
385 ----
386
387 The following developers recently joined the Gentoo Linux team:
388
389 * Jodok Batlogg (batlogg) - net-zope, plone
390 * Jason Cox (steel300) - kernel
391 * Jochen Maes (sejo) - ppc
392 * James Maynard (jmaynard) - alpha
393
394 Changes
395 -------
396
397 The following developers recently changed roles within the Gentoo Linux
398 project:
399
400 * none this week
401
402 ====================
403 7. Contribute to GWN
404 ====================
405
406 Interested in contributing to the Gentoo Weekly Newsletter? Send us an
407 email[35].
408
409 35. gwn-feedback@g.o
410
411 ===============
412 8. GWN Feedback
413 ===============
414
415 Please send us your feedback[36] and help make the GWN better.
416
417 36. gwn-feedback@g.o
418
419 ===============================
420 9. GWN Subscription Information
421 ===============================
422
423 To subscribe to the Gentoo Weekly Newsletter, send a blank email to
424 gentoo-gwn-subscribe@g.o.
425
426 To unsubscribe to the Gentoo Weekly Newsletter, send a blank email to
427 gentoo-gwn-unsubscribe@g.o from the email address you are
428 subscribed under.
429
430 ===================
431 10. Other Languages
432 ===================
433
434 The Gentoo Weekly Newsletter is also available in the following languages:
435
436 * Dutch[37]
437 * English[38]
438 * German[39]
439 * French[40]
440 * Japanese[41]
441 * Italian[42]
442 * Polish[43]
443 * Portuguese (Brazil)[44]
444 * Portuguese (Portugal)[45]
445 * Russian[46]
446 * Spanish[47]
447 * Turkish[48]
448 37. http://www.gentoo.org/news/be/gwn/gwn.xml
449 38. http://www.gentoo.org/news/en/gwn/gwn.xml
450 39. http://www.gentoo.org/news/de/gwn/gwn.xml
451 40. http://www.gentoo.org/news/fr/gwn/gwn.xml
452 41. http://www.gentoo.org/news/ja/gwn/gwn.xml
453 42. http://www.gentoo.org/news/it/gwn/gwn.xml
454 43. http://www.gentoo.org/news/pl/gwn/gwn.xml
455 44. http://www.gentoo.org/news/br/gwn/gwn.xml
456 45. http://www.gentoo.org/news/pt/gwn/gwn.xml
457 46. http://www.gentoo.org/news/ru/gwn/gwn.xml
458 47. http://www.gentoo.org/news/es/gwn/gwn.xml
459 48. http://www.gentoo.org/news/tr/gwn/gwn.xml
460
461 Yuji Carlos Kosugi <carlos@g.o> - Editor
462 AJ Armstrong <aja@×××××××××××××.com> - Contributor
463 Brian Downey <bdowney@×××××××××××.net> - Contributor
464 Luke Giuliani <cold_flame@×××××.com> - Contributor
465 Grant Goodyear <g2boojum@g.o> - Contributor
466 Aron Griffis <agriffis@g.o> - Contributor
467 Stuart Herbert <stuart@g.o> - Contributor
468 Kurt Lieber <klieber@g.o> - Contributor
469 Rafael Cordones Marcos <rcm@×××××××.net> - Contributor
470 David Narayan <david@×××××××.net> - Contributor
471 David Nielsen <Lovechild@××××××××.com> - Contributor
472 Ulrich Plate <plate@g.o> - Contributor
473 Hendrik Eeckhaut <Hendrik.Eeckhaut@×××××.be> - Dutch Translation
474 Jorn Eilander <sephiroth@××××××××.nl> - Dutch Translation
475 Bernard Kerckenaere <bernieke@××××××××.com> - Dutch Translation
476 Peter ter Borg <peter@××××××.nl> - Dutch Translation
477 Jochen Maes <linux@××××.be> - Dutch Translation
478 Roderick Goessen <rgoessen@××××.nl> - Dutch Translation
479 Gerard van den Berg <gerard@××××××.net> - Dutch Translation
480 Matthieu Montaudouin <mat@××××××××.com> - French Translation
481 Xavier Neys <neysx@g.o> - French Translation
482 Martin Prieto <riverdale@×××××××××.org> - French Translation
483 Antoine Raillon <cabec2@××××××.net> - French Translation
484 Sebastien Cevey <seb@×××××.net> - French Translation
485 Jean-Christophe Choisy <mabouya@××××××××××××.org> - French Translation
486 Thomas Raschbacher <lordvan@g.o> - German Translation
487 Steffen Lassahn <madeagle@g.o> - German Translation
488 Matthias F. Brandstetter <haim@g.o> - German Translation
489 Lukas Domagala <Cyrik@g.o> - German Translation
490 Tobias Scherbaum <dertobi123@g.o> - German Translation
491 Daniel Gerholdt <Sputnik1969@g.o> - German Translation
492 Marc Herren <dj-submerge@g.o> - German Translation
493 Tobias Matzat <SirSeoman@g.o> - German Translation
494 Marco Mascherpa <mush@××××××.net> - Italian Translation
495 Claudio Merloni <paper@×××××××.it> - Italian Translation
496 Christian Apolloni <bsolar@×××××××.ch> - Italian Translation
497 Stefano Lucidi <stefano.lucidi@×××××××××××××.org> - Italian Translation
498 Katuyuki Konno <katuyuki@××××××××.jp> - Japanese Translation
499 Hiroyuki Takeda <hiro@××××××××××××××.jp> - Japanese Translation
500 Masato Hatakeyama <hatake@×××××××××××.jp> - Japanese Translation
501 Masayoshi Nakamura <masayang@×××××××××.com> - Japanese Translation
502 Yasunori Fukudome <yasunori@××××××××××××××××.uk> - Japanese Translation
503 Tomoyuki Sakurai <web-gentoo-doc-jp@××××××××××××.nu> - Japanese Translation
504 Radoslaw Janeczko <sototh@×××.pl> - Polish Translation
505 Lukasz Strzygowski <lucass.home@××.pl> - Polish Translation
506 Michal Drobek <veng@××.pl> - Polish Translation
507 Adam Lyjak <apo@××××××××××××××××××××.pl> - Polish Translation
508 Krzysztof Klimonda <cthulhu@×××××××××.net> - Polish Translation
509 Atila "Jedi" Bohlke Vasconcelos <bohlke@×××××××××.br> - Portuguese
510 (Brazil) Translation
511 Eduardo Belloti <dudu@××××××××.net> - Portuguese (Brazil) Translation
512 João Rafael Moraes Nicola <joaoraf@×××××××××.br> - Portuguese (Brazil)
513 Translation
514 Marcelo Gonçalves de Azambuja <mgazambuja@×××××××××.br> - Portuguese
515 (Brazil) Translation
516 Otavio Rodolfo Piske <angusy@××××××××.org> - Portuguese (Brazil)
517 Translation
518 Pablo N. Hess -- NatuNobilis <natunobilis@××××××××.org> - Portuguese
519 (Brazil) Translation
520 Pedro de Medeiros <pzilla@××××××××.br> - Portuguese (Brazil) Translation
521 Ventura Barbeiro <venturasbarbeiro@××××××.br> - Portuguese (Brazil)
522 Translation
523 Bruno Ferreira <blueroom@××××××××××××.net> - Portuguese (Portugal)
524 Translation
525 Gustavo Felisberto <humpback@××××××××××.net> - Portuguese (Portugal)
526 Translation
527 José Costa <jose_costa@×××××××.pt> - Portuguese (Portugal) Translation
528 Luis Medina <metalgodin@×××××××××.org> - Portuguese (Portugal) Translation
529 Ricardo Loureiro <rjlouro@×××××××.org> - Portuguese (Portugal) Translation
530 Aleksandr Martyncev <amncorp@××.ru> - Russian Translator
531 Sergey Galkin <gals_home@××××.ru> - Russian Translator
532 Sergey Kuleshov <svyatogor@g.o> - Russian Translator
533 Alex Spirin <asp13@××××.ru> - Russian Translator
534 Denis Zaletov <dzaletov@×××××××.ru> - Russian Translator
535 Lanark <lanark@××××××××××.ar> - Spanish Translation
536 Fernando J. Pereda <ferdy@××××××.org> - Spanish Translation
537 Lluis Peinado Cifuentes <lpeinado@×××.edu> - Spanish Translation
538 Zephryn Xirdal T <ZEPHRYNXIRDAL@××××××××××.net> - Spanish Translation
539 Guillermo Juarez <katossi@××××××××××××××××.es> - Spanish Translation
540 Jesús García Crespo <correo@××××××.com> - Spanish Translation
541 Carlos Castillo <carlos@×××××××××××××.com> - Spanish Translation
542 Julio Castillo <julio@×××××××××××××.com> - Spanish Translation
543 Sergio Gómez <s3r@××××××××××××.ar> - Spanish Translation
544 Aycan Irican <aycan@××××××××.tr> - Turkish Translation
545 Bugra Cakir <bugra@×××××××××.com> - Turkish Translation
546 Cagil Seker <cagils@××××××××××.tr> - Turkish Translation
547 Emre Kazdagli <emre@××××××××.tr> - Turkish Translation
548 Evrim Ulu <evrim@××××××××.tr> - Turkish Translation
549 Gursel Kaynak <gurcell@××××××××.tr> - Turkish Translation