1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
|
#
# $FML: RULES.txt,v 1.11 2006/04/30 07:01:33 fukachan Exp $
# BASED ON fml/cf/MANIFEST 1.104
#
# .convert ��������Ѵ����ƴ�ĥ��
# .fml8_default fml8 �Υǥե���Ȥ�Ʊ�������ˤ����
# .use_fml8_value fml8 �Ǽ�ư���ꤵ����ͤ�Ȥ�
# .not_yet_implemented �ޤ�����������Ƥʤ�
# �ޤ��������ѹ��Ǥ��ʤ�
# .ignore �����������㤦�Τǡ��Ѵ���̵��̣
# �б������Τ��ʤ�������ͽ���ʤ�
#
# ��������ɡ�
# .convert �Ѵ�����롼�����ƤӽФ�
# .use_fml8_value fml8 �Υǥե���Ȥ�Ʊ�� or fml8 ���ͤ�ͥ��
# .not_yet_implemented ̤����(ͽ��Ϥ��뤬��������Ƥ��ʤ�)
# .not_support fml8 �Ǥϥ��ݡ���ͽ��ʤ��ε�ǽ��
# ��̵�뤹���(.ignore)�Ȥ��äƤ��ɤ�����
#########################################################################
##### Section: Fundamental Configuration (CF Version, debug, Language) ##
# # config.ph configuration version
# # define 5.0 for fml 3.0.
# # define 6.0 for fml 3.0 + fukui-newconfig.
# CFVersion: 6.1
.ok
.if CFVersion
.not_support
# # global debug option. if non-nil, debug mode.
# # In debug mode, fml does not distribute posted articles.
# # value: 1/0
# debug: 0
.ok
.if debug >= 1
use_debug = yes
.ok
.if debug == 0
use_debug = no
# # fml 3.0 generates template files, $DIR/{help,welcome} in $LANGUAGE
# # in "makefml newml". You define this variable in installation.
# # The value is controlled by /usr/local/fml/.fml/system.
# # value: Japanese/English
# LANGUAGE: Japanese
.ok
.if LANGUAGE == Japanese
language_preference_order = ja en
.ok
.if LANGUAGE == English
language_preference_order = en ja
# # Error message language fml returns.
# # If $MESSAGE_LANGUAGE is not defined, fml 3.0 uses $LANGUAGE.
# # &Mesg() tries to translate the given message to this language.
# # value: Japanese/English
# MESSAGE_LANGUAGE:
.ok
.if MESSAGE_LANGUAGE == Japanese
language_preference_order = ja en
.ok
.if MESSAGE_LANGUAGE == English
language_preference_order = en ja
# # ## Sub Section: DNS ##
# # fml automatically set up DNS for this host, but check it again by yourself.
# #
# # DOMAINNAME the domain name e.g. fml.org
# # FQDN Fully Qualified Domain Name e.g. beth.fml.org
# #
# # value: string
# DOMAINNAME: &fix:dn phys.titech.ac.jp
.ok
.if DOMAINNAME
.use_fml8_value
# FQDN: &fix:fqdn axion.phys.titech.ac.jp
.ok
.if FQDN
.use_fml8_value
#########################################################################
##### Section: Mailing List Policy (for Post, Commands), Maintainer ###
# #
# # $MAIL_LIST is the address for post. For example 'elena@fml.org'.
# #
# # $PERMIT_POST_FROM is one of "anyone", "members_only" and "moderator".
# # It defines who can post to this ML.
# # When post from not a member is rejected,
# # fml calls $REJECT_POST_HANDLER.
# # $REJECT_POST_HANDLER is one of "reject", "auto_subscribe" and "ignore".
# # HISTORY: you can use "auto_regist" used in fml 2.x.
# #
# # value: string
# MAIL_LIST:
# PERMIT_POST_FROM: members_only
# REJECT_POST_HANDLER: reject
.ok
.if MAIL_LIST
.convert
.ok
.if PERMIT_POST_FROM
.convert
.ok
.if REJECT_POST_HANDLER
.convert
# # $CONTROL_ADDRESS is the address you send a command request to.
# # For example 'elena-ctl@fml.org'.
# #
# # $PERMIT_COMMAND_FROM is one of "anyone", "members_only" and "moderator".
# # It defines who can post to this ML.
# # When command request from not a member is rejected,
# # fml calls $REJECT_COMMAND_HANDLER.
# #
# # $REJECT_COMMAND_HANDLER is one of "reject", "auto_subscribe" and "ignore".
# # HISTORY: you can use "auto_regist" used in fml 2.x.
# #
# # Typical Configuration is
# #
# # (default)
# # $PERMIT_COMMAND_FROM = "members_only";
# # $REJECT_COMMAND_HANDLER = "reject";
# #
# # (automatic subscribe: fml automatically handles subscribe request)
# # $PERMIT_COMMAND_FROM = "members_only";
# # $REJECT_COMMAND_HANDLER = "auto_subscribe";
# #
# # value: string
# CONTROL_ADDRESS:
# PERMIT_COMMAND_FROM: members_only
# REJECT_COMMAND_HANDLER: reject
.ok
.if CONTROL_ADDRESS
.convert
.ok
.if PERMIT_COMMAND_FROM
.convert
.ok
.if REJECT_COMMAND_HANDLER
.convert
# # obsolete (though you can use it)
# # When $MAIL_LIST_ACCEPT_COMMAND = 1,
# # both $MAIL_LIST and $CONTROL_ADDRESS accept commands
# # which format is "# command".
# # value: 1/0
# MAIL_LIST_ACCEPT_COMMAND:
.ok
.if MAIL_LIST_ACCEPT_COMMAND
.not_support
# # ## Sub Section: Maintainer ##
# # mailing list maintainer/administrator address e.g. 'elena-admin@fml.org'.
# # $MAINTAINER != $MAIL_LIST IS REQUIRED AGAINST MAIL LOOP!
# # value: string
# MAINTAINER:
.ok
.if MAINTAINER
.convert
# MAINTAINER_SIGNATURE:
.ok
.if MAINTAINER_SIGNATURE
maintainer_signature = %s
# # ## Sub Section: ML_FN ##
# # obsolete
# #
# # You can enforce To: field of posted article by rewriting it.
# # To: $MAIL_LIST $ML_FN => To: Elena@fml.org (Elena Lolabrigita ML)
# #
# # value: string
# ML_FN:
.ok
.if ML_FN
.not_support
#########################################################################
## ### Section: Directory ###
## $*DIR variable is relative under $DIR (defined in fml initialization phase).
## $FP*DIR is fully pathed directory name for each $*DIR variable.
# # article spool
# # value: directory string
# SPOOL_DIR: spool
.ok
.if SPOOL_DIR
.convert
# # tmp, after chdir, under DIR
# # value: directory string
# TMP_DIR: tmp
.ok
.if TMP_DIR
.convert
# # multi-purpose log, temporary, transient, and spool files (4.4BSD style)
# # $LOGFILE and $SPOOL_DIR is exceptional but others is under var/.
# # value: directory string
# VAR_DIR: var
.ok
.if VAR_DIR
.use_fml8_value
# VARLOG_DIR: var/log
.ok
.if VARLOG_DIR
.use_fml8_value
# VARRUN_DIR: var/run
.ok
.if VARRUN_DIR
.use_fml8_value
# VARDB_DIR: var/db
.ok
.if VARDB_DIR
.use_fml8_value
#########################################################################
##### Section: Manual Registration ###
# #
# # Term "Manual Registration" may be ambiguous but it implies
# # ML maintainer needs to do some action to add a new member.
# # When the maintainer receives subscribe request, he/she
# # 1. remote login to the fml host and edit actives/members
# # 2. remote login to the fml host and run "makefml add ML address"
# # 3. send a command to add an address e.g. "admin add address".
# # You need to enable remote administration function to do it.
# # See "remote administration" section for more details.
# #
# # On contrary, "automatic registration" is fml does everything
# # to add a new member except for some error cases.
# #
# # only support 'confirmation' or 'forward_to_admin'
# # In "confirmation", fml confirms the subscribe request is valid to
# # avoid a tricky attack.
# # If "forward_to_admin" is selected, subscribe request is forwarded
# # to $MAINTAINER without further check.
# #
# # value: confirmation/forward_to_admin
# MANUAL_REGISTRATION_TYPE: confirmation
.ok
.if MANUAL_REGISTRATION_TYPE == confirmation
subscribe_command_auth_type = confirmation
.ok
.if MANUAL_REGISTRATION_TYPE == forward_to_admin
subscribe_command_auth_type = manual
# # value: directory string
# MANUAL_REGISTRATION_CONFIRMATION_FILE: $DIR/confirm.msub
.ok
.if MANUAL_REGISTRATION_CONFIRMATION_FILE
.use_fml8_value
#########################################################################
##### Section: Automatic Registration ###
# #
# # When REJECT_{POST,COMMAND}_HANDLER is "auto_subscribe" or
# # "auto_regist", fml does everything to add a new member except for some
# # error cases. The subscription request type is as follows.
#
# # value: confirmation/subject/body/no-keyword
# AUTO_REGISTRATION_TYPE: confirmation
.ok
.if AUTO_REGISTRATION_TYPE == confirmation
.use_fml8_value
.ok
.if AUTO_REGISTRATION_TYPE == subject
.not_support
.ok
.if AUTO_REGISTRATION_TYPE == body
.not_support
.ok
.if AUTO_REGISTRATION_TYPE == no-keyword
.not_support
# # keyword of subscribe request
# # $REQUIRE_SUBSCRIBE (CFVersion 2) => $AUTO_REGISTRATION_KEYWORD
# # value: string
# AUTO_REGISTRATION_KEYWORD: subscribe
.ok
.if AUTO_REGISTRATION_KEYWORD == subscribe
.use_fml8_value
.ok
.if AUTO_REGISTRATION_KEYWORD != subscribe
.not_support
# # when automatic registration,
# # we apply $AUTO_REGISTRATION_DEFAULT_MODE e.g. "m=3mp s=1" to the address.
# # Please see "file operation" in doc/tutorial for more details.
# # value: string
# AUTO_REGISTRATION_DEFAULT_MODE:
.ok
.if AUTO_REGISTRATION_DEFAULT_MODE
.not_support
# # "confirmation" (default) mode configurations
# # please see doc/tutorial for the detail of "confirmation"
# # value: string
# CONFIRMATION_ADDRESS:
.ok
.if CONFIRMATION_ADDRESS == CONTROL_ADDRESS
.use_fml8_value
.ok
.if CONFIRMATION_ADDRESS != CONTROL_ADDRESS
.not_support
# CONFIRMATION_SUBSCRIBE: subscribe
.ok
.if CONFIRMATION_SUBSCRIBE == subscribe
.use_fml8_value
.ok
.if CONFIRMATION_SUBSCRIBE != subscribe
.not_support
# CONFIRMATION_KEYWORD: confirm
.ok
.if CONFIRMATION_KEYWORD == confirm
.use_fml8_value
.ok
.if CONFIRMATION_KEYWORD != confirm
.not_support
# CONFIRMATION_WELCOME_STATEMENT:
.ok
.if CONFIRMATION_WELCOME_STATEMENT
.not_support
# # "subscribe" needs no YOUR NAME.
# # value: 1/0
# CONFIRMATION_SUBSCRIBE_NEED_YOUR_NAME: 1
.ok
.if CONFIRMATION_SUBSCRIBE_NEED_YOUR_NAME == 1
.not_support
.ok
.if CONFIRMATION_SUBSCRIBE_NEED_YOUR_NAME == 0
.use_fml8_value
# # file to send back "what is confirmation?" with "confirmation request"
# # reply mail in "confirmation" mode.
# # value: filename string
# CONFIRMATION_FILE: $DIR/confirm
.ok
.if CONFIRMATION_FILE
.use_fml8_value
# # Expire of request queue. The unit is "hour". (default, 168 == 7*24)
# # value: number
# CONFIRMATION_EXPIRE: 168
.ok
.if CONFIRMATION_EXPIRE == 168
.use_fml8_value
# # confirmation request queue (you should not manually edit it)
# # value: filename string
# CONFIRMATION_LIST:
.ok
.if CONFIRMATION_LIST
.use_fml8_value
# # In fact, obsolete.
# # default keyword for trap
# # value: string
# DEFAULT_SUBSCRIBE: subscribe
.ok
.if DEFAULT_SUBSCRIBE == subscribe
.use_fml8_value
.ok
.if DEFAULT_SUBSCRIBE != subscribe
.not_support
# # In adding a new member, fml sends $WELCOME_FILE to him/her.
# # ML maintainer should set up this file as a guide of mailing list.
# # This function works in automatic registration.
# # value: filename string
# WELCOME_FILE: $DIR/welcome
.ok
.if WELCOME_FILE
.convert
# # subject of mail ($WELCOME_FILE) sent to a new member
# # value: string
# WELCOME_STATEMENT:Welcome to our $ML_FN\n You are added automatically
.ok
.if WELCOME_STATEMENT == Welcome to our $ML_FN\n You are added automatically
.not_support
# # Enforce file to add a new member address for some purposes.
# # In default fml adds it to both $ACTIVE_LIST and $MEMBER_LIST.
# # value: filename string
# FILE_TO_REGIST:
.ok
.if FILE_TO_REGIST
.convert
# # obsolete in fact.
# #
# # In default if body lines > $AUTO_REGISTRATION_LINES_LIMIT,
# # we forward this mail to $MAIL_LIST. If $AUTO_REGISTERED_UNDELIVER_P is set,
# # we ALWAYS DO NOT Forward it to $MAIL_LIST.
# # value: 1/0
# AUTO_REGISTERED_UNDELIVER_P: 1
.ok
.if AUTO_REGISTERED_UNDELIVER_P == 1
.use_fml8_value
.ok
.if AUTO_REGISTERED_UNDELIVER_P == 0
.not_support
# TYPO
.ok
.if AUTO_REGISTERD_UNDELIVER_P == 1
.not_support
# AUTO_REGISTRATION_LINES_LIMIT: 0
.ok
.if AUTO_REGISTRATION_LINES_LIMIT == 0
.not_support
.ok
.if AUTO_REGISTRATION_LINES_LIMIT > 0
.not_support
#########################################################################
##### Section: Confirmd ###
# # confirmd
# # value: filename string
# CONFIRMD_ACK_REQ_FILE: $DIR/confirmd.ackreq
.if CONFIRMD_ACK_REQ_FILE == $DIR/confirmd.ackreq
.not_yet_implemented
# CONFIRMD_ACK_LOGFILE: $VARLOG_DIR/confirmd.ack
.if CONFIRMD_ACK_LOGFILE == $VARLOG_DIR/confirmd.ack
.not_yet_implemented
# # value: number / ( number + month/week/day )
# CONFIRMD_ACK_EXPIRE_UNIT: 1month
.if CONFIRMD_ACK_EXPIRE_UNIT == 1month
.not_yet_implemented
# CONFIRMD_ACK_WAIT_UNIT: 2weeks
.if CONFIRMD_ACK_WAIT_UNIT == 2weeks
.not_yet_implemented
#########################################################################
##### Section: Remote Administration ###
# #
# # For security, I do not recommend you use remote control of fml.
# # If $REMOTE_ADMINISTRATION is set, you can control FML by sending
# # a command mail from remote host.
# # Another choice from remote host is CGI interface but fml 3.0 does not
# # provide it. CGI development is underway.
# #
# # value: 1/0
# REMOTE_ADMINISTRATION: 0
.ok
.if REMOTE_ADMINISTRATION == 0
use_admin_command_mail_function = no
.ok
.if REMOTE_ADMINISTRATION == 1
use_admin_command_mail_function = yes
# COMPAT_CF_2
# if ($REMOTE_ADMINISTRATION_REQUIRE_PASSWORD) {
# $REMOTE_ADMINISTRATION_AUTH_TYPE = "crypt";
# }
# else {
# $REMOTE_ADMINISTRATION_AUTH_TYPE = "address";
# }
.ok
.if REMOTE_ADMINISTRATION_REQUIRE_PASSWORD == 1
admin_command_mail_restrictions = reject_system_special_accounts check_admin_member_password reject
.ok
.if REMOTE_ADMINISTRATION_REQUIRE_PASSWORD == 0
admin_command_mail_restrictions = reject_system_special_accounts permit_admin_member_maps reject
# # Of course, the remote control requires some kind of authentication.
# # The choice of authentication is $REMOTE_ADMINISTRATION_AUTH_TYPE,
# # which is one of
# # address From: field
# # crypt From: field + password (e.g. "#admin pass PASSWORD")
# # md5 From: field + password (e.g. "#admin pass PASSWORD")
# # pgp PGP(Pretty Good Privacy) signature
# #
# # The difference of "crypt" and "md5" is $PASSWD_FILE format.
# # HISTORY: $REMOTE_ADMINISTRATION_REQUIRE_PASSWORD <=> "crypt"
# #
# # value: crypt/address/md5/pgp/pgp2/pgp5/gpgp
# REMOTE_ADMINISTRATION_AUTH_TYPE: crypt
.ok
.if REMOTE_ADMINISTRATION_AUTH_TYPE == crypt
admin_command_mail_restrictions = reject_system_special_accounts check_admin_member_password reject
.ok
.if REMOTE_ADMINISTRATION_AUTH_TYPE == address
admin_command_mail_restrictions = reject_system_special_accounts permit_admin_member_maps reject
.ok
.if REMOTE_ADMINISTRATION_AUTH_TYPE == md5
admin_command_mail_restrictions = reject_system_special_accounts check_admin_member_password reject
.ok
.if REMOTE_ADMINISTRATION_AUTH_TYPE == pgp
admin_command_mail_restrictions = reject_system_special_accounts check_pgp_signature reject
.ok
.if REMOTE_ADMINISTRATION_AUTH_TYPE == pgp2
admin_command_mail_restrictions = reject_system_special_accounts check_pgp_signature reject
.ok
.if REMOTE_ADMINISTRATION_AUTH_TYPE == pgp5
admin_command_mail_restrictions = reject_system_special_accounts check_pgp_signature reject
.ok
.if REMOTE_ADMINISTRATION_AUTH_TYPE == gpg
admin_command_mail_restrictions = reject_system_special_accounts check_pgp_signature reject
# # address list of members who can send a command mail from remote
# # value: filename string
# ADMIN_MEMBER_LIST: $DIR/members-admin
.ok
.if ADMIN_MEMBER_LIST
.convert
# # help file of admin commands
# # value: filename string
# ADMIN_HELP_FILE: $DIR/help-admin
.ok
.if ADMIN_HELP_FILE
.use_fml8_value
# # password file to authenticate members
# # The format is "address encrypted-password" and uses one line for one address.
# # value: filename string
# PASSWD_FILE: $DIR/etc/passwd
.ok
.if PASSWD_FILE
.convert
# # "admin add" to add an address to a member list. If it succeeds, fml
# # sends back $WELCOME_FILE if this variable is defined. In default fml
# # does not do it, so the maintainer needs to send the success of subscribe
# # and guide to the new member.
# # value: 1/0
# ADMIN_ADD_SEND_WELCOME_FILE: 0
.ok
.if ADMIN_ADD_SEND_WELCOME_FILE == 0
.not_support
.ok
.if ADMIN_ADD_SEND_WELCOME_FILE == 1
.use_fml8_value
# # N, the number of lines, of "tail -N $LOGFILE".
# # "admin log" is "tail -100 log" in default to avoid too big mail.
# # value: number
# ADMIN_LOG_DEFAULT_LINE_LIMIT: 100
.ok
.if ADMIN_LOG_DEFAULT_LINE_LIMIT
log_command_tail_starting_location = %s
# # PGP directory path (obsolete in fml 4.0)
# # value: filename string
# PGP_PATH: $DIR/etc/pgp
.ok
.if PGP_PATH == $DIR/etc/pgp
.use_fml8_value
# # If you enforce the following *KEYRING_DIR in $CFVersion < 6.1,
# # set this variable on.
# # value: 1/0
# USE_FML40_PGP_PATH: 1
.ok
.if USE_FML40_PGP_PATH == 1
.use_fml8_value
# # fml 4.0
# # value: directory string
# DIST_AUTH_KEYRING_DIR: $DIR/etc/dist-auth
.ok
.if DIST_AUTH_KEYRING_DIR == $DIR/etc/dist-auth
.use_fml8_value
# DIST_ENCRYPT_KEYRING_DIR: $DIR/etc/dist-encrypt
.ok
.if DIST_ENCRYPT_KEYRING_DIR == $DIR/etc/dist-encrypt
.use_fml8_value
# ADMIN_AUTH_KEYRING_DIR: $DIR/etc/admin-auth
.ok
.if ADMIN_AUTH_KEYRING_DIR == $DIR/etc/admin-auth
.use_fml8_value
# ADMIN_ENCRYPT_KEYRING_DIR: $DIR/etc/admin-encrypt
.ok
.if ADMIN_ENCRYPT_KEYRING_DIR == $DIR/etc/admin-encrypt
.use_fml8_value
#########################################################################
##### Section: Moderations; moderators check posted articles ###
# # "moderator" certification type
# # value: 1/2/3
# MODERATOR_FORWARD_TYPE: 2
#
# !!! MODERATOR_FORWARD_TYPE �� PERMIT_*_FROM �ξ��ʸ����ǥ����å� !!!
#
# # member list who receives submitted article.
# # If this file does not exist, it is forwarded to only $MAINTAINER.
# # A moderator who certificate submitted articles and permit the post
# # to mailing list.
# #
# # fml does not check moderator's addresses. fml check only "moderators
# # knows passwords or identifiers (one time password)".
# #
# # value: filename string
# MODERATOR_MEMBER_LIST: $DIR/moderators
.ok
.if MODERATOR_MEMBER_LIST
.convert
# # expire old submitted but not certified articles
# # default: 2 weeks
# # value: number
# MODERATOR_EXPIRE_LIMIT: 14
.ok
.if MODERATOR_EXPIRE_LIMIT == 14
.use_fml8_value
#########################################################################
##### Section: Security ###
# # We reject $REJECT_ADDR@ARBITRARY.DOM.AIN since these are clearly NOT
# # individuals. It also may be effective to avoid mail loop since
# # some error or automatic reply comes from not individual addresses.
# # This restriction is stronger than $PERMIT_*_FROM variable.
# # For example, if $PERMIT_POST_FROM is "anyone", fml does not permit
# # post from root@some.domain. If you permit it, please define $REJECT_ADDR.
# #
# # XXX This variable name is ambiguous. It should be $REJECT_ACCOUNT?
# #
# # value: regexp string
# REJECT_ADDR: root|postmaster|MAILER-DAEMON|msgs|nobody|news|majordomo|listserv|listproc|\S+\-help|\S+\-subscribe|\S+\-unsubscribe
.ok
.if REJECT_ADDR
.convert
# # list of addresses fml should reject. fml checks From: field for this but
# # it may be ineffective since SMTP has no general authentication method.
# # value: filename string
# REJECT_ADDR_LIST: $DIR/spamlist
.ok
.if REJECT_ADDR_LIST
.convert
# # check UNIX from to avoid mail loop. check in default.
# # value: 1/0
# NOT_USE_UNIX_FROM_LOOP_CHECK: 0
.ok
.if NOT_USE_UNIX_FROM_LOOP_CHECK == 0
.use_fml8_value
.ok
.if NOT_USE_UNIX_FROM_LOOP_CHECK == 1
incoming_mail_envelope_loop_check_rules -= check_envelope_sender
# # check Message-Id: duplication to avoid mail loop
# # value: 1/0
# CHECK_MESSAGE_ID: 1
.ok
.if CHECK_MESSAGE_ID == 1
.use_fml8_value
.ok
.if CHECK_MESSAGE_ID == 0
incoming_mail_header_loop_check_rules -= check_message_id
# # check mail body content md5 checksum to avoid mail loop
# # do not check it in default.
# # value: 1/0
# CHECK_MAILBODY_CKSUM: 0
.ok
.if CHECK_MAILBODY_CKSUM == 1
.use_fml8_value
.ok
.if CHECK_MAILBODY_CKSUM == 0
incoming_mail_body_loop_check_rules -= check_body_checksum
# # obsolete today
# # Logs the getpeername()
# # value: 1/0
# LOG_CONNECTION: 0
.ok
.if LOG_CONNECTION
.not_support
# # address check levels, which level is the tree depth from the root.
# # For example
# # fukachan@phys.titech.ac.jp
# # fukachan@axion.phys.titech.ac.jp
# #
# # fml checks $ADDR_CHECK_MAX level from the name space root. That is
# # compare "jp" -> compare "ac" -> titech -> phys -> axion ...
# #
# # When $ADDR_CHECK_MAX = 3, fml regards these two are the same.
# # When $ADDR_CHECK_MAX = 4, fml regards these two are the same.
# # When $ADDR_CHECK_MAX = 5, fml regards these two are DIFFERENT!
# #
# # value: number
# ADDR_CHECK_MAX: 3
.ok
.if ADDR_CHECK_MAX
address_compare_function_domain_matching_level = %s
# XXX SIZE OF THIS LIMIT = HEADER_SIZE + BODY_SIZE
# # fml reject too big mail.
# # In-coming mail size > $INCOMING_MAIL_SIZE_LIMIT, fml discards it
# # and send a warning only to the maintainer.
# # 0 (default) implies infinite (no limit)
# # value: number
# INCOMING_MAIL_SIZE_LIMIT:
.ok
.if INCOMING_MAIL_SIZE_LIMIT == 0
.not_support
.ok
.if INCOMING_MAIL_SIZE_LIMIT != 0
.convert
# # When fml reject too big mail,
# # if $NOTIFY_MAIL_SIZE_OVERFLOW is set, notify the rejection to the sender.
# # value: 1/0
# NOTIFY_MAIL_SIZE_OVERFLOW: 1
.ok
.if NOTIFY_MAIL_SIZE_OVERFLOW == 1
.use_fml8_value
.ok
.if NOTIFY_MAIL_SIZE_OVERFLOW == 0
.not_yet_implemented
# # When fml reject too big mail,
# # if $ANNOUNCE_MAIL_SIZE_OVERFLOW is set, announce "too big mail from someone"
# # to mailing list (SARASHIMONO:-).
# # value: 1/0
# ANNOUNCE_MAIL_SIZE_OVERFLOW: 0
.ok
.if ANNOUNCE_MAIL_SIZE_OVERFLOW == 0
.not_yet_implemented
.ok
.if ANNOUNCE_MAIL_SIZE_OVERFLOW == 1
.not_yet_implemented
# # Resource Limit (useful for ISP ?): (default 0 == not check this limit)
# # the maximum of ML delivery members when auto registration routine works.
# #
# # If member > $MAX_MEMBER_LIMIT, auto registration rejects the request.
# # We check actives to permit aliases of post-able addresses.
# # We check @ACTIVE_LIST effective members, not @MEMBER_LIST.
# # value: number
# MAX_MEMBER_LIMIT:
.ok
.if MAX_MEMBER_LIMIT
.convert
# # Filter of posted article.
# # &EnvelopeFilter is called in the top of &Distribute if you set
# # $USE_DISTRIBUTE_FILTER = 1;
# # value: 1/0
# USE_DISTRIBUTE_FILTER:
.ok
.if USE_DISTRIBUTE_FILTER == 1
use_article_filter = yes
.ok
.if USE_DISTRIBUTE_FILTER == 0
use_article_filter = no
# # Filter of posted article.
# # You can use $DISTRIBUTE_FILTER_HOOK for advanced customizes.
# # value: string
# DISTRIBUTE_FILTER_HOOK:
.ok
.if DISTRIBUTE_FILTER_HOOK
.not_support
# # $FILTER_NOTIFY_REJECTION enables fml.pl notifies the rejection to
# # the sender.
# # value: 1/0
# FILTER_NOTIFY_REJECTION:
.ok
.if FILTER_NOTIFY_REJECTION == 1
use_article_filter_reject_notice = yes
.ok
.if FILTER_NOTIFY_REJECTION == 0
use_article_filter_reject_notice = no
# # Attribute of filter of posted article
# # value: 1/0
# FILTER_ATTR_REJECT_NULL_BODY: 1
.ok
.if FILTER_ATTR_REJECT_NULL_BODY == 1
article_text_plain_filter_rules += reject_null_mail_body
.ok
.if FILTER_ATTR_REJECT_NULL_BODY == 0
article_text_plain_filter_rules -= reject_null_mail_body
# # Attribute of filter of posted article
# # When $FILTER_ATTR_REJECT_COMMAND is 1 under distribution mode,
# # rejects "# command" syntax just before distribution (&Distribute;)
# # value: 1/0
# FILTER_ATTR_REJECT_COMMAND:
# XXX fml8 += operation meas append (but we need prepend here)
.ok
.if FILTER_ATTR_REJECT_COMMAND == 1
.use_fml8_value
.ok
.if FILTER_ATTR_REJECT_COMMAND == 0
article_text_plain_filter_rules -= reject_old_fml_command_syntax
# # Attribute of filter of posted article
# # reject Japanese "2byes English words"
# # value: 1/0
# FILTER_ATTR_REJECT_2BYTES_COMMAND:
# XXX fml8 += operation meas append (but we need prepend here)
.ok
.if FILTER_ATTR_REJECT_2BYTES_COMMAND == 1
.use_fml8_value
.ok
.if FILTER_ATTR_REJECT_2BYTES_COMMAND == 0
article_text_plain_filter_rules -= reject_japanese_command_syntax
# # Attribute of filter of posted article
# # reject command mail sent to the address for posting.
# # value: 1/0
# FILTER_ATTR_REJECT_INVALID_COMMAND: 1
.ok
.if FILTER_ATTR_REJECT_INVALID_COMMAND == 1
article_text_plain_filter_rules += reject_invalid_fml_command_syntax
.ok
.if FILTER_ATTR_REJECT_INVALID_COMMAND == 0
article_text_plain_filter_rules -= reject_invalid_fml_command_syntax
# # Attribute of filter of posted article
# # reject a mail with "one line" mail body (must be invalid command mail)
# # one line means the input mail has one line in the first paragraph
# # except for signature (last paragraph).
# # Even if it has one line, the paragraph ends with period '.'
# # it must be an effective paragraph. So we should not reject it.
# # value: 1/0
# FILTER_ATTR_REJECT_ONE_LINE_BODY: 1
.ok
.if FILTER_ATTR_REJECT_ONE_LINE_BODY == 1
article_text_plain_filter_rules += reject_one_line_message
.ok
.if FILTER_ATTR_REJECT_ONE_LINE_BODY == 0
article_text_plain_filter_rules -= reject_one_line_message
# # Attribute of filter of posted article
# # reject MIME/multipart mails with Microsoft GUID within it,
# # We intend to reject "Melissa virus" family by it.
# # value: 1/0
# FILTER_ATTR_REJECT_MS_GUID: 1
.ok
.if FILTER_ATTR_REJECT_MS_GUID == 1
article_text_plain_filter_rules += reject_ms_guid
.ok
.if FILTER_ATTR_REJECT_MS_GUID == 0
article_text_plain_filter_rules -= reject_ms_guid
# # reject not ascii nor ISO-2022-JP
# # value: 1/0
# FILTER_ATTR_REJECT_INVALID_JAPANESE: 0
# XXX fml8 += operation meas append (but we need prepend here)
.ok
.if FILTER_ATTR_REJECT_INVALID_JAPANESE == 1
.use_fml8_value
.ok
.if FILTER_ATTR_REJECT_INVALID_JAPANESE == 0
article_text_plain_filter_rules -= reject_not_iso2022jp_japanese_string
# # cutoff empty message.
# # value: 1/0
# CONTENT_HANDLER_CUTOFF_EMPTY_MESSAGE: 0
.ok
.if CONTENT_HANDLER_CUTOFF_EMPTY_MESSAGE
.not_support
# # reject empty message after cut off process.
# # value: 1/0
# CONTENT_HANDLER_REJECT_EMPTY_MESSAGE: 0
.ok
.if CONTENT_HANDLER_REJECT_EMPTY_MESSAGE
.not_support
# # try to convert Japanese HANKAKU chars in the mail body to ZENAKKU
# # value: 1/0
# USE_HANKAKU_CONVERTER: 0
.ok
.if USE_HANKAKU_CONVERTER == 0
.not_yet_implemented
.ok
.if USE_HANKAKU_CONVERTER == 1
.not_yet_implemented
# # reject HTML mails that the same content exist in the form of both
# # plain and html. e.g. some versions of M$ outlook, netscape mail
# # "AGAINST_HTML_MAIL: 1/0" is old style, which works for compatibility though.
# # NULL (default) is "pass through a html mail".
# # value: "strip" / "reject" / ""
# HTML_MAIL_DEFAULT_HANDLER:
.ok
.if HTML_MAIL_DEFAULT_HANDLER
.not_support
# # Traffic Monitoring Mechanism within fml
# # Mail Traffic Information: internal traffic monitor
# # value: 1/0
# USE_MTI:
.if USE_MTI
.not_yet_implemented
# # MIT warning (mail bomb report) negative cache interval
# # to avoid mail bomb of "mail bomb attack report" itself.
# # value: number
# MTI_WARN_INTERVAL: 3600
.if MTI_WARN_INTERVAL
.not_yet_implemented
# # value: filename string
# MTI_WARN_LASTLOG:
.if MTI_WARN_LASTLOG
.not_yet_implemented
# # garbage collection
# # how old data (cache) to remove in clean up
# # value: number
# MTI_EXPIRE_UNIT: 3600
.if MTI_EXPIRE_UNIT
# # low water mark
# # value: number
# MTI_BURST_SOFT_LIMIT: 1
.if MTI_BURST_SOFT_LIMIT
.not_yet_implemented
# # high water mark
# # value: number
# MTI_BURST_HARD_LIMIT: 2
.if MTI_BURST_HARD_LIMIT
.not_yet_implemented
# # function name to evaluate the current traffic load
# # value: funtion string
# MTI_COST_EVAL_FUNCTION: MTISimpleBomberP
.if MTI_COST_EVAL_FUNCTION
.not_yet_implemented
# # cache of spammer candidates
# # value: filename string
# MTI_MAIL_FROM_HINT_LIST: $DIR/mti_mailfrom.hints
.if MTI_MAIL_FROM_HINT_LIST
.not_yet_implemented
# # how to announce the new comer if $AUTO_REGISTERED_UNDELIVER_P is 0.
# # value: raw / prepend_info
# SUBSCRIBE_ANNOUNCE_FORWARD_TYPE: prepend_info
.ok
.if SUBSCRIBE_ANNOUNCE_FORWARD_TYPE == prepend_info
.not_support
.ok
.if SUBSCRIBE_ANNOUNCE_FORWARD_TYPE == raw
.not_support
# # Optional. If UNSUBSCRIBE_AUTH_TYPE is 'confirmation', fml sends back
# # confirmation against a fake. In default, FML does not do confirmation.
# # available type is "confirmation" only.
# # value: confirmation
# UNSUBSCRIBE_AUTH_TYPE:
# XXX in fml8, encfore use of confirmation
.ok
.if UNSUBSCRIBE_AUTH_TYPE == confirmation
unsubscribe_command_auth_type = confirmation
.ok
.if UNSUBSCRIBE_AUTH_TYPE != confirmation
unsubscribe_command_auth_type = confirmation
# # chaddr checks confirmation
# # value: confirmation / ""
# CHADDR_AUTH_TYPE:
# XXX in fml8, encfore use of confirmation
.ok
.if CHADDR_AUTH_TYPE == confirmation
chaddr_command_auth_type = confirmation
.ok
.if CHADDR_AUTH_TYPE != confirmation
unsubscribe_command_auth_type = confirmation
# # LOGGING THE LATEST IN-COMING MAILS
# # Logs an in-coming mail to $LOG_MAIL_DIR/$id
# # where ($id = `cat $LOG_MAIL_SEQ`; $id = $id % $NUM_LOG_MAIL; $id++).
# # Latest $NUM_LOG_MAIL files are stored in $LOG_MAIL_DIR and
# # the message size of each file except for the header
# # is limited up to $LOG_MAIL_FILE_SIZE_MAX bytes to save disk.
# # value: 1/0
# USE_LOG_MAIL: 0
.ok
.if USE_LOG_MAIL == 0
use_incoming_mail_cache = no
.ok
.if USE_LOG_MAIL == 1
use_incoming_mail_cache = yes
# # value: filename string
# LOG_MAIL_DIR: $VAR_DIR/Mail
.ok
.if LOG_MAIL_DIR
.use_fml8_value
# LOG_MAIL_SEQ: $LOG_MAIL_DIR/.seq
.ok
.if LOG_MAIL_SEQ
.use_fml8_value
# # value: number
# NUM_LOG_MAIL: 100
.ok
.if NUM_LOG_MAIL
incoming_mail_cache_size = %s
# LOG_MAIL_FILE_SIZE_MAX: 2048
.ok
.if LOG_MAIL_FILE_SIZE_MAX
.use_fml8_value
# # PGP Encrypted ML
# # value: 1/0
# USE_ENCRYPTED_DISTRIBUTION:
.ok
.if USE_ENCRYPTED_DISTRIBUTION == 1
.not_yet_implemented
.ok
.if USE_ENCRYPTED_DISTRIBUTION == 0
.not_yet_implemented
# # value: pgp / pgp2 / pgp5 / gpg
# ENCRYPTED_DISTRIBUTION_TYPE: pgp2
.ok
.if ENCRYPTED_DISTRIBUTION_TYPE == pgp
.not_yet_implemented
.ok
.if ENCRYPTED_DISTRIBUTION_TYPE == pgp2
.not_yet_implemented
.ok
.if ENCRYPTED_DISTRIBUTION_TYPE == pgp5
.not_yet_implemented
.ok
.if ENCRYPTED_DISTRIBUTION_TYPE == gpg
.not_yet_implemented
# # obosolete in fml 4.0
# # value: 2/5/6
# # PGP_VERSION: 2
#########################################################################
##### Section: Header Customization ###
# # In general, you can control fields in header in the following:
# #
# # @HdrFieldsOrder Fields Order In Header
# #
# # &DEFINE_FIELD_ORIGINAL('field'); Conserve Original
# # &DEFINE_FIELD_FORCED('field', "contents"); Overwrite
# #
# # In default, we discard fields not shown in @HdrFieldsOrder.
# # Date: definition ("makefml config" can control this)
# # 1 original-date Date:
# # * Date: == when distribute() works
# # 2 distribute-date+posted Date: + Posted:
# # 3 distribute-date+x-posted Date: + X-Posted:
# # 4 distribute-date+x-original-date Date: + X-Original-Date:
# # * Date: == when fml.pl receives or is kicked off.
# # 5 received-date+posted Date: + Posted:
# # 6 received-date+x-posted Date: + X-Posted:
# # 7 received-date+x-original-date Date: + X-Original-Date:
# # value: original-date/distribute-date+posted/distribute-date+x-posted
# # /distribute-date+x-original-date/received-date+posted
# # /received-date+x-posted/received-date+x-original-date
# DATE_TYPE: original-date
.ok
.if DATE_TYPE == original-date
.use_fml8_value
.ok
.if DATE_TYPE != original-date
.not_support
# # In article header, fml adds following header fields.
# #
# # $XMLNAME
# # $XMLCOUNT: sequence-number
# #
# # e.g.
# # X-ML-Name: Elena
# # X-Mail-Count: 00007
# #
# # value: string
# XMLNAME: X-ML-Name: Elena
.ok
.if XMLNAME == X-ML-Name: Elena
.convert
.ok
.if XMLNAME != X-ML-Name: Elena
.convert
# XMLCOUNT: X-Mail-Count
.ok
.if XMLCOUNT == X-Mail-Count
article_header_rewrite_rules += add_fml_traditional_article_id
.ok
.if XMLCOUNT != X-Mail-Count
.not_support
# # In default subject tag does not exist to show more and more effective
# # subject and body. Client Interface SHOULD CONTROL subject descriptions.
# #
# # The available type is [:] [,] [ ] (:) (,) ( ).
# # e.g. [:] => [Elena:00100] format (here $BRACKET is "Elena").
# # But you can customize SUBJECT_FREE_* series variables.
# # Please see doc/tutorial for the detail
# #
# # value: (:) / [:] / () / [] / (,) / [,] / () / [] / (ID) / [ID] / ""
# SUBJECT_TAG_TYPE:
.ok
.if SUBJECT_TAG_TYPE
.convert
# # BRACKET of "Subject: [BRACKET:ID] ..." form
# # value: string
# BRACKET: Elena
.ok
.if BRACKET == Elena
.not_support
# # obsolete
# # We strip off e.g. [ML:fukachan] form in Subject
# # but this operations depends on special forms, so not functional.
# # You do not expect a lot on this option.
# STRIP_BRACKETS: 0
.ok
.if STRIP_BRACKETS == 0
.not_support
# # You can customize your own bracket by these variables.
# # See doc/tutorial and libtagdef.pl on examples.
# # value: regexp string
# BRACKET_SEPARATOR:
.ok
.if BRACKET_SEPARATOR
.not_support
# SUBJECT_FREE_FORM:
.ok
.if SUBJECT_FREE_FORM
.not_support
# SUBJECT_FREE_FORM_REGEXP:
.ok
.if SUBJECT_FREE_FORM_REGEXP
.not_support
# SUBJECT_FORM_LONG_ID:
.ok
.if SUBJECT_FORM_LONG_ID
.convert
# # obsolete based on RFC1123
# # value: 1/0
# USE_ERRORS_TO:
.ok
.if USE_ERRORS_TO == 1
article_header_rewrite_rules += rewrite_errors_to
.ok
.if USE_ERRORS_TO == 0
article_header_rewrite_rules -= rewrite_errors_to
# # obsolete based on RFC1123
# # value: string
# ERRORS_TO:
.ok
.if ERRORS_TO
.convert
# # Message-Id: use original Message-Id or Server Defined Message-Id ?
# # if 1, original and
# # if 0, fml generates a message-id like $day.FMLAAA.$pid.$MAIL_LIST
# # value: 1/0
# USE_ORIGINAL_MESSAGE_ID: 1
.ok
.if USE_ORIGINAL_MESSAGE_ID == 1
.use_fml8_value
.ok
.if USE_ORIGINAL_MESSAGE_ID == 0
.not_yet_implemented
# # Precedence: field;
# # value: string
# PRECEDENCE: bulk
.ok
.if PRECEDENCE
mail_header_default_precedence = %s
# # append STARTREK stardate :-) in article.
# # Stardate calculation algorithm is ambiguous.
# # X-Stardate: field
# # value: 1/0
# APPEND_STARDATE:
.ok
.if APPEND_STARDATE == 1
article_header_rewrite_rules += rewrite_stardate
.ok
.if APPEND_STARDATE == 0
article_header_rewrite_rules -= rewrite_stardate
# # RFC2369 e.g. list-post: ..
# # value: 1/0
# USE_RFC2369: 1
.ok
.if USE_RFC2369 == 1
article_header_rewrite_rules += add_rfc2369
.ok
.if USE_RFC2369 == 0
article_header_rewrite_rules -= add_rfc2369
# # List-*
# LIST_SOFTWARE:
.ok
.if LIST_SOFTWARE
.use_fml8_value
# LIST_POST:
.ok
.if LIST_POST
.convert
# LIST_OWNER:
.ok
.if LIST_OWNER
.convert
# LIST_HELP:
.ok
.if LIST_HELP
.convert
# LIST_SUBSCRIBE:
.ok
.if LIST_SUBSCRIBE
.convert
# LIST_UNSUBSCRIBE:
.ok
.if LIST_UNSUBSCRIBE
.convert
# LIST_ID:
.ok
.if LIST_ID
.convert
# # obsolete in fml 3.0
# # We should force "To: $MAIL_LIST" form "For Eye" or NOT?
# # default is "NO".
# #
# # 0 Pass the original field To:
# # 1 We rewrite "To: $MAIL_LIST, original-to-fields".
# # 2 Force "To: $MAIL_LIST".
#
# # REWRITE_TO = 1 if NOT_REWRITE_TO == 0 (2.1 Release)
# # value: 0/1/2
# REWRITE_TO:
.ok
.if REWRITE_TO == 2
.not_support
.ok
.if REWRITE_TO == 1
.not_support
.ok
.if REWRITE_TO == 0
.use_fml8_value
# # Default values if no value (no field) is given.
# # value: string
# Subject:
.ok
.if Subject
.not_support
# From_address: not.found
.ok
.if From_address
.not_support
# User: not.found
.ok
.if User
.not_support
# Date: not.found
.ok
.if Date
.not_support
# # TIME ZONE; +0900 is RFC822 syntax (I like JST but ... ;-)
# # value: +\d{4} / -\d{4}
# TZone: +0900
.ok
.if TZone
.not_support
# # time zone within summer time if you use summer time.
# # thank HIROSHIMA Naoki <naoki@bcrossing.com> on this idea
# TZONE_DST:
.ok
.if TZONE_DST
.not_support
# # ## Sub Section: Pass All Header ? ##
# # In some cases you need to pass only defined fields of the header
# # which is defined in @HdrFieldsOrder (see "sub SetDefaults" in fml.pl).
# # All files except $SKIP_FIELDS is passed through
# # when $PASS_ALL_FIELDS_IN_HEADER is set.
# # The old variable name is $SUPERFLUOUS_HEADERS.
# # value: 1/0
# PASS_ALL_FIELDS_IN_HEADER: 1
.ok
.if PASS_ALL_FIELDS_IN_HEADER == 1
.use_fml8_value
.ok
.if PASS_ALL_FIELDS_IN_HEADER == 0
.not_support
.ok
.if SUPERFLUOUS_HEADERS == 1
.use_fml8_value
.ok
.if SUPERFLUOUS_HEADERS == 0
.not_support
# # ignore header field irrespective of @HdrFieldsOrder and
# # $PASS_ALL_FIELDS_IN_HEADER setting
# # value: regexp string
# SKIP_FIELDS: Return-Receipt-To
.ok
.if SKIP_FIELDS
.convert
# # correct a wrong input
# # value: 1/0
# ALLOW_WRONG_LINES_IN_HEADER: 1
# XXX after fml 4.0.3
.ok
.if ALLOW_WRONG_LINES_IN_HEADER == 1
.not_support
#########################################################################
##### Section: Commands, Command Traps, File Operations (e.g. mget) ###
# # obsolete
# # COMMAND format is "#help" == "# help" if $COMMAND_SYNTAX_EXTENSION is set.
# # value: 1/0
# COMMAND_SYNTAX_EXTENSION: 1
.ok
.if COMMAND_SYNTAX_EXTENSION == 1
.use_fml8_value
# # "Subject: # commands" is available?
# # value: 1/0
# USE_SUBJECT_AS_COMMANDS: 0
.ok
.if USE_SUBJECT_AS_COMMANDS
.not_support
# # obsolete
# # If NOT "# command" syntax commands is given, ignore or warn to the user?
# # Our default is not, since most such cases are "signature".
# # value: 1/0
# USE_WARNING: 0
.ok
.if USE_WARNING == 0
.use_fml8_value
.ok
.if USE_WARNING == 1
.not_support
# # obsolete: since this is the same as --ctladdr.
# # value: 1/0
# COMMAND_ONLY_SERVER: 0
.ok
.if COMMAND_ONLY_SERVER
.use_fml8_value
# # **ATTENTION**
# # $PROHIBIT_COMMAND_FOR_STRANGER is obsoletes since
# # $PROHIBIT_COMMAND_FOR_STRANGER equals $PERMIT_COMMAND_FROM = "anyone";
# # ## Sub Section: traps ##
# # obsolete
# # when $MAIL_LIST == $CONTROL_ADDRESS,
# # the first $COMMAND_CHECK_LIMIT lines is checked for commands mail or not?
# # $GUIDE_CHECK_LIMIT is the same kind of variable but for "# guide" trap.
# # $GUIDE_KEYWORD determines "guide" of "$ guide" trap.
# # value: number
# COMMAND_CHECK_LIMIT: 3
.ok
.if COMMAND_CHECK_LIMIT == 3
.not_support
# # obsolete
# # value: number
# GUIDE_CHECK_LIMIT: 3
.ok
.if GUIDE_CHECK_LIMIT == 3
.not_support
# # obsolete
# # value: string
# GUIDE_KEYWORD: guide
.ok
.if GUIDE_KEYWORD == guide
.not_support
# # The maximum length for each command. 128 bytes by default.
# # value: number
# MAXLEN_COMMAND_INPUT: 128
.ok
.if MAXLEN_COMMAND_INPUT > 0
.if MAXLEN_COMMAND_INPUT != 128
command_mail_line_length_limit = %s
# # The maximum number of commands in one command mail.
# # The variable \$MAXNUM_COMMAND_INPUT controls this.
# # If the value is 3, fml permits 3 commands in one command mail.
# # 0 or NULL implies infinite (default).
# # value: number
# MAXNUM_COMMAND_INPUT:
.ok
.if MAXNUM_COMMAND_INPUT > 0
command_mail_valid_command_limit = %s
# # "# chaddr" command name aliases
# # value: regexp string
# CHADDR_KEYWORD: chaddr|change\-address|change
.ok
.if CHADDR_KEYWORD == chaddr|change\-address|change
.use_fml8_value
# # choise of addresses to return for "chaddr" command reply
# # value: newaddr curaddr maintainer
# CHADDR_REPLY_TO: newaddr curaddr
.ok
.if CHADDR_REPLY_TO == newaddr curaddr
.not_yet_implemented
# # choise of addresses to return for "admin chaddr" command reply
# # value: newaddr curaddr maintainer
# ADMIN_CHADDR_REPLY_TO: newaddr curaddr
.ok
.if ADMIN_CHADDR_REPLY_TO == newaddr curaddr
.not_yet_implemented
# # ## Sub Section: mget ##
# # The default mode of "mget" without mode (default is "tar.gz" form).
# # $MGET_TEXT_MODE_DEFAULT is used by &SendFileBySplit
# # value: mode string
# MGET_MODE_DEFAULT:
.ok
.if MGET_MODE_DEFAULT
.not_support
# MGET_TEXT_MODE_DEFAULT:
.ok
.if MGET_TEXT_MODE_DEFAULT
.not_support
# # The reply for "mget" commands sends long reply mails as splitten mails
# # by the unit $MAIL_LENGTH_LIMIT lines once at $SLEEPTIME secs..
# # value: number
# MAIL_LENGTH_LIMIT: 1000
.ok
.if MAIL_LENGTH_LIMIT == 1000
.not_support
# SLEEPTIME: 60
.ok
.if SLEEPTIME
.not_support
# # almost obsolete
# # special case of "mget" routine uses these variables.
# # It is not user defined variable.
# # See doc/tutorial and libfop.pl for the detail.
# # You change MIME/Multipart default.
# # value: string
# MIME_VERSION:
.ok
.if MIME_VERSION
.not_support
# MIME_CONTENT_TYPE:
.ok
.if MIME_CONTENT_TYPE
.not_support
# MIME_MULTIPART_BOUNDARY:
.ok
.if MIME_MULTIPART_BOUNDARY
.not_support
# MIME_MULTIPART_CLOSE_DELIMITER:
.ok
.if MIME_MULTIPART_CLOSE_DELIMITER
.not_support
# MIME_MULTIPART_DELIMITER:
.ok
.if MIME_MULTIPART_DELIMITER
.not_support
# MIME_MULTIPART_PREAMBLE:
.ok
.if MIME_MULTIPART_PREAMBLE
.not_support
# MIME_MULTIPART_TRAILER:
.ok
.if MIME_MULTIPART_TRAILER
.not_support
# # Japanese specific
# # sjis conversion in "mget ish" mode.
# # value: 1/0
# USE_SJIS_IN_ISH:
.ok
.if USE_SJIS_IN_ISH
.not_support
# # RFC1153 configurations; see doc/tutorial for the detail
# # value: number
# RFC1153_ISSUE:
.ok
.if RFC1153_ISSUE
.not_support
# # value: number / string
# RFC1153_VOL:
.ok
.if RFC1153_VOL
.not_support
# # value: filename string
# RFC1153_SEQUENCE_FILE:
.ok
.if RFC1153_SEQUENCE_FILE
.not_support
# # ## Sub Section: MTA specific ##
# # qmail specific extension
# # To send "get 1" to ml-ctl@domain is equivalent to that
# # send anything to ml-get-1@domain if this variable is defined.
# # value: 1/0
# USE_DOT_QMAIL_EXT: 0
.ok
.if USE_DOT_QMAIL_EXT == 0
.use_fml8_value
# # ## Sub Section: Headers of reply from FML ##
# # obsolete
# # For the reply for commands from fml,
# # we force Reply-To: $FORCE_COMMAND_REPLY_TO ?(default is $CONTROL_ADDRESS)
# # value: string
# FORCE_COMMAND_REPLY_TO:
.ok
.if FORCE_COMMAND_REPLY_TO
.not_yet_implemented
# # Subject template in "mget" reply.
# # automatic substitute is done before send the reply; For example,
# # Subject: result for mget [last:3 tar + gzip] (1/1) (Elena Lolabrigita ML)
# #
# # _DOC_MODE_ <=> [last:10 tar + gzip]
# # _PART_ <=> (1/4)
# # _ML_FN_ <=> $ML_FN (here is "(Elena Lolabrigita ML)")
# #
# # $NOT_SHOW_DOCMODE is obsolete, it equals you discard _PART_.
# #
# # value: string
# MGET_SUBJECT_TEMPLATE: result for mget _DOC_MODE_ _PART_ _ML_FN_
.ok
.if MGET_SUBJECT_TEMPLATE == result for mget _DOC_MODE_ _PART_ _ML_FN_
.not_support
# # send error message to Reply-To: ? or From: ?
# # (Of course From: if Reply-To: is not defined).
# # If $MESSAGE_RETURN_ADDR_POLICY is null,
# # it implies we prefer Reply-To: (by default).
# # value: from / reply-to
# MESSAGE_RETURN_ADDR_POLICY: reply-to
.ok
.if MESSAGE_RETURN_ADDR_POLICY == reply-to
.not_support
#########################################################################
##### Section: Digest/Matome Okuri Configurations ###
# #
# # $MSEND_MODE_DEFAULT is the default of msend (when e.g. m=3)
# # and the format is the same as $MGET_MODE_DEFAULT.
# # which is "tar.gz" format.
# # Subject template in Digest/matome okuri.
# # automatic substitute is done before send the reply; For example,
# # Digest -Matome Okuri- Article 768 [last:10 tar + gzip] (1/1) (Elena ML)
# #
# # _ARTICLE_RANGE_ <=> Article 768
# # _DOC_MODE_ <=> [last:10 tar + gzip]
# # _PART_ <=> (1/4)
# # _ML_FN_ <=> $ML_FN (here is "(Elena ML)")
# #
# # $NOT_SHOW_DOCMODE is obsolete, it equals you discard _PART_.
# #
# # value: string
# MSEND_SUBJECT_TEMPLATE: Digest _ARTICLE_RANGE_ _PART_ _ML_FN_
.ok
.if MSEND_SUBJECT_TEMPLATE
.not_support
# # Digest/Matome Okuri rc file
# # value: filename string
# MSEND_RC: $VARLOG_DIR/msendrc
.ok
.if MSEND_RC
.not_support
# # rfc1153 or rfc934
# # obsoletes $USE_RFC1153, $USE_RFC1153_DIGEST, $USE_RFC934
# # value: mode string
# MSEND_MODE_DEFAULT:
.ok
.if MSEND_MODE_DEFAULT
.not_support
# # Subject:
# # value: string
# MSEND_DEFAULT_SUBJECT:
.ok
.if MSEND_DEFAULT_SUBJECT
.not_support
# # If no articles to send, we send "no traffic" to the member of $MAIL_LIST
# # with the subject $MSEND_NOTIFICATION_SUBJECT if $MSEND_NOTIFICATION is set.
# # value: 1/0
# MSEND_NOTIFICATION:
.ok
.if MSEND_NOTIFICATION
.not_support
# # value: string
# MSEND_NOTIFICATION_SUBJECT:
.ok
.if MSEND_NOTIFICATION_SUBJECT
.not_support
# # not require X-ML-Info: in the "mget";
# # value: 1/0
# MSEND_NOT_USE_X_ML_INFO:
.ok
.if MSEND_NOT_USE_X_ML_INFO == 0
.use_fml8_value
.ok
.if MSEND_NOT_USE_X_ML_INFO == 1
.not_support
# # not do newsyslog in the Sundays morning. $NOT_USE_NEWSYSLOG (CFVersion 2)
# # value: 1/0
# MSEND_NOT_USE_NEWSYSLOG:
.ok
.if MSEND_NOT_USE_NEWSYSLOG == 0
.not_support
#########################################################################
##### Section: Other Files for Configurations and Logs ###
# # cache file of Message-ID: loop check
# # value: filename string
# LOG_MESSAGE_ID: $VARRUN_DIR/msgidcache
.ok
.if LOG_MESSAGE_ID == $VARRUN_DIR/msgidcache
.use_fml8_value
# # cache size of Message-ID: negative cache
# # value: number
# MESSAGE_ID_CACHE_BUFSIZE: 6000
.ok
.if MESSAGE_ID_CACHE_BUFSIZE == 6000
.use_fml8_value
# # cache file of mailbody cksum mail loop check
# # value: filename string
# LOG_MAILBODY_CKSUM: $VARRUN_DIR/bodycksumcache
.ok
.if LOG_MAILBODY_CKSUM != $VARRUN_DIR/bodycksumcache
.use_fml8_value
# # $MEMBER_LIST member who can post and use commands
# # $ACTIVE_LIST delivery list
# # value: filename string
# MEMBER_LIST: $DIR/members
.ok
.if MEMBER_LIST != $DIR/members
.convert
# ACTIVE_LIST: $DIR/actives
.ok
.if ACTIVE_LIST != $DIR/actives
.convert
# # ATTENTION: only "guide" is also send to strangers
# #
# # $GUIDE_FILE sent by "# guide" command,
# # $OBJECTIVE_FILE sent by "# objective" command
# # $HELP_FILE sent by "# help" command
# # value: filename string
# GUIDE_FILE: $DIR/guide
.ok
.if GUIDE_FILE != $DIR/guide
.convert
# OBJECTIVE_FILE: $DIR/objective
.ok
.if OBJECTIVE_FILE != $DIR/objective
.convert
# HELP_FILE: $DIR/help
.ok
.if HELP_FILE
.use_fml8_value
# # When fml rejects mail from someone, fml sends back this file to the sender.
# # value: filename string
# DENY_FILE: $DIR/deny
.ok
.if DENY_FILE != $DIR/deny
.convert
# # $LOGFILE log file
# # $MGET_LOGFILE log file for mget routine, $LOGFILE in default.
# # value: filename string
# LOGFILE: $DIR/log
.ok
.if LOGFILE != $DIR/log
.convert
# MGET_LOGFILE: $DIR/log
.ok
.if MGET_LOGFILE != $DIR/log
.not_support
# # suffix extension if defined. For example log.2000
# # For example $LOGFILE_SUFFIX = ".%C%y", file name is "log.2000".
# # See UNIX manual "strftime(3)" for more details on format.
# # value: srtings
# LOGFILE_SUFFIX:
.ok
.if LOGFILE_SUFFIX
.convert
# # when -d2 ($debug = 2), logs this file for convenience.
# # value: filename string
# DEBUG_LOGFILE: $DIR/log.debug
.ok
.if DEBUG_LOGFILE == $DIR/log.debug
.not_support
# # article summary file
# # value: filename string
# SUMMARY_FILE: $DIR/summary
.ok
.if SUMMARY_FILE != $DIR/summary
.convert
# # sequence number file
# # value: filename string
# SEQUENCE_FILE: $DIR/seq
.ok
.if SEQUENCE_FILE != $DIR/seq
.convert
# # rename(2) lock (liblock.pl)
# # value: filename string
# LOCK_FILE: $VARRUN_DIR/lockfile.v7
.ok
.if LOCK_FILE == $VARRUN_DIR/lockfile.v7
.not_support
.ok
.if LOCK_DIR
.not_support
.ok
.if LOCKDIR
.not_support
.ok
.if LOCKFILE
.not_support
#########################################################################
##### Section: SMTP and Delivery ###
# #
# # fml sends mail via SMTP to mail server $HOST:$PORT/tcp.
# # The default host is one fml runs on itself.
# # $HOST is an arbitrary host (if you can access it) which runs MTA
# # (e.g. sendmail). If the Mailing List Server machine is week,
# # you can use the sendmail of another powerful host(host).
# # always try IPv6 connection by default
# # value: 1/0
# USE_INET6: 1
.ok
.if USE_INET6 == 1
.use_fml8_value
.ok
.if USE_INET6 == 0
.not_support
# # value: string
# HOST: localhost
.ok
.if HOST
.convert
# # value: number
# PORT: 25
.ok
.if PORT
.convert
# # enforce MAIL FROM:<$SMTP_SENDER> if defined
# # value: address
# SMTP_SENDER:
.ok
.if SMTP_SENDER
.convert
# # IF $NOT_TRACE_SMTP IS 1 (default 0), we log the SMTP session to $SMTP_LOG
# # value: filename string
# SMTP_LOG: $VARLOG_DIR/_smtplog
.ok
.if SMTP_LOG
.use_fml8_value
# # rotate use of var/log/_smtplog.$i (where $i is the number)
# # value: 1/0
# USE_SMTP_LOG_ROTATE: 1
.ok
.if USE_SMTP_LOG_ROTATE == 1
.use_fml8_value
.ok
.if USE_SMTP_LOG_ROTATE == 0
.not_support
# # expire how old _smtplog.$date
# # value: number
# SMTP_LOG_ROTATE_EXPIRE_LIMIT: 90
.ok
.if SMTP_LOG_ROTATE_EXPIRE_LIMIT == 90
.not_support
.ok
.if SMTP_LOG_ROTATE_EXPIRE_LIMIT != 90
.not_support
# # the number of var/log/_smtplog.$i files. This is the value of modulus.
# # value: number
# NUM_SMTP_LOG_ROTATE: 8
.ok
.if NUM_SMTP_LOG_ROTATE
.use_fml8_value
# # type of suffix for _smtplog
# # value: number / day
# SMTP_LOG_ROTATE_TYPE: number
.ok
.if SMTP_LOG_ROTATE_TYPE == day
.not_support
.ok
.if SMTP_LOG_ROTATE_TYPE
.use_fml8_value
# # IF $NOT_TRACE_SMTP IS 1 (default 0), we log the SMTP session to $SMTP_LOG
# # IF $TRACE_SMTP_DELAY IS 1, we log the delay of response between SMTP server.
# # value: 1/0
# NOT_TRACE_SMTP: 0
.ok
.if NOT_TRACE_SMTP == 0
use_smtp_log = yes
.ok
.if NOT_TRACE_SMTP == 1
use_smtp_log = no
# TRACE_SMTP_DELAY:
.ok
.if TRACE_SMTP_DELAY
.not_support
# # smtp profile for debug
# # value: 1/0
# USE_SMTP_PROFILE: 0
.ok
.if USE_SMTP_PROFILE
.not_support
# # You can use plural MTA for parallel delivery.
# # $MCI_SMTP_HOSTS is the number of hosts you use.
# # @HOSTS is the array of hosts you use.
# # value: number
# MCI_SMTP_HOSTS:
.ok
.if MCI_SMTP_HOSTS
.not_support
# # obsolete today
# # value: string
# DEFAULT_RELAY_SERVER:
.ok
.if DEFAULT_RELAY_SERVER
.not_support
# # obsolete today
# # CF (by motonori@wide.ad.jp) base relay control if $RELEY_HACK is on.
# # with %RELAY_GW, %RELAY_NGW, %RELAY_NGW_DOM (set in librelayhack.pl)
# # $CF_DEF is CF's configuration files;
# # **ATTENTION**; we do not use sendmail.cf but CF's configuration.
# # value: 1/0
# RELAY_HACK:
.ok
.if RELAY_HACK
.not_support
# # obsolete today
# # value: filename string
# CF_DEF:
.ok
.if CF_DEF
.not_support
# # list-outgoing@domain is a real distribution address. Fml does not
# # sends article to all recipient list to MTA but only this address.
# # MTA expands address list and distribute article.
# # In default fml does not use this but effective for poor machine like
# # 486 16M ;-)
# #
# # fml -> list-outgoing -> expanded and distributed to $ACTIVE_LIST members
# #
# # XXX dedicated to minmin sama:D
# #
# # value: 1/0
# USE_OUTGOING_ADDRESS:
.ok
.if USE_OUTGOING_ADDRESS
.not_yet_implemented
# # list-outgoing@domain is a real distribution address. Fml does not
# # sends article to all recipient list to MTA but only this address.
# # MTA expands address list and distribute article.
# # In default fml does not use this but effective for poor machine like
# # 486 16M ;-)
# #
# # fml -> list-outgoing -> expanded and distributed to $ACTIVE_LIST members
# #
# # value: string
# OUTGOING_ADDRESS:
.ok
.if OUTGOING_ADDRESS
.not_yet_implemented
# # VERPs: Variable Envelope Return Paths. See qmail documents for more details.
# # XXX you need additional configuration so that MTA receives VERPs addresses.
# #
# # value: 1/0
# USE_VERP:
.ok
.if USE_VERP
.not_support
# # postfix $verp_delimiters
# # value: string
# POSTFIX_VERP_DELIMITERS: +=
.ok
.if POSTFIX_VERP_DELIMITERS
postfix_verp_delimiters = %s
# # try VERPs once a day for efficient delivery.
# # value: 1/0
# TRY_VERP_PER_DAY:
.ok
.if TRY_VERP_PER_DAY
.not_support
# # we use ESMTP pipelining mechanism by default.
# # value: 1/0
# NOT_USE_ESMTP_PIPELINING: 0
.ok
.if NOT_USE_ESMTP_PIPELINING == 0
.not_support
# # smtpfeed special option which provides VERPs like error track trick.
# # value: 1/0
# USE_SMTPFEED_F_OPTION:
.ok
.if USE_SMTPFEED_F_OPTION
.not_support
#########################################################################
##### Section: MISC ###
# # ## Sub Section: MIME ##
# # Mime Decode On if $USE_MIME for ISO-2022-JP statements.
# # e.g. Decode $SUMMARY_FILE subject and so on.
# # default 1 from 2.1C#13
# # value: 1/0
# USE_MIME: 1
.ok
.if USE_MIME == 1
.use_fml8_value
.ok
.if USE_MIME == 0
.not_support
# # special hack to treat broken MIME ending (e.g. by MacOS X)
# # value: 1/0
# MIME_BROKEN_ENCODING_FIXUP: 0
.ok
.if MIME_BROKEN_ENCODING_FIXUP == 0
.use_fml8_value
# # obsolete and Japanese specific
# # NOT RECOMMENDED OPTION:
# # articles in the spool are MIME-DECODED for poor environment users.
# # These articles may be insane in strict MIME oriented mail interfaces.
# # value: 1/0
# MIME_DECODED_ARTICLE:
.ok
.if MIME_DECODED_ARTICLE
.not_support
# # ## Sub Section: Preamble and Trailer for Mail Body ##
# # FOR COMMAND RESULT MAIL,
# # you always append some message in the command reply mail body.
# # For example, the mail body becomes
# #
# # $PREAMBLE_MAILBODY
# # original body
# # $TRAILER_MAILBODY
# #
# # If you use the article distributed in ML, you must use some hooks.
# # For example, append this in the last of config.ph (but before 1;)
# # $SMTP_OPEN_HOOK = q
# # $e{'Body'} = $PREAMBLE_MAILBODY. $e{'Body'} .$TRAILER_MAILBODY;
# # #;
# # Please see doc/tutorial for our policy behind this.
# #
# # value: string
# PREAMBLE_MAILBODY:
.ok
.if PREAMBLE_MAILBODY
.not_support
# TRAILER_MAILBODY:
.ok
.if TRAILER_MAILBODY
.not_support
# # ## Sub Section: Reply Configurations ##
# # In the last of e.g. "command status report", we add
# # "$GOOD_BYE_PHRASE $FACE_MARK" :-) in the last of the reply.
# # So the standard form is
# #
# # message
# # FYI message generated by the function $PROC_GEN_INFO.
# # $GOOD_BYE_PHRASE $FACE_MARK
# # for example, " --$MAIL_LIST, Be Seeing You!"
# #
# # value: string
# GOOD_BYE_PHRASE:
.ok
.if GOOD_BYE_PHRASE
.not_support
# FACE_MARK:
.ok
.if FACE_MARK
.not_support
# # value: function name string
# PROC_GEN_INFO: GenInfo
.ok
.if PROC_GEN_INFO
.not_support
# # ## Sub Section: Lock Algorithm ##
# # use flock for lock algorithm if $USE_FLOCK is on.
# # see flock(2), alarm(3). If not, we rename(2) base lock.
# # The timeout of rename(2) lock is rand(3) * $MAX_TIMEOUT secs.
# # value: 1/0
# USE_FLOCK: 1
.ok
.if USE_FLOCK == 1
.use_fml8_value
.ok
.if USE_FLOCK == 0
.not_support
# # In rename(2) base lock case,
# # the timeout of rename(2) lock is rand(3) * $MAX_TIMEOUT secs.
# # value: number
# MAX_TIMEOUT: 200
.ok
.if MAX_TIMEOUT == 200
.not_support
# # ## Sub Section: misc ##
# # Not spooling of articles (default is "spooling")
# # It may be used for some secret ML, ML on diskless machihe;-), ISP services
# # value: 1/0
# NOT_USE_SPOOL:
.ok
.if NOT_USE_SPOOL == 1
use_article_spool = no
.ok
.if NOT_USE_SPOOL == 0
use_article_spool = yes
# # "$CFVersion < 2" equals "$COMPAT_FML15 = 1;"
# # value: 1/0
# COMPAT_FML15: 0
.ok
.if COMPAT_FML15 == 0
.not_support
# # newsyslog library maximum number. default is 4.
# # log.4 is removed and
# # log.3 -> log.4, log.2 -> log.3, log.1 -> log.2, log.0 -> log.1, log -> log.0
# # value: number
# NEWSYSLOG_MAX: 4
.ok
.if NEWSYSLOG_MAX == 4
.not_support
# # not used generally. This is "cron of fml package" configuration.
# # $CRONTAB configuratoin file
# # $CRON_PIDFILE pid file
# # value: filename string
# CRONTAB: etc/crontab
.ok
.if CRONTAB == etc/crontab
.not_support
# CRON_PIDFILE: var/run/cron.pid
.ok
.if CRON_PIDFILE == var/run/cron.pid
.not_support
# # not used generally. This is "cron of fml package" configuration.
# # cron notifies what is done to $MAINTAINER.
# # value: 1/0
# CRON_NOTIFY: 1
.ok
.if CRON_NOTIFY == 1
.not_support
# # cross operations
# # value: 1/0
# USE_CROSSPOST:
.ok
.if USE_CROSSPOST
.not_support
# # Under $USE_MEMBER_NAME is set, commands on member lists
# # are with Gecos Fields which are extracted from From: field
# # in the time of auto registration.
# # Author: Masayuki FUKUI <fukui@sonic.nm.fujitsu.co.jp>
# # value: 1/0
# USE_MEMBER_NAME:
.ok
.if USE_MEMBER_NAME
.not_support
#########################################################################
##### Section: Expire and Archive ###
# # If $USE_EXPIRE is set, we do expire articles in $SPOOL_DIR.
# # The default is "no". You need to remove articles if you do so.
#
# # Expiration limit is $EXPIRE_LIMIT, which syntax is
# # e.g. 7days(days) or 100 (articles left in spool)
# # If you re-generate $SUMMARY_FILE, set $EXPIRE_SUMMARY
# #
# # value: 1/0
# USE_EXPIRE: 0
.ok
.if USE_EXPIRE == 0
use_article_expire = no
.ok
.if USE_EXPIRE == 1
use_article_expire = yes
# # expire summary file when $USE_EXPIRE is enabled.
# # value: 1/0
# EXPIRE_SUMMARY:
.ok
.if EXPIRE_SUMMARY == 0
use_article_summary_file_expire = no
.ok
.if EXPIRE_SUMMARY == 1
use_article_summary_file_expire = yes
# # expire how old articles
# # value: number / ( number + day/week/month )
# EXPIRE_LIMIT: 7days
.ok
.if EXPIRE_LIMIT == 7days
.use_fml8_value
# # If $USE_ARCHIVE is on, we do automatically archive, which is
# # spool/articles is aggregated to e.g. "$ARCHIVE_DIR/100.tar.gz"
# # by the unit $ARCHIVE_UNIT.
# #
# # the location of store (when $USE_ARCHIVE on): $ARCHIVE_DIR
# # the search path order : $ARCHIVE_DIR @ARCHIVE_DIR
# #
# # If @ARCHIVE_DIR is set and $ARCHIVE_DIR is not set,
# # we use $ARCHIVE_DIR[0] as the $ARCHIVE_DIR.
# #
# # value: 1/0
# USE_ARCHIVE: 0
.ok
.if USE_ARCHIVE == 0
.not_support
# # spool/articles is aggregated to "$ARCHIVE_DIR/100.tar.gz"
# # by the unit $ARCHIVE_UNIT.
# # value: number
# ARCHIVE_UNIT: 100
.ok
.if ARCHIVE_UNIT == 100
.not_support
# DEFAULT_ARCHIVE_UNIT: 100
.ok
.if DEFAULT_ARCHIVE_UNIT == 100
.not_support
# # spool/articles is aggregated to "$ARCHIVE_DIR/100.tar.gz"
# # value: directory string
# ARCHIVE_DIR: var/archive
.ok
.if ARCHIVE_DIR == var/archive
.not_support
# # "index" command
# # In default we scan spool and archives and reports, but
# # send back $INDEX_FILE if $INDEX_FILE exists.
# # value: filename string
# INDEX_FILE: $DIR/index
.ok
.if INDEX_FILE == $DIR/index
.not_yet_implemented
# # show directory name in "index" command result? default is "no".
# # value: 1/0
# INDEX_SHOW_DIRNAME: 0
.ok
.if INDEX_SHOW_DIRNAME == 0
.not_yet_implemented
##### Section: Library Commands ###
# #
# # "library" command is a small mailing list within mailing list.
# # It is useful to exchange some files.
# # You can put and get files by "library" commands.
# #
# # In default, @DenyProcedure = ('library'); So 'library' command is disabled;
# # Set @DenyProcedure = ('') in LOCAL CONFIG part (the last of config.ph).
# #
# # value: directory string
# LIBRARY_DIR: var/library
.ok
.if LIBRARY_DIR == var/library
.not_support
# LIBRARY_ARCHIVE_DIR: archive
.ok
.if LIBRARY_ARCHIVE_DIR == archive
.not_support
# # ## Sub Section: newsyslog(8) ##
# # to turn over \$DIR/log
# # value: number
# LOGFILE_NEWSYSLOG_LIMIT:
.ok
.if LOGFILE_NEWSYSLOG_LIMIT
.convert
# # to turn over $ACTIVE_LIST and $MEMBER_LIST if the file size over this value,
# # default 150K = 30*5000
# # value: number / (number + K/M)
# AMLIST_NEWSYSLOG_LIMIT: 150K
.ok
.if AMLIST_NEWSYSLOG_LIMIT == 150K
.not_support
##### Section: Html Configurations ###
# #
# # HTML article generator: Please see doc/tutorial for the details.
# # AUTO_HTML_GEN == AUTOmatic HTML GENeration
# # if $AUTO_HTML_GEN, we generate html'ed articles in $DIR/$HTML_DIR
# # value: 1/0
# AUTO_HTML_GEN:
.ok
.if AUTO_HTML_GEN == 1
use_html_archive = yes
.ok
.if AUTO_HTML_GEN == 0
use_html_archive = no
# # use Mail::HTML::Lite in fml-devel (fml next generation).
# # value: 1/0
# USE_NEW_HTML_GEN:
.ok
.if USE_NEW_HTML_GEN == 1
use_html_archive = yes
.ok
.if USE_NEW_HTML_GEN == 0
use_html_archive = no
# # value: 1/0
# HTML_THREAD: 1
.ok
.if HTML_THREAD == 1
.use_fml8_value
.ok
.if HTML_THREAD == 0
.not_support
# # value: 1/0
# HTML_INDEX_REVERSE_ORDER: 1
.ok
.if HTML_INDEX_REVERSE_ORDER == 1
.use_fml8_value
.ok
.if HTML_INDEX_REVERSE_ORDER == 0
.not_support
# # generate html articles under htdocs/
# # value: directory string
# HTML_DIR: htdocs
.ok
.if HTML_DIR == htdocs
.use_fml8_value
# # expire old html articles if non-zero value is defined.
# # not expire in default since the value is 0 or NULL.
# # options: Please see doc/tutorial for the details.
# # value: number
# HTML_EXPIRE_LIMIT:
.ok
.if HTML_EXPIRE_LIMIT
.not_support
# # title of index.html
# # value: string
# HTML_INDEX_TITLE:
.ok
.if HTML_INDEX_TITLE
.not_support
# # cache file
# # value: filename string
# HTML_DATA_CACHE:
.ok
.if HTML_DATA_CACHE
.use_fml8_value
# HTML_DATA_THREAD:
.ok
.if HTML_DATA_THREAD
.use_fml8_value
# # filter in generate html file
# # value: filename string
# HTML_OUTPUT_FILTER:
.ok
.if HTML_OUTPUT_FILTER
.not_support
# # stylesheet file name (see HTML 4.0)
# # "fml.css" is default.
# # value: filename string
# HTML_STYLESHEET_BASENAME:
.ok
.if HTML_STYLESHEET_BASENAME
.not_support
# # threading algorithm type
# # value: default / prefer-in-reply-to
# HTML_THREAD_REF_TYPE: prefer-in-reply-to
.ok
.if HTML_THREAD_REF_TYPE == prefer-in-reply-to
.use_fml8_value
.ok
.if HTML_THREAD_REF_TYPE == default
.not_support
# # sort type for entries of thread.html
# # default is "time" from past to latest,
# # "reverse-number" is from latest to past.
# # value: "" / reverse-number
# HTML_THREAD_SORT_TYPE:
.ok
.if HTML_THREAD_SORT_TYPE == reverse-number
html_archive_index_order_type = reverse
.ok
.if HTML_THREAD_SORT_TYPE == NULL
html_archive_index_order_type = normal
# # $subdir type of htdocs/$subdir/
# # value: number / day / week / month / infinite
# HTML_INDEX_UNIT: day
.ok
.if HTML_INDEX_UNIT
.not_support
# # threading type
# # value: "" / UL
# HTML_INDENT_STYLE: UL
.ok
.if HTML_INDENT_STYLE
.not_support
# # image file embedding style
# # value: A / IMAGE
# HTML_MULTIPART_IMAGE_REF_TYPE:
.ok
.if HTML_MULTIPART_IMAGE_REF_TYPE
.not_support
# # html file umask
# # value: "" / umask
# HTML_DEFAULT_UMASK:
.ok
.if HTML_DEFAULT_UMASK
.not_support
# HTML_WRITE_UMASK:
.ok
.if HTML_WRITE_UMASK
.not_support
##### Section: Interface to DataBase Management System ###
# # value: 1/0
# USE_DATABASE:
.ok
.if USE_DATABASE
.not_support
# # value:
# DATABASE_METHOD:
.ok
.if DATABASE_METHOD
.not_support
# # value:
# DATABASE_CACHE_FILE_SUFFIX:
.ok
.if DATABASE_CACHE_FILE_SUFFIX
.not_support
# # value: filename
# DATABASE_DRIVER: toymodel.pl
.ok
.if DATABASE_DRIVER == toymodel.pl
.not_support
# # attributes to inform database drivers
# # value:
# DATABASE_DRIVER_ATTRIBUTES: always_lower_domain
.ok
.if DATABASE_DRIVER_ATTRIBUTES == always_lower_domain
.not_support
# # ## Sub Section: RDBMS
# # value: string
# SQL_SERVER_HOST:
.ok
.if SQL_SERVER_HOST
.not_support
# # value: number
# SQL_SERVER_PORT:
.ok
.if SQL_SERVER_PORT
.not_support
# # value: string
# SQL_SERVER_USER:
.ok
.if SQL_SERVER_USER
.not_support
# # value: string
# SQL_DATABASE_NAME:
.ok
.if SQL_DATABASE_NAME
.not_support
# # value: string
# SQL_SERVER_PASSWORD:
.ok
.if SQL_SERVER_PASSWORD
.not_support
# # value: string
# SQL_DATABASE_NAME:
.ok
.if SQL_DATABASE_NAME
.not_support
# # ## Sub Section: LDAP
# # value: string
# LDAP_SERVER_HOST:
.ok
.if LDAP_SERVER_HOST
.not_support
# LDAP_SERVER_PASSWORD:
.ok
.if LDAP_SERVER_PASSWORD
.not_support
# LDAP_SEARCH_BASE:
.ok
.if LDAP_SEARCH_BASE
.not_support
# LDAP_SERVER_BIND:
.ok
.if LDAP_SERVER_BIND
.not_support
# LDAP_QUERY_FILTER:
.ok
.if LDAP_QUERY_FILTER
.not_support
##### Section: Interface to other Services (http,ftp,gopher,www) ###
# # "whois": default is search of local database file
# # If "whois -h host" syntax is given, we connects "host" whois server.
# # If $USE_WHOIS set, you can use local database $WHOIS_DB.
# # If you have local whois server (inetd), you can also use it.
# # If "whois help" is given, send back $WHOIS_HELP_FILE if it exists.
# #
# # value: 1/0
# USE_WHOIS:
.ok
.if USE_WHOIS
.not_support
# # value: string
# DEFAULT_WHOIS_SERVER:
.ok
.if DEFAULT_WHOIS_SERVER
.not_support
# # value: filename string
# WHOIS_DB: $VARDB_DIR/whoisdb
.ok
.if WHOIS_DB == $VARDB_DIR/whoisdb
.not_support
# WHOIS_HELP_FILE:
.ok
.if WHOIS_HELP_FILE
.not_support
# # do Japanese conversion or not? for the result from whois server
# # value: 1/0
# WHOIS_JCODE_P: 1
.ok
.if WHOIS_JCODE_P == 1
.not_support
#########################################################################
##### Section: Architecture Dependence ###
# # cpu-type manufacturer operating-system by GNU config.guess ("makefml")
# # value: string
# CPU_TYPE_MANUFACTURER_OS:
.ok
.if CPU_TYPE_MANUFACTURER_OS
.use_fml8_value
# # struct sockaddr
# # It is system dependent.
# # value: string
# STRUCT_SOCKADDR: S n a4 x8
.ok
.if STRUCT_SOCKADDR
.use_fml8_value
# # flock(2) system call; please see "/usr/include/sys/file.h"
# # value: number
# LOCK_SH: 1
.ok
.if LOCK_SH
.use_fml8_value
# LOCK_EX: 2
.ok
.if LOCK_EX
.use_fml8_value
# LOCK_NB: 4
.ok
.if LOCK_NB
.use_fml8_value
# LOCK_UN: 8
.ok
.if LOCK_UN
.use_fml8_value
# # enforce solaris 2 compatible
# # value: 1/0
# COMPAT_SOLARIS2:
.ok
.if COMPAT_SOLARIS2
.use_fml8_value
# # used in cron of fml package
# # we can emulate daemon(3) ?
# # value: 1/0
# NOT_USE_TIOCNOTTY:
.ok
.if NOT_USE_TIOCNOTTY
.use_fml8_value
# # On Unix, always yes set 1 in &SetDefaults;
# # value: 1/0
# HAS_GETPWUID: &is_unix
.ok
.if HAS_GETPWUID
.use_fml8_value
# # On Unix, always yes set 1 in &SetDefaults;
# # value: 1/0
# HAS_GETPWGID: &is_unix
.ok
.if HAS_GETPWGID
.use_fml8_value
# # On Unix, always yes set 1 in &SetDefaults;
# # value: 1/0
# HAS_ALARM: &is_unix
.ok
.if HAS_ALARM
.use_fml8_value
# # On Unix, always yes set 1 in &SetDefaults;
# # value: 1/0
# UNISTD: &is_unix
.ok
.if UNISTD
.use_fml8_value
# # program paths fml uses
# # Usually "makefml newml" checks and expands this value.
# # value: filename string
# SENDMAIL: &path(sendmail)
.ok
.if SENDMAIL
.use_fml8_value
# TAR: &path(tar) cf -
.ok
.if TAR
.use_fml8_value
# UUENCODE: &path(uuencode)
.ok
.if UUENCODE
.use_fml8_value
# COMPRESS: &path(gzip) -c
.ok
.if COMPRESS
.use_fml8_value
# ZCAT: &path(gzcat:zcat:gzip\s-cd)
.ok
.if ZCAT
.use_fml8_value
# LHA: &path(lha)
.ok
.if LHA
.use_fml8_value
# ISH: &path(ish)
.ok
.if ISH
.use_fml8_value
# ZIP: &path(zip)
.ok
.if ZIP
.use_fml8_value
# BZIP2: &path(bzip2)
.ok
.if BZIP2
.use_fml8_value
# PGP: &path(pgp)
.ok
.if PGP
.use_fml8_value
# PGP5: &path(pgp5)
.ok
.if PGP5
.use_fml8_value
# PGPE: &path(pgpe)
.ok
.if PGPE
.use_fml8_value
# PGPK: &path(pgpk)
.ok
.if PGPK
.use_fml8_value
# PGPS: &path(pgps)
.ok
.if PGPS
.use_fml8_value
# PGPV: &path(pgpv)
.ok
.if PGPV
.use_fml8_value
# GPG: &path(gpg)
.ok
.if GPG
.use_fml8_value
# RCS: &path(rcs)
.ok
.if RCS
.use_fml8_value
# CI: &path(ci)
.ok
.if CI
.use_fml8_value
# BASE64_DECODE:
.ok
.if BASE64_DECODE
.use_fml8_value
# BASE64_ENCODE:
.ok
.if BASE64_ENCODE
.use_fml8_value
# MD5: &path(md5:md5sum)
.ok
.if MD5
.use_fml8_value
#
# ??? OLD CONFIGURATIONS ???
#
.ok
.if SMTPLOG
.use_fml8_value
# PERMIT_COMMAND_FROM = members_only
.ok
.if PROHIBIT_COMMAND_FOR_STRANGER
.use_fml8_value
.ok
.if USE_LIBMIME == 1
.use_fml8_value
.ok
.if USE_LIBMIME == 0
.not_support
.ok
.if LIBMIMEDIR
.not_support
.ok
.if RPG_ML_FORM_FLAG == 1
.use_fml8_value
.ok
.if RPG_ML_FORM_FLAG == 0
.not_support
.ok
.if SUN_OS_413 == 1
.not_support
.ok
.if SUN_OS_413 == 0
.not_support
.ok
.if SUBJECT_HML_FORM
.convert
.ok
.if HML_FORM_LONG_ID
.convert
.ok
.if ML_MEMBER_CHECK
.not_support
.ok
.if DEFAULT_HTTP_PORT
.not_support
.ok
.if DEFAULT_GOPHER_PORT
.not_support
.ok
.if DEFAULT_HTML_FIELD
.not_support
.ok
.if CP
.use_fml8_value
.ok
.if RM
.use_fml8_value
.ok
.if FML
.not_support
.ok
.if LOAD_LIBRARY
.not_support
.ok
.if STORED_BOUNDARY
.not_support
.ok
.if AGAINST_NIFTY
.not_support
.ok
.if _Ds
.not_support
.ok
.if _Dm
.not_support
# LOCAL_CONFIG:
# # ## Sub Section: Available Hooks ##
# # You can set customized hooks here. See doc/tutorial's chapter "HOOKS".
# # For example available hooks are
# # $START_HOOK, $DISTRIBUTE_START_HOOK, $SMTP_OPEN_HOOK
# # $HEADER_ADD_HOOK, $DISTRIBUTE_CLOSE_HOOK, $DISTRIBUTE_END_HOOK
# # $ADMIN_COMMAND_HOOK, $RFC1153_CUSTOM_HOOK, $MSEND_OPT_HOOK
# # $FML_EXIT_HOOK, $FML_EXIT_PROG, $MSEND_START_HOOK
# # $REPORT_HEADER_CONFIG_HOOK, $AUTO_REGISTRATION_HOOK, $MSEND_HEADER_HOOK
# # $SMTP_CLOSE_HOOK, $MODE_BIFURCATE_HOOK. $HTML_TITLE_HOOK
# # $PROCEDURE_CONFIG_HOOK, $ADMIN_PROCEDURE_CONFIG_HOOK, $COMMAND_HOOK
# #
# # ## Sub Section: Available Arrays and Assoc-Arrays ##
# # Also you can set here arrays and association arrays:
# #
# # @MEMBER_LIST, @ACTIVE_LIST, @CROSSPOST_CF
# # @HOST, @HOSTS, @MAIL_LIST_ALIASES, @HdrFieldsOrder
# #
# # value: perl statement
|