summaryrefslogtreecommitdiff
path: root/includes/squeeze/common/doc/mailing-lists.txt
blob: 93e8dff748a74b40c51363f1a00de8206baf3747 (plain)
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
                  Introduction to the Debian mailing lists
                  ========================================

  Debian GNU/Linux is developed through distributed development all
  around the world. Therefore, email is the preferred way to discuss
  various items. Much of the conversation between Debian developers
  and users is managed through several mailing lists.  

  There are many world-open mailing lists, meaning anyone can read
  everything that is posted, and participate in the discussions. Everyone is
  encouraged to help development of Debian and to spread the word of free
  software.  There are also a few lists which are only open to official Debian
  developers; please don't interpret this as closed development, it sometimes
  doesn't make much sense discussing internal topics with non-developers.

  All original Debian mailing lists run on a special server, using an
  automatic mail processing software called SmartList.  This server is called
  lists.debian.org.  All submission, subscription and unsubscription messages
  have to be sent to a particular address at this host.

  The language used on all lists is English, unless stated otherwise.
  There are some user lists for other languages available.

Subscription / Unsubscription
-----------------------------

  Anyone is able to subscribe/unsubscribe on their own to any mailing list,
  presuming the subscription policy for a particular list is `open'.

  The requests for subscription or unsubscription can be sent to a special
  control address, which is slightly different from the list address.
  Subscription or unsubscription messages should NOT be sent to the address
  of the mailing list itself.

  To subscribe or unsubscribe from a mailing list, please send mail to

        <listname>-REQUEST@lists.debian.org

  with the word `subscribe' or `unsubscribe' as subject.

  Please remember the -REQUEST part of the address.

  As part of the subscription process, the list software will send you an
  email to which you must reply in order to finish subscribing.  This is a
  security measure to keep people from subscribing others to the lists without
  their permission.

  If you need to contact a human listmaster, direct your mail to
  listmaster@lists.debian.org . To find out who is responsible for the
  lists, take a look at http://www.debian.org/intro/organization

User lists

  There are several user based mailing lists where developers and
  users can get in contact to discuss and solve problems.

  debian-announce@lists.debian.org

      Description : Major news and very important changes in the project
                    are announced here.
      Moderated   : yes
      Subscription: open

  debian-backports-announce@lists.debian.org

      Description : Announcements relating to the debian-backports project include security related announcements
      Moderated   : yes
      Subscription: open

  debian-backports@lists.debian.org

      Description : Discussion about the debian-backports archive
      Moderated   : no
      Subscription: open

  debian-chinese-big5@lists.debian.org

      Description : Debian Chinese Project: Chinese localization (l10n),
                    documentation and web site translation, user support
                    etc.

                    Posts may be in English or Big5-encoded Chinese.
                    All posts are automatically converted to GB encoding
                    and cross-posted to the debian-chinese-gb mailing list.

                    If you would rather read and post in GB-encoded
                    Chinese, please subscribe to debian-chinese-gb instead.
      Language    : Chinese
      Moderated   : subscribers
      Subscription: open

  debian-chinese-gb@lists.debian.org

      Description : Debian Chinese Project: Chinese localization (l10n)
                    issues, documentation and web site translation, user
                    support etc.

                    Posts may be in English or GB-encoded Chinese.
                    All posts are automatically converted to Big5 encoding
                    and cross-posted to the debian-chinese-big5 mailing list.

                    If you would rather read and post in Big5-encoded
                    Chinese, please subscribe to debian-chinese-big5 instead.
      Language    : Chinese
      Moderated   : subscribers
      Subscription: open

  debian-edu-announce@lists.debian.org

      Description : Announcements regarding Skolelinux/debian-edu
      Moderated   : yes
      Subscription: open

  debian-enterprise@lists.debian.org

      Description : Discussions about special needs in enterprise 
                    environments and ways to fulfill those needs.
      Moderated   : no
      Subscription: open

  debian-esperanto@lists.debian.org

      Description : Debian users who speak Esperanto.
      Language    : Esperanto
      Moderated   : no
      Subscription: open

  debian-firewall@lists.debian.org

      Description : Discussion of implementation and maintenance of
                    firewalls using Debian. Both basic issues and new
                    more exotic developments are discussed here.
      Moderated   : no
      Subscription: open

  debian-infrastructure-announce@lists.debian.org

      Description : This list covers announcements about changes in the (public and
                    private) Debian infrastructure including services the Debian
                    project directly or indirectly provides.  
      Moderated   : signed
      Subscription: open

  debian-isp@lists.debian.org

      Description : Discussion about issues and problems specific to
                    Internet Service Providers (ISPs for short) that
                    use Debian.
      Moderated   : no
      Subscription: open

  debian-italian@lists.debian.org

      Description : Support for Debian users that speak Italian.
                    (High-volume mailing list.)
      Language    : Italian
      Moderated   : no
      Subscription: open

  debian-japanese@lists.debian.org

      Description : Support for Debian users that speak Japanese,
                    Japanese localization issues, integrating
                    Debian JP packages into Debian etc.

                    The English language is allowed, but using Japanese is
                    encouraged even for those who aren't native speakers.

                    For native Japanese, Debian JP Project provides
                    several mailing lists discussing the Debian system in
                    Japanese, see http://www.debian.or.jp/MailingList.html
      Language    : English/Japanese
      Moderated   : no
      Subscription: open

  debian-kde@lists.debian.org

      Description : Discussions related to KDE in Debian.
                    Those developing KDE-based packages are
                    encouraged to use this to discuss issues
                    and share their experience.
      Moderated   : no
      Subscription: open

  debian-laptop@lists.debian.org

      Description : Installing, updating and using laptops with Debian.
                    Suggestions on special packaging, complaints, etc.
                    are welcome.
      Moderated   : no
      Subscription: open

  debian-news-french@lists.debian.org

      Description : News about Debian for users speaking French.
      Language    : French
      Moderated   : yes
      Subscription: open

  debian-news-german@lists.debian.org

      Description : News about Debian for users speaking German.
      Language    : German
      Moderated   : yes
      Subscription: open

  debian-news-italian@lists.debian.org

      Description : Releases, news, internationalization efforts and
                    other related news about Debian for Italian-speaking users.
      Language    : Italian
      Moderated   : yes
      Subscription: open

  debian-news-portuguese@lists.debian.org

      Description : Releases, news, internationalization efforts and other
                    related news about Debian for users speaking Portuguese.
      Language    : Portuguese
      Moderated   : yes
      Subscription: open

  debian-news-spanish@lists.debian.org

      Description : Releases, news, internationalization efforts and
                    other related news about Debian for Spanish-speaking users.
      Language    : Spanish
      Moderated   : yes
      Subscription: open

  debian-news@lists.debian.org

      Description : General news about the distribution and the project.

                    The current events and news about Debian are
                    summarized in the Debian Weekly News, a newsletter
                    regularly posted on this list.
      Moderated   : yes
      Subscription: open

  debian-photo@lists.debian.org

      Description : Using software in Debian for photography, and discussion about problems,
                    challenges and opportunities related to that. All parts of the
                    photographic process are on topic: controlling the camera, transferring
                    pictures to the computer, managing, editing, converting, printing,
                    uploading, displaying, etc.
                    .        
                    For bandwidth and disk space reasons, it is not, however, appropriate
                    to send images to the list. Put them on a web site and include the URL
                    in a mail sent to the list instead.
      Moderated   : no
      Subscription: open

  debian-research@lists.debian.org

      Description : This list's goal is to gather those interested in Debian from an
                    academic perspective. 
      Moderated   : no
      Subscription: open

  debian-russian@lists.debian.org

      Description : Support for Debian users that speak Russian, 
                    and Russian localization issues: translating
                    "po" files, coordinating patches for Debian
                    packages to work with the Russian language.
      Language    : Russian
      Moderated   : no
      Subscription: open

  debian-security-announce@lists.debian.org

      Description : The security team informs the users about security
                    problems by posting security advisories about
                    Debian packages on this list.
      Moderated   : yes
      Subscription: open

  debian-security@lists.debian.org

      Description : Discussion about security issues, including
                    cryptographic issues, that are of interest to
                    all parts of the Debian community.

                    Please note that this is NOT an announcement
                    mailing list. If you're looking for security
                    advisories from Debian, subscribe to
                    debian-security-announce instead.
      Moderated   : no
      Subscription: open

  debian-stable-announce@lists.debian.org

      Description : Updates to stable packages will be announced on this list.
      Moderated   : yes
      Subscription: open

  debian-testing-security-announce@lists.debian.org

      Description : The testing-security team informs users about security problems by 
                    posting summaries about fixed packages in Debian testing on this list.
      Moderated   : yes
      Subscription: open

  debian-user-catalan@lists.debian.org

      Description : Support for Debian users that speak Catalan.
      Language    : Catalan
      Moderated   : no
      Subscription: open

  debian-user-danish@lists.debian.org

      Description : Support for Debian users who speak Danish.
      Language    : Danish
      Moderated   : no
      Subscription: open

  debian-user-dutch@lists.debian.org

      Description : Support for Debian users that speak Dutch
      Language    : Dutch
      Moderated   : no
      Subscription: open

  debian-user-finnish@lists.debian.org

      Description : Support for Debian users who speak Finnish.
      Language    : Finnish
      Moderated   : no
      Subscription: open

  debian-user-french@lists.debian.org

      Description : Support for Debian users that speak French.
                    (High-volume mailing list.)
      Language    : French
      Moderated   : no
      Subscription: open

  debian-user-german@lists.debian.org

      Description : Support for Debian users that speak German.
                    (High-volume mailing list.)
      Language    : German
      Moderated   : no
      Subscription: open

  debian-user-greek@lists.debian.org

      Description : Support for Debian users that speak Greek.
      Moderated   : no
      Subscription: open

  debian-user-hungarian

      Description : Support for Debian users that speak Hungarian.
      Language    : Hungarian
      Subscription: http://lists.linux.hu/mailman/listinfo/debian

  debian-user-icelandic@lists.debian.org

      Description : Support for Debian users that speak Icelandic.
      Moderated   : no
      Subscription: open

  debian-user-indonesian@lists.debian.org

      Description : Support for Debian users who speak Indonesian.
      Language    : Indonesian
      Moderated   : no
      Subscription: open

  debian-user-polish@lists.debian.org

      Description : Support for Debian users that speak Polish.
      Language    : Polish
      Moderated   : no
      Subscription: open

  debian-user-portuguese@lists.debian.org

      Description : Support for Debian users who speak Portuguese.
                    (High-volume mailing list.)
      Language    : Portuguese (both European and Brazilian, and other dialects are welcome)
      Moderated   : no
      Subscription: open

  debian-user-slovenian@lists.debian.org

      Description : Support for Debian users that speak Slovenian.
      Language    : Slovenian
      Moderated   : no
      Subscription: open

  debian-user-spanish@lists.debian.org

      Description : Support for Debian users that speak Spanish.
                    (High-volume mailing list.)
      Language    : Spanish
      Moderated   : no
      Subscription: open

  debian-user-swedish@lists.debian.org

      Description : Support for Debian users that speak Swedish.
      Language    : Swedish
      Moderated   : no
      Subscription: open

  debian-user-tamil@lists.debian.org

      Description : Mailing list to discuss Tamil localisation efforts for Debian and to coordinate 
                    Tamil localisation activities. You can also get Debian support in Tamil here.
      Language    : Tamil
      Moderated   : no
      Subscription: open

  debian-user-turkish@lists.debian.org

      Description : Support for Debian users that speak Turkish.
      Language    : Turkish
      Moderated   : no
      Subscription: open

  debian-user-ukrainian@lists.debian.org

      Description : Support for Debian users who speak Ukrainian.
      Language    : Ukrainian
      Moderated   : no
      Subscription: open

  debian-user-vietnamese@lists.debian.org

      Description : Support for Debian users that speak Vietnamese, and discussions on translations
      Language    : Vietnamese
      Moderated   : no
      Subscription: open

  debian-user@lists.debian.org

      Description : Support for Debian users who speak English.
                    (High-volume mailing list.)
      Digest      : debian-user-digest@lists.debian.org
      Moderated   : no
      Subscription: open

  debian-volatile-announce@lists.debian.org

      Description : Announcements relating to the debian-volatile project include new uploads and changes
      Moderated   : yes
      Subscription: open

  debian-volatile@lists.debian.org

      Description : Discussion about the debian-volatile archive
      Moderated   : no
      Subscription: open

Development lists

  There are several lists on which developers and experienced
  users discuss more technical issues.  In addition, there are some
  announcement lists to help experienced users keep track of
  development.

  debian-accessibility@lists.debian.org

      Description : User and Developer list for accessibility-related issues.
      Moderated   : no
      Subscription: open

  debian-ada@lists.debian.org

      Description : Discussion of Ada in Debian.

                    This list is intended for:
                    - discussion of the Debian Policy for Ada
                    - release coordination among Ada packages in Debian
                    - packaging advice
                    - general help for Ada programmers using the Debian packages

                    You can find the Debian Policy for Ada at 
                    http://people.debian.org/~lbrenta/debian-ada-policy.html
      Moderated   : no
      Subscription: open

  debian-apache@lists.debian.org

      Description : Maintenance of the Apache HTTP server and related
                    packages in Debian: code changes, reproducing bugs,
                    talking to upstream etc.

                    It is neither for submitting bug reports (please
                    use the BTS for that), nor for support requests.
      Moderated   : no
      Subscription: open

  debian-beowulf@lists.debian.org

      Description : Discussion about Beowulf systems running Debian.
      Moderated   : no
      Subscription: open

  debian-blends@lists.debian.org

      Description : Debian Pure Blends (formerly known as Custom Debian Distributions)
                    provide support for special user interests. They implement a new
                    approach to cover interests of specialised users, who might be 
                    children, lawyers, medical staff, visually impaired people, etc.
                    Of late, several Debian Pure Blends have evolved. The common goal 
                    of those is to make installation and administration of computers 
                    for their target users as easy as possible, and to serve in the
                    role as the missing link between software developers and users
                    well.
                    
                    You can get more information at
                    http://blends.alioth.debian.org/blends/
      Moderated   : no
      Subscription: open

  debian-boot@lists.debian.org

      Description : Discussion and maintenance of the Debian
                    installation system.
      Moderated   : no
      Subscription: open

  debian-cd@lists.debian.org

      Description : Creating Debian CD sets, official and unofficial.
      Moderated   : no
      Subscription: open

  debian-cli@lists.debian.org

      Description : This list is about using and/or developing for the Common Language
                    Infrastructure (CLI).
                    If you want to develop software or create Debian packages
                    that uses Mono, GNU Portable.NET or LLVM VMKit then you are right on this
                    mailing list.
                    If you are writing software in C#, VB.NET, Boo, Nemerle or other
                    CLI based/enabled programming languages then you are also welcome on this list.
      Moderated   : no
      Subscription: open

  debian-ctte-private@lists.debian.org

      Description : Private communication between tech committee members.
      Moderated   : yes
      Subscription: Debian Technical Committee only

  debian-ctte@lists.debian.org

      Description : Public meeting, business and announcements of the Debian
                    Technical Committee
      Moderated   : subscribers
      Subscription: open

  debian-dak@lists.debian.org

      Description : Discussion about the Debian Archive Software, consisting of dak for the
                    archive and the buildd related parts wanna-build/sbuild.
      Moderated   : no
      Subscription: open

  debian-debbugs-cvs@lists.debian.org

      Description : CVS commit messages when modifications are done to
                    debbugs
      Moderated   : yes
      Subscription: open

  debian-debbugs@lists.debian.org

      Description : Discussion and development of debbugs, the Debian
                    Bug Tracking System software.
      Moderated   : no
      Subscription: open

  debian-desktop@lists.debian.org

      Description : Discussion about the Debian Desktop sub-project,
                    the integration of the various desktop-related
                    packages, bug reports, questions and patches.
      Moderated   : no
      Subscription: open

  debian-devel-announce@lists.debian.org

      Description : Announcements of development issues like policy changes,
                    important release issues &c.
      Moderated   : signed
      Subscription: open

  debian-devel-austrian

      Description : Discussion among the Debian developers in Austria.
      Language    : (mostly) German
      Subscription: https://www.gibraltar.at/mailman/listinfo/debian-at

  debian-devel-french@lists.debian.org

      Description : This is the list used to discuss development
                    issues in French.
      Language    : French
      Moderated   : no
      Subscription: open

  debian-devel-games@lists.debian.org

      Description : Development and packaging discussion for games and game-related software in Debian.
                    Identification of potential new games suitable for Debian. Discussion about
                    infrastructure issues covering a wider range of games (e.g. multiplayer issues).
      Moderated   : no
      Subscription: open

  debian-devel-italian@lists.debian.org

      Description : Discussion on development issues in Italian.
      Language    : Italian
      Moderated   : no
      Subscription: open

  debian-devel-portuguese@lists.debian.org

      Description : This is the list used by Portuguese developers
                    (or wannabes) to discuss development issues.
      Language    : Portuguese
      Moderated   : no
      Subscription: open

  debian-devel-spanish@lists.debian.org

      Description : This is the list used by Spanish developers
                    (or wannabes) to discuss issues besides
                    translation: provide help for new Spanish
                    developers, arrange key-signing meetings, arrange
                    work in booths on different shows, share experience
                    etc.
      Language    : Spanish
      Moderated   : no
      Subscription: open

  debian-devel@lists.debian.org

      Description : Discussion about technical development topics.
                    (High-volume mailing list.)
      Digest      : debian-devel-digest@lists.debian.org
      Moderated   : no
      Subscription: open

  debian-doc@lists.debian.org

      Description : Debian Documentation Project: anything related
                    to documentation in Debian is on topic here.
      Moderated   : no
      Subscription: open

  debian-dpkg-bugs@lists.debian.org

      Description : Email sent by the bug tracking system regarding
                    the dpkg packages.
      Moderated   : no
      Subscription: open

  debian-dpkg-cvs@lists.debian.org

      Description : The CVS commit messages from the dpkg CVS tree.
      Moderated   : yes
      Subscription: open

  debian-dpkg@lists.debian.org

      Description : Discussions and maintenance of dpkg, the basis of
                    the Debian packaging system.
      Moderated   : no
      Subscription: open

  debian-edu-french@lists.debian.org

      Description : Discussions in french between all educational Debian-based projects.
                    This list should ease the collaboration between the projects themselves
                    and between Debian and those projects.
      Moderated   : no
      Subscription: open

  debian-edu@lists.debian.org

      Description : Making Debian the best distribution in the
                    education landscape.
      Moderated   : no
      Subscription: open

  debian-emacsen@lists.debian.org

      Description : Discussion of all things related to the several
                    Debian Emacs packages and their add-ons.
      Moderated   : no
      Subscription: open

  debian-email@lists.debian.org

      Description : A generic "grab-bag" list for Debian related
                    correspondence such as contacting upstream authors
                    about licenses, bugs etc, or discussing the project
                    with others where it might be useful to have the
                    discussion archived somewhere.

                    This list is archived internally on a Debian Project
                    machine, only developers have access to the archive.
      Moderated   : no
      Subscription: developers only

  debian-embedded@lists.debian.org

      Description : Discussion about improving Debian for use with
                    embedded systems, including building cross-compiler
                    toolchains, cross-compiling packages, creating and
                    updating system images, using alternate libraries,
                    compile-time configuration of packages, etc.
      Moderated   : no
      Subscription: open

  debian-flash@lists.debian.org

      Description : For discussion of issues relating to the development and use of Debian for
                    Flash development and viewing of Flash content. For general discussion of Flash
                    related free software, please visit the osflash community: http://osflash.org
      Moderated   : no
      Subscription: open

  debian-gcc@lists.debian.org

      Description : Discussion on Debian packaging of GCC, the
                    GNU compiler collection: bug reports, porting
                    issues, any kind of questions or patches.
      Moderated   : no
      Subscription: open

  debian-gis@lists.debian.org

      Description : Discussion about Geographical Information Systems (GIS) in Debian. For more
                    information about the Debian GIS Blend see 

                    http://wiki.debian.org/DebianGis
      Moderated   : no
      Subscription: open

  debian-glibc@lists.debian.org

      Description : Discussion on Debian packaging of the GNU C Library,
                    the most important library on Debian systems.
      Moderated   : no
      Subscription: open

  debian-gtk-gnome@lists.debian.org

      Description : Discussion and coordination among maintainers of
                    Debian's GTK+, GNOME and dependent or related
                    packages.
      Moderated   : no
      Subscription: open

  debian-hams@lists.debian.org

      Description : Support for HAMRadio within Debian GNU/Linux.
      Moderated   : no
      Subscription: open

  debian-haskell@lists.debian.org

      Description : Discussion of issues related to Haskell on Debian systems, with an
                    emphasis towards coordinating Haskell packaging standards.  Relevant
                    for anyone packaging Haskell compilers, libraries, or programs on
                    Debian.
      Moderated   : no
      Subscription: open

  debian-ipv6@lists.debian.org

      Description : Discussions on the use of Debian in an IPv6 network
                    and implementing IPv6 support in Debian packages.
      Moderated   : no
      Subscription: open

  debian-java@lists.debian.org

      Description : Discussion about the packaging and use in Debian of VMs
                    and compilers for the Java(tm) language, and programs
                    written on it.
      Moderated   : no
      Subscription: open

  debian-jr@lists.debian.org

      Description : Discussion and working on making Debian the sort
                    of operating system that children will want to use.

                    The Debian Jr. Project web page is at
                    http://www.debian.org/devel/debian-jr/
      Moderated   : no
      Subscription: open

  debian-kernel-maint@lists.debian.org

      Description : Discussion and development of Debian kernel packaging,
                    for the kernel team and other developers.
      Moderated   : no
      Subscription: open

  debian-kernel@lists.debian.org

      Description : Kernels used with Debian (Linux, Hurd, etc.), available
                    patches and flavors, packaging issues, bug reports,
                    porting issues, automated tools, and any other
                    questions or patches that are kernel-related. Mostly
                    bug reporting is done here.
      Moderated   : no
      Subscription: open

  debian-knoppix@lists.debian.org

      Description : Development of the Debian-based live CD/DVD takes place.  As it is mainly a
                    development list, user questions are best placed on the debian-user list.
      Moderated   : no
      Subscription: open

  debian-lex@lists.debian.org

      Description : Discussion on developing Debian into an operating
                    system that is particularly well fit for the
                    requirements for legal offices. The goal of
                    Debian-Lex is a complete system for all tasks in
                    legal practice which is built completely on free
                    software.
      Moderated   : no
      Subscription: open

  debian-lint-maint@lists.debian.org

      Description : The maintenance of Debian "lint" tools like lintian or linda
                    is discussed on this list. This may or may not be limited to
                    bug reports regarding the checks.
      Moderated   : no
      Subscription: open

  debian-live@lists.debian.org

      Description : Development of the Debian Live systems (i.e. live cds).
      Moderated   : no
      Subscription: open

  debian-lsb@lists.debian.org

      Description : Discussion and coordination of efforts towards ensuring
                    Debian meets the requirements of the Linux Standard Base.
      Moderated   : no
      Subscription: open

  debian-med@lists.debian.org

      Description : Discussion on providing a free operating system
                    for medical care.

                    The Debian-Med Project web page is at
                    http://www.debian.org/devel/debian-med/
      Moderated   : no
      Subscription: open

  debian-mentors@lists.debian.org

      Description : Newbie Debian developers can seek help with
                    packaging and other developer-related issues here.

                    This list is not meant for users' questions,
                    but for new maintainers'!
      Moderated   : no
      Subscription: open

  debian-multimedia@lists.debian.org

      Description : Discussion about the development of applications
                    that produce multimedia content, handling multimedia
                    data, supporting multimedia hardware etc.
      Moderated   : no
      Subscription: open

  debian-ocaml-maint@lists.debian.org

      Description : Packaging of Objective Caml programs and libraries.
                    (http://pauillac.inria.fr/caml/)
      Moderated   : no
      Subscription: open

  debian-openoffice@lists.debian.org

      Description : Coordination of the maintenance of the OpenOffice
                    packages in Debian.
      Moderated   : no
      Subscription: open

  debian-perl@lists.debian.org

      Description : The list is dedicated to coordinate the work of various
                    perl package maintainer and to write a kind of perl
                    sub-policy.
      Moderated   : no
      Subscription: open

  debian-policy@lists.debian.org

      Description : Discussion and editing of the Debian Policy Manual.
      Moderated   : no
      Subscription: open

  debian-printing@lists.debian.org

      Description : Discussion of issues related to printing on Debian systems.  This
                    covers all aspects of printing, from spoolers, to RIPs and printer
                    drivers.  The list is used for coordination of development,
                    integration and bugfixing of printing packages between package
                    maintainers.  User printing and printing setup questions are also
                    on topic.
      Moderated   : no
      Subscription: open

  debian-private@lists.debian.org

      Description : Private discussions among developers: only for
                    issues that may not be discussed on public lists.

                    Anything sent there should be treated as sensitive
                    and not to be spread to other lists; thus
                    cross-posting between it and an open list defeats
                    the purpose of this list.

                    This list is archived internally on a Debian Project
                    machine, only developers have access to the archive.
      Moderated   : no
      Subscription: developers only

  debian-python@lists.debian.org

      Description : Discussion of issues related to Python on Debian
                    systems with a stress on packaging standards. Therefore
                    relevant for maintainers of Python related packages.
      Moderated   : no
      Subscription: open

  debian-qa-packages@lists.debian.org

      Description : Bug reports against orphaned packages and discussions
                    about fixing them.
      Moderated   : no
      Subscription: open

  debian-qa@lists.debian.org

      Description : Quality assurance is important for a distribution. This
                    list addresses this quality.
      Moderated   : no
      Subscription: open

  debian-qt-kde@lists.debian.org

      Description : Discussion and coordination among maintainers of
                    Debian's Qt, KDE and dependent or related packages.
      Moderated   : no
      Subscription: open

  debian-release@lists.debian.org

      Description : Coordination of Debian releases issues such as testing migrations, transitions
                    and removals.
                    
                    This list should not be considered a discussion list; discussions related to
                    releases issues should be held on more appropriate lists such as debian-devel,
                    debian-legal or debian-project.
      Moderated   : no
      Subscription: open

  debian-ruby@lists.debian.org

      Description : Discussion of issues related to Ruby on Debian systems
                    with a stress on packaging standards. Therefore
                    relevant for maintainers of Ruby related packages.
      Moderated   : no
      Subscription: open

  debian-science@lists.debian.org

      Description : Discussion of issues relating to the use of Debian for science research,
                    including useful packages, particular problems faced by scientists using
                    Debian, how to make Debian more useful to scientists, etc.
      Moderated   : no
      Subscription: open

  debian-security-tracker@lists.debian.org

      Description : Discussion about topics that are relevant about the
                    Debian Security Tracker, e.g. feature improvements,
                    bugreports about incorrect data entries or server
                    updates.
      Moderated   : no
      Subscription: open

  debian-sgml@lists.debian.org

      Description : Discussion of issues related to SGML on Debian systems
                    with a stress on proper integration of tools, packaging
                    standards and the writing of documentation for SGML
                    users. Therefore relevant for maintainers of SGML
                    related packages.
      Moderated   : no
      Subscription: open

  debian-ssh@lists.debian.org

      Description : Maintenance of the OpenSSH packages for Debian.
                    It exists to facilitate coordination of ssh
                    maintenance (talking to upstream, reproducing bugs,
                    hacking on the code, etc.).

                    It is *not* the place to mail bug reports
                    (use the BTS for that), nor support requests.
      Moderated   : no
      Subscription: open

  debian-testing@lists.debian.org

      Description : Finding problems with the next Debian release:
                    testing the installation and the upgrade process.
      Moderated   : no
      Subscription: open

  debian-tex-maint@lists.debian.org

      Description : Coordination of the maintenance of Debian TeX
                    and related packages.

                    It is not meant for user support; for that, please
                    use debian-user or one of the general TeX mailing
                    lists or news groups.
      Moderated   : no
      Subscription: open

  debian-toolchain@lists.debian.org

      Description : Discussion about the Debian toolchain: compilers,
                    assemblers, linkers and such. New releases for
                    many of these tools are coordinated here.
      Moderated   : no
      Subscription: open

  debian-upstream@lists.debian.org

      Description : A contact point for upstream software developers who want to get in touch with
                    Debian, whether the software is already packaged for Debian or not.
      Moderated   : no
      Subscription: open

  debian-wb-team@lists.debian.org

      Description : Primary contact address for the wanna-build maintainers.
                    Requests about this piece of infrastructure should
                    be sent here. Discussions directly concerning wanna-build.
      Moderated   : yes
      Subscription: open

  debian-webapps@lists.debian.org

      Description : This list is used to coordinate the maintenance of web application packages.
      Moderated   : no
      Subscription: open

  debian-wnpp@lists.debian.org

      Description : Orphaning and adopting packages which is done through
                    the `wnpp' BTS pseudo-package is recorded on this
                    list. Additionally, discussion about particular bugs
                    and the WNPP web pages is held here.
      Moderated   : no
      Subscription: open

  debian-www-cvs@lists.debian.org

      Description : CVS commit logs for the Debian web pages in the
                    webwml CVS tree.
      Moderated   : yes
      Subscription: open

  debian-www@lists.debian.org

      Description : Design, structure and translation of Debian
                    web pages. All important changes to the web
                    site are announced here as well.
      Moderated   : no
      Subscription: open

  debian-x@lists.debian.org

      Description : Discussion about the X Window System within Debian.
                    This is NOT a user support list; this list is
                    intended for those who deal with the source code.
      Moderated   : no
      Subscription: open

  deity@lists.debian.org

      Description : Debian GNU/Linux will get a new, friendly frontend to
                    its package maintenance system. Its codename is deity
                    (now known as APT) and its development is discussed
                    here. The -digest is open to everyone.
      Moderated   : no
      Subscription: open

Internationalization and Translations

  These lists cover issues like localization, translation and support for
  users that don't speak English.

  debian-i18n@lists.debian.org

      Description : Internationalization (i18n) of the distribution is
                    discussed here.
      Moderated   : no
      Subscription: open

  debian-l10n-arabic@lists.debian.org

      Description : Discussing Arabic localization issues, mainly
                    translating Debian docs and programs to Arabic.
      Language    : Arabic
      Moderated   : no
      Subscription: open

  debian-l10n-basque@lists.debian.org

      Description : Discussing Basque localization issues, mainly translating Debian
                    docs and programs to Basque.
      Language    : Basque
      Moderated   : no
      Subscription: open

  debian-l10n-belarusian@lists.debian.org

      Description : Discussing Belarusian localization issues, mainly
                    translating Debian docs and programs to Belarusian.
      Language    : Belarusian
      Moderated   : no
      Subscription: open

  debian-l10n-catalan@lists.debian.org

      Description : Discussing Catalan localization issues, mainly
                    translating Debian docs and programs to Catalan.
      Language    : Catalan
      Moderated   : no
      Subscription: open

  debian-l10n-chinese@lists.debian.org

      Description : Discussing Chinese localization issues, mainly translating Debian
                    docs and programs to Chinese.
      Language    : Chinese
      Moderated   : no
      Subscription: open

  debian-l10n-czech@lists.debian.org

      Description : Discussion forum for the translators of
                    Debian-specific packages and documentation to the Czech language.
      Moderated   : no
      Subscription: open

  debian-l10n-danish@lists.debian.org

      Description : Discussing Danish localization issues, mainly
                    translating Debian docs and programs to Danish.
      Language    : Danish
      Moderated   : no
      Subscription: open

  debian-l10n-dutch@lists.debian.org

      Description : Discussion forum for the translators of Debian-specific
                    packages and documentation to the Dutch language.
      Language    : Dutch
      Moderated   : no
      Subscription: open

  debian-l10n-english@lists.debian.org

      Description : Discussing English localization issues, mainly
                    translating Debian docs and programs to English.
      Language    : English
      Moderated   : no
      Subscription: open

  debian-l10n-esperanto@lists.debian.org

      Description : Discussing Esperanto localization issues, mainly
                    translating Debian docs and programs to Esperanto.
      Language    : Esperanto
      Moderated   : no
      Subscription: open

  debian-l10n-finnish@lists.debian.org

      Description : Discussing Finnish localization issues, mainly
                    translating Debian docs and programs to Finnish.
      Language    : Finnish
      Moderated   : no
      Subscription: open

  debian-l10n-french@lists.debian.org

      Description : Discussion forum for the translators of Debian-specific
                    packages and documentation to the French language.
      Language    : French
      Moderated   : no
      Subscription: open

  debian-l10n-galician@lists.debian.org

      Description : Discussing Galician localization issues, mainly translating Debian docs and
                    programs to Galician.
      Language    : Galician
      Moderated   : no
      Subscription: open

  debian-l10n-german@lists.debian.org

      Description : Discussing German localization issues, mainly
                    translating Debian docs and programs to German.
      Language    : German
      Moderated   : no
      Subscription: open

  debian-l10n-greek@lists.debian.org

      Description : Discussion on Greek localization issues, mainly
                    translating Debian docs and programs to Greek.
      Language    : Greek
      Moderated   : no
      Subscription: open

  debian-l10n-hungarian@lists.debian.org

      Description : Discussing Hungarian localization issues, mainly
                    translating Debian docs and programs to Hungarian.
      Language    : Hungarian
      Moderated   : no
      Subscription: open

  debian-l10n-indonesian@lists.debian.org

      Description : Discussing Indonesian localization issues, mainly translating Debian docs and
                    website into Indonesian, improving Indonesian environment support in Debian.
      Language    : Indonesian
      Moderated   : no
      Subscription: open

  debian-l10n-italian@lists.debian.org

      Description : Italian localization efforts within Debian.
      Language    : Italian
      Moderated   : no
      Subscription: open

  debian-l10n-kannada@lists.debian.org

      Description : Debian Kannada (kn_IN) localization, documentation and web site translation,
                    user support, user-developers coordination
      Language    : Kannada
      Moderated   : no
      Subscription: open

  debian-l10n-korean@lists.debian.org

      Description : Discussion forum for the translators of Debian-specific packages and
                    documentation to the Korean language.
      Moderated   : no
      Subscription: open

  debian-l10n-malayalam@lists.debian.org

      Description : Discussion forum for the translators of Debian-specific packages and
                    documentation to the Malayalam language.
      Language    : Malayalam
      Moderated   : no
      Subscription: open

  debian-l10n-persian@lists.debian.org

      Description : Discussing Persian/Farsi localization issues, mainly translating
                    Debian docs and programs to Persian/Farsi.
      Language    : Persian
      Moderated   : no
      Subscription: open

  debian-l10n-polish@lists.debian.org

      Description : Polish localization issues, mainly translating Debian
                    web pages, documentation and programs to Polish.
      Language    : Polish
      Moderated   : no
      Subscription: open

  debian-l10n-portuguese@lists.debian.org

      Description : Portuguese localization issues such as translating
                    the documentation and programs.
      Language    : Portuguese
      Moderated   : no
      Subscription: open

  debian-l10n-romanian@lists.debian.org

      Description : Discussing Romanian localization issues, mainly
                    translating Debian docs and programs to Romanian.
      Language    : Romanian
      Moderated   : no
      Subscription: open

  debian-l10n-russian@lists.debian.org

      Description : Discussing Russian localization issues, mainly
                    translating Debian docs and programs to Russian.
      Language    : Russian
      Moderated   : no
      Subscription: open

  debian-l10n-sicilian@lists.debian.org

      Description : Sicilian localization issues within Debian.
      Language    : Sicilian
      Moderated   : no
      Subscription: open

  debian-l10n-spanish@lists.debian.org

      Description : Discussing Spanish localization issues, mainly
                    translating Debian docs and programs to Spanish.
      Language    : Spanish
      Moderated   : no
      Subscription: open

  debian-l10n-swedish@lists.debian.org

      Description : Discussion forum for translators of Debian-specific packages
                    and documentation for the Swedish language.
      Moderated   : no
      Subscription: open

  debian-l10n-turkish@lists.debian.org

      Description : Discussing Turkish localization issues, mainly
                    translating Debian docs and website into Turkish,
                    improving Turkish environment support in Debian.
      Language    : Turkish
      Moderated   : no
      Subscription: open

  debian-l10n-vietnamese@lists.debian.org

      Description : This is the Debian localization list for Vietnamese localization announcements
                    and translation status checks, discussions between Vietnamese translators and
                    questions from Vietnamese community users with language-related issues.
      Language    : Vietnamese
      Moderated   : no
      Subscription: open

Ports to non-i386 Linux architectures and to non-Linux kernels

  Debian GNU/Linux is ported to several other types of computers, and there
  are also efforts to create Debian systems on kernels other than Linux.

  debian-68k@lists.debian.org

      Description : Discussions on the m68k port of Debian GNU/Linux.
      Moderated   : no
      Subscription: open

  debian-alpha@lists.debian.org

      Description : Discussion on the Alpha port of Debian GNU/Linux.
      Moderated   : no
      Subscription: open

  debian-amd64@lists.debian.org

      Description : Porting Debian to AMD x86-64 architecture.
      Moderated   : no
      Subscription: open

  debian-arm@lists.debian.org

      Description : Discussion on the ARM port for Debian GNU/Linux.
      Moderated   : no
      Subscription: open

  debian-bsd@lists.debian.org

      Description : Porting Debian to BSD (all *BSD variants).
      Moderated   : no
      Subscription: open

  debian-hppa@lists.debian.org

      Description : Discussions on the PA-RISC port of Debian GNU/Linux.
      Moderated   : no
      Subscription: open

  debian-hurd@lists.debian.org

      Description : Debian port of the GNU Hurd operating system.
      Moderated   : no
      Subscription: open

  debian-ia64@lists.debian.org

      Description : Discussions on the intel IA64 (aka Itanium, Merced)
                    port of Debian GNU/Linux.
      Moderated   : no
      Subscription: open

  debian-interix@lists.debian.org

      Description : Discussion on the Interix port of Debian/GNU.
                    For more information see: http://www.debian-interix.net/
      Moderated   : no
      Subscription: open

  debian-mips@lists.debian.org

      Description : Discussions on the MIPS port of Debian GNU/Linux.
      Moderated   : no
      Subscription: open

  debian-powerpc@lists.debian.org

      Description : Discussion on the PowerPC port of Debian GNU/Linux.
      Moderated   : no
      Subscription: open

  debian-s390@lists.debian.org

      Description : Discussions on the IBM S/390 port of Debian GNU/Linux.
      Moderated   : no
      Subscription: open

  debian-sparc@lists.debian.org

      Description : Discussions on the SPARC port of Debian GNU/Linux.
      Moderated   : no
      Subscription: open

  debian-superh@lists.debian.org

      Description : Discussions on the SuperH port of Debian GNU/Linux. For
                    more information about running Linux on SH processors,
                    have a look at http://www.m17n.org/linux-sh/
      Moderated   : no
      Subscription: open

  debian-win32@lists.debian.org

      Description : Porting the Debian distribution to Win32 systems
                    (Debian GNU/Win32).
      Moderated   : no
      Subscription: open

The Bug Tracking System

  The Debian bug tracking system is open to the public, and it produces
  a lot of email. Some of this might be of interest to developers or even
  users, so it is distributed through these (high-volume) mailing lists.

  debian-bugs-closed@lists.debian.org

      Description : Messages that close Debian bug reports.
      Moderated   : yes
      Subscription: open

  debian-bugs-dist@lists.debian.org

      Description : All submitted bug reports as well as further information
                    on them are distributed here.
      Moderated   : yes
      Subscription: open

  debian-bugs-forwarded@lists.debian.org

      Description : Mails in which Debian maintainers forward bugs
                    to their upstream authors.
      Moderated   : yes
      Subscription: open

  debian-bugs-rc@lists.debian.org

      Description : All mail regarding release-critical bugs is
                    copied to this mailing list.

                    See http://bugs.debian.org/release-critical/
                    for more information.
      Moderated   : yes
      Subscription: open

Miscellaneous Debian lists

  There are several mailing lists which discuss topics that are
  not directly related to developing or using Debian, and there
  are some that don't necessarily have a clear distinction
  between developers and users in the intended audience.

  debian-admin@lists.debian.org

      Description : This is our internal list used for administering the
                    Debian machine park.
      Moderated   : no
      Subscription: closed

  debian-backports-changes@lists.debian.org

      Description : Changes to the "debian-backports" distribution are announced
                    here. This includes queued and dak mail.
      Moderated   : yes
      Subscription: open

  debian-changes@lists.debian.org

      Description : Changes to the releases are announced here. This
                    includes security upgrades as well as important
                    bugfixes.
      Digest      : debian-changes-digest@lists.debian.org
      Moderated   : yes
      Subscription: open

  debian-consultants@lists.debian.org

      Description : Communication among Debian consultants. See at the bottom of the
                    consultants page (http://www.debian.org/consultants/#policy) for how
                    to add/update entries to this page.
      Moderated   : no
      Subscription: open

  debian-curiosa@lists.debian.org

      Description : Funny thing from and with the project, funny quotes,
                    discussions irc communication and fortune cookies.
                    Some kind of (de.)alt.netdigest for Debian-related stuff.
      Moderated   : no
      Subscription: open

  debian-devel-changes@lists.debian.org

      Description : Notices about uploaded packages for the unstable
                    distribution, from developers, buildds and katie,
                    the archive sentinel.
                    (High-volume mailing list.)
      Moderated   : yes
      Subscription: open

  debian-dug-in@lists.debian.org

      Description : Discussion list for the Debian community in India without being tied to a
                    particular group in order to link all groups and individuals in the country and
                    facilitate the coordination of local events.
      Moderated   : no
      Subscription: open

  debian-dug-mx@lists.debian.org

      Description : Discussion list for the Debian community in Mexico without being tied to a
                    particular group in order to link all groups and individuals in the country and
                    facilitate the coordination of local events.
      Moderated   : no
      Subscription: open

  debian-events-eu@lists.debian.org

      Description : Discussions and organizational stuff about booths for
                    Debian at european exhibitions.
      Moderated   : no
      Subscription: open

  debian-events-ha@lists.debian.org

      Description : Mailing list for announcements and events organization
                    with Debian affiliation in Hispanic America.
      Moderated   : no
      Subscription: open

  debian-events-na@lists.debian.org

      Description : Discussions and organizational stuff about booths and
                    presentations for Debian at North American exhibitions.
      Moderated   : no
      Subscription: open

  debian-events-nl@lists.debian.org

      Description : Announcements of small meetings and keysigning parties of Dutch
                    Debian Developers and other discussions of interest mainly for
                    Debian people in the Netherlands. Posts in both Dutch and English
                    are common.
      Moderated   : no
      Subscription: open

  debian-jobs@lists.debian.org

      Description : Job postings can be published on this list in
                    order to make them public to members of the Debian
                    community.  While the jobs do not necessarily have
                    to involve the use of Debian, it is encouraged that
                    they do.  Jobs can be about the development of
                    proprietary system, but jobs involving free software
                    (either development or system administration) are
                    preferred.  Please include information such as
                    location and remuneration if appropriate.  The list
                    is moderated; it is also an open list - job postings
                    which have to be kept private should be sent to
                    leader@debian.org who will distribute them.
      Moderated   : yes
      Subscription: open

  debian-legal@lists.debian.org

      Description : Discussions about legality issues such as
                    copyrights, patents etc.
      Moderated   : no
      Subscription: open

  debian-mirrors-announce@lists.debian.org

      Description : Important changes to the FTP archive are announced here.
                    These are mainly useful to maintainers of Debian
                    mirrors.
      Moderated   : signed
      Subscription: open

  debian-mirrors@lists.debian.org

      Description : Discussions relating to the Debian mirror network,
                    and the maintenance of mirrors.
      Moderated   : no
      Subscription: open

  debian-newmaint@lists.debian.org

      Description : Discussion about the Debian New Maintainer process,
                    application manager reports etc.
      Moderated   : no
      Subscription: open

  debian-project@lists.debian.org

      Description : Discussion about non-technical topics related
                    to the Debian Project.
      Moderated   : no
      Subscription: open

  debian-publicity@lists.debian.org

      Description : Coordination of all the work related to the external
                    communication of Debian: drafting new announces,
                    collecting important information that Debian should relay
                    to its community, improving the infrastructure offered to
                    people who want to create Debian booth, etc.
      Moderated   : no
      Subscription: open

  debian-snapshot@lists.debian.org

      Description : This list covers discussion and maintenance of the snapshot.debian.org archive
                    as well as the development of enhancements of this service.
      Moderated   : no
      Subscription: open

  debian-testing-changes@lists.debian.org

      Description : Changes to the "testing" distribution are announced
                    here. This includes various bugfixes.
      Moderated   : yes
      Subscription: open

  debian-vote@lists.debian.org

      Description : Proposals, discussions and announcements related to
                    Official Debian Votes.
      Moderated   : no
      Subscription: open

  debian-women@lists.debian.org

      Description : Debian users and developers who wish to involve more
                    women in the Debian project. For discussion and
                    sharing of ideas as well as project collaboration.
      Moderated   : no
      Subscription: open

  whitelist@lists.debian.org

      Description : This is a special pseudo-mailing list to which
                    people can subscribe to prove they are not
                    spammers.

                    This allows one to avoid the restrictions imposed
                    on non-subscriber posts to other mailing lists,
                    in particular the mailing lists that allow posts
                    only from subscribers.
      Moderated   : yes
      Subscription: open

Other


  debian-derivatives@lists.debian.org

      Description : front-desk for developers of Debian-based distributions
      Moderated   : no
      Subscription: open

Lists hosted for other projects

  Our list server provides mailing list facilities for other free
  projects as well.

  other-cdwrite@lists.debian.org

      Description : cdwrite mailing list
      Moderated   : no
      Subscription: open

  other-sart@lists.debian.org

      Description : Discussions and announcements about SART,
                    a free raytracer that uses Guile extension
                    language and is distributed under GPL. 

                    The SART website is at
                    http://petra.zesoi.fer.hr/~silovic/sart/
      Moderated   : no
      Subscription: open


Debian mailing list advertising policy
--------------------------------------

  This policy is intended to fight mailing-list "spamming".

  The Debian mailing lists accept commercial advertising for payment. The fee
  for advertisments is a donation of USD 1000 or more to "Software in the
  Public Interest" (SPI).  One donation per advertisement, please.  If you
  prefer to pay in arrears, simply post your advertisement to the list, and
  the list operator will bill you USD 1999.  The list operator will donate
  this amount, minus the expense of collecting it, to SPI.  Please note that
  the lists are distributed automatically -- messages are generally not read
  or checked in any way before they are distributed.

  The act of posting an advertisement indicates your willingness to
    * accept responsibility for the fee,
    * indemnify the list operator against any legal claims from you or
        others in connection with your advertisement, and
    * pay any legal and business expenses incurred in collecting late payment.
  Our liability to you is limited to a good-faith effort to deliver your
  message.

  Reduced rates and/or waiver of fee are available for Debian-related
  advertisements. You must consult the list operator in advance of posting for
  any reduction or fee waiver.

-- 
Online HTML version of this document is available at
	http://www.debian.org/MailingLists/subscribe