aboutsummaryrefslogtreecommitdiff
path: root/documentation/content/en/books/handbook/eresources/_index.adoc
blob: e90267bcb12d52927e4e4b0ebd5b8b4cf901ba4a (plain) (blame)
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
---
title: Appendix C. Resources on the Internet
part: Part V. Appendices
prev: books/handbook/bibliography
next: books/handbook/pgpkeys
description: FreeBSD additional resources on internet like websites, mailing lists, mirrors, etc
tags: ["eresources", "Websites", "Mailing Lists", "Usenet", "Newsgroups"]
---

[appendix]
[[eresources]]
= Resources on the Internet
:doctype: book
:toc: macro
:toclevels: 1
:icons: font
:sectnums:
:sectnumlevels: 6
:sectnumoffset: C
:partnums:
:source-highlighter: rouge
:experimental:
:images-path: books/handbook/eresources/

ifdef::env-beastie[]
ifdef::backend-html5[]
:imagesdir: ../../../../images/{images-path}
endif::[]
ifndef::book[]
include::shared/authors.adoc[]
include::shared/mirrors.adoc[]
include::shared/releases.adoc[]
include::shared/attributes/attributes-{{% lang %}}.adoc[]
include::shared/{{% lang %}}/teams.adoc[]
include::shared/{{% lang %}}/mailing-lists.adoc[]
include::shared/{{% lang %}}/urls.adoc[]
toc::[]
endif::[]
ifdef::backend-pdf,backend-epub3[]
include::../../../../../shared/asciidoctor.adoc[]
endif::[]
endif::[]

ifndef::env-beastie[]
toc::[]
include::../../../../../shared/asciidoctor.adoc[]
endif::[]

The rapid pace of FreeBSD progress makes print media impractical as a means of following the latest developments.
Electronic resources are the best, if not often the only, way to stay informed of the latest advances.
Since FreeBSD is a volunteer effort, the user community itself also generally serves as a "technical support department" of sorts, with electronic mail, web forums, and USENET news being the most effective way of reaching that community.

The most important points of contact with the FreeBSD user community are outlined below.
Please send other resources not mentioned here to the {freebsd-doc} so that they may also be included.

[[eresources-www]]
== Websites

* https://forums.FreeBSD.org/[The FreeBSD Forums] provide a web based discussion forum for FreeBSD questions and technical discussion.
* The http://www.youtube.com/bsdconferences[BSDConferences YouTube Channel] provides a collection of high quality videos from BSD conferences around the world. This is a great way to watch key developers give presentations about new work in FreeBSD.

[[eresources-mail]]
== Mailing Lists

The mailing lists are the most direct way of addressing questions or opening a technical discussion to a concentrated FreeBSD audience.
There are a wide variety of lists on a number of different FreeBSD topics.
Sending questions to the most appropriate mailing list will invariably assure a faster and more accurate response.

The charters for the various lists are given at the bottom of this document.
_Please read the charter before joining or sending mail to any list_.
Most list subscribers receive many hundreds of FreeBSD related messages every day, and the charters and rules for use are meant to keep the signal-to-noise ratio of the lists high.
To do less would see the mailing lists ultimately fail as an effective communications medium for the Project.

[NOTE]
====
_To test the ability to send email to FreeBSD lists, send a test message to {freebsd-test}._
Please do not send test messages to any other list.
====

When in doubt about what list to post a question to, see extref:{freebsd-questions-article}[How to get best results from the FreeBSD-questions mailing list].

Before posting to any list, please learn about how to best use the mailing lists, such as how to help avoid frequently-repeated discussions, by reading the extref:{mailing-list-faq}[Mailing List Frequently Asked Questions] (FAQ) document.

Archives are kept for all of the mailing lists and can be searched using the https://www.FreeBSD.org/search/[FreeBSD World Wide Web server].
The keyword searchable archive offers an excellent way of finding answers to frequently asked questions and should be consulted before posting a question.
Note that this also means that messages sent to FreeBSD mailing lists are archived in perpetuity.
When protecting privacy is a concern, consider using a disposable secondary email address and posting only public information.

[[eresources-summary]]
=== List Summary

_General lists:_ The following are general lists which anyone is free (and encouraged) to join:

[.informaltable]
[cols="20%,80%", frame="none", options="header"]
|===
| List
| Purpose

|link:{freebsd-advocacy-url}[freebsd-advocacy]
|FreeBSD Evangelism

|link:{freebsd-announce-url}[freebsd-announce]
|Important events and Project milestones (moderated)

|link:{freebsd-arch-url}[freebsd-arch]
|Architecture and design discussions

|link:{freebsd-bugbusters-url}[freebsd-bugbusters]
|Discussions pertaining to the maintenance of the FreeBSD problem report database and related tools

|link:{freebsd-bugs-url}[freebsd-bugs]
|Bug reports

|link:{freebsd-chat-url}[freebsd-chat]
|Non-technical items related to the FreeBSD community

|link:{freebsd-chromium-url}[freebsd-chromium]
|FreeBSD-specific Chromium issues

|link:{freebsd-current-url}[freebsd-current]
|Discussion concerning the use of FreeBSD-CURRENT

|link:{freebsd-isp-url}[freebsd-isp]
|Issues for Internet Service Providers using FreeBSD

|link:{freebsd-jobs-url}[freebsd-jobs]
|FreeBSD employment and consulting opportunities

|link:{freebsd-quarterly-calls-url}[freebsd-quarterly-calls]
|Calls for quarterly status reports (moderated)

|link:{freebsd-questions-url}[freebsd-questions]
|User questions and technical support

|link:{freebsd-security-notifications-url}[freebsd-security-notifications]
|Security notifications (moderated)

|link:{freebsd-stable-url}[freebsd-stable]
|Discussion concerning the use of FreeBSD-STABLE

|link:{freebsd-test-url}[freebsd-test]
|Where to send test messages instead of to one of the actual lists

|link:{freebsd-women-url}[freebsd-women]
|FreeBSD advocacy for women
|===

_Technical lists:_ The following lists are for technical discussion.
Read the charter for each list carefully before joining or sending mail to one as there are firm guidelines for their use and content.

[.informaltable]
[cols="20%,80%", frame="none", options="header"]
|===
| List
| Purpose

|link:{freebsd-acpi-url}[freebsd-acpi]
|ACPI and power management development

|link:{freebsd-amd64-url}[freebsd-amd64]
|Porting FreeBSD to AMD64 systems (moderated)

|link:{freebsd-apache-url}[freebsd-apache]
|Discussion about Apache related ports

|link:{freebsd-arm-url}[freebsd-arm]
|Porting FreeBSD to ARM(R) processors

|link:{freebsd-atm-url}[freebsd-atm]
|Using ATM networking with FreeBSD

|link:{freebsd-bluetooth-url}[freebsd-bluetooth]
|Using Bluetooth(R) technology in FreeBSD

|link:{freebsd-cloud-url}[freebsd-cloud]
|FreeBSD on cloud platforms (EC2, GCE, Azure, etc.)

|link:{freebsd-cluster-url}[freebsd-cluster]
|Using FreeBSD in a clustered environment

|link:{freebsd-database-url}[freebsd-database]
|Discussing database use and development under FreeBSD

|link:{freebsd-desktop-url}[freebsd-desktop]
|Using and improving FreeBSD on the desktop

|link:{dev-ci-url}[dev-ci]
|Build and test reports from the Continuous Integration servers

|link:{dev-reviews-url}[dev-reviews]
|Notifications of the FreeBSD review system

|link:{freebsd-doc-url}[freebsd-doc]
|Creating FreeBSD related documents

|link:{freebsd-drivers-url}[freebsd-drivers]
|Writing device drivers for FreeBSD

|link:{freebsd-dtrace-url}[freebsd-dtrace]
|Using and working on DTrace in FreeBSD

|link:{freebsd-eclipse-url}[freebsd-eclipse]
|FreeBSD users of Eclipse IDE, tools, rich client applications and ports.

|link:{freebsd-elastic-url}[freebsd-elastic]
|FreeBSD-specific ElasticSearch discussions

|link:{freebsd-embedded-url}[freebsd-embedded]
|Using FreeBSD in embedded applications

|link:{freebsd-emulation-url}[freebsd-emulation]
|Emulation of other systems such as Linux/MS-DOS(R)/Windows(R)

|link:{freebsd-enlightenment-url}[freebsd-enlightenment]
|Porting Enlightenment and Enlightenment applications

|link:{freebsd-erlang-url}[freebsd-erlang]
|FreeBSD-specific Erlang discussions

|link:{freebsd-firewire-url}[freebsd-firewire]
|FreeBSD FireWire(R) (iLink, IEEE 1394) technical discussion

|link:{freebsd-fortran-url}[freebsd-fortran]
|Fortran on FreeBSD

|link:{freebsd-fs-url}[freebsd-fs]
|File systems

|link:{freebsd-games-url}[freebsd-games]
|Support for Games on FreeBSD

|link:{freebsd-gecko-url}[freebsd-gecko]
|Gecko Rendering Engine issues

|link:{freebsd-geom-url}[freebsd-geom]
|GEOM-specific discussions and implementations

|link:{freebsd-git-url}[freebsd-git]
|Discussion of git use in the FreeBSD project

|link:{freebsd-gnome-url}[freebsd-gnome]
|Porting GNOME and GNOME applications

|link:{freebsd-hackers-url}[freebsd-hackers]
|General technical discussion

|link:{freebsd-haskell-url}[freebsd-haskell]
|FreeBSD-specific Haskell issues and discussions

|link:{freebsd-hardware-url}[freebsd-hardware]
|General discussion of hardware for running FreeBSD

|link:{freebsd-i18n-url}[freebsd-i18n]
|FreeBSD Internationalization

|link:{freebsd-infiniband-url}[freebsd-infiniband]
|Infiniband on FreeBSD

|link:{freebsd-ipfw-url}[freebsd-ipfw]
|Technical discussion concerning the redesign of the IP firewall code

|link:{freebsd-isdn-url}[freebsd-isdn]
|ISDN developers

|link:{freebsd-jail-url}[freebsd-jail]
|Discussion about the man:jail[8] facility

|link:{freebsd-java-url}[freebsd-java]
|Java(TM) developers and people porting JDK(TM)s to FreeBSD

|link:{freebsd-kde-url}[freebsd-kde]
|Porting KDE and KDE applications

|link:{freebsd-mips-url}[freebsd-mips]
|Porting FreeBSD to MIPS(R)

|link:{freebsd-mono-url}[freebsd-mono]
|Mono and C# applications on FreeBSD

|link:{freebsd-multimedia-url}[freebsd-multimedia]
|Multimedia applications

|link:{freebsd-new-bus-url}[freebsd-new-bus]
|Technical discussions about bus architecture

|link:{freebsd-net-url}[freebsd-net]
|Networking discussion and TCP/IP source code

|link:{freebsd-numerics-url}[freebsd-numerics]
|Discussions of high quality implementation of libm functions

|link:{freebsd-ocaml-url}[freebsd-ocaml]
|FreeBSD-specific OCaml discussions

|link:{freebsd-office-url}[freebsd-office]
|Office applications on FreeBSD

|link:{freebsd-performance-url}[freebsd-performance]
|Performance tuning questions for high performance/load installations

|link:{freebsd-perl-url}[freebsd-perl]
|Maintenance of a number of Perl-related ports

|link:{freebsd-pf-url}[freebsd-pf]
|Discussion and questions about the packet filter firewall system

|link:{freebsd-pkg-url}[freebsd-pkg]
|Binary package management and package tools discussion

|link:{freebsd-pkg-fallout-url}[freebsd-pkg-fallout]
|Fallout logs from package building

|link:{freebsd-pkgbase-url}[freebsd-pkgbase]
|Packaging the FreeBSD base system

|link:{freebsd-platforms-url}[freebsd-platforms]
|Concerning ports to non Intel(R) architecture platforms

|link:{freebsd-ports-url}[freebsd-ports]
|Discussion of the Ports Collection

|link:{freebsd-ports-announce-url}[freebsd-ports-announce]
|Important news and instructions about the Ports Collection (moderated)

|link:{freebsd-ports-bugs-url}[freebsd-ports-bugs]
|Discussion of the ports bugs/PRs

|link:{freebsd-ppc-url}[freebsd-ppc]
|Porting FreeBSD to the PowerPC(R)

|link:{freebsd-proliant-url}[freebsd-proliant]
|Technical discussion of FreeBSD on HP ProLiant server platforms

|link:{freebsd-python-url}[freebsd-python]
|FreeBSD-specific Python issues

|link:{freebsd-rc-url}[freebsd-rc]
|Discussion related to the [.filename]#rc.d# system and its development

|link:{freebsd-realtime-url}[freebsd-realtime]
|Development of realtime extensions to FreeBSD

|link:{freebsd-risc-url}[freebsd-risc]
|Porting FreeBSD to RISC-V(R) systems

|link:{freebsd-ruby-url}[freebsd-ruby]
|FreeBSD-specific Ruby discussions

|link:{freebsd-scsi-url}[freebsd-scsi]
|The SCSI subsystem

|link:{freebsd-security-url}[freebsd-security]
|Security issues affecting FreeBSD

|link:{freebsd-snapshots-url}[freebsd-snapshots]
|FreeBSD Development Snapshot Announcements

|link:{freebsd-sparc64-url}[freebsd-sparc64]
|Porting FreeBSD to SPARC(R) based systems

|link:{freebsd-standards-url}[freebsd-standards]
|FreeBSD's conformance to the C99 and the POSIX(R) standards

|link:{freebsd-sysinstall-url}[freebsd-sysinstall]
|man:sysinstall[8] development

|link:{freebsd-tcltk-url}[freebsd-tcltk]
|FreeBSD-specific Tcl/Tk discussions

|link:{freebsd-testing-url}[freebsd-testing]
|Testing on FreeBSD

|link:{freebsd-tex-url}[freebsd-tex]
|Porting TeX and its applications to FreeBSD

|link:{freebsd-threads-url}[freebsd-threads]
|Threading in FreeBSD

|link:{freebsd-tokenring-url}[freebsd-tokenring]
|Support Token Ring in FreeBSD

|link:{freebsd-toolchain-url}[freebsd-toolchain]
|Maintenance of FreeBSD's integrated toolchain

|link:{freebsd-translators-url}[freebsd-translators]
|Translating FreeBSD documents and programs

|link:{freebsd-transport-url}[freebsd-transport]
|Discussions of transport level network protocols in FreeBSD

|link:{freebsd-usb-url}[freebsd-usb]
|Discussing FreeBSD support for USB

|link:{freebsd-virtualization-url}[freebsd-virtualization]
|Discussion of various virtualization techniques supported by FreeBSD

|link:{freebsd-vuxml-url}[freebsd-vuxml]
|Discussion on VuXML infrastructure

|link:{freebsd-x11-url}[freebsd-x11]
|Maintenance and support of X11 on FreeBSD

|link:{freebsd-xen-url}[freebsd-xen]
|Discussion of the FreeBSD port to Xen(TM) - implementation and usage

|link:{freebsd-xfce-url}[freebsd-xfce]
|XFCE for FreeBSD - porting and maintaining

|link:{freebsd-zope-url}[freebsd-zope]
|Zope for FreeBSD - porting and maintaining
|===

_Limited lists:_ The following lists are for more specialized (and demanding) audiences and are probably not of interest to the general public.
It is also a good idea to establish a presence in the technical lists before joining one of these limited lists in order to understand the communications etiquette involved.

[.informaltable]
[cols="20%,80%", frame="none", options="header"]
|===
| List
| Purpose

|link:{freebsd-hubs-url}[freebsd-hubs]
|People running mirror sites (infrastructural support)

|link:{freebsd-user-groups-url}[freebsd-user-groups]
|User group coordination

|link:{freebsd-wip-status-url}[freebsd-wip-status]
|FreeBSD Work-In-Progress Status

|link:{freebsd-wireless-url}[freebsd-wireless]
|Discussions of 802.11 stack, tools, device driver development
|===

_Digest lists:_ All of the above lists are available in a digest format.
Once subscribed to a list, the digest options can be changed in the account options section.

_Commit message lists:_ The following lists are for people interested in seeing the log messages for changes to various areas of the source tree.

[.informaltable]
[cols="1,1,1", frame="none", options="header"]
|===
| List
| Source area
| Area Description (source for)


|{dev-commits-doc-all-url}[dev-commits-doc-all]
|[.filename]#/usr/doc#
|All changes to the doc repository

|{dev-commits-ports-all-url}[dev-commits-ports-all]
|[.filename]#/usr/ports#
|All changes to the ports repository

|{dev-commits-ports-main-url}[dev-commits-ports-main]
|[.filename]#/usr/ports#
|All changes to the "main" branch of the ports repository

|{dev-commits-ports-branches-url}[dev-commits-ports-branches]
|[.filename]#/usr/ports#
|All changes to the quarterly branches of the ports repository

|{dev-commits-src-all-url}[dev-commits-src-all]
|[.filename]#/usr/src#
|All changes to the src repository

|{dev-commits-src-main-url}[dev-commits-src-main]
|[.filename]#/usr/src#
|All changes to the "main" branch of the src repository (the FreeBSD-CURRENT branch)

|{dev-commits-src-branches-url}[dev-commits-src-branches]
|[.filename]#/usr/src#
|All changes to all stable branches of the src repository
|===

_SVN lists:_ The following lists are for people interested in seeing the SVN log messages for changes to various areas of the source tree.

[NOTE]
====
Only SVN log messages are sent to SVN lists.
After the SVN to Git Migration, the following lists no longer receive new commit messages and are unavailable for subscribing.
The lists' addresses are pointing to their respective archives.
====

[.informaltable]
[cols="20%,20%,60%", frame="none", options="header"]
|===
| List
| Source area
| Area Description (source for)

|link:{svn-doc-all-url}[svn-doc-all]
|[.filename]#/usr/doc#
|All changes to the doc Subversion repository (except for [.filename]#user#, [.filename]#projects# and [.filename]#translations#)

|link:{svn-doc-head-url}[svn-doc-head]
|[.filename]#/usr/doc#
|All changes to the "head" branch of the doc Subversion repository

|link:{svn-doc-projects-url}[svn-doc-projects]
|[.filename]#/usr/doc/projects#
|All changes to the [.filename]#projects# area of the doc Subversion repository

|link:{svn-doc-svnadmin-url}[svn-doc-svnadmin]
|[.filename]#/usr/doc#
|All changes to the administrative scripts, hooks, and other configuration data of the doc Subversion repository

|link:{svn-ports-all-url}[svn-ports-all]
|[.filename]#/usr/ports#
|All changes to the ports Subversion repository

|link:{svn-ports-head-url}[svn-ports-head]
|[.filename]#/usr/ports#
|All changes to the "head" branch of the ports Subversion repository

|link:{svn-ports-svnadmin-url}[svn-ports-svnadmin]
|[.filename]#/usr/ports#
|All changes to the administrative scripts, hooks, and other configuration data of the ports Subversion repository

|link:{svn-src-all-url}[svn-src-all]
|[.filename]#/usr/src#
|All changes to the src Subversion repository (except for [.filename]#user# and [.filename]#projects#)

|link:{svn-src-head-url}[svn-src-head]
|[.filename]#/usr/src#
|All changes to the "head" branch of the src Subversion repository (the FreeBSD-CURRENT branch)

|link:{svn-src-projects-url}[svn-src-projects]
|[.filename]#/usr/projects#
|All changes to the [.filename]#projects# area of the src Subversion repository

|link:{svn-src-release-url}[svn-src-release]
|[.filename]#/usr/src#
|All changes to the [.filename]#releases# area of the src Subversion repository

|link:{svn-src-releng-url}[svn-src-releng]
|[.filename]#/usr/src#
|All changes to the [.filename]#releng# branches of the src Subversion repository (the security / release engineering branches)

|link:{svn-src-stable-url}[svn-src-stable]
|[.filename]#/usr/src#
|All changes to the all stable branches of the src Subversion repository

|link:{svn-src-stable-6-url}[svn-src-stable-6]
|[.filename]#/usr/src#
|All changes to the [.filename]#stable/6# branch of the src Subversion repository

|link:{svn-src-stable-7-url}[svn-src-stable-7]
|[.filename]#/usr/src#
|All changes to the [.filename]#stable/7# branch of the src Subversion repository

|link:{svn-src-stable-8-url}[svn-src-stable-8]
|[.filename]#/usr/src#
|All changes to the [.filename]#stable/8# branch of the src Subversion repository

|link:{svn-src-stable-9-url}[svn-src-stable-9]
|[.filename]#/usr/src#
|All changes to the [.filename]#stable/9# branch of the src Subversion repository

|link:{svn-src-stable-10-url}[svn-src-stable-10]
|[.filename]#/usr/src#
|All changes to the [.filename]#stable/10# branch of the src Subversion repository

|link:{svn-src-stable-11-url}[svn-src-stable-11]
|[.filename]#/usr/src#
|All changes to the [.filename]#stable/11# branch of the src Subversion repository

|link:{svn-src-stable-12-url}[svn-src-stable-12]
|[.filename]#/usr/src#
|All changes to the [.filename]#stable/12# branch of the src Subversion repository

|link:{svn-src-stable-other-url}[svn-src-stable-other]
|[.filename]#/usr/src#
|All changes to the older [.filename]#stable# branches of the src Subversion repository

|link:{svn-src-svnadmin-url}[svn-src-svnadmin]
|[.filename]#/usr/src#
|All changes to the administrative scripts, hooks, and other configuration data of the src Subversion repository

|link:{svn-src-user-url}[svn-src-user]
|[.filename]#/usr/src#
|All changes to the experimental [.filename]#user# area of the src Subversion repository

|link:{svn-src-vendor-url}[svn-src-vendor]
|[.filename]#/usr/src#
|All changes to the vendor work area of the src Subversion repository
|===

[[eresources-subscribe]]
=== How to Subscribe

To subscribe to a list, click the list name at {mailing-lists-url}.
The page that is displayed should contain all of the necessary subscription instructions for that list.

To actually post to a given list, send mail to mailto:listname@FreeBSD.org[listname@FreeBSD.org].
It will then be redistributed to mailing list members world-wide.

To unsubscribe from a list, click on the URL found at the bottom of every email received from the list.
It is also possible to send an email to mailto:listname+unsubscribe@FreeBSD.org[listname+unsubscribe@FreeBSD.org] to unsubscribe.

It is important to keep discussion in the technical mailing lists on a technical track.
To only receive important announcements, instead join the {freebsd-announce}, which is intended for infrequent traffic.

[[eresources-charters]]
=== List Charters

_All_ FreeBSD mailing lists have certain basic rules which must be adhered to by anyone using them.
Failure to comply with these guidelines will result in two (2) written warnings from the FreeBSD Postmaster mailto:postmaster@FreeBSD.org[postmaster@FreeBSD.org], after which, on a third offense, the poster will removed from all FreeBSD mailing lists and filtered from further posting to them.
We regret that such rules and measures are necessary at all, but today's Internet is a pretty harsh environment, it would seem, and many fail to appreciate just how fragile some of its mechanisms are.

Rules of the road:

* The topic of any posting should adhere to the basic charter of the list it is posted to. If the list is about technical issues, the posting should contain technical discussion. Ongoing irrelevant chatter or flaming only detracts from the value of the mailing list for everyone on it and will not be tolerated. For free-form discussion on no particular topic, the {freebsd-chat} is freely available and should be used instead.
* No posting should be made to more than 2 mailing lists, and only to 2 when a clear and obvious need to post to both lists exists. For most lists, there is already a great deal of subscriber overlap and except for the most esoteric mixes (say "-stable & -scsi"), there really is no reason to post to more than one list at a time. If a message is received with multiple mailing lists on the `Cc` line, trim the `Cc` line before replying. _The person who replies is still responsible for cross-posting, no matter who the originator might have been._
* Personal attacks and profanity (in the context of an argument) are not allowed, and that includes users and developers alike. Gross breaches of netiquette, like excerpting or reposting private mail when permission to do so was not and would not be forthcoming, are frowned upon but not specifically enforced. _However_, there are also very few cases where such content would fit within the charter of a list and it would therefore probably rate a warning (or ban) on that basis alone.
* Advertising of non-FreeBSD related products or services is strictly prohibited and will result in an immediate ban if it is clear that the offender is advertising by spam.

_Individual list charters:_

link:{freebsd-acpi-url}[freebsd-acpi]::
_ACPI and power management development_

link:{freebsd-announce-url}[freebsd-announce]::
_Important events / milestones_
+
This is the mailing list for people interested only in occasional announcements of significant FreeBSD events.
This includes announcements about snapshots and other releases.
It contains announcements of new FreeBSD capabilities.
It may contain calls for volunteers etc.
This is a low volume, strictly moderated mailing list.

link:{freebsd-arch-url}[freebsd-arch]::
_Architecture and design discussions_
+
This list is for discussion of the FreeBSD architecture.
Messages will mostly be kept strictly technical in nature.
Examples of suitable topics are:

** How to re-vamp the build system to have several customized builds running at the same time.
** What needs to be fixed with VFS to make Heidemann layers work.
** How do we change the device driver interface to be able to use the same drivers cleanly on many buses and architectures.
** How to write a network driver.

link:{freebsd-bluetooth-url}[freebsd-bluetooth]::
_Bluetooth(R) in FreeBSD_
+
This is the forum where FreeBSD's Bluetooth(R) users congregate.
Design issues, implementation details, patches, bug reports, status reports, feature requests, and all matters related to Bluetooth(R) are fair game.

link:{freebsd-bugbusters-url}[freebsd-bugbusters]::
_Coordination of the Problem Report handling effort_
+
The purpose of this list is to serve as a coordination and discussion forum for the Bugmeister, his Bugbusters, and any other parties who have a genuine interest in the PR database.
This list is not for discussions about specific bugs, patches or PRs.

link:{freebsd-bugs-url}[freebsd-bugs]::
_Bug reports_
+
This is the mailing list for reporting bugs in FreeBSD.
Whenever possible, bugs should be submitted using the https://bugs.freebsd.org/bugzilla/enter_bug.cgi[web interface] to it.

link:{freebsd-chat-url}[freebsd-chat]::
_Non technical items related to the FreeBSD community_
+
This list contains the overflow from the other lists about non-technical, social information.
It includes discussion about whether Jordan looks like a toon ferret or not, whether or not to type in capitals, who is drinking too much coffee, where the best beer is brewed, who is brewing beer in their basement, and so on.
Occasional announcements of important events (such as upcoming parties, weddings, births, new jobs, etc) can be made to the technical lists, but the follow ups should be directed to this -chat list.

link:{freebsd-chromium-url}[freebsd-chromium]::
_FreeBSD-specific Chromium issues_
+
This is a list for the discussion of Chromium support for FreeBSD. This is a technical list to discuss development and installation of Chromium.

link:{freebsd-cloud-url}[freebsd-cloud]::
_Running FreeBSD on various cloud platforms_
+
This list discusses running FreeBSD on Amazon EC2, Google Compute Engine, Microsoft Azure, and other cloud computing platforms.

_FreeBSD core team_::
This is an internal mailing list for use by the core members.
Messages can be sent to it when a serious FreeBSD-related matter requires arbitration or high-level scrutiny.

link:{freebsd-current-url}[freebsd-current]::
_Discussions about the use of FreeBSD-CURRENT_
+
This is the mailing list for users of FreeBSD-CURRENT.
It includes warnings about new features coming out in -CURRENT that will affect the users, and instructions on steps that must be taken to remain -CURRENT.
Anyone running "CURRENT" must subscribe to this list.
This is a technical mailing list for which strictly technical content is expected.

link:{freebsd-desktop-url}[freebsd-desktop]::
_Using and improving FreeBSD on the desktop_
+
This is a forum for discussion of FreeBSD on the desktop.
It is primarily a place for desktop porters and users to discuss issues and improve FreeBSD's desktop support.

link:{dev-ci-url}[dev-ci]::
_Continuous Integration reports of build and test results_
+
All Continuous Integration reports of build and test results

link:{dev-reviews-url}[dev-reviews]::
_Notifications of work in progress in FreeBSD's review tool_
+
Automated notifications of work in progress for review in FreeBSD's review tools, including patches.

link:{freebsd-doc-url}[freebsd-doc]::
_Documentation Project_
+
This mailing list is for the discussion of issues and projects related to the creation of documentation for FreeBSD.
The members of this mailing list are collectively referred to as "The FreeBSD Documentation Project".
It is an open list; feel free to join and contribute!

link:{freebsd-drivers-url}[freebsd-drivers]::
_Writing device drivers for FreeBSD_
+
This is a forum for technical discussions related to device drivers on FreeBSD.
It is primarily a place for device driver writers to ask questions about how to write device drivers using the APIs in the FreeBSD kernel.

link:{freebsd-dtrace-url}[freebsd-dtrace]::
_Using and working on DTrace in FreeBSD_
+
DTrace is an integrated component of FreeBSD that provides a framework for understanding the kernel as well as user space programs at run time.
The mailing list is an archived discussion for developers of the code as well as those using it.

link:{freebsd-eclipse-url}[freebsd-eclipse]::
_FreeBSD users of Eclipse IDE, tools, rich client applications and ports._
+
The intention of this list is to provide mutual support for everything to do with choosing, installing, using, developing and maintaining the Eclipse IDE, tools, rich client applications on the FreeBSD platform and assisting with the porting of Eclipse IDE and plugins to the FreeBSD environment.
+
The intention is also to facilitate exchange of information between the Eclipse community and the FreeBSD community to the mutual benefit of both.
+
Although this list is focused primarily on the needs of Eclipse users it will also provide a forum for those who would like to develop FreeBSD specific applications using the Eclipse framework.

link:{freebsd-embedded-url}[freebsd-embedded]::
_Using FreeBSD in embedded applications_
+
This list discusses topics related to using FreeBSD in embedded systems.
This is a technical mailing list for which strictly technical content is expected.
For the purpose of this list, embedded systems are those computing devices which are not desktops and which usually serve a single purpose as opposed to being general computing environments.
Examples include, but are not limited to, all kinds of phone handsets, network equipment such as routers, switches and PBXs, remote measuring equipment, PDAs, Point Of Sale systems, and so on.

link:{freebsd-emulation-url}[freebsd-emulation]::
_Emulation of other systems such as Linux/MS-DOS(R)/Windows(R)_
+
This is a forum for technical discussions related to running programs written for other operating systems on FreeBSD.

link:{freebsd-enlightenment-url}[freebsd-enlightenment]::
_Enlightenment_
+
Discussions concerning the Enlightenment Desktop Environment for FreeBSD systems.
This is a technical mailing list for which strictly technical content is expected.

link:{freebsd-firewire-url}[freebsd-firewire]::
_FireWire(R) (iLink, IEEE 1394)_
+
This is a mailing list for discussion of the design and implementation of a FireWire(R) (aka IEEE 1394 aka iLink) subsystem for FreeBSD.
Relevant topics specifically include the standards, bus devices and their protocols, adapter boards/cards/chips sets, and the architecture and implementation of code for their proper support.

link:{freebsd-fortran-url}[freebsd-fortran]::
_Fortran on FreeBSD_
+
This is the mailing list for discussion of Fortran related ports on FreeBSD: compilers, libraries, scientific and engineering applications from laptops to HPC clusters.

link:{freebsd-fs-url}[freebsd-fs]::
_File systems_
+
Discussions concerning FreeBSD filesystems.
This is a technical mailing list for which strictly technical content is expected.

link:{freebsd-games-url}[freebsd-games]::
_Games on FreeBSD_
+
This is a technical list for discussions related to bringing games to FreeBSD.
It is for individuals actively working on porting games to FreeBSD, to bring up problems or discuss alternative solutions.
Individuals interested in following the technical discussion are also welcome.

link:{freebsd-gecko-url}[freebsd-gecko]::
_Gecko Rendering Engine_
+
This is a forum about Gecko applications using FreeBSD.
+
Discussion centers around Gecko Ports applications, their installation, their development and their support within FreeBSD.

link:{freebsd-geom-url}[freebsd-geom]::
_GEOM_
+
Discussions specific to GEOM and related implementations.
This is a technical mailing list for which strictly technical content is expected.

link:{freebsd-git-url}[freebsd-git]::
_Use of git in the FreeBSD project_
+
Discussions of how to use git in FreeBSD infrastructure including the github mirror and other uses of git for project collaboration.
Discussion area for people using git against the FreeBSD github mirror.
People wanting to get started with the mirror or git in general on FreeBSD can ask here.

link:{freebsd-gnome-url}[freebsd-gnome]::
_GNOME_
+
Discussions concerning The GNOME Desktop Environment for FreeBSD systems.
This is a technical mailing list for which strictly technical content is expected.

link:{freebsd-infiniband-url}[freebsd-infiniband]::
_Infiniband on FreeBSD_
+
Technical mailing list discussing Infiniband, OFED, and OpenSM on FreeBSD.

link:{freebsd-ipfw-url}[freebsd-ipfw]::
_IP Firewall_
+
This is the forum for technical discussions concerning the redesign of the IP firewall code in FreeBSD.
This is a technical mailing list for which strictly technical content is expected.

link:{freebsd-isdn-url}[freebsd-isdn]::
_ISDN Communications_
+
This is the mailing list for people discussing the development of ISDN support for FreeBSD.

link:{freebsd-java-url}[freebsd-java]::
_Java(TM) Development_
+
This is the mailing list for people discussing the development of significant Java(TM) applications for FreeBSD and the porting and maintenance of JDK(TM)s.

[[eresources-charters-jobs]]
link:{freebsd-jobs-url}[freebsd-jobs]::
_Jobs offered and sought_
+
This is a forum for posting employment notices specifically related to FreeBSD and resumes from those seeking FreeBSD-related employment.
This is _not_ a mailing list for general employment issues since adequate forums for that already exist elsewhere.
+
Note that this list, like other `FreeBSD.org` mailing lists, is distributed worldwide.
Be clear about the geographic location and the extent to which telecommuting or assistance with relocation is available.
+
Email should use open formats only - preferably plain text, but basic Portable Document Format (PDF), HTML, and a few others are acceptable to many readers.
Closed formats such as Microsoft(R) Word ([.filename]#.doc#) will be rejected by the mailing list server.

link:{freebsd-kde-url}[freebsd-kde]::
_KDE_
+
Discussions concerning KDE on FreeBSD systems.
This is a technical mailing list for which strictly technical content is expected.

link:{freebsd-hackers-url}[freebsd-hackers]::
_Technical discussions_
+
This is a forum for technical discussions related to FreeBSD.
This is the primary technical mailing list.
It is for individuals actively working on FreeBSD, to bring up problems or discuss alternative solutions.
Individuals interested in following the technical discussion are also welcome.
This is a technical mailing list for which strictly technical content is expected.

link:{freebsd-hardware-url}[freebsd-hardware]::
_General discussion of FreeBSD hardware_
+
General discussion about the types of hardware that FreeBSD runs on, various problems and suggestions concerning what to buy or avoid.

link:{freebsd-hubs-url}[freebsd-hubs]::
_Mirror sites_
+
Announcements and discussion for people who run FreeBSD mirror sites.

link:{freebsd-isp-url}[freebsd-isp]::
_Issues for Internet Service Providers_
+
This mailing list is for discussing topics relevant to Internet Service Providers (ISPs) using FreeBSD.
This is a technical mailing list for which strictly technical content is expected.

link:{freebsd-mono-url}[freebsd-mono]::
_Mono and C# applications on FreeBSD_
+
This is a list for discussions related to the Mono development framework on FreeBSD. This is a technical mailing list. It is for individuals actively working on porting Mono or C# applications to FreeBSD, to bring up problems or discuss alternative solutions. Individuals interested in following the technical discussion are also welcome.

link:{freebsd-ocaml-url}[freebsd-ocaml]::
_FreeBSD-specific OCaml discussions_
+
This is a list for discussions related to the OCaml support on FreeBSD.
This is a technical mailing list.
It is for individuals working on OCaml ports, 3rd party libraries and frameworks.
Individuals interested in the technical discussion are also welcome.

link:{freebsd-office-url}[freebsd-office]::
_Office applications on FreeBSD_
+
Discussion centers around office applications, their installation, their development and their support within FreeBSD.

link:{freebsd-ops-announce-url}[freebsd-ops-announce]::
_Project Infrastructure Announcements_
+
This is the mailing list for people interested in changes and issues related to the FreeBSD.org Project infrastructure.
+
This moderated list is strictly for announcements: no replies, requests, discussions, or opinions.

link:{freebsd-performance-url}[freebsd-performance]::
_Discussions about tuning or speeding up FreeBSD_
+
This mailing list exists to provide a place for hackers, administrators, and/or concerned parties to discuss performance related topics pertaining to FreeBSD.
Acceptable topics includes talking about FreeBSD installations that are either under high load, are experiencing performance problems, or are pushing the limits of FreeBSD.
Concerned parties that are willing to work toward improving the performance of FreeBSD are highly encouraged to subscribe to this list.
This is a highly technical list ideally suited for experienced FreeBSD users, hackers, or administrators interested in keeping FreeBSD fast, robust, and scalable.
This list is not a question-and-answer list that replaces reading through documentation, but it is a place to make contributions or inquire about unanswered performance related topics.

link:{freebsd-pf-url}[freebsd-pf]::
_Discussion and questions about the packet filter firewall system_
+
Discussion concerning the packet filter (pf) firewall system in terms of FreeBSD.
Technical discussion and user questions are both welcome.
This list is also a place to discuss the ALTQ QoS framework.

link:{freebsd-pkg-url}[freebsd-pkg]::
_Binary package management and package tools discussion_
+
Discussion of all aspects of managing FreeBSD systems by using binary packages to install software, including binary package toolkits and formats, their development and support within FreeBSD, package repository management, and third party packages.
+
Note that discussion of ports which fail to generate packages correctly should generally be considered as ports problems, and so inappropriate for this list.

link:{freebsd-pkg-fallout-url}[freebsd-pkg-fallout]::
_Fallout logs from package building_
+
All packages building failures logs from the package building clusters

link:{freebsd-pkgbase-url}[freebsd-pkgbase]::
_Packaging the FreeBSD base system._
+
Discussions surrounding implementation and issues regarding packaging the FreeBSD base system.

link:{freebsd-platforms-url}[freebsd-platforms]::
_Porting to Non Intel(R) platforms_
+
Cross-platform FreeBSD issues, general discussion and proposals for non Intel(R) FreeBSD ports.
This is a technical mailing list for which strictly technical content is expected.

link:{freebsd-ports-url}[freebsd-ports]::
_Discussion of "ports"_
+
Discussions concerning FreeBSD's "ports collection" ([.filename]#/usr/ports#), ports infrastructure, and general ports coordination efforts.
This is a technical mailing list for which strictly technical content is expected.

link:{freebsd-ports-announce-url}[freebsd-ports-announce]::
_Important news and instructions about the FreeBSD "Ports Collection"_
+
Important news for developers, porters, and users of the "Ports Collection" ([.filename]#/usr/ports#), including architecture/infrastructure changes, new capabilities, critical upgrade instructions, and release engineering information.
This is a low-volume mailing list, intended for announcements.

link:{freebsd-ports-bugs-url}[freebsd-ports-bugs]::
_Discussion of "ports" bugs_
+
Discussions concerning problem reports for FreeBSD's "ports collection" ([.filename]#/usr/ports#), proposed ports, or modifications to ports.
This is a technical mailing list for which strictly technical content is expected.

link:{freebsd-proliant-url}[freebsd-proliant]::
_Technical discussion of FreeBSD on HP ProLiant server platforms_
+
This mailing list is to be used for the technical discussion of the usage of FreeBSD on HP ProLiant servers, including the discussion of ProLiant-specific drivers, management software, configuration tools, and BIOS updates.
As such, this is the primary place to discuss the hpasmd, hpasmcli, and hpacucli modules.

link:{freebsd-python-url}[freebsd-python]::
_Python on FreeBSD_
+
This is a list for discussions related to improving Python-support on FreeBSD.
This is a technical mailing list.
It is for individuals working on porting Python, its third party modules and Zope stuff to FreeBSD.
Individuals interested in following the technical discussion are also welcome.

link:{freebsd-questions-url}[freebsd-questions]::
_User questions_
+
This is the mailing list for questions about FreeBSD.
Do not send "how to" questions to the technical lists unless the question is quite technical.

link:{freebsd-ruby-url}[freebsd-ruby]::
_FreeBSD-specific Ruby discussions_
+
This is a list for discussions related to the Ruby support on FreeBSD.
This is a technical mailing list.
It is for individuals working on Ruby ports, third party libraries and frameworks.
+
Individuals interested in the technical discussion are also welcome.

link:{freebsd-scsi-url}[freebsd-scsi]::
_SCSI subsystem_
+
This is the mailing list for people working on the SCSI subsystem for FreeBSD.
This is a technical mailing list for which strictly technical content is expected.

link:{freebsd-security-url}[freebsd-security]::
_Security issues_
+
FreeBSD computer security issues (DES, Kerberos, known security holes and fixes, etc).
This is a technical mailing list for which strictly technical discussion is expected.
Note that this is not a question-and-answer list, but that contributions (BOTH question AND answer) to the FAQ are welcome.

link:{freebsd-security-notifications-url}[freebsd-security-notifications]::
_Security Notifications_
+
Notifications of FreeBSD security problems and fixes.
This is not a discussion list.
The discussion list is FreeBSD-security.

link:{freebsd-snapshots-url}[freebsd-snapshots]::
_FreeBSD Development Snapshot Announcements_
+
This list provides notifications about the availability of new FreeBSD development snapshots for the head/ and stable/ branches.

link:{freebsd-stable-url}[freebsd-stable]::
_Discussions about the use of FreeBSD-STABLE_
+
This is the mailing list for users of FreeBSD-STABLE.
"STABLE" is the branch where development continues after a RELEASE, including bug fixes and new features.
The ABI is kept stable for binary compatibility.
It includes warnings about new features coming out in -STABLE that will affect the users, and instructions on steps that must be taken to remain -STABLE. 
Anyone running "STABLE" should subscribe to this list.
This is a technical mailing list for which strictly technical content is expected.

link:{freebsd-standards-url}[freebsd-standards]::
_C99 POSIX Conformance_
+
This is a forum for technical discussions related to FreeBSD Conformance to the C99 and the POSIX standards.

link:{freebsd-teaching-url}[freebsd-teaching]::
_Teaching with FreeBSD_
+
Non technical mailing list discussing teaching with FreeBSD.

link:{freebsd-testing-url}[freebsd-testing]::
_Testing on FreeBSD_
+
Technical mailing list discussing testing on FreeBSD, including ATF/Kyua, test build infrastructure, port tests to FreeBSD from other operating systems (NetBSD, ...), etc.

link:{freebsd-tex-url}[freebsd-tex]::
_Porting TeX and its applications to FreeBSD_
+
This is a technical mailing list for discussions related to TeX and its applications on FreeBSD.
It is for individuals actively working on porting TeX to FreeBSD, to bring up problems or discuss alternative solutions.
Individuals interested in following the technical discussion are also welcome.

link:{freebsd-toolchain-url}[freebsd-toolchain]::
_Maintenance of FreeBSD's integrated toolchain_
+
This is the mailing list for discussions related to the maintenance of the toolchain shipped with FreeBSD.
This could include the state of Clang and GCC, but also pieces of software such as assemblers, linkers and debuggers.

link:{freebsd-transport-url}[freebsd-transport]::
_Discussions of transport level network protocols in FreeBSD_
+
The transport mailing list exists for the discussion of issues and designs around the transport level protocols in the FreeBSD network stack, including TCP, SCTP and UDP.
Other networking topics, including driver specific and network protocol issues should be discussed on the {freebsd-net}.

link:{freebsd-translators-url}[freebsd-translators]::
_Translating FreeBSD documents and programs_
+
A discussion list where translators of FreeBSD documents from English into other languages can talk about translation methods and tools.
New members are asked to introduce themselves and mention the languages they are interested in translating.

link:{freebsd-usb-url}[freebsd-usb]::
_Discussing FreeBSD support for USB_
+
This is a mailing list for technical discussions related to FreeBSD support for USB.

link:{freebsd-user-groups-url}[freebsd-user-groups]::
_User Group Coordination List_
+
This is the mailing list for the coordinators from each of the local area Users Groups to discuss matters with each other and a designated individual from the Core Team.
This mail list should be limited to meeting synopsis and coordination of projects that span User Groups.

link:{freebsd-virtualization-url}[freebsd-virtualization]::
_Discussion of various virtualization techniques supported by FreeBSD_
+
A list to discuss the various virtualization techniques supported by FreeBSD.
On one hand the focus will be on the implementation of the basic functionality as well as adding new features.
On the other hand users will have a forum to ask for help in case of problems or to discuss their use cases.

link:{freebsd-wip-status-url}[freebsd-wip-status]::
_FreeBSD Work-In-Progress Status_
+
This mailing list can be used by developers to announce the creation and progress of FreeBSD related work.
Messages will be moderated. It is suggested to send the message "To:" a more topical FreeBSD list and only "BCC:" this list.
This way the WIP can also be discussed on the topical list, as no discussion is allowed on this list.
+
Look inside the archives for examples of suitable messages.
+
An editorial digest of the messages to this list might be posted to the FreeBSD website every few months as part of the Status Reports footnote:[https://www.freebsd.org/news/status/].
Past reports are archived.

link:{freebsd-wireless-url}[freebsd-wireless]::
_Discussions of 802.11 stack, tools device driver development_
+
The FreeBSD-wireless list focuses on 802.11 stack (sys/net80211), device driver and tools development.
This includes bugs, new features and maintenance.

link:{freebsd-xen-url}[freebsd-xen]::
_Discussion of the FreeBSD port to Xen(TM) - implementation and usage_
+
A list that focuses on the FreeBSD Xen(TM) port.
The anticipated traffic level is small enough that it is intended as a forum for both technical discussions of the implementation and design details as well as administrative deployment issues.

link:{freebsd-xfce-url}[freebsd-xfce]::
_XFCE_
+
This is a forum for discussions related to bring the XFCE environment to FreeBSD.
This is a technical mailing list.
It is for individuals actively working on porting XFCE to FreeBSD, to bring up problems or discuss alternative solutions.
Individuals interested in following the technical discussion are also welcome.

link:{freebsd-zope-url}[freebsd-zope]::
_Zope_
+
This is a forum for discussions related to bring the Zope environment to FreeBSD.
This is a technical mailing list.
It is for individuals actively working on porting Zope to FreeBSD, to bring up problems or discuss alternative solutions.
Individuals interested in following the technical discussion are also welcome.

[[eresources-mailfiltering]]
=== Filtering on the Mailing Lists

The FreeBSD mailing lists are filtered in multiple ways to avoid the distribution of spam, viruses, and other unwanted emails.
The filtering actions described in this section do not include all those used to protect the mailing lists.

Only certain types of attachments are allowed on the mailing lists.
All attachments with a MIME content type not found in the list below will be stripped before an email is distributed on the mailing lists.

* application/octet-stream
* application/pdf
* application/pgp-signature
* application/x-pkcs7-signature
* message/rfc822
* multipart/alternative
* multipart/related
* multipart/signed
* text/html
* text/plain
* text/x-diff
* text/x-patch

[NOTE]
====
Some of the mailing lists might allow attachments of other MIME content types, but the above list should be applicable for most of the mailing lists.
====

If an email contains both an HTML and a plain text version, the HTML version will be removed.
If an email contains only an HTML version, it will be converted to plain text.

[[eresources-news]]
== Usenet Newsgroups

In addition to two FreeBSD specific newsgroups, there are many others in which FreeBSD is discussed or are otherwise relevant to FreeBSD users.

=== BSD Specific Newsgroups

* link:news:comp.unix.bsd.freebsd.announce[comp.unix.bsd.freebsd.announce]
* link:news:comp.unix.bsd.freebsd.misc[comp.unix.bsd.freebsd.misc]
* link:news:de.comp.os.unix.bsd[de.comp.os.unix.bsd] (German)
* link:news:fr.comp.os.bsd[fr.comp.os.bsd] (French)

=== Other UNIX(R) Newsgroups of Interest

* link:news:comp.unix[comp.unix]
* link:news:comp.unix.questions[comp.unix.questions]
* link:news:comp.unix.admin[comp.unix.admin]
* link:news:comp.unix.programmer[comp.unix.programmer]
* link:news:comp.unix.shell[comp.unix.shell]
* link:news:comp.unix.misc[comp.unix.misc]
* link:news:comp.unix.bsd[comp.unix.bsd]

=== X Window System

* link:news:comp.windows.x[comp.windows.x]

[[eresources-web]]
== Official Mirrors

<<central-mirrors, {central}>>, <<armenia-mirrors, {mirrors-armenia}>>, <<australia-mirrors, {mirrors-australia}>>, <<austria-mirrors, {mirrors-austria}>>, <<czech-republic-mirrors, {mirrors-czech}>>, <<denmark-mirrors, {mirrors-denmark}>>, <<finland-mirrors, {mirrors-finland}>>, <<france-mirrors, {mirrors-france}>>, <<germany-mirrors, {mirrors-germany}>>, <<hong-kong-mirrors, {mirrors-hongkong}>>, <<ireland-mirrors, {mirrors-ireland}>>, <<japan-mirrors, {mirrors-japan}>>, <<latvia-mirrors, {mirrors-latvia}>>, <<lithuania-mirrors, {mirrors-lithuania}>>, <<netherlands-mirrors, {mirrors-netherlands}>>, <<norway-mirrors, {mirrors-norway}>>, <<russia-mirrors, {mirrors-russia}>>, <<slovenia-mirrors, {mirrors-slovenia}>>, <<south-africa-mirrors, {mirrors-south-africa}>>, <<spain-mirrors, {mirrors-spain}>>, <<sweden-mirrors, {mirrors-sweden}>>, <<switzerland-mirrors, {mirrors-switzerland}>>, <<taiwan-mirrors, {mirrors-taiwan}>>, <<uk-mirrors, {mirrors-uk}>>, <<usa-mirrors, {mirrors-us}>>.

[[central-mirrors]]
*{central}*

* {central-www}

[[armenia-mirrors]]
*{mirrors-armenia}*

* {mirrors-armenia-www-httpv6} (IPv6)

[[australia-mirrors]]
*{mirrors-australia}*

* {mirrors-australia-www-http}
* {mirrors-australia-www2-http}

[[austria-mirrors]]
*{mirrors-austria}*

* {mirrors-armenia-www-httpv6} (IPv6)

[[czech-republic-mirrors]]
*{mirrors-czech}*

* {mirrors-czech-www-httpv6} (IPv6)

[[denmark-mirrors]]
*{mirrors-denmark}*

* {mirrors-denmark-www-httpv6} (IPv6)

[[finland-mirrors]]
*{mirrors-finland}*

* {mirrors-finland-www-http}

[[france-mirrors]]
*{mirrors-france}*

* {mirrors-france-www-http}

[[germany-mirrors]]
*{mirrors-germany}*

* {mirrors-germany-www-http}

[[hong-kong-mirrors]]
*{mirrors-hongkong}*

* {mirrors-hongkong-www}

[[ireland-mirrors]]
*{mirrors-ireland}*

* {mirrors-ireland-www} 

[[japan-mirrors]]
*{mirrors-japan}*

* {mirrors-japan-www-httpv6} (IPv6)

[[latvia-mirrors]]
*{mirrors-latvia}*

* {mirrors-latvia-www} 

[[lithuania-mirrors]]
*{mirrors-lithuania}*

* {mirrors-lithuania-www} 

[[netherlands-mirrors]]
*{mirrors-netherlands}*

* {mirrors-netherlands-www} 

[[norway-mirrors]]
*{mirrors-norway}*

* {mirrors-norway-www} 

[[russia-mirrors]]
*{mirrors-russia}*

* {mirrors-russia-www-httpv6} (IPv6)

[[slovenia-mirrors]]
*{mirrors-slovenia}*

* {mirrors-slovenia-www} 

[[south-africa-mirrors]]
*{mirrors-south-africa}*

* {mirrors-south-africa-www}

[[spain-mirrors]]
*{mirrors-spain}*

* {mirrors-spain-www}
* {mirrors-spain-www2}

[[sweden-mirrors]]
*{mirrors-sweden}*

* {mirrors-sweden-www}

[[switzerland-mirrors]]
*{mirrors-switzerland}*

* {mirrors-switzerland-www-httpv6} (IPv6)
* {mirrors-switzerland-www2-httpv6} (IPv6)

[[taiwan-mirrors]]
*{mirrors-taiwan}*

* {mirrors-taiwan-www}
* {mirrors-taiwan-www2}
* {mirrors-taiwan-www4}
* {mirrors-taiwan-www5-httpv6} (IPv6)

[[uk-mirrors]]
*{mirrors-uk}*

* {mirrors-uk-www}
* {mirrors-uk-www3}

[[usa-mirrors]]
*{mirrors-us}*

* {mirrors-us-www5-httpv6} (IPv6)

:sectnums:
:sectnumlevels: 6