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
|
# $NetBSD: mi,v 1.188 2014/01/02 18:04:28 tho Exp $
#
# Note: don't delete entries from here - mark them as "obsolete" instead.
#
./etc/mtree/set.misc misc-sys-root
./usr/share/dict/README misc-reference-share share
./usr/share/dict/american misc-reference-share share
./usr/share/dict/british misc-reference-share share
./usr/share/dict/eign misc-reference-share share,groff
./usr/share/dict/propernames misc-reference-share share
./usr/share/dict/special/math misc-reference-share share
./usr/share/dict/special/netbsd misc-reference-share share
./usr/share/dict/stop misc-reference-share share
./usr/share/dict/web2 misc-reference-share share
./usr/share/dict/web2a misc-reference-share share
./usr/share/dict/words misc-reference-share share
./usr/share/doc/atf misc-atf-doc
./usr/share/doc/atf/AUTHORS misc-atf-doc doc,atf
./usr/share/doc/atf/COPYING misc-atf-doc doc,atf
./usr/share/doc/atf/NEWS misc-atf-doc doc,atf
./usr/share/doc/atf/README misc-atf-doc doc,atf
./usr/share/doc/atf/ROADMAP misc-obsolete obsolete
./usr/share/doc/html/bind9/arm/Bv9ARM.ch01.html misc-bind-htmldoc doc
./usr/share/doc/html/bind9/arm/Bv9ARM.ch02.html misc-bind-htmldoc doc
./usr/share/doc/html/bind9/arm/Bv9ARM.ch03.html misc-bind-htmldoc doc
./usr/share/doc/html/bind9/arm/Bv9ARM.ch04.html misc-bind-htmldoc doc
./usr/share/doc/html/bind9/arm/Bv9ARM.ch05.html misc-bind-htmldoc doc
./usr/share/doc/html/bind9/arm/Bv9ARM.ch06.html misc-bind-htmldoc doc
./usr/share/doc/html/bind9/arm/Bv9ARM.ch07.html misc-bind-htmldoc doc
./usr/share/doc/html/bind9/arm/Bv9ARM.ch08.html misc-bind-htmldoc doc
./usr/share/doc/html/bind9/arm/Bv9ARM.ch09.html misc-bind-htmldoc doc
./usr/share/doc/html/bind9/arm/Bv9ARM.html misc-bind-htmldoc doc
./usr/share/doc/html/bzip2/manual.html misc-util-htmldoc share
./usr/share/doc/html/bzip2/manual_1.html misc-obsolete obsolete
./usr/share/doc/html/bzip2/manual_2.html misc-obsolete obsolete
./usr/share/doc/html/bzip2/manual_3.html misc-obsolete obsolete
./usr/share/doc/html/bzip2/manual_4.html misc-obsolete obsolete
./usr/share/doc/html/bzip2/manual_toc.html misc-obsolete obsolete
./usr/share/doc/html/ntp misc-ntp-htmldoc
./usr/share/doc/html/ntp/Oncore-SHMEM.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/accopt.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/accopt.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/assoc.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/assoc.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/audio.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/audio.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/authopt.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/authopt.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/biblio.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/bugs.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/build misc-obsolete
./usr/share/doc/html/ntp/build.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/build.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/build/build.html misc-obsolete obsolete
./usr/share/doc/html/ntp/build/config.html misc-obsolete obsolete
./usr/share/doc/html/ntp/build/hints.html misc-obsolete obsolete
./usr/share/doc/html/ntp/build/patches.html misc-obsolete obsolete
./usr/share/doc/html/ntp/build/porting.html misc-obsolete obsolete
./usr/share/doc/html/ntp/build/quick.html misc-obsolete obsolete
./usr/share/doc/html/ntp/build/scripts misc-obsolete obsolete
./usr/share/doc/html/ntp/build/scripts/footer.txt misc-obsolete obsolete
./usr/share/doc/html/ntp/build/scripts/links10.txt misc-obsolete obsolete
./usr/share/doc/html/ntp/build/scripts/links11.txt misc-obsolete obsolete
./usr/share/doc/html/ntp/build/scripts/links12.txt misc-obsolete obsolete
./usr/share/doc/html/ntp/build/scripts/links7.txt misc-obsolete obsolete
./usr/share/doc/html/ntp/build/scripts/links8.txt misc-obsolete obsolete
./usr/share/doc/html/ntp/build/scripts/links9.txt misc-obsolete obsolete
./usr/share/doc/html/ntp/build/scripts/style.css misc-obsolete obsolete
./usr/share/doc/html/ntp/clockopt.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/clockopt.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/comdex.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/config.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/config.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/confopt.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/confopt.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/copyright.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/copyright.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/debug.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/debug.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/decode.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/driver1.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/driver10.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/driver11.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/driver12.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/driver16.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/driver18.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/driver19.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/driver2.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/driver20.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/driver22.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/driver23.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/driver24.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/driver26.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/driver27.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/driver28.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/driver29.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/driver3.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/driver30.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/driver32.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/driver33.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/driver34.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/driver35.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/driver36.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/driver37.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/driver4.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/driver5.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/driver6.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/driver7.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/driver8.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/driver9.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/drivers misc-ntp-htmldoc
./usr/share/doc/html/ntp/drivers/driver1.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/driver10.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/driver11.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/driver12.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/driver16.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/driver18.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/driver19.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/driver2.html misc-obsolete obsolete
./usr/share/doc/html/ntp/drivers/driver20.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/driver22.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/driver26.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/driver27.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/driver28.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/driver29.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/driver3.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/driver30.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/driver31.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/driver32.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/driver33.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/driver34.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/driver35.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/driver36.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/driver37.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/driver38.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/driver39.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/driver4.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/driver40.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/driver42.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/driver43.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/driver44.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/driver5.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/driver6.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/driver7.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/driver8.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/driver9.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/icons misc-ntp-htmldoc
./usr/share/doc/html/ntp/drivers/icons/home.gif misc-obsolete obsolete
./usr/share/doc/html/ntp/drivers/icons/mail2.gif misc-obsolete obsolete
./usr/share/doc/html/ntp/drivers/mx4200data.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/oncore-shmem.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/scripts misc-ntp-htmldoc
./usr/share/doc/html/ntp/drivers/scripts/footer.txt misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/scripts/style.css misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/drivers/tf582_4.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/exec.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/extern.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/extern.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/gadget.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/gadget.html misc-obsolete obsolete
./usr/share/doc/html/ntp/groups.html misc-obsolete obsolete
./usr/share/doc/html/ntp/hints.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/hints.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/hints/a-ux misc-obsolete obsolete
./usr/share/doc/html/ntp/hints/aix misc-obsolete obsolete
./usr/share/doc/html/ntp/hints/bsdi misc-obsolete obsolete
./usr/share/doc/html/ntp/hints/changes misc-obsolete obsolete
./usr/share/doc/html/ntp/hints/decosf1 misc-obsolete obsolete
./usr/share/doc/html/ntp/hints/decosf2 misc-obsolete obsolete
./usr/share/doc/html/ntp/hints/hpux misc-obsolete obsolete
./usr/share/doc/html/ntp/hints/linux misc-obsolete obsolete
./usr/share/doc/html/ntp/hints/notes-xntp-v3 misc-obsolete obsolete
./usr/share/doc/html/ntp/hints/parse misc-obsolete obsolete
./usr/share/doc/html/ntp/hints/refclocks misc-obsolete obsolete
./usr/share/doc/html/ntp/hints/rs6000 misc-obsolete obsolete
./usr/share/doc/html/ntp/hints/sco.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/hints/sgi misc-obsolete obsolete
./usr/share/doc/html/ntp/hints/solaris-dosynctodr.html misc-obsolete obsolete
./usr/share/doc/html/ntp/hints/solaris.html misc-obsolete obsolete
./usr/share/doc/html/ntp/hints/solaris.xtra.4023118 misc-obsolete obsolete
./usr/share/doc/html/ntp/hints/solaris.xtra.4095849 misc-obsolete obsolete
./usr/share/doc/html/ntp/hints/solaris.xtra.S99ntpd misc-obsolete obsolete
./usr/share/doc/html/ntp/hints/solaris.xtra.patchfreq misc-obsolete obsolete
./usr/share/doc/html/ntp/hints/sun4 misc-obsolete obsolete
./usr/share/doc/html/ntp/hints/svr4-dell misc-obsolete obsolete
./usr/share/doc/html/ntp/hints/svr4_package misc-obsolete obsolete
./usr/share/doc/html/ntp/hints/todo misc-obsolete obsolete
./usr/share/doc/html/ntp/hints/vxworks.html misc-obsolete obsolete
./usr/share/doc/html/ntp/hints/winnt.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/howto.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/howto.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/htmlprimer.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/icons misc-ntp-htmldoc
./usr/share/doc/html/ntp/icons/home.gif misc-obsolete obsolete
./usr/share/doc/html/ntp/icons/mail2.gif misc-obsolete obsolete
./usr/share/doc/html/ntp/index.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/index.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/kern.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/kern.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/kernpps.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/kernpps.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/keygen.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/ldisc.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/ldisc.html misc-obsolete obsolete
./usr/share/doc/html/ntp/manyopt.html misc-obsolete obsolete
./usr/share/doc/html/ntp/measure.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/measure.html misc-obsolete obsolete
./usr/share/doc/html/ntp/miscopt.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/miscopt.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/monopt.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/monopt.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/msyslog.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/mx4200data.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/mx4200data.html misc-obsolete obsolete
./usr/share/doc/html/ntp/notes.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/notes.html misc-obsolete obsolete
./usr/share/doc/html/ntp/ntp_conf.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/ntpd.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/ntpd.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/ntpdate.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/ntpdate.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/ntpdc.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/ntpdc.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/ntpdsim.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/ntpdsim_new.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/ntpq.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/ntpq.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/ntptime.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/ntptime.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/ntptrace.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/ntptrace.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/parsedata.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/parsedata.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/parsenew.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/parsenew.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/patches.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/porting.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/pps.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/pps.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/prefer.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/prefer.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/qth.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/quick.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/quick.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/rate.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/rdebug.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/rdebug.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/refclock.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/refclock.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/release.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/release.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/scripts misc-ntp-htmldoc
./usr/share/doc/html/ntp/scripts/accopt.txt misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/scripts/audio.txt misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/scripts/authopt.txt misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/scripts/clockopt.txt misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/scripts/command.txt misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/scripts/config.txt misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/scripts/confopt.txt misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/scripts/external.txt misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/scripts/footer.txt misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/scripts/install.txt misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/scripts/links10.txt misc-obsolete obsolete
./usr/share/doc/html/ntp/scripts/links11.txt misc-obsolete obsolete
./usr/share/doc/html/ntp/scripts/links12.txt misc-obsolete obsolete
./usr/share/doc/html/ntp/scripts/links7.txt misc-obsolete obsolete
./usr/share/doc/html/ntp/scripts/links8.txt misc-obsolete obsolete
./usr/share/doc/html/ntp/scripts/links9.txt misc-obsolete obsolete
./usr/share/doc/html/ntp/scripts/manual.txt misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/scripts/misc.txt misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/scripts/miscopt.txt misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/scripts/monopt.txt misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/scripts/refclock.txt misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/scripts/style.css misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/sitemap.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/sntp.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/tickadj.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/tickadj.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/vxworks.htm misc-obsolete obsolete
./usr/share/doc/html/ntp/xleave.html misc-ntp-htmldoc doc
./usr/share/doc/html/ntp/y2k.htm misc-obsolete obsolete
./usr/share/doc/html/postfix/ADDRESS_CLASS_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/ADDRESS_REWRITING_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/ADDRESS_VERIFICATION_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/BACKSCATTER_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/BASIC_CONFIGURATION_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/BUILTIN_FILTER_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/CDB_README.html misc-obsolete obsolete
./usr/share/doc/html/postfix/CONNECTION_CACHE_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/CONTENT_INSPECTION_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/CYRUS_README.html misc-obsolete obsolete
./usr/share/doc/html/postfix/DATABASE_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/DB_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/DEBUG_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/DSN_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/ETRN_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/FILTER_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/IPV6_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/LDAP_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/LINUX_README.html misc-obsolete obsolete
./usr/share/doc/html/postfix/LMTP_README.html misc-obsolete obsolete
./usr/share/doc/html/postfix/LOCAL_RECIPIENT_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/MAILDROP_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/MILTER_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/MULTI_INSTANCE_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/MYSQL_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/NFS_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/OVERVIEW.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/PACKAGE_README.html misc-obsolete obsolete
./usr/share/doc/html/postfix/PCRE_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/PGSQL_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/POSTSCREEN_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/QMQP_README.html misc-obsolete obsolete
./usr/share/doc/html/postfix/QSHAPE_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/RESTRICTION_CLASS_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/SASL_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/SCHEDULER_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/SMTPD_ACCESS_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/SMTPD_POLICY_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/SMTPD_PROXY_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/SOHO_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/SQLITE_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/STANDARD_CONFIGURATION_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/TLS_LEGACY_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/TLS_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/TUNING_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/ULTRIX_README.html misc-obsolete obsolete
./usr/share/doc/html/postfix/UUCP_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/VERP_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/VIRTUAL_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/XCLIENT_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/XFORWARD_README.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/access.5.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/aliases.5.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/anvil.8.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/architecture.html misc-obsolete obsolete
./usr/share/doc/html/postfix/backstage.html misc-obsolete obsolete
./usr/share/doc/html/postfix/basic.html misc-obsolete obsolete
./usr/share/doc/html/postfix/big-picture.gif misc-obsolete obsolete
./usr/share/doc/html/postfix/big-picture.html misc-obsolete obsolete
./usr/share/doc/html/postfix/bounce.8.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/canonical.5.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/cidr_table.5.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/cleanup.8.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/commands.html misc-obsolete obsolete
./usr/share/doc/html/postfix/defer.8.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/delivering.html misc-obsolete obsolete
./usr/share/doc/html/postfix/discard.8.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/dnsblog.8.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/error.8.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/faq.html misc-obsolete obsolete
./usr/share/doc/html/postfix/flush.8.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/generic.5.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/goals.html misc-obsolete obsolete
./usr/share/doc/html/postfix/header_checks.5.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/inbound.gif misc-obsolete obsolete
./usr/share/doc/html/postfix/index.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/ldap_table.5.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/lmtp.8.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/local.8.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/mailq.1.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/master.5.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/master.8.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/memcache_table.5.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/motivation.html misc-obsolete obsolete
./usr/share/doc/html/postfix/mysql_table.5.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/newaliases.1.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/nisplus_table.5.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/nqmgr.8.html misc-obsolete obsolete
./usr/share/doc/html/postfix/oqmgr.8.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/outbound.gif misc-obsolete obsolete
./usr/share/doc/html/postfix/pcre_table.5.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/pgsql_table.5.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/pickup.8.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/pipe.8.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/postalias.1.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/postcat.1.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/postconf.1.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/postconf.5.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/postdrop.1.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/postfix-logo.jpg misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/postfix-manuals.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/postfix-wrapper.5.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/postfix.1.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/postkick.1.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/postlock.1.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/postlog.1.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/postmap.1.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/postmulti.1.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/postqueue.1.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/postscreen.8.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/postsuper.1.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/proxymap.8.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/qmgr.8.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/qmqpd.8.html misc-obsolete obsolete
./usr/share/doc/html/postfix/qshape.1.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/queuing.html misc-obsolete obsolete
./usr/share/doc/html/postfix/rate.html misc-obsolete obsolete
./usr/share/doc/html/postfix/receiving.html misc-obsolete obsolete
./usr/share/doc/html/postfix/regexp_table.5.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/relocated.5.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/resource.html misc-obsolete obsolete
./usr/share/doc/html/postfix/rewrite.html misc-obsolete obsolete
./usr/share/doc/html/postfix/scache.8.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/security.html misc-obsolete obsolete
./usr/share/doc/html/postfix/sendmail.1.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/showq.8.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/small-picture.gif misc-obsolete obsolete
./usr/share/doc/html/postfix/smtp-sink.1.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/smtp-source.1.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/smtp.8.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/smtpd.8.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/spawn.8.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/sqlite_table.5.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/tlsmgr.8.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/tlsproxy.8.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/trace.8.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/transport.5.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/trivial-rewrite.8.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/uce.html misc-obsolete obsolete
./usr/share/doc/html/postfix/verify.8.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/virtual.5.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/html/postfix/virtual.8.html misc-postfix-htmldoc postfix,doc
./usr/share/doc/kyua-atf-compat misc-kyua-doc
./usr/share/doc/kyua-atf-compat/AUTHORS misc-kyua-doc doc,kyua
./usr/share/doc/kyua-atf-compat/COPYING misc-kyua-doc doc,kyua
./usr/share/doc/kyua-atf-compat/NEWS misc-kyua-doc doc,kyua
./usr/share/doc/kyua-atf-compat/README misc-kyua-doc doc,kyua
./usr/share/doc/kyua-cli misc-kyua-doc
./usr/share/doc/kyua-cli/AUTHORS misc-kyua-doc doc,kyua
./usr/share/doc/kyua-cli/COPYING misc-kyua-doc doc,kyua
./usr/share/doc/kyua-cli/NEWS misc-kyua-doc doc,kyua
./usr/share/doc/kyua-cli/README misc-kyua-doc doc,kyua
./usr/share/doc/kyua-testers misc-kyua-doc
./usr/share/doc/kyua-testers/AUTHORS misc-kyua-doc doc,kyua
./usr/share/doc/kyua-testers/COPYING misc-kyua-doc doc,kyua
./usr/share/doc/kyua-testers/NEWS misc-kyua-doc doc,kyua
./usr/share/doc/kyua-testers/README misc-kyua-doc doc,kyua
./usr/share/doc/psd/00.contents misc-psd-doc doc
./usr/share/doc/psd/05.sysman/0.t misc-psd-doc doc
./usr/share/doc/psd/05.sysman/1.0.t misc-psd-doc doc
./usr/share/doc/psd/05.sysman/1.1.t misc-psd-doc doc
./usr/share/doc/psd/05.sysman/1.2.t misc-psd-doc doc
./usr/share/doc/psd/05.sysman/1.3.t misc-psd-doc doc
./usr/share/doc/psd/05.sysman/1.4.t misc-psd-doc doc
./usr/share/doc/psd/05.sysman/1.5.t misc-psd-doc doc
./usr/share/doc/psd/05.sysman/1.6.t misc-psd-doc doc
./usr/share/doc/psd/05.sysman/1.7.t misc-psd-doc doc
./usr/share/doc/psd/05.sysman/2.0.t misc-psd-doc doc
./usr/share/doc/psd/05.sysman/2.1.t misc-psd-doc doc
./usr/share/doc/psd/05.sysman/2.2.t misc-psd-doc doc
./usr/share/doc/psd/05.sysman/2.3.t misc-psd-doc doc
./usr/share/doc/psd/05.sysman/2.4.t misc-psd-doc doc
./usr/share/doc/psd/05.sysman/2.5.t misc-psd-doc doc
./usr/share/doc/psd/05.sysman/Makefile misc-psd-doc doc
./usr/share/doc/psd/05.sysman/a.t misc-psd-doc doc
./usr/share/doc/psd/12.make/Makefile misc-psd-doc doc
./usr/share/doc/psd/12.make/tutorial.ms misc-psd-doc doc
./usr/share/doc/psd/18.gprof/Makefile misc-psd-doc doc
./usr/share/doc/psd/18.gprof/abstract.me misc-psd-doc doc
./usr/share/doc/psd/18.gprof/gathering.me misc-psd-doc doc
./usr/share/doc/psd/18.gprof/header.me misc-psd-doc doc
./usr/share/doc/psd/18.gprof/intro.me misc-psd-doc doc
./usr/share/doc/psd/18.gprof/postp.me misc-psd-doc doc
./usr/share/doc/psd/18.gprof/postp1.pic misc-psd-doc doc
./usr/share/doc/psd/18.gprof/postp2.pic misc-psd-doc doc
./usr/share/doc/psd/18.gprof/postp3.pic misc-psd-doc doc
./usr/share/doc/psd/18.gprof/pres1.pic misc-psd-doc doc
./usr/share/doc/psd/18.gprof/pres2.pic misc-psd-doc doc
./usr/share/doc/psd/18.gprof/present.me misc-psd-doc doc
./usr/share/doc/psd/18.gprof/profiling.me misc-psd-doc doc
./usr/share/doc/psd/18.gprof/refs.me misc-psd-doc doc
./usr/share/doc/psd/19.curses/Makefile misc-psd-doc doc
./usr/share/doc/psd/19.curses/Master misc-psd-doc doc
./usr/share/doc/psd/19.curses/appen.A misc-psd-doc doc
./usr/share/doc/psd/19.curses/appen.B misc-psd-doc doc
./usr/share/doc/psd/19.curses/appen.C misc-psd-doc doc
./usr/share/doc/psd/19.curses/c_macros misc-psd-doc doc
./usr/share/doc/psd/19.curses/doc.I misc-psd-doc doc
./usr/share/doc/psd/19.curses/doc.II misc-psd-doc doc
./usr/share/doc/psd/19.curses/doc.III misc-psd-doc doc
./usr/share/doc/psd/19.curses/doc.IV misc-psd-doc doc
./usr/share/doc/psd/19.curses/ex1.c misc-psd-doc doc
./usr/share/doc/psd/19.curses/ex2.c misc-psd-doc doc
./usr/share/doc/psd/19.curses/fns.doc misc-psd-doc doc
./usr/share/doc/psd/19.curses/intro.0 misc-psd-doc doc
./usr/share/doc/psd/19.curses/intro.1 misc-psd-doc doc
./usr/share/doc/psd/19.curses/intro.2 misc-psd-doc doc
./usr/share/doc/psd/19.curses/intro.3 misc-psd-doc doc
./usr/share/doc/psd/19.curses/intro.4 misc-psd-doc doc
./usr/share/doc/psd/19.curses/intro.5 misc-psd-doc doc
./usr/share/doc/psd/19.curses/intro.6 misc-psd-doc doc
./usr/share/doc/psd/19.curses/life.c misc-psd-doc doc
./usr/share/doc/psd/19.curses/macros misc-psd-doc doc
./usr/share/doc/psd/19.curses/twinkle1.c misc-psd-doc doc
./usr/share/doc/psd/19.curses/twinkle2.c misc-psd-doc doc
./usr/share/doc/psd/19.curses/win_st.c misc-psd-doc doc
./usr/share/doc/psd/20.ipctut/Makefile misc-psd-doc doc
./usr/share/doc/psd/20.ipctut/dgramread.c misc-psd-doc doc
./usr/share/doc/psd/20.ipctut/dgramsend.c misc-psd-doc doc
./usr/share/doc/psd/20.ipctut/fig2.pic misc-psd-doc doc
./usr/share/doc/psd/20.ipctut/fig3.pic misc-psd-doc doc
./usr/share/doc/psd/20.ipctut/fig8.pic misc-psd-doc doc
./usr/share/doc/psd/20.ipctut/pipe.c misc-psd-doc doc
./usr/share/doc/psd/20.ipctut/socketpair.c misc-psd-doc doc
./usr/share/doc/psd/20.ipctut/strchkread.c misc-psd-doc doc
./usr/share/doc/psd/20.ipctut/streamread.c misc-psd-doc doc
./usr/share/doc/psd/20.ipctut/streamwrite.c misc-psd-doc doc
./usr/share/doc/psd/20.ipctut/tutor.me misc-psd-doc doc
./usr/share/doc/psd/20.ipctut/udgramread.c misc-psd-doc doc
./usr/share/doc/psd/20.ipctut/udgramsend.c misc-psd-doc doc
./usr/share/doc/psd/20.ipctut/ustreamread.c misc-psd-doc doc
./usr/share/doc/psd/20.ipctut/ustreamwrite.c misc-psd-doc doc
./usr/share/doc/psd/21.ipc/0.t misc-psd-doc doc
./usr/share/doc/psd/21.ipc/1.t misc-psd-doc doc
./usr/share/doc/psd/21.ipc/2.t misc-psd-doc doc
./usr/share/doc/psd/21.ipc/3.t misc-psd-doc doc
./usr/share/doc/psd/21.ipc/4.t misc-psd-doc doc
./usr/share/doc/psd/21.ipc/5.t misc-psd-doc doc
./usr/share/doc/psd/21.ipc/Makefile misc-psd-doc doc
./usr/share/doc/psd/Makefile misc-psd-doc doc
./usr/share/doc/psd/Title misc-psd-doc doc
./usr/share/doc/smm/00.contents misc-smm-doc doc
./usr/share/doc/smm/01.setup/0.t misc-smm-doc doc
./usr/share/doc/smm/01.setup/1.t misc-smm-doc doc
./usr/share/doc/smm/01.setup/2.t misc-smm-doc doc
./usr/share/doc/smm/01.setup/3.t misc-smm-doc doc
./usr/share/doc/smm/01.setup/4.t misc-smm-doc doc
./usr/share/doc/smm/01.setup/5.t misc-smm-doc doc
./usr/share/doc/smm/01.setup/6.t misc-smm-doc doc
./usr/share/doc/smm/01.setup/Makefile misc-smm-doc doc
./usr/share/doc/smm/03.fsck misc-obsolete obsolete
./usr/share/doc/smm/03.fsck/0.t misc-obsolete obsolete
./usr/share/doc/smm/03.fsck/1.t misc-obsolete obsolete
./usr/share/doc/smm/03.fsck/2.t misc-obsolete obsolete
./usr/share/doc/smm/03.fsck/3.t misc-obsolete obsolete
./usr/share/doc/smm/03.fsck/4.t misc-obsolete obsolete
./usr/share/doc/smm/03.fsck/Makefile misc-obsolete obsolete
./usr/share/doc/smm/03.fsck_ffs/0.t misc-smm-doc doc
./usr/share/doc/smm/03.fsck_ffs/1.t misc-smm-doc doc
./usr/share/doc/smm/03.fsck_ffs/2.t misc-smm-doc doc
./usr/share/doc/smm/03.fsck_ffs/3.t misc-smm-doc doc
./usr/share/doc/smm/03.fsck_ffs/4.t misc-smm-doc doc
./usr/share/doc/smm/03.fsck_ffs/Makefile misc-smm-doc doc
./usr/share/doc/smm/04.quotas/Makefile misc-smm-doc doc
./usr/share/doc/smm/04.quotas/quotas.ms misc-smm-doc doc
./usr/share/doc/smm/05.fastfs/0.t misc-smm-doc doc
./usr/share/doc/smm/05.fastfs/1.t misc-smm-doc doc
./usr/share/doc/smm/05.fastfs/2.t misc-smm-doc doc
./usr/share/doc/smm/05.fastfs/3.t misc-smm-doc doc
./usr/share/doc/smm/05.fastfs/4.t misc-smm-doc doc
./usr/share/doc/smm/05.fastfs/5.t misc-smm-doc doc
./usr/share/doc/smm/05.fastfs/6.t misc-smm-doc doc
./usr/share/doc/smm/05.fastfs/Makefile misc-smm-doc doc
./usr/share/doc/smm/06.nfs/0.t misc-smm-doc doc
./usr/share/doc/smm/06.nfs/1.t misc-smm-doc doc
./usr/share/doc/smm/06.nfs/2.t misc-smm-doc doc
./usr/share/doc/smm/06.nfs/Makefile misc-smm-doc doc
./usr/share/doc/smm/06.nfs/ref.t misc-smm-doc doc
./usr/share/doc/smm/07.lpd/0.t misc-smm-doc doc
./usr/share/doc/smm/07.lpd/1.t misc-smm-doc doc
./usr/share/doc/smm/07.lpd/2.t misc-smm-doc doc
./usr/share/doc/smm/07.lpd/3.t misc-smm-doc doc
./usr/share/doc/smm/07.lpd/4.t misc-smm-doc doc
./usr/share/doc/smm/07.lpd/5.t misc-smm-doc doc
./usr/share/doc/smm/07.lpd/6.t misc-smm-doc doc
./usr/share/doc/smm/07.lpd/7.t misc-smm-doc doc
./usr/share/doc/smm/07.lpd/Makefile misc-smm-doc doc
./usr/share/doc/smm/08.sendmailop/Makefile misc-obsolete obsolete
./usr/share/doc/smm/08.sendmailop/op.me misc-obsolete obsolete
./usr/share/doc/smm/09.sendmail/Makefile misc-obsolete obsolete
./usr/share/doc/smm/09.sendmail/intro.me misc-obsolete obsolete
./usr/share/doc/smm/10.named/00macs.me misc-obsolete obsolete
./usr/share/doc/smm/10.named/00title.me misc-obsolete obsolete
./usr/share/doc/smm/10.named/Makefile misc-obsolete obsolete
./usr/share/doc/smm/10.named/ack.me misc-obsolete obsolete
./usr/share/doc/smm/10.named/build.me misc-obsolete obsolete
./usr/share/doc/smm/10.named/files.me misc-obsolete obsolete
./usr/share/doc/smm/10.named/intro.me misc-obsolete obsolete
./usr/share/doc/smm/10.named/manage.me misc-obsolete obsolete
./usr/share/doc/smm/10.named/named.boot.cache misc-obsolete obsolete
./usr/share/doc/smm/10.named/named.boot.primary misc-obsolete obsolete
./usr/share/doc/smm/10.named/named.boot.secondary misc-obsolete obsolete
./usr/share/doc/smm/10.named/named.local misc-obsolete obsolete
./usr/share/doc/smm/10.named/ns.me misc-obsolete obsolete
./usr/share/doc/smm/10.named/resolv.conf misc-obsolete obsolete
./usr/share/doc/smm/10.named/root.cache misc-obsolete obsolete
./usr/share/doc/smm/10.named/setup.me misc-obsolete obsolete
./usr/share/doc/smm/10.named/types.me misc-obsolete obsolete
./usr/share/doc/smm/10.named/ucbhosts misc-obsolete obsolete
./usr/share/doc/smm/10.named/ucbhosts.rev misc-obsolete obsolete
./usr/share/doc/smm/11.timedop/Makefile misc-smm-doc doc
./usr/share/doc/smm/11.timedop/timed.ms misc-smm-doc doc
./usr/share/doc/smm/12.timed/Makefile misc-smm-doc doc
./usr/share/doc/smm/12.timed/timed.ms misc-smm-doc doc
./usr/share/doc/smm/17.password/Makefile misc-smm-doc doc
./usr/share/doc/smm/17.password/password.ms misc-smm-doc doc
./usr/share/doc/smm/18.net/0.t misc-smm-doc doc
./usr/share/doc/smm/18.net/1.t misc-smm-doc doc
./usr/share/doc/smm/18.net/2.t misc-smm-doc doc
./usr/share/doc/smm/18.net/3.t misc-smm-doc doc
./usr/share/doc/smm/18.net/4.t misc-smm-doc doc
./usr/share/doc/smm/18.net/5.t misc-smm-doc doc
./usr/share/doc/smm/18.net/6.t misc-smm-doc doc
./usr/share/doc/smm/18.net/7.t misc-smm-doc doc
./usr/share/doc/smm/18.net/8.t misc-smm-doc doc
./usr/share/doc/smm/18.net/9.t misc-smm-doc doc
./usr/share/doc/smm/18.net/Makefile misc-smm-doc doc
./usr/share/doc/smm/18.net/a.t misc-smm-doc doc
./usr/share/doc/smm/18.net/b.t misc-smm-doc doc
./usr/share/doc/smm/18.net/c.t misc-smm-doc doc
./usr/share/doc/smm/18.net/d.t misc-smm-doc doc
./usr/share/doc/smm/18.net/e.t misc-smm-doc doc
./usr/share/doc/smm/18.net/f.t misc-smm-doc doc
./usr/share/doc/smm/Makefile misc-smm-doc doc
./usr/share/doc/smm/Title misc-smm-doc doc
./usr/share/doc/usd/00.contents misc-usd-doc doc
./usr/share/doc/usd/01.begin/Makefile misc-usd-doc doc
./usr/share/doc/usd/01.begin/u.mac misc-usd-doc doc
./usr/share/doc/usd/01.begin/u0 misc-usd-doc doc
./usr/share/doc/usd/01.begin/u1 misc-usd-doc doc
./usr/share/doc/usd/01.begin/u2 misc-usd-doc doc
./usr/share/doc/usd/01.begin/u3 misc-usd-doc doc
./usr/share/doc/usd/01.begin/u4 misc-usd-doc doc
./usr/share/doc/usd/01.begin/u5 misc-usd-doc doc
./usr/share/doc/usd/03.shell/Makefile misc-usd-doc doc
./usr/share/doc/usd/03.shell/Rv7man misc-usd-doc doc
./usr/share/doc/usd/03.shell/t.mac misc-usd-doc doc
./usr/share/doc/usd/03.shell/t1 misc-usd-doc doc
./usr/share/doc/usd/03.shell/t2 misc-usd-doc doc
./usr/share/doc/usd/03.shell/t3 misc-usd-doc doc
./usr/share/doc/usd/03.shell/t4 misc-usd-doc doc
./usr/share/doc/usd/04.csh/Makefile misc-usd-doc doc
./usr/share/doc/usd/04.csh/csh.1 misc-usd-doc doc
./usr/share/doc/usd/04.csh/csh.2 misc-usd-doc doc
./usr/share/doc/usd/04.csh/csh.3 misc-usd-doc doc
./usr/share/doc/usd/04.csh/csh.4 misc-usd-doc doc
./usr/share/doc/usd/04.csh/csh.a misc-obsolete obsolete
./usr/share/doc/usd/04.csh/csh.ap misc-usd-doc doc
./usr/share/doc/usd/04.csh/csh.g misc-usd-doc doc
./usr/share/doc/usd/04.csh/tabs misc-usd-doc doc
./usr/share/doc/usd/07.mail/Makefile misc-usd-doc doc
./usr/share/doc/usd/07.mail/mail0.nr misc-usd-doc doc
./usr/share/doc/usd/07.mail/mail1.nr misc-usd-doc doc
./usr/share/doc/usd/07.mail/mail2.nr misc-usd-doc doc
./usr/share/doc/usd/07.mail/mail3.nr misc-usd-doc doc
./usr/share/doc/usd/07.mail/mail4.nr misc-usd-doc doc
./usr/share/doc/usd/07.mail/mail5.nr misc-usd-doc doc
./usr/share/doc/usd/07.mail/mail6.nr misc-usd-doc doc
./usr/share/doc/usd/07.mail/mail7.nr misc-usd-doc doc
./usr/share/doc/usd/07.mail/mail8.nr misc-usd-doc doc
./usr/share/doc/usd/07.mail/mail9.nr misc-usd-doc doc
./usr/share/doc/usd/07.mail/maila.nr misc-usd-doc doc
./usr/share/doc/usd/11.edit/Makefile misc-usd-doc doc
./usr/share/doc/usd/11.edit/edit.vindex misc-obsolete obsolete
./usr/share/doc/usd/11.edit/edittut.ms misc-usd-doc doc
./usr/share/doc/usd/12.ex/Makefile misc-usd-doc doc
./usr/share/doc/usd/12.ex/ex.rm misc-usd-doc doc
./usr/share/doc/usd/12.ex/ex.summary misc-usd-doc doc
./usr/share/doc/usd/12.vi/Makefile misc-usd-doc doc
./usr/share/doc/usd/12.vi/vi.apwh.ms misc-obsolete obsolete
./usr/share/doc/usd/12.vi/vi.chars misc-usd-doc doc
./usr/share/doc/usd/12.vi/vi.in misc-usd-doc doc
./usr/share/doc/usd/12.vi/vi.summary misc-obsolete obsolete
./usr/share/doc/usd/13.viref/Makefile misc-usd-doc doc
./usr/share/doc/usd/13.viref/ex.cmd.roff misc-usd-doc doc
./usr/share/doc/usd/13.viref/merge.awk misc-obsolete obsolete
./usr/share/doc/usd/13.viref/ref.so misc-usd-doc doc
./usr/share/doc/usd/13.viref/set.opt.roff misc-usd-doc doc
./usr/share/doc/usd/13.viref/spell.ok misc-obsolete obsolete
./usr/share/doc/usd/13.viref/vi.cmd.roff misc-usd-doc doc
./usr/share/doc/usd/13.viref/vi.ref misc-usd-doc doc
./usr/share/doc/usd/17.msmacros/Makefile misc-usd-doc doc
./usr/share/doc/usd/17.msmacros/fig1.pic misc-usd-doc doc
./usr/share/doc/usd/17.msmacros/ms misc-usd-doc doc
./usr/share/doc/usd/18.msdiffs/Makefile misc-usd-doc doc
./usr/share/doc/usd/18.msdiffs/ms.diffs misc-usd-doc doc
./usr/share/doc/usd/19.memacros/Makefile misc-usd-doc doc
./usr/share/doc/usd/19.memacros/intro.me misc-usd-doc doc
./usr/share/doc/usd/20.meref/Makefile misc-usd-doc doc
./usr/share/doc/usd/20.meref/ref.me misc-usd-doc doc
./usr/share/doc/usd/Makefile misc-usd-doc doc
./usr/share/doc/usd/Title misc-usd-doc doc
./usr/share/doc/xntp misc-obsolete obsolete
./usr/share/examples/amd/amd.conf misc-amd-examples share
./usr/share/examples/amd/cd misc-amd-examples share
./usr/share/examples/amd/master misc-obsolete obsolete
./usr/share/examples/amd/net misc-amd-examples share
./usr/share/examples/apm/script misc-amd-examples share
./usr/share/examples/asm misc-asm-examples
./usr/share/examples/asm/Makefile.inc misc-asm-examples share
./usr/share/examples/asm/README misc-asm-examples share
./usr/share/examples/asm/hello misc-asm-examples
./usr/share/examples/asm/hello/Makefile misc-asm-examples share
./usr/share/examples/asm/hello/powerpc.s misc-asm-examples share
./usr/share/examples/atf misc-atf-examples
./usr/share/examples/atf/atf-run.hooks misc-atf-examples share,atf,!kyua
./usr/share/examples/atf/atf-run.hooks misc-obsolete share,kyua,obsolete
./usr/share/examples/atf/tests-results.css misc-atf-examples share,atf,!kyua
./usr/share/examples/atf/tests-results.css misc-obsolete share,kyua,obsolete
./usr/share/examples/dhcp/dhcpd.conf misc-dhcpd-examples share
./usr/share/examples/disktab/disktab misc-sys-examples share
./usr/share/examples/emul/linux/etc/LINUX_MAKEDEV misc-sys-examples share
./usr/share/examples/emul/svr4/etc/SVR4_MAKEDEV misc-sys-examples share
./usr/share/examples/emul/svr4/etc/netconfig misc-sys-examples share
./usr/share/examples/emul/svr4/etc/nsswitch.conf misc-sys-examples share
./usr/share/examples/emul/ultrix/etc/svc.conf misc-sys-examples share
./usr/share/examples/fstab/fstab.cdrom misc-fstab-examples share
./usr/share/examples/fstab/fstab.md misc-obsolete obsolete
./usr/share/examples/fstab/fstab.nfs.1 misc-fstab-examples share
./usr/share/examples/fstab/fstab.nfs.2 misc-fstab-examples share
./usr/share/examples/fstab/fstab.nfs.3 misc-fstab-examples share
./usr/share/examples/fstab/fstab.pseudo misc-fstab-examples share
./usr/share/examples/fstab/fstab.ra misc-fstab-examples share
./usr/share/examples/fstab/fstab.ramdisk misc-fstab-examples share
./usr/share/examples/fstab/fstab.rd misc-fstab-examples share
./usr/share/examples/fstab/fstab.sd0.1 misc-fstab-examples share
./usr/share/examples/fstab/fstab.sd0.2 misc-fstab-examples share
./usr/share/examples/fstab/fstab.sd0.amiga misc-fstab-examples share
./usr/share/examples/fstab/fstab.sd0.atari misc-fstab-examples share
./usr/share/examples/fstab/fstab.tmpfs misc-obsolete obsolete
./usr/share/examples/fstab/fstab.wd0.1 misc-fstab-examples share
./usr/share/examples/fstab/fstab.wd0.2 misc-fstab-examples share
./usr/share/examples/fstab/fstab.wd0.3 misc-fstab-examples share
./usr/share/examples/fstab/fstab.wd0.cobalt misc-fstab-examples share
./usr/share/examples/ftpd/ftpd.conf misc-netutil-examples share
./usr/share/examples/ftpd/ftpusers misc-netutil-examples share
./usr/share/examples/getdate/datemsk.template misc-sys-examples share
./usr/share/examples/getdate/posixmsk.example3 misc-sys-examples share
./usr/share/examples/getdate/posixmsk.example4 misc-sys-examples share
./usr/share/examples/hostapd/hostapd.conf misc-netutil-examples share
./usr/share/examples/ipf/BASIC.NAT misc-ipf-examples ipfilter,share
./usr/share/examples/ipf/BASIC_1.FW misc-ipf-examples ipfilter,share
./usr/share/examples/ipf/BASIC_2.FW misc-ipf-examples ipfilter,share
./usr/share/examples/ipf/example.1 misc-ipf-examples ipfilter,share
./usr/share/examples/ipf/example.10 misc-ipf-examples ipfilter,share
./usr/share/examples/ipf/example.11 misc-ipf-examples ipfilter,share
./usr/share/examples/ipf/example.12 misc-ipf-examples ipfilter,share
./usr/share/examples/ipf/example.13 misc-ipf-examples ipfilter,share
./usr/share/examples/ipf/example.2 misc-ipf-examples ipfilter,share
./usr/share/examples/ipf/example.3 misc-ipf-examples ipfilter,share
./usr/share/examples/ipf/example.4 misc-ipf-examples ipfilter,share
./usr/share/examples/ipf/example.5 misc-ipf-examples ipfilter,share
./usr/share/examples/ipf/example.6 misc-ipf-examples ipfilter,share
./usr/share/examples/ipf/example.7 misc-ipf-examples ipfilter,share
./usr/share/examples/ipf/example.8 misc-ipf-examples ipfilter,share
./usr/share/examples/ipf/example.9 misc-ipf-examples ipfilter,share
./usr/share/examples/ipf/example.sr misc-ipf-examples ipfilter,share
./usr/share/examples/ipf/firewall misc-ipf-examples ipfilter,share
./usr/share/examples/ipf/ftp-proxy misc-ipf-examples ipfilter,share
./usr/share/examples/ipf/ftppxy misc-ipf-examples ipfilter,share
./usr/share/examples/ipf/mediaone misc-obsolete obsolete
./usr/share/examples/ipf/mkfilters misc-ipf-examples ipfilter,share
./usr/share/examples/ipf/nat-setup misc-ipf-examples ipfilter,share
./usr/share/examples/ipf/nat.eg misc-ipf-examples ipfilter,share
./usr/share/examples/ipf/server misc-ipf-examples ipfilter,share
./usr/share/examples/ipf/tcpstate misc-ipf-examples ipfilter,share
./usr/share/examples/isdn/holidays.D.SH misc-isdn-examples share
./usr/share/examples/isdn/isdnd.rates.A misc-isdn-examples share
./usr/share/examples/isdn/isdnd.rates.D misc-isdn-examples share
./usr/share/examples/isdn/isdnd.rates.F misc-isdn-examples share
./usr/share/examples/isdn/isdnd.rates.L misc-isdn-examples share
./usr/share/examples/isdn/isdnd.rates.UK.BT misc-isdn-examples share
./usr/share/examples/isdn/isdnd.rc.sample misc-isdn-examples share
./usr/share/examples/kerberos/krb5.conf misc-krb5-examples kerberos,share
./usr/share/examples/kyua-cli misc-kyua-examples
./usr/share/examples/kyua-cli/Kyuafile.top misc-kyua-examples share,kyua
./usr/share/examples/kyua-cli/kyua.conf misc-kyua-examples share,kyua
./usr/share/examples/libsaslc misc-libsaslc-examples
./usr/share/examples/libsaslc/README misc-libsaslc-examples share
./usr/share/examples/libsaslc/mech misc-libsaslc-examples
./usr/share/examples/libsaslc/mech/ANONYMOUS.conf misc-libsaslc-examples share
./usr/share/examples/libsaslc/mech/CRAM-MD5.conf misc-libsaslc-examples share
./usr/share/examples/libsaslc/mech/DIGEST-MD5.conf misc-libsaslc-examples share
./usr/share/examples/libsaslc/mech/EXTERNAL.conf misc-libsaslc-examples share
./usr/share/examples/libsaslc/mech/GSSAPI.conf misc-libsaslc-examples share
./usr/share/examples/libsaslc/mech/LOGIN.conf misc-libsaslc-examples share
./usr/share/examples/libsaslc/mech/PLAIN.conf misc-libsaslc-examples share
./usr/share/examples/libsaslc/saslc.conf misc-libsaslc-examples share
./usr/share/examples/lutok misc-lutok-examples
./usr/share/examples/lutok/bindings.cpp misc-lutok-examples share,kyua
./usr/share/examples/lutok/hello.cpp misc-lutok-examples share,kyua
./usr/share/examples/lutok/interpreter.cpp misc-lutok-examples share,kyua
./usr/share/examples/lutok/raii.cpp misc-lutok-examples share,kyua
./usr/share/examples/mount_portal/advanced.1 misc-sys-examples share
./usr/share/examples/mount_portal/advanced.1.conf misc-sys-examples share
./usr/share/examples/mount_portal/cvs.1 misc-sys-examples share
./usr/share/examples/mount_portal/cvs.conf misc-sys-examples share
./usr/share/examples/mount_portal/cvs.sh misc-sys-examples share
./usr/share/examples/mount_portal/fing.c misc-sys-examples share
./usr/share/examples/mount_portal/fs.1 misc-sys-examples share
./usr/share/examples/mount_portal/fs.1.conf misc-sys-examples share
./usr/share/examples/mount_portal/overview misc-sys-examples share
./usr/share/examples/mount_portal/rfilter.1 misc-sys-examples share
./usr/share/examples/mount_portal/rfilter.2 misc-sys-examples share
./usr/share/examples/mount_portal/rfilter.2.conf misc-sys-examples share
./usr/share/examples/mount_portal/sysctlfs.sh misc-sys-examples share
./usr/share/examples/mount_portal/tcp.1 misc-sys-examples share
./usr/share/examples/mount_portal/tcp.1.conf misc-sys-examples share
./usr/share/examples/named/named.conf misc-obsolete obsolete
./usr/share/examples/openssl/CA.pl misc-crypto-examples crypto,share
./usr/share/examples/openssl/CA.sh misc-crypto-examples crypto,share
./usr/share/examples/openssl/der_chop misc-obsolete obsolete
./usr/share/examples/openssl/openssl.cnf misc-crypto-examples crypto,share
./usr/share/examples/pf/ackpri misc-pf-examples pf,share
./usr/share/examples/pf/faq-example1 misc-pf-examples pf,share
./usr/share/examples/pf/faq-example2 misc-pf-examples pf,share
./usr/share/examples/pf/faq-example3 misc-pf-examples pf,share
./usr/share/examples/pf/queue1 misc-pf-examples pf,share
./usr/share/examples/pf/queue2 misc-pf-examples pf,share
./usr/share/examples/pf/queue3 misc-pf-examples pf,share
./usr/share/examples/pf/queue4 misc-pf-examples pf,share
./usr/share/examples/pf/spamd misc-obsolete obsolete
./usr/share/examples/postfix/AAAREADME misc-postfix-examples postfix,doc
./usr/share/examples/postfix/ADDRESS_CLASS_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/ADDRESS_REWRITING_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/ADDRESS_VERIFICATION_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/BACKSCATTER_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/BASIC_CONFIGURATION_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/BUILTIN_FILTER_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/CONNECTION_CACHE_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/CONTENT_INSPECTION_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/DATABASE_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/DB_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/DEBUG_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/DSN_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/ETRN_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/FILTER_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/IPV6_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/LDAP_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/LICENSE misc-postfix-examples postfix,share
./usr/share/examples/postfix/LMTP_README misc-obsolete obsolete
./usr/share/examples/postfix/LOCAL_RECIPIENT_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/MAILDROP_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/MEMCACHE_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/MILTER_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/MULTI_INSTANCE_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/MYSQL_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/NFS_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/OVERVIEW misc-postfix-examples postfix,doc
./usr/share/examples/postfix/PCRE_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/PGSQL_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/POSTSCREEN_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/QMQP_README misc-obsolete obsolete
./usr/share/examples/postfix/QSHAPE_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/RELEASE_NOTES misc-postfix-examples postfix,doc
./usr/share/examples/postfix/RESTRICTION_CLASS_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/SASL_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/SCHEDULER_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/SMTPD_ACCESS_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/SMTPD_POLICY_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/SMTPD_PROXY_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/SOHO_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/SQLITE_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/STANDARD_CONFIGURATION_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/TLS_LEGACY_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/TLS_LICENSE misc-postfix-examples postfix,share
./usr/share/examples/postfix/TLS_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/TUNING_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/UUCP_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/VERP_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/VIRTUAL_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/XCLIENT_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/XFORWARD_README misc-postfix-examples postfix,doc
./usr/share/examples/postfix/access misc-postfix-examples postfix,share
./usr/share/examples/postfix/aliases misc-postfix-examples postfix,share
./usr/share/examples/postfix/canonical misc-postfix-examples postfix,share
./usr/share/examples/postfix/generic misc-postfix-examples postfix,share
./usr/share/examples/postfix/header_checks misc-postfix-examples postfix,share
./usr/share/examples/postfix/main.cf misc-postfix-examples postfix,share
./usr/share/examples/postfix/master.cf misc-postfix-examples postfix,share
./usr/share/examples/postfix/pcre_table misc-obsolete obsolete
./usr/share/examples/postfix/post-install misc-obsolete obsolete
./usr/share/examples/postfix/postfix-files misc-obsolete obsolete
./usr/share/examples/postfix/postfix-script misc-obsolete obsolete
./usr/share/examples/postfix/regexp_table misc-obsolete obsolete
./usr/share/examples/postfix/relocated misc-postfix-examples postfix,share
./usr/share/examples/postfix/sample-aliases.cf misc-obsolete obsolete
./usr/share/examples/postfix/sample-auth.cf misc-obsolete obsolete
./usr/share/examples/postfix/sample-canonical.cf misc-obsolete obsolete
./usr/share/examples/postfix/sample-compatibility.cf misc-obsolete obsolete
./usr/share/examples/postfix/sample-debug.cf misc-obsolete obsolete
./usr/share/examples/postfix/sample-filter.cf misc-obsolete obsolete
./usr/share/examples/postfix/sample-flush.cf misc-obsolete obsolete
./usr/share/examples/postfix/sample-ldap.cf misc-obsolete obsolete
./usr/share/examples/postfix/sample-lmtp.cf misc-obsolete obsolete
./usr/share/examples/postfix/sample-local.cf misc-obsolete obsolete
./usr/share/examples/postfix/sample-mime.cf misc-obsolete obsolete
./usr/share/examples/postfix/sample-misc.cf misc-obsolete obsolete
./usr/share/examples/postfix/sample-pcre-access.cf misc-obsolete obsolete
./usr/share/examples/postfix/sample-pcre-body.cf misc-obsolete obsolete
./usr/share/examples/postfix/sample-pcre-header.cf misc-obsolete obsolete
./usr/share/examples/postfix/sample-pcre.cf misc-obsolete obsolete
./usr/share/examples/postfix/sample-qmqpd.cf misc-obsolete obsolete
./usr/share/examples/postfix/sample-rate.cf misc-obsolete obsolete
./usr/share/examples/postfix/sample-regexp-access.cf misc-obsolete obsolete
./usr/share/examples/postfix/sample-regexp-body.cf misc-obsolete obsolete
./usr/share/examples/postfix/sample-regexp-header.cf misc-obsolete obsolete
./usr/share/examples/postfix/sample-regexp.cf misc-obsolete obsolete
./usr/share/examples/postfix/sample-relocated.cf misc-obsolete obsolete
./usr/share/examples/postfix/sample-resource.cf misc-obsolete obsolete
./usr/share/examples/postfix/sample-rewrite.cf misc-obsolete obsolete
./usr/share/examples/postfix/sample-smtp.cf misc-obsolete obsolete
./usr/share/examples/postfix/sample-smtpd.cf misc-obsolete obsolete
./usr/share/examples/postfix/sample-transport.cf misc-obsolete obsolete
./usr/share/examples/postfix/sample-virtual.cf misc-obsolete obsolete
./usr/share/examples/postfix/transport misc-postfix-examples postfix,share
./usr/share/examples/postfix/virtual misc-postfix-examples postfix,share
./usr/share/examples/pppd misc-pppd-examples
./usr/share/examples/pppd/cingular3G misc-pppd-examples share
./usr/share/examples/pppd/cingular3G.chat misc-pppd-examples share
./usr/share/examples/pppd/cosmote3G misc-pppd-examples share
./usr/share/examples/pppd/cosmote3G.chat misc-pppd-examples share
./usr/share/examples/pppd/telus misc-pppd-examples share
./usr/share/examples/pppd/telus.chat misc-pppd-examples share
./usr/share/examples/racoon/FAQ misc-netutil-examples crypto,share
./usr/share/examples/racoon/README.certificate misc-netutil-examples crypto,share
./usr/share/examples/racoon/README.gssapi misc-netutil-examples crypto,share
./usr/share/examples/racoon/README.plainrsa misc-netutil-examples crypto,share
./usr/share/examples/racoon/psk.txt.sample misc-netutil-examples crypto,share
./usr/share/examples/racoon/racoon.conf.sample misc-netutil-examples crypto,share
./usr/share/examples/racoon/racoon.conf.sample-gssapi misc-netutil-examples crypto,share
./usr/share/examples/racoon/racoon.conf.sample-inherit misc-netutil-examples crypto,share
./usr/share/examples/racoon/racoon.conf.sample-natt misc-netutil-examples crypto,share
./usr/share/examples/racoon/racoon.conf.sample-plainrsa misc-netutil-examples crypto,share
./usr/share/examples/racoon/roadwarrior/README misc-netutil-examples crypto,share
./usr/share/examples/racoon/roadwarrior/client/phase1-down.sh misc-netutil-examples crypto,share
./usr/share/examples/racoon/roadwarrior/client/phase1-up.sh misc-netutil-examples crypto,share
./usr/share/examples/racoon/roadwarrior/client/racoon.conf misc-netutil-examples crypto,share
./usr/share/examples/racoon/roadwarrior/server/phase1-down.sh misc-obsolete obsolete
./usr/share/examples/racoon/roadwarrior/server/racoon.conf misc-netutil-examples crypto,share
./usr/share/examples/racoon/roadwarrior/server/racoon.conf-radius misc-netutil-examples crypto,share
./usr/share/examples/rtadvd/rtadvd.conf misc-router-examples use_inet6,share
./usr/share/examples/smbfs/dot.nsmbrc misc-sysutil-examples share
./usr/share/examples/supfiles/ftp.cs.umn.edu misc-obsolete obsolete
./usr/share/examples/supfiles/skarven.itea.unit.no misc-obsolete obsolete
./usr/share/examples/supfiles/sup.au.netbsd.org misc-obsolete obsolete
./usr/share/examples/supfiles/sup.de.netbsd.org misc-obsolete obsolete
./usr/share/examples/supfiles/sup.jp.netbsd.org misc-sup-examples share
./usr/share/examples/supfiles/sup.netbsd.org misc-sup-examples share
./usr/share/examples/supfiles/sup.no.netbsd.org misc-obsolete obsolete
./usr/share/examples/supfiles/sup.uk.netbsd.org misc-obsolete obsolete
./usr/share/examples/supfiles/sup2.fr.netbsd.org misc-sup-examples share
./usr/share/examples/syslogd/all.debug misc-sysutil-examples share
./usr/share/examples/syslogd/all.newsyslog.conf misc-sysutil-examples share
./usr/share/examples/tmux misc-tmux-examples
./usr/share/examples/tmux/screen-keys.conf misc-tmux-examples share
./usr/share/examples/usermgmt misc-obsolete obsolete
./usr/share/examples/usermgmt/.cshrc misc-obsolete obsolete
./usr/share/examples/usermgmt/.login misc-obsolete obsolete
./usr/share/examples/usermgmt/.profile misc-obsolete obsolete
./usr/share/misc/NetBSD.el misc-reference-share share
./usr/share/misc/airport misc-reference-share share
./usr/share/misc/birthtoken misc-reference-share share
./usr/share/misc/country misc-reference-share share
./usr/share/misc/domains misc-reference-share share
./usr/share/misc/flowers misc-reference-share share
./usr/share/misc/inter.phone misc-reference-share share
./usr/share/misc/language misc-reference-share share
./usr/share/misc/na.phone misc-reference-share share
./usr/share/misc/na.postal misc-reference-share share
./usr/share/misc/zipcodes misc-reference-share share
./usr/share/postfix misc-obsolete obsolete
./usr/share/xml misc-xml-share
./usr/share/xml/atf misc-atf-share
./usr/share/xml/atf/tests-results.dtd misc-atf-share share,atf,!kyua
./usr/share/xml/atf/tests-results.dtd misc-obsolete share,kyua,obsolete
./usr/share/xml/catalog misc-obsolete share,kyua,obsolete
./usr/share/xml/catalog misc-xml-share share,!kyua
./usr/share/xsl misc-xml-share
./usr/share/xsl/atf misc-atf-share
./usr/share/xsl/atf/tests-results.xsl misc-atf-share share,atf,!kyua
./usr/share/xsl/atf/tests-results.xsl misc-obsolete share,kyua,obsolete
|