File: ChangeLog

package info (click to toggle)
cvm 0.90-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 836 kB
  • ctags: 555
  • sloc: ansic: 3,848; sh: 1,131; makefile: 118; sql: 15
file content (4168 lines) | stat: -rw-r--r-- 133,617 bytes parent folder | download
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
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
------------------------------------------------------------------------
r427 | bruce | 2007-01-04 02:38:10 -0600 (Thu, 04 Jan 2007) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/VERSION

Bumped version to 0.83

------------------------------------------------------------------------
r426 | bruce | 2006-09-06 20:57:49 -0600 (Wed, 06 Sep 2006) | 1 line
Changed paths:
   A /tags/0.82 (from /trunk:425)

Tagged version 0.82
------------------------------------------------------------------------
r425 | bruce | 2006-08-30 17:55:33 -0600 (Wed, 30 Aug 2006) | 2 lines
Changed paths:
   M /trunk/LIBVERSION

Bumped the library revision number.

------------------------------------------------------------------------
r424 | bruce | 2006-08-30 17:09:45 -0600 (Wed, 30 Aug 2006) | 3 lines
Changed paths:
   M /trunk/NEWS
   A /trunk/tests/split
   M /trunk/v2client_wrappers.c

Fixed handling of user/domain name splitting in the client library 
when the caller doesn't initially provide a domain name.

------------------------------------------------------------------------
r423 | bruce | 2006-08-30 17:09:37 -0600 (Wed, 30 Aug 2006) | 2 lines
Changed paths:
   M /trunk/cvm-testclient.c

Split domain names from the username in the test client (for testing).

------------------------------------------------------------------------
r422 | bruce | 2006-08-30 15:56:35 -0600 (Wed, 30 Aug 2006) | 2 lines
Changed paths:
   M /trunk/v1client.html
   M /trunk/v2client.html

Added a note in the documentation about $MAIL and $MAILDIR.

------------------------------------------------------------------------
r421 | bruce | 2006-08-30 15:55:16 -0600 (Wed, 30 Aug 2006) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/client_setenv.c

Set $MAILDIR in cvm_client_setenv

------------------------------------------------------------------------
r420 | bruce | 2006-08-30 15:53:13 -0600 (Wed, 30 Aug 2006) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/VERSION

Bumped version to 0.82

------------------------------------------------------------------------
r419 | bruce | 2006-07-30 16:54:45 -0600 (Sun, 30 Jul 2006) | 1 line
Changed paths:
   A /tags/0.81 (from /trunk:418)

Tagged version 0.81
------------------------------------------------------------------------
r418 | bruce | 2006-07-30 16:27:44 -0600 (Sun, 30 Jul 2006) | 2 lines
Changed paths:
   M /trunk/INSTHIER
   M /trunk/NEWS

Fixed a typo in the INSTHIER file that caused incomplete installations.

------------------------------------------------------------------------
r417 | bruce | 2006-07-30 14:41:17 -0600 (Sun, 30 Jul 2006) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/VERSION

Bumped version to 0.81

------------------------------------------------------------------------
r416 | bruce | 2006-07-28 16:52:54 -0600 (Fri, 28 Jul 2006) | 1 line
Changed paths:
   A /tags/0.80 (from /trunk:415)

Tagged version 0.80
------------------------------------------------------------------------
r415 | bruce | 2006-07-28 16:23:55 -0600 (Fri, 28 Jul 2006) | 2 lines
Changed paths:
   M /trunk/README.in

Fixed up the README documentation.

------------------------------------------------------------------------
r414 | bruce | 2006-07-28 16:21:57 -0600 (Fri, 28 Jul 2006) | 2 lines
Changed paths:
   M /trunk/spec

Fixed up the spec for the shared library install.

------------------------------------------------------------------------
r413 | bruce | 2006-07-28 16:21:38 -0600 (Fri, 28 Jul 2006) | 2 lines
Changed paths:
   M /trunk/NEWS

Added note about shared library change to NEWS.

------------------------------------------------------------------------
r412 | bruce | 2006-07-28 16:20:49 -0600 (Fri, 28 Jul 2006) | 2 lines
Changed paths:
   M /trunk/INSTHIER

The installed libraries need to be made executable.

------------------------------------------------------------------------
r411 | bruce | 2006-07-27 22:51:55 -0600 (Thu, 27 Jul 2006) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/VERSION

Bumped version to 0.80

------------------------------------------------------------------------
r410 | bruce | 2006-07-27 22:51:14 -0600 (Thu, 27 Jul 2006) | 2 lines
Changed paths:
   M /trunk/client_domain.c
   M /trunk/client_setenv.c
   M /trunk/client_setugid.c
   M /trunk/client_xfer_command.c
   M /trunk/client_xfer_local.c
   M /trunk/client_xfer_udp.c
   M /trunk/cvm-benchclient.c
   M /trunk/cvm-checkpassword.c
   M /trunk/cvm-mysql.c
   M /trunk/cvm-pgsql.c
   M /trunk/cvm-pwfile.c
   M /trunk/cvm-qmail.c
   M /trunk/cvm-testclient.c
   M /trunk/cvm-unix.c
   M /trunk/cvm-v1benchclient.c
   M /trunk/cvm-v1checkpassword.c
   M /trunk/cvm-v1testclient.c
   M /trunk/cvm-vmailmgr.c
   M /trunk/errors.c
   M /trunk/facts.c
   M /trunk/getpwnam.c
   M /trunk/module_command.c
   M /trunk/module_command_main.c
   M /trunk/module_local.c
   M /trunk/module_local_main.c
   M /trunk/module_log.c
   M /trunk/module_main.c
   M /trunk/module_output.c
   M /trunk/module_request.c
   M /trunk/module_udp.c
   M /trunk/module_udp_main.c
   M /trunk/qmail-domains.c
   M /trunk/qmail-dotfile.c
   M /trunk/qmail-init.c
   M /trunk/qmail-lookup.c
   M /trunk/qmail-users.c
   M /trunk/spec
   M /trunk/sql-auth.c
   M /trunk/sql-query.c
   M /trunk/v1client.c
   M /trunk/v2client.c
   M /trunk/v2client_wrappers.c
   M /trunk/vmautoconvert.c
   M /trunk/vmlookup.c

Rewrote the remaining em.ca addresses to untroubled.org.

------------------------------------------------------------------------
r409 | bruce | 2006-07-27 22:48:43 -0600 (Thu, 27 Jul 2006) | 2 lines
Changed paths:
   M /trunk/INSTHIER
   A /trunk/LIBVERSION
   M /trunk/cvm-benchclient=x
   M /trunk/cvm-chain=x
   M /trunk/cvm-checkpassword=x
   M /trunk/cvm-mysql-local=x
   M /trunk/cvm-mysql-udp=x
   M /trunk/cvm-mysql=x
   M /trunk/cvm-pgsql-local=x
   M /trunk/cvm-pgsql-udp=x
   M /trunk/cvm-pgsql=x
   M /trunk/cvm-pwfile=x
   M /trunk/cvm-qmail=x
   M /trunk/cvm-testclient=x
   M /trunk/cvm-unix=x
   M /trunk/cvm-v1benchclient=x
   M /trunk/cvm-v1checkpassword=x
   M /trunk/cvm-v1testclient=x
   M /trunk/cvm-vchkpw=x
   M /trunk/cvm-vmailmgr-local=x
   M /trunk/cvm-vmailmgr-udp=x
   M /trunk/cvm-vmailmgr=x
   M /trunk/sasl-auth-test=x

Create, link, and install shared libraries.

------------------------------------------------------------------------
r408 | bruce | 2006-07-27 22:46:51 -0600 (Thu, 27 Jul 2006) | 2 lines
Changed paths:
   M /trunk/README.in

Fixed the old em.ca email address.

------------------------------------------------------------------------
r407 | bruce | 2006-07-26 08:56:32 -0600 (Wed, 26 Jul 2006) | 2 lines
Changed paths:
   M /trunk/INSTHIER
   D /trunk/command=l
   M /trunk/cvm-benchclient=x
   M /trunk/cvm-chain=x
   M /trunk/cvm-checkpassword=x
   M /trunk/cvm-mysql-local=x
   M /trunk/cvm-mysql-udp=x
   M /trunk/cvm-mysql=x
   M /trunk/cvm-pgsql-local=x
   M /trunk/cvm-pgsql-udp=x
   M /trunk/cvm-pgsql=x
   M /trunk/cvm-pwfile=x
   M /trunk/cvm-qmail=x
   M /trunk/cvm-testclient=x
   M /trunk/cvm-unix=x
   M /trunk/cvm-v1benchclient=x
   M /trunk/cvm-v1checkpassword=x
   M /trunk/cvm-v1testclient=x
   M /trunk/cvm-vchkpw=x
   M /trunk/cvm-vmailmgr-local=x
   M /trunk/cvm-vmailmgr-udp=x
   M /trunk/cvm-vmailmgr=x
   A /trunk/libcvm-command=l (from /trunk/command=l:391)
   A /trunk/libcvm-local=l (from /trunk/local=l:391)
   A /trunk/libcvm-module=l (from /trunk/module=l:391)
   A /trunk/libcvm-qmail=l (from /trunk/qmail=l:391)
   A /trunk/libcvm-sasl=l (from /trunk/sasl=l:391)
   A /trunk/libcvm-sql=l (from /trunk/sql=l:391)
   A /trunk/libcvm-udp=l (from /trunk/udp=l:391)
   A /trunk/libcvm-v1client=l (from /trunk/v1client=l:391)
   A /trunk/libcvm-v2client=l (from /trunk/v2client=l:391)
   D /trunk/local=l
   D /trunk/module=l
   D /trunk/qmail=l
   M /trunk/sasl-auth-test=x
   D /trunk/sasl=l
   D /trunk/sql=l
   D /trunk/udp=l
   D /trunk/v1client=l
   D /trunk/v2client=l

Renamed all the libraries to have their target libcvm- prefix.

------------------------------------------------------------------------
r406 | bruce | 2005-08-29 10:20:02 -0600 (Mon, 29 Aug 2005) | 1 line
Changed paths:
   A /tags/0.76 (from /trunk:405)

Tagged version 0.76
------------------------------------------------------------------------
r405 | bruce | 2005-08-29 10:02:41 -0600 (Mon, 29 Aug 2005) | 3 lines
Changed paths:
   M /trunk/cvm-qmail.html
   M /trunk/cvm-vmailmgr.html

Documentation touch-ups: make reference to cvm-qmail in cvm-vmailmgr
config variables, and properly alphabetize the variable names.

------------------------------------------------------------------------
r404 | bruce | 2005-08-29 09:55:32 -0600 (Mon, 29 Aug 2005) | 3 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/cvm-qmail.html
   M /trunk/qmail-domains.c
   A /trunk/tests/qmail-lookup-assume

Added a feature to all qmail-based modules to treat all domains as local
if $CVM_QMAIL_ASSUME_LOCAL is set.

------------------------------------------------------------------------
r403 | bruce | 2005-08-28 15:41:50 -0600 (Sun, 28 Aug 2005) | 2 lines
Changed paths:
   M /trunk/tests/vmailmgr-xconvert

Fixed a missing-escaped-$ typo on the vmailmgr-xconvert test.

------------------------------------------------------------------------
r402 | bruce | 2005-08-28 15:40:43 -0600 (Sun, 28 Aug 2005) | 3 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/vmautoconvert.c

Fixed the autoconvert feature of cvm-vmailmgr to set the permissions 
and ownership of the created password table to that of the original.

------------------------------------------------------------------------
r401 | bruce | 2005-08-28 15:28:05 -0600 (Sun, 28 Aug 2005) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/VERSION

Bumped version to 0.76

------------------------------------------------------------------------
r400 | bruce | 2005-08-27 00:46:41 -0600 (Sat, 27 Aug 2005) | 2 lines
Changed paths:
   M /trunk/tests/vmailmgr-xconvert

Use cdbget to dump the converted record in a more useful format.

------------------------------------------------------------------------
r399 | bruce | 2005-08-23 13:40:54 -0600 (Tue, 23 Aug 2005) | 1 line
Changed paths:
   A /tags/0.75 (from /trunk:398)

Tagged version 0.75
------------------------------------------------------------------------
r398 | bruce | 2005-08-23 13:35:46 -0600 (Tue, 23 Aug 2005) | 3 lines
Changed paths:
   M /trunk/tests.inc

Fixed up printf invocations to make them work around the bugs in ash's
builtin printf.

------------------------------------------------------------------------
r397 | bruce | 2005-08-23 12:22:48 -0600 (Tue, 23 Aug 2005) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/VERSION

Bumped version number to 0.75, just because.

------------------------------------------------------------------------
r396 | bruce | 2005-08-19 17:35:32 -0600 (Fri, 19 Aug 2005) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/cvm-vmailmgr.html

Documented the new $VMAILMGR_AUTOCONVERT environment variable.

------------------------------------------------------------------------
r395 | bruce | 2005-08-19 16:42:17 -0600 (Fri, 19 Aug 2005) | 3 lines
Changed paths:
   M /trunk/spec

The previous cvm-vmailmgr autoconvert fix requires a patch only present
in bglibs 1.027.

------------------------------------------------------------------------
r394 | bruce | 2005-08-19 16:40:49 -0600 (Fri, 19 Aug 2005) | 3 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/TODO
   M /trunk/cvm-vmailmgr-local=x
   M /trunk/cvm-vmailmgr-udp=x
   M /trunk/cvm-vmailmgr.c
   M /trunk/cvm-vmailmgr.h
   M /trunk/cvm-vmailmgr=x
   A /trunk/tests/vmailmgr-xconvert
   M /trunk/tests.inc
   A /trunk/vmautoconvert.c

Added an "autoconvert" mode to cvm-vmailmgr, which converts encrypted
passwords to plain-text on successful authentication.

------------------------------------------------------------------------
r393 | bruce | 2005-08-19 15:00:18 -0600 (Fri, 19 Aug 2005) | 3 lines
Changed paths:
   M /trunk/cvm-vmailmgr-local=x
   M /trunk/cvm-vmailmgr-udp=x
   M /trunk/cvm-vmailmgr.c
   M /trunk/cvm-vmailmgr.h
   M /trunk/cvm-vmailmgr=x
   D /trunk/vmmain.c

Since there is no more cvm-vmlookup module, merge vmmain.c back into
cvm-vmailmgr.c (and adjust cvm-vmailmgr.h to match).

------------------------------------------------------------------------
r392 | bruce | 2005-08-19 14:53:11 -0600 (Fri, 19 Aug 2005) | 2 lines
Changed paths:
   A /trunk/INSTHIER
   D /trunk/insthier.c
   M /trunk/spec

Converted to use bg-installer for installation.

------------------------------------------------------------------------
r391 | bruce | 2005-08-19 14:43:24 -0600 (Fri, 19 Aug 2005) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/VERSION

Bumped version to 0.72

------------------------------------------------------------------------
r390 | bruce | 2005-06-01 23:38:00 -0600 (Wed, 01 Jun 2005) | 1 line
Changed paths:
   A /tags/0.71 (from /trunk:389)

Tagged version 0.71
------------------------------------------------------------------------
r389 | bruce | 2005-06-01 22:55:07 -0600 (Wed, 01 Jun 2005) | 2 lines
Changed paths:
   M /trunk/makedist.py

Add the ChangeLog to the list of "extra" website files.

------------------------------------------------------------------------
r388 | bruce | 2005-06-01 22:20:11 -0600 (Wed, 01 Jun 2005) | 3 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/TOP.spac
   M /trunk/cvm-vchkpw.c
   A /trunk/cvm-vchkpw=x
   M /trunk/programs.spac

Updated the cvm-vchkpw module.  It now compiles, and should work
but remains completely untested.

------------------------------------------------------------------------
r387 | bruce | 2005-06-01 22:02:23 -0600 (Wed, 01 Jun 2005) | 2 lines
Changed paths:
   A /trunk/sasl_auth.c

Initial commit of sasl_auth.c source.

------------------------------------------------------------------------
r386 | bruce | 2005-06-01 21:59:43 -0600 (Wed, 01 Jun 2005) | 2 lines
Changed paths:
   A /trunk/cvm-chain.html

Initial commit of the cvm-chain.html documentation page.

------------------------------------------------------------------------
r385 | bruce | 2005-06-01 19:39:19 -0600 (Wed, 01 Jun 2005) | 2 lines
Changed paths:
   M /trunk/tests.inc

Set PROTO to make UCSPI variables work.

------------------------------------------------------------------------
r384 | bruce | 2005-06-01 19:39:00 -0600 (Wed, 01 Jun 2005) | 2 lines
Changed paths:
   M /trunk/spec

Use %{_includedir} for locaing the PostgreSQL headers.

------------------------------------------------------------------------
r383 | bruce | 2005-06-01 19:38:32 -0600 (Wed, 01 Jun 2005) | 2 lines
Changed paths:
   M /trunk/TODO

Added a to do note about auto-converting passwords.

------------------------------------------------------------------------
r382 | bruce | 2005-06-01 19:38:12 -0600 (Wed, 01 Jun 2005) | 2 lines
Changed paths:
   M /trunk/TODO
   M /trunk/v2client_wrappers.c

Rewrote v2client_wrappers to avoid static strings.

------------------------------------------------------------------------
r381 | bruce | 2005-06-01 19:19:28 -0600 (Wed, 01 Jun 2005) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/VERSION

Bumped version to 0.71 for several brown-paper-bag bug fixes.

------------------------------------------------------------------------
r380 | bruce | 2005-06-01 19:18:49 -0600 (Wed, 01 Jun 2005) | 2 lines
Changed paths:
   M /trunk/sasl_authenticate.c

If no domain is present, use an empty one instead of crashing.

------------------------------------------------------------------------
r379 | bruce | 2005-06-01 19:17:34 -0600 (Wed, 01 Jun 2005) | 3 lines
Changed paths:
   M /trunk/cvm-checkpassword.c
   M /trunk/cvm-v1checkpassword.c
   M /trunk/sasl_init.c

Use ucspi_localhost() instead of getenv("TCPLOCALHOST") to determine the
local host name.

------------------------------------------------------------------------
r378 | bruce | 2005-06-01 19:13:21 -0600 (Wed, 01 Jun 2005) | 2 lines
Changed paths:
   M /trunk/sasl_login.c

Only set sa->response if no initial response is present.

------------------------------------------------------------------------
r377 | bruce | 2005-06-01 19:12:59 -0600 (Wed, 01 Jun 2005) | 2 lines
Changed paths:
   M /trunk/sasl_plain.c

Switched to a static response function.

------------------------------------------------------------------------
r376 | bruce | 2005-06-01 19:12:30 -0600 (Wed, 01 Jun 2005) | 2 lines
Changed paths:
   M /trunk/sasl_cram_md5.c

Switched to a static response function.

------------------------------------------------------------------------
r375 | bruce | 2005-06-01 19:09:46 -0600 (Wed, 01 Jun 2005) | 3 lines
Changed paths:
   M /trunk/sasl_login.c

Use multiple response functions instead of keeping state based on the
length of sa->username.

------------------------------------------------------------------------
r374 | bruce | 2005-06-01 19:04:26 -0600 (Wed, 01 Jun 2005) | 3 lines
Changed paths:
   M /trunk/sasl_login.c

Make sure to set the username empty before starting the login process,
otherwise all logins after the first will fail.

------------------------------------------------------------------------
r373 | bruce | 2005-06-01 17:21:41 -0600 (Wed, 01 Jun 2005) | 1 line
Changed paths:
   A /tags/0.70 (from /trunk:372)

Tagged version 0.70
------------------------------------------------------------------------
r372 | bruce | 2005-06-01 17:16:14 -0600 (Wed, 01 Jun 2005) | 2 lines
Changed paths:
   M /trunk/TOP.spac

Make sure the "install" target is in the local TOP spac rule.

------------------------------------------------------------------------
r371 | bruce | 2005-06-01 16:48:45 -0600 (Wed, 01 Jun 2005) | 2 lines
Changed paths:
   M /trunk/README.in
   M /trunk/spec

Now requires bglibs-1.020 (format strings).

------------------------------------------------------------------------
r370 | bruce | 2005-06-01 14:11:07 -0600 (Wed, 01 Jun 2005) | 3 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/VERSION
   M /trunk/sasl.h
   M /trunk/sasl_authenticate.c
   M /trunk/sasl_cram_md5.c
   M /trunk/sasl_init.c
   M /trunk/sasl_internal.h
   M /trunk/sasl_login.c
   M /trunk/sasl_plain.c
   M /trunk/sasl_start.c

Rewrote SASL API to eliminate static data, making it reentrant.
Bumped version up to 0.70 as a result.

------------------------------------------------------------------------
r369 | bruce | 2005-06-01 13:42:26 -0600 (Wed, 01 Jun 2005) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/TODO
   A /trunk/sasl-auth-test.c
   A /trunk/sasl-auth-test=x
   M /trunk/sasl.h
   M /trunk/sasl=l
   M /trunk/sasl_authenticate.c
   A /trunk/tests/sasl-eof
   A /trunk/tests/sasl-login1
   A /trunk/tests/sasl-login2
   A /trunk/tests/sasl-nomech
   A /trunk/tests/sasl-plain-fail
   A /trunk/tests/sasl-plain1
   A /trunk/tests/sasl-plain2
   M /trunk/tests.inc

Added SASL generic text I/O authentication framework from mailfront.

------------------------------------------------------------------------
r368 | bruce | 2005-05-31 13:28:03 -0600 (Tue, 31 May 2005) | 2 lines
Changed paths:
   M /trunk/NEWS

Fixed up the SASL library to use the v2 client library.

------------------------------------------------------------------------
r367 | bruce | 2005-05-31 13:27:53 -0600 (Tue, 31 May 2005) | 2 lines
Changed paths:
   M /trunk/sasl_cram_md5.c
   M /trunk/sasl_internal.h
   M /trunk/sasl_login.c
   M /trunk/sasl_plain.c

Fixed up the SASL library to use the v2 client library.

------------------------------------------------------------------------
r366 | bruce | 2005-05-31 13:26:54 -0600 (Tue, 31 May 2005) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/VERSION

Bumped version to 0.65

------------------------------------------------------------------------
r365 | bruce | 2005-05-31 10:51:07 -0600 (Tue, 31 May 2005) | 2 lines
Changed paths:
   M /trunk/credentials.html

Clarified the CVM_CRED_RESPONSE_TYPE value semantics.

------------------------------------------------------------------------
r364 | bruce | 2005-05-31 09:37:56 -0600 (Tue, 31 May 2005) | 2 lines
Changed paths:
   M /trunk/v2client.c
   M /trunk/v2client.h

Make the credentials parameter const, as it is not modified.

------------------------------------------------------------------------
r363 | bruce | 2005-05-29 23:46:34 -0600 (Sun, 29 May 2005) | 2 lines
Changed paths:
   M /trunk/client_xfer_command.c
   M /trunk/client_xfer_udp.c
   M /trunk/cvm-chain.c
   M /trunk/cvm-unix.c
   M /trunk/cvm-vchkpw.c
   M /trunk/cvm-vmailmgr.c
   M /trunk/module_output.c
   M /trunk/sasl_cram_md5.c
   M /trunk/v1client.c
   M /trunk/v2client.c
   M /trunk/vmlookup.c
   M /trunk/vmmain.c

Move #include <sys/types> to the first in the list, as BSD needs this.

------------------------------------------------------------------------
r362 | bruce | 2005-05-29 16:54:31 -0600 (Sun, 29 May 2005) | 1 line
Changed paths:
   A /tags/0.60 (from /trunk:361)

Tagged version 0.60
------------------------------------------------------------------------
r361 | bruce | 2005-05-29 16:41:13 -0600 (Sun, 29 May 2005) | 2 lines
Changed paths:
   M /trunk/TODO
   A /trunk/tests/chain

Added test for cvm-chain.

------------------------------------------------------------------------
r360 | bruce | 2005-05-27 17:01:19 -0600 (Fri, 27 May 2005) | 3 lines
Changed paths:
   M /trunk/NEWS
   A /trunk/cvm-chain.c
   A /trunk/cvm-chain=x
   M /trunk/cvm.html
   M /trunk/insthier.c

Added cvm-chain combination client/module program
(adapted from code contributed by Dale Woolridge).

------------------------------------------------------------------------
r359 | bruce | 2005-05-27 11:55:05 -0600 (Fri, 27 May 2005) | 2 lines
Changed paths:
   M /trunk/module.html
   M /trunk/v1client.html
   M /trunk/v2client.html

Renamed client and module library symbols in the documentation.

------------------------------------------------------------------------
r358 | bruce | 2005-05-27 11:54:43 -0600 (Fri, 27 May 2005) | 2 lines
Changed paths:
   M /trunk/client_domain.c

Renamed cvm_ucspi_domain to match other cvm client library functions.

------------------------------------------------------------------------
r357 | bruce | 2005-05-25 17:52:01 -0600 (Wed, 25 May 2005) | 3 lines
Changed paths:
   M /trunk/module.h
   M /trunk/v1client.h
   M /trunk/v2client.h

Added an #ifdef in the headers to prevent the definition of the
compatibility macros.

------------------------------------------------------------------------
r356 | bruce | 2005-05-25 17:37:52 -0600 (Wed, 25 May 2005) | 4 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/VERSION
   M /trunk/client_setenv.c
   M /trunk/client_setugid.c
   M /trunk/credentials.h
   M /trunk/cvm-benchclient.c
   M /trunk/cvm-checkpassword.c
   M /trunk/cvm-pwfile.c
   M /trunk/cvm-qmail.c
   M /trunk/cvm-testclient.c
   M /trunk/cvm-unix.c
   M /trunk/cvm-v1benchclient.c
   M /trunk/cvm-v1checkpassword.c
   M /trunk/cvm-v1testclient.c
   M /trunk/cvm-vmailmgr.c
   M /trunk/module.h
   M /trunk/module_command.c
   M /trunk/module_local.c
   M /trunk/module_local_main.c
   M /trunk/module_log.c
   M /trunk/module_main.c
   M /trunk/module_output.c
   M /trunk/module_request.c
   M /trunk/module_udp.c
   M /trunk/module_udp_main.c
   M /trunk/qmail-lookup.c
   M /trunk/sasl_authenticate.c
   M /trunk/sasl_cram_md5.c
   M /trunk/sql-auth.c
   M /trunk/sql-query-test.c
   M /trunk/sql-query.c
   M /trunk/v1client.c
   M /trunk/v1client.h
   M /trunk/v2client.c
   M /trunk/v2client.h
   M /trunk/v2client_wrappers.c
   M /trunk/vmlookup.c
   M /trunk/vmmain.c

Major API change, bumping up the version number to 0.60.
- All module symbols are named cvm_module_*
- All client symbols are named cvm_client_*

------------------------------------------------------------------------
r355 | bruce | 2005-05-25 13:24:31 -0600 (Wed, 25 May 2005) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/cvm-pwfile.c
   M /trunk/cvm-qmail.c
   M /trunk/cvm-unix.c
   M /trunk/cvm-vchkpw.c
   M /trunk/module.h
   M /trunk/module.html
   M /trunk/module_command.c
   M /trunk/module_local.c
   M /trunk/module_udp.c
   M /trunk/sql-auth.c
   M /trunk/vmmain.c

Renamed cvm_auth_{init,stop} to cvm_module_{init,stop}.

------------------------------------------------------------------------
r354 | bruce | 2005-05-25 12:32:20 -0600 (Wed, 25 May 2005) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/VERSION

Bumped version to 0.51

------------------------------------------------------------------------
r353 | bruce | 2005-05-11 13:56:16 -0600 (Wed, 11 May 2005) | 3 lines
Changed paths:
   M /trunk/cvm-qmail.c
   M /trunk/tests/qmail-lookup

Authenticating against cvm-qmail is nonsense, so make cvm-qmail work
only in lookup mode.

------------------------------------------------------------------------
r352 | bruce | 2005-05-10 17:05:14 -0600 (Tue, 10 May 2005) | 1 line
Changed paths:
   A /tags/0.50 (from /trunk:351)

Tagged version 0.50
------------------------------------------------------------------------
r351 | bruce | 2005-05-10 16:38:11 -0600 (Tue, 10 May 2005) | 2 lines
Changed paths:
   M /trunk/sql-query-test.c

Clear the memory for cvm_credentials just like the module code does.

------------------------------------------------------------------------
r350 | bruce | 2005-05-10 16:36:59 -0600 (Tue, 10 May 2005) | 2 lines
Changed paths:
   M /trunk/TODO
   M /trunk/cvm-benchclient.c
   M /trunk/cvm-checkpassword.c
   M /trunk/cvm-pwfile.c
   M /trunk/cvm-testclient.c
   M /trunk/cvm-v1benchclient.c
   M /trunk/cvm-v1checkpassword.c
   M /trunk/cvm-v1testclient.c
   M /trunk/module_command_main.c
   M /trunk/module_local.c
   M /trunk/module_local_main.c
   M /trunk/module_main.c
   M /trunk/module_udp.c
   M /trunk/module_udp_main.c
   M /trunk/sql-query-test.c
   M /trunk/tests/command-bad-password
   M /trunk/tests/command-bad-username
   M /trunk/tests/lookup
   M /trunk/tests/pwfile-local-bad-password
   M /trunk/tests/pwfile-udp-bad-password
   M /trunk/tests/qmail-lookup
   M /trunk/tests/v1lookup
   M /trunk/tests/vmailmgr-upper-pass
   M /trunk/tests/vmlookup-badpass

Switched completely away from using stdio.

------------------------------------------------------------------------
r349 | bruce | 2005-05-10 11:39:00 -0600 (Tue, 10 May 2005) | 3 lines
Changed paths:
   M /trunk/insthier.c
   M /trunk/spec

Split conf-home control into conf-bin/include/lib, to help deal with
systems on which the different directories are in non-obvious places.

------------------------------------------------------------------------
r348 | bruce | 2005-05-10 11:27:41 -0600 (Tue, 10 May 2005) | 2 lines
Changed paths:
   M /trunk/protocol-2.html

Added notes about the rationale behind the version 2 protocol.

------------------------------------------------------------------------
r347 | bruce | 2005-05-10 11:07:04 -0600 (Tue, 10 May 2005) | 2 lines
Changed paths:
   M /trunk/v2client.html

Fixed some missing details in the v2client API documentation.

------------------------------------------------------------------------
r346 | bruce | 2005-05-10 11:06:43 -0600 (Tue, 10 May 2005) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/TODO

Updated the notes about the changes in this release.

------------------------------------------------------------------------
r345 | bruce | 2005-05-10 10:58:18 -0600 (Tue, 10 May 2005) | 2 lines
Changed paths:
   D /trunk/client.html

Removed the unreferenced client.html documentation.

------------------------------------------------------------------------
r344 | bruce | 2005-05-10 10:58:02 -0600 (Tue, 10 May 2005) | 2 lines
Changed paths:
   M /trunk/module.html

Updated the module API documentation.

------------------------------------------------------------------------
r343 | bruce | 2005-05-10 10:56:29 -0600 (Tue, 10 May 2005) | 2 lines
Changed paths:
   M /trunk/tests/stop-pwfile-local
   M /trunk/tests/stop-pwfile-udp
   A /trunk/tests/v1local
   A /trunk/tests/v1lookup
   A /trunk/tests/v1udp

Added tests of the v1 module compatibility mode.

------------------------------------------------------------------------
r342 | bruce | 2005-05-10 10:50:42 -0600 (Tue, 10 May 2005) | 2 lines
Changed paths:
   M /trunk/cvm.html
   A /trunk/v1client.html (from /trunk/client.html:337)
   A /trunk/v2client.html (from /trunk/client.html:337)

Documented the new Version 2 API.

------------------------------------------------------------------------
r341 | bruce | 2005-05-10 10:43:05 -0600 (Tue, 10 May 2005) | 2 lines
Changed paths:
   M /trunk/v2client.c
   M /trunk/v2client.h
   M /trunk/v2client_wrappers.c

Modified the API for cvm_split_account to be a little more reasonable.

------------------------------------------------------------------------
r340 | bruce | 2005-05-10 00:02:00 -0600 (Tue, 10 May 2005) | 2 lines
Changed paths:
   M /trunk/cvm-benchclient.c
   M /trunk/cvm-benchclient=x
   A /trunk/cvm-v1benchclient.c (from /trunk/cvm-benchclient.c:337)
   A /trunk/cvm-v1benchclient=x (from /trunk/cvm-benchclient=x:337)
   M /trunk/insthier.c

Converted cvm-benchclient to the v2 API.

------------------------------------------------------------------------
r339 | bruce | 2005-05-09 23:53:09 -0600 (Mon, 09 May 2005) | 2 lines
Changed paths:
   A /trunk/tests/qmail-lookup-nodomain

Added missing test.

------------------------------------------------------------------------
r338 | bruce | 2005-05-09 23:51:53 -0600 (Mon, 09 May 2005) | 2 lines
Changed paths:
   M /trunk/cvm-checkpassword.c
   M /trunk/cvm-checkpassword=x
   A /trunk/cvm-v1checkpassword.c (from /trunk/cvm-checkpassword.c:337)
   A /trunk/cvm-v1checkpassword=x (from /trunk/cvm-checkpassword=x:337)
   M /trunk/insthier.c

Converted cvm-checkpassword to the version 2 API.

------------------------------------------------------------------------
r337 | bruce | 2005-05-09 17:39:39 -0600 (Mon, 09 May 2005) | 2 lines
Changed paths:
   M /trunk/cvm-testclient.c
   M /trunk/v2client.h
   M /trunk/v2client_wrappers.c

Dropped the now redundant cvm_authenticate_lookup wrapper function.

------------------------------------------------------------------------
r336 | bruce | 2005-05-09 17:38:42 -0600 (Mon, 09 May 2005) | 3 lines
Changed paths:
   M /trunk/tests/pwfile-local
   M /trunk/tests/pwfile-local-bad-password
   M /trunk/tests/pwfile-udp
   M /trunk/tests/pwfile-udp-bad-password
   M /trunk/tests/stop-pwfile-local
   M /trunk/tests/stop-pwfile-udp
   M /trunk/v2client_wrappers.c

Modified the wrapper functions to only send across the credentials that
are not NULL or empty.

------------------------------------------------------------------------
r335 | bruce | 2005-05-09 17:32:09 -0600 (Mon, 09 May 2005) | 3 lines
Changed paths:
   M /trunk/v2client.c
   M /trunk/v2client.h
   M /trunk/v2client_wrappers.c

Split out the API for splitting a domain name from the account name into
a seperate function.

------------------------------------------------------------------------
r334 | bruce | 2005-05-09 17:16:40 -0600 (Mon, 09 May 2005) | 2 lines
Changed paths:
   M /trunk/tests/command-bad-password
   M /trunk/tests/command-bad-username
   M /trunk/tests/command-case
   M /trunk/tests/command-no-prefix
   M /trunk/tests/command-prefix
   M /trunk/tests/lookup
   M /trunk/tests/pwfile
   M /trunk/tests/pwfile-crypt
   M /trunk/tests/pwfile-local
   M /trunk/tests/pwfile-local-bad-password
   M /trunk/tests/pwfile-udp
   M /trunk/tests/pwfile-udp-bad-password
   M /trunk/tests/qmail-lookup
   M /trunk/tests/start-pwfile-local
   M /trunk/tests/start-pwfile-udp
   M /trunk/tests/stop-pwfile-local
   M /trunk/tests/stop-pwfile-udp
   M /trunk/tests/vmailmgr-normal
   M /trunk/tests/vmailmgr-upper-domain
   M /trunk/tests/vmailmgr-upper-pass
   M /trunk/tests/vmailmgr-upper-virt
   M /trunk/tests/vmlookup-badpass
   M /trunk/tests/vmlookup-normal
   M /trunk/tests/vmlookup-pass
   M /trunk/tests/vmlookup-upper-domain
   M /trunk/tests/vmlookup-upper-virt
   M /trunk/tests.inc

Fixed up tests to match current behavior.

------------------------------------------------------------------------
r333 | bruce | 2005-05-09 17:06:43 -0600 (Mon, 09 May 2005) | 3 lines
Changed paths:
   M /trunk/cvm-qmail.c

Since qmail_lookup_cvm handles the case where the domain credential is
missing, it shouldn't be marked as required in the module.

------------------------------------------------------------------------
r332 | bruce | 2005-05-09 13:50:08 -0600 (Mon, 09 May 2005) | 3 lines
Changed paths:
   M /trunk/module_output.c
   M /trunk/module_request.c

Fixed a bug in module output where error packets would always be sent in
version 1 protocol format.

------------------------------------------------------------------------
r331 | bruce | 2005-05-09 12:52:11 -0600 (Mon, 09 May 2005) | 2 lines
Changed paths:
   M /trunk/cvm-testclient.c
   M /trunk/v2client.h
   M /trunk/v2client_wrappers.c

Added plain lookup wrapper for cvm_authenticate.

------------------------------------------------------------------------
r330 | bruce | 2005-05-09 12:51:52 -0600 (Mon, 09 May 2005) | 2 lines
Changed paths:
   M /trunk/v2client.c

Fixed bug with parsing the length byte in cvm_fact_str.

------------------------------------------------------------------------
r329 | bruce | 2005-05-09 12:19:29 -0600 (Mon, 09 May 2005) | 2 lines
Changed paths:
   M /trunk/v2client.c

Fixed bug introduced with the $CVM_LOOKUP_SECRET variable.

------------------------------------------------------------------------
r328 | bruce | 2005-05-09 11:49:56 -0600 (Mon, 09 May 2005) | 4 lines
Changed paths:
   M /trunk/v2client.c

If $CVM_LOOKUP_SECRET is set, and no CVM_CRED_SECRET credential is
present, automatically add it to the set of credentials sent by the
client.

------------------------------------------------------------------------
r327 | bruce | 2005-05-08 23:15:57 -0600 (Sun, 08 May 2005) | 3 lines
Changed paths:
   M /trunk/cvm.html
   M /trunk/protocol-2.html

Since I have committed actual code for the v2 protocol, it no longer is
really a "work in progress".

------------------------------------------------------------------------
r326 | bruce | 2005-05-08 23:11:26 -0600 (Sun, 08 May 2005) | 3 lines
Changed paths:
   M /trunk/cvm-testclient.c
   M /trunk/module_output.c
   M /trunk/module_request.c
   M /trunk/v2client.c
   M /trunk/v2client.h
   M /trunk/v2client=l
   A /trunk/v2client_wrappers.c

Added initial support for protocol v2 to client library;
fixed some related bugs in the module library.

------------------------------------------------------------------------
r325 | bruce | 2005-05-08 22:28:04 -0600 (Sun, 08 May 2005) | 2 lines
Changed paths:
   M /trunk/v1client.c

Fixed potential problem with overflowing unsigned numbers.

------------------------------------------------------------------------
r324 | bruce | 2005-05-08 00:11:57 -0600 (Sun, 08 May 2005) | 2 lines
Changed paths:
   M /trunk/v1client.c

Use global CVM_BUFSIZE constant.

------------------------------------------------------------------------
r323 | bruce | 2005-05-08 00:09:48 -0600 (Sun, 08 May 2005) | 2 lines
Changed paths:
   M /trunk/v1client.c

Move parsing the result code in the buffer into the parse_buffer routine.

------------------------------------------------------------------------
r322 | bruce | 2005-05-08 00:08:33 -0600 (Sun, 08 May 2005) | 2 lines
Changed paths:
   M /trunk/client_xfer_udp.c

Don't try to interpret the buffer in the transfer code.

------------------------------------------------------------------------
r321 | bruce | 2005-05-07 23:57:48 -0600 (Sat, 07 May 2005) | 4 lines
Changed paths:
   D /trunk/client.c
   D /trunk/client.h
   D /trunk/client=l
   M /trunk/client_domain.c
   M /trunk/client_setenv.c
   M /trunk/client_setugid.c
   M /trunk/client_xfer_command.c
   M /trunk/client_xfer_local.c
   M /trunk/client_xfer_udp.c
   M /trunk/cvm-benchclient.c
   M /trunk/cvm-benchclient=x
   M /trunk/cvm-checkpassword.c
   M /trunk/cvm-checkpassword=x
   M /trunk/cvm-testclient.c
   M /trunk/cvm-testclient=x
   M /trunk/insthier.c
   M /trunk/sasl_authenticate.c
   M /trunk/sasl_cram_md5.c
   A /trunk/v2client.c (from /trunk/client.c:318)
   A /trunk/v2client.h (from /trunk/client.h:318)
   A /trunk/v2client=l (from /trunk/client=l:318)

Renamed the soon-to-be version 2 client library to v2client, and put in
compatibility links to the version 1 client library, to allow existing
software to compile properly.

------------------------------------------------------------------------
r320 | bruce | 2005-05-07 23:41:00 -0600 (Sat, 07 May 2005) | 2 lines
Changed paths:
   M /trunk/v1client.c

Fixed another signed char* instance.

------------------------------------------------------------------------
r319 | bruce | 2005-05-07 23:36:11 -0600 (Sat, 07 May 2005) | 2 lines
Changed paths:
   M /trunk/client_setenv.c

Fixed usage of global "str" type as variable name.

------------------------------------------------------------------------
r318 | bruce | 2005-05-07 23:02:38 -0600 (Sat, 07 May 2005) | 3 lines
Changed paths:
   M /trunk/client.c
   M /trunk/client.h
   M /trunk/client=l
   A /trunk/client_xfer_command.c (from /trunk/client.c:316)
   A /trunk/client_xfer_local.c (from /trunk/client.c:316)
   A /trunk/client_xfer_udp.c (from /trunk/client.c:316)
   M /trunk/v1client.c
   M /trunk/v1client.h
   M /trunk/v1client=l

Broke out the command/local/UDP client-module transmission code, as this
will be identical in both protocols.

------------------------------------------------------------------------
r317 | bruce | 2005-05-07 21:43:45 -0600 (Sat, 07 May 2005) | 3 lines
Changed paths:
   A /trunk/cvm-v1testclient.c (from /trunk/cvm-testclient.c:316)
   A /trunk/cvm-v1testclient=x (from /trunk/cvm-testclient=x:316)
   M /trunk/insthier.c
   A /trunk/v1client.c (from /trunk/client.c:316)
   A /trunk/v1client.h (from /trunk/client.h:316)
   A /trunk/v1client=l (from /trunk/client=l:316)

Saved a copy of the v1 protocol clients and API for compatibility
testing.

------------------------------------------------------------------------
r316 | bruce | 2005-05-07 13:25:14 -0600 (Sat, 07 May 2005) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/VERSION
   M /trunk/credentials.h
   M /trunk/cvm-pwfile.c
   M /trunk/cvm-qmail.c
   M /trunk/cvm-unix.c
   M /trunk/cvm-vmailmgr.c
   M /trunk/cvm.html
   M /trunk/insthier.c
   M /trunk/module.h
   M /trunk/module_log.c
   M /trunk/module_output.c
   M /trunk/module_request.c
   M /trunk/protocol-2.html
   M /trunk/qmail-domains.c
   M /trunk/qmail-lookup.c
   M /trunk/qmail.h
   M /trunk/sql-auth.c
   M /trunk/sql-query-test.c
   M /trunk/sql-query.c
   M /trunk/tests/lookup
   M /trunk/tests/pwfile-local
   M /trunk/tests/pwfile-local-bad-password
   M /trunk/tests/pwfile-udp
   M /trunk/tests/pwfile-udp-bad-password
   M /trunk/tests/stop-pwfile-local
   M /trunk/tests/stop-pwfile-udp
   M /trunk/vmlookup.c

Rewrote the module code to handle both v2 and v1 protocols.

------------------------------------------------------------------------
r315 | bruce | 2005-05-06 17:04:33 -0600 (Fri, 06 May 2005) | 3 lines
Changed paths:
   M /trunk/cvm.html
   A /trunk/protocol-1.html (from /trunk/protocol.html:293)
   M /trunk/protocol-2.html
   M /trunk/protocol.h
   D /trunk/protocol.html

Rewrote the version 2 protocol to be more like version 1, for efficiency
and ease of implementation.

------------------------------------------------------------------------
r314 | bruce | 2005-05-06 16:54:08 -0600 (Fri, 06 May 2005) | 2 lines
Changed paths:
   M /trunk/errors.html

Cleaned up some formatting, expanded details.

------------------------------------------------------------------------
r313 | bruce | 2005-05-06 16:53:26 -0600 (Fri, 06 May 2005) | 2 lines
Changed paths:
   M /trunk/facts.html

Fixed up some formatting and clarified the contents of strings.

------------------------------------------------------------------------
r312 | bruce | 2005-05-06 10:43:12 -0600 (Fri, 06 May 2005) | 1 line
Changed paths:
   A /tags/0.33 (from /trunk:311)

Tagged version 0.33
------------------------------------------------------------------------
r311 | bruce | 2005-05-06 01:16:55 -0600 (Fri, 06 May 2005) | 2 lines
Changed paths:
   M /trunk/client.c
   M /trunk/client.h
   M /trunk/client.html
   M /trunk/module.h
   M /trunk/module.html
   M /trunk/module_output.c

Fact numbers are effectively unsigned, so the API should match everywhere.

------------------------------------------------------------------------
r310 | bruce | 2005-05-06 01:00:39 -0600 (Fri, 06 May 2005) | 2 lines
Changed paths:
   M /trunk/module_output.c

Missed changing one pointer to the output buffer to unsigned char type.

------------------------------------------------------------------------
r309 | bruce | 2005-05-06 00:55:41 -0600 (Fri, 06 May 2005) | 2 lines
Changed paths:
   M /trunk/module.h
   M /trunk/module_output.c
   M /trunk/module_request.c

Converted the input and output module buffers to unsigned char type.

------------------------------------------------------------------------
r308 | bruce | 2005-05-05 17:55:30 -0600 (Thu, 05 May 2005) | 3 lines
Changed paths:
   M /trunk/credentials.h
   M /trunk/credentials.html

Added a response type credential, to distinguish between different
challenge-response mechanisms (APOP, CRAM-MD5, etc).

------------------------------------------------------------------------
r307 | bruce | 2005-05-05 16:28:01 -0600 (Thu, 05 May 2005) | 2 lines
Changed paths:
   M /trunk/cvm-vchkpw.c

Missed a closing ` on the load line in the comments of cvm-vchkpw.c

------------------------------------------------------------------------
r306 | bruce | 2005-05-05 10:42:22 -0600 (Thu, 05 May 2005) | 3 lines
Changed paths:
   M /trunk/client.c
   M /trunk/client.h
   M /trunk/module.h
   M /trunk/module_request.c
   A /trunk/protocol.h

Moved the protocol definitions into a shared header file,
in preparation for CVM2.

------------------------------------------------------------------------
r305 | bruce | 2005-05-05 09:31:55 -0600 (Thu, 05 May 2005) | 3 lines
Changed paths:
   M /trunk/credentials.h
   M /trunk/credentials.html

Reorganized the credentials slightly.  More reorganization is on the way
to fully provide support for all challenge-response mechanisms.

------------------------------------------------------------------------
r304 | bruce | 2005-05-05 00:12:59 -0600 (Thu, 05 May 2005) | 2 lines
Changed paths:
   M /trunk/module_log.c

Renamed "str" to simply "s" to avoid conflicts with the "str" data type.

------------------------------------------------------------------------
r303 | bruce | 2005-05-04 23:51:37 -0600 (Wed, 04 May 2005) | 3 lines
Changed paths:
   M /trunk/tests.inc

Adjusted tests to account for the getpwnam fallback after CDB lookup
failure.

------------------------------------------------------------------------
r302 | bruce | 2005-05-04 22:21:03 -0600 (Wed, 04 May 2005) | 3 lines
Changed paths:
   M /trunk/cvm-pwfile.html

Fixed the cvm-pwfile documentation to say that the default password
comparison mode was plain-text instead of UNIX crypt.

------------------------------------------------------------------------
r301 | bruce | 2005-05-04 21:58:46 -0600 (Wed, 04 May 2005) | 3 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/qmail-users.c

Fixed handling qmail lookups when cdb/users exists but does not
contain all users.  Thanks Dale Woolridge.

------------------------------------------------------------------------
r300 | bruce | 2005-05-04 17:23:08 -0600 (Wed, 04 May 2005) | 3 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/qmail-init.c
   M /trunk/qmail-lookup.c
   M /trunk/qmail.h
   M /trunk/tests.inc

Fixed handling qmail lookups with missing domains by reading 
control/me and control/envnoathost.

------------------------------------------------------------------------
r299 | bruce | 2005-05-04 16:44:35 -0600 (Wed, 04 May 2005) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/qmail-dotfile.c
   M /trunk/tests/qmail-lookup
   M /trunk/tests.inc

Fixed handling qmail lookups of extensions containing periods.

------------------------------------------------------------------------
r298 | bruce | 2005-05-04 16:12:39 -0600 (Wed, 04 May 2005) | 2 lines
Changed paths:
   M /trunk/client=l
   M /trunk/cvm-benchclient.c
   M /trunk/cvm-testclient.c
   A /trunk/errors.c
   M /trunk/errors.h
   M /trunk/tests/command-bad-password
   M /trunk/tests/command-bad-username
   M /trunk/tests/lookup
   M /trunk/tests/pwfile-local-bad-password
   M /trunk/tests/pwfile-udp-bad-password
   M /trunk/tests/qmail-lookup
   M /trunk/tests/vmailmgr-upper-pass
   M /trunk/tests/vmlookup-badpass

Added error strings analogous to sys_errlist.

------------------------------------------------------------------------
r297 | bruce | 2005-05-03 14:53:27 -0600 (Tue, 03 May 2005) | 3 lines
Changed paths:
   M /trunk/insthier.c

Conditionally install cvm-vchkpw, just like cvm-mysql and friends.
Thanks Peter Palmreuther <pit@pp4ce.de>

------------------------------------------------------------------------
r296 | bruce | 2005-05-03 14:51:04 -0600 (Tue, 03 May 2005) | 3 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/cvm-vchkpw.c

Added compile fix for cvm-vchkpw.
Thanks Peter Palmreuther <pit@pp4ce.de>

------------------------------------------------------------------------
r295 | bruce | 2005-05-03 14:45:58 -0600 (Tue, 03 May 2005) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/VERSION

Bumped up version to 0.33.

------------------------------------------------------------------------
r294 | bruce | 2005-01-14 16:14:26 -0600 (Fri, 14 Jan 2005) | 1 line
Changed paths:
   A /tags/0.32 (from /trunk:293)

Tagged version 0.32
------------------------------------------------------------------------
r293 | bruce | 2005-01-14 16:09:36 -0600 (Fri, 14 Jan 2005) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/qmail-users.c
   M /trunk/tests/qmail-lookup

Also lower-case the user name when looking it up, just like qmail-local does.

------------------------------------------------------------------------
r292 | bruce | 2005-01-14 14:47:03 -0600 (Fri, 14 Jan 2005) | 3 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/qmail-dotfile.c
   M /trunk/tests/qmail-lookup

Fixed the .qmail-ext lookup in cvm-qmail to lower-case the "-ext" part
just like qmail-local does.

------------------------------------------------------------------------
r291 | bruce | 2005-01-14 14:06:32 -0600 (Fri, 14 Jan 2005) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/VERSION

Bumped version to 0.32

------------------------------------------------------------------------
r290 | bruce | 2005-01-14 14:04:33 -0600 (Fri, 14 Jan 2005) | 2 lines
Changed paths:
   M /trunk/README.in

Bumped year to 2005.

------------------------------------------------------------------------
r289 | bruce | 2004-12-01 23:29:35 -0600 (Wed, 01 Dec 2004) | 3 lines
Changed paths:
   M /trunk/module.html

Rewrote and expanded the module documentation, fixing the lack of
documentation on cvm_results()

------------------------------------------------------------------------
r288 | bruce | 2004-11-15 14:21:26 -0600 (Mon, 15 Nov 2004) | 1 line
Changed paths:
   A /tags/0.31 (from /trunk:287)

Tagged version 0.31
------------------------------------------------------------------------
r287 | bruce | 2004-11-15 14:18:16 -0600 (Mon, 15 Nov 2004) | 3 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/qmail-users.c

Changed error code in the qmail code from EBADMSG to EDOM to allow
compilation on *BSD systems.

------------------------------------------------------------------------
r286 | bruce | 2004-11-15 14:06:41 -0600 (Mon, 15 Nov 2004) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/VERSION

Bumped version to 0.31

------------------------------------------------------------------------
r285 | bruce | 2004-11-12 11:28:06 -0600 (Fri, 12 Nov 2004) | 1 line
Changed paths:
   A /tags/0.30 (from /trunk:284)

Tagged version 0.30
------------------------------------------------------------------------
r284 | bruce | 2004-11-12 10:53:15 -0600 (Fri, 12 Nov 2004) | 2 lines
Changed paths:
   M /trunk/EXTRADIST
   M /trunk/doc.dist

Add distribution of the extra README files into EXTRADIST.

------------------------------------------------------------------------
r283 | bruce | 2004-11-10 17:09:07 -0600 (Wed, 10 Nov 2004) | 4 lines
Changed paths:
   M /trunk/cvm.html
   M /trunk/module_request.c
   A /trunk/tests/lookup

Modified the behavior of lookup mode slightly: if the lookup secret is
empty, it is treated as indicating that no password is needed but still
operate in lookup mode.

------------------------------------------------------------------------
r282 | bruce | 2004-11-10 14:36:54 -0600 (Wed, 10 Nov 2004) | 2 lines
Changed paths:
   M /trunk/tests/qmail-lookup
   M /trunk/tests/vmlookup-badpass
   M /trunk/tests/vmlookup-normal
   M /trunk/tests/vmlookup-pass
   M /trunk/tests/vmlookup-upper-domain
   M /trunk/tests/vmlookup-upper-virt
   M /trunk/tests.inc

Updated the tests to use/test the new generic lookup mode.

------------------------------------------------------------------------
r281 | bruce | 2004-11-10 14:36:27 -0600 (Wed, 10 Nov 2004) | 3 lines
Changed paths:
   M /trunk/README.in
   M /trunk/cvm-benchclient=x
   M /trunk/cvm-checkpassword=x
   M /trunk/cvm-mysql-local=x
   M /trunk/cvm-mysql-udp=x
   M /trunk/cvm-mysql=x
   M /trunk/cvm-pgsql-local=x
   M /trunk/cvm-pgsql-udp=x
   M /trunk/cvm-pgsql=x
   M /trunk/cvm-pwfile=x
   M /trunk/cvm-testclient=x
   M /trunk/cvm-unix=x
   M /trunk/cvm-vmailmgr-local=x
   M /trunk/cvm-vmailmgr-udp=x
   M /trunk/cvm-vmailmgr=x
   M /trunk/spec
   M /trunk/sql-query-test=x

Updated the executable linking files and the spec to use the new unified
bglibs file.

------------------------------------------------------------------------
r280 | bruce | 2004-11-10 14:13:31 -0600 (Wed, 10 Nov 2004) | 2 lines
Changed paths:
   M /trunk/NEWS
   D /trunk/cvm-vmlookup.c
   D /trunk/cvm-vmlookup=x
   M /trunk/insthier.c

Removed the now obsoleted cvm-vmlookup lookup-only module.

------------------------------------------------------------------------
r279 | bruce | 2004-11-10 14:12:30 -0600 (Wed, 10 Nov 2004) | 3 lines
Changed paths:
   M /trunk/cvm-vmailmgr.c
   M /trunk/cvm-vmailmgr.h
   M /trunk/vmlookup.c

Replaced the "try_default" global, which is only set when doing lookups,
with the new cvm_lookup_secret run-time flag.

------------------------------------------------------------------------
r278 | bruce | 2004-11-10 14:11:18 -0600 (Wed, 10 Nov 2004) | 3 lines
Changed paths:
   M /trunk/module.h
   M /trunk/module_request.c

Made the lookup secret value an exported symbol so that modules can
adjust their behavior dependant on if lookup mode is enabled.

------------------------------------------------------------------------
r277 | bruce | 2004-11-10 12:48:43 -0600 (Wed, 10 Nov 2004) | 2 lines
Changed paths:
   A /trunk/cvm-qmail.html
   A /trunk/cvm-vmailmgr.html
   M /trunk/cvm.html

Added documentation for the qmail and vmailmgr modules.

------------------------------------------------------------------------
r276 | bruce | 2004-11-10 12:33:15 -0600 (Wed, 10 Nov 2004) | 2 lines
Changed paths:
   M /trunk/cvm-mysql.html
   M /trunk/cvm-pgsql.html
   M /trunk/cvm-pwfile.html
   M /trunk/cvm-unix.html

Reformatted the "Configuration Variables" sections to be more readable.

------------------------------------------------------------------------
r275 | bruce | 2004-11-10 11:50:05 -0600 (Wed, 10 Nov 2004) | 2 lines
Changed paths:
   A /trunk/README.vmailmgr

Added the README file from vmailmgr to the repository.

------------------------------------------------------------------------
r274 | bruce | 2004-11-10 10:41:30 -0600 (Wed, 10 Nov 2004) | 5 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/VERSION
   M /trunk/command=l
   A /trunk/cvm-qmail.c (from /trunk/cvm-qmaillookup.c:273)
   A /trunk/cvm-qmail=x (from /trunk/cvm-qmaillookup=x:273)
   D /trunk/cvm-qmaillookup.c
   D /trunk/cvm-qmaillookup=x
   M /trunk/cvm-vmailmgr.h
   M /trunk/cvm-vmlookup.c
   M /trunk/cvm.html
   M /trunk/insthier.c
   M /trunk/local=l
   M /trunk/module.h
   M /trunk/module.html
   M /trunk/module=l
   M /trunk/module_local_main.c
   M /trunk/module_main.c
   D /trunk/module_preauth.c
   M /trunk/module_request.c
   M /trunk/module_udp_main.c
   A /trunk/tests/qmail-lookup (from /trunk/tests/qmaillookup:273)
   D /trunk/tests/qmaillookup
   M /trunk/tests/vmlookup-badpass
   M /trunk/tests/vmlookup-pass
   M /trunk/tests.inc
   M /trunk/udp=l
   M /trunk/vmmain.c

Added "lookup mode" common code, available in all modules.
Renamed cvm-qmaillookup to cvm-qmail, since it is no longer
lookup-specific.
Bumped the version to 0.30, as this is a major internal change.

------------------------------------------------------------------------
r273 | bruce | 2004-11-09 22:24:52 -0600 (Tue, 09 Nov 2004) | 2 lines
Changed paths:
   M /trunk/cvm.html

The *SQL modules are no longer in a seperate package.

------------------------------------------------------------------------
r272 | bruce | 2004-11-09 22:24:18 -0600 (Tue, 09 Nov 2004) | 3 lines
Changed paths:
   M /trunk/module.html

Added the cvm_auth_stop function and expanded the note about not exiting
to encompass all module supplied functions.

------------------------------------------------------------------------
r271 | bruce | 2004-11-09 22:22:20 -0600 (Tue, 09 Nov 2004) | 2 lines
Changed paths:
   M /trunk/doc.dist

Make sure the HTML files get included in the tarball.

------------------------------------------------------------------------
r270 | bruce | 2004-11-09 22:03:18 -0600 (Tue, 09 Nov 2004) | 2 lines
Changed paths:
   M /trunk/TODO

Fixed obsoleted URL.

------------------------------------------------------------------------
r269 | bruce | 2004-11-09 14:48:21 -0600 (Tue, 09 Nov 2004) | 6 lines
Changed paths:
   M /trunk/qmail-lookup.c

Add support for substituting a predetermined domain name and user if the
given domain isn't found in locals or virtualdomains.  This allows
lookups where the domain is in (more)rcpthosts to succeed even if they
aren't local domains (for cases where the server is acting as a
secondary etc).

------------------------------------------------------------------------
r268 | bruce | 2004-11-09 10:57:37 -0600 (Tue, 09 Nov 2004) | 3 lines
Changed paths:
   M /trunk/cvm-qmaillookup.c
   M /trunk/vmlookup.c
   M /trunk/vmmain.c

Since these modules all call the qmail_lookup_cvm code, use the
associated qmail_lookup_init for initialization.

------------------------------------------------------------------------
r267 | bruce | 2004-11-08 22:07:22 -0600 (Mon, 08 Nov 2004) | 2 lines
Changed paths:
   M /trunk/spec

Make sure the new cvm-qmaillookup module gets installed too.

------------------------------------------------------------------------
r266 | bruce | 2004-11-08 13:51:36 -0600 (Mon, 08 Nov 2004) | 2 lines
Changed paths:
   M /trunk/insthier.c

Added cvm-qmaillookup to installed modules.

------------------------------------------------------------------------
r265 | bruce | 2004-11-08 12:47:08 -0600 (Mon, 08 Nov 2004) | 3 lines
Changed paths:
   D /trunk/tests/build-qmail
   D /trunk/tests/del-qmail
   A /trunk/tests/qmaillookup
   M /trunk/tests/vmailmgr-normal
   M /trunk/tests/vmailmgr-upper-domain
   M /trunk/tests/vmailmgr-upper-pass
   M /trunk/tests/vmailmgr-upper-virt
   M /trunk/tests/vmlookup-badpass
   M /trunk/tests/vmlookup-normal
   M /trunk/tests/vmlookup-pass
   M /trunk/tests/vmlookup-upper-domain
   M /trunk/tests/vmlookup-upper-virt
   M /trunk/tests.inc

Reworked the tests framework for vmailmgr,
and added tests for cvm-qmaillookup

------------------------------------------------------------------------
r264 | bruce | 2004-11-08 12:39:28 -0600 (Mon, 08 Nov 2004) | 4 lines
Changed paths:
   M /trunk/qmail-dotfile.c

System users (as indicated by not having a "dash" in the users
structure) do not need a .qmail file to be considered to exist.
However, it is invalid to try to add an extension to them.

------------------------------------------------------------------------
r263 | bruce | 2004-11-08 11:30:12 -0600 (Mon, 08 Nov 2004) | 3 lines
Changed paths:
   A /trunk/doc.dist

Add the README.vmailmgr and README.vchkpw files to the distribution
archive.

------------------------------------------------------------------------
r262 | bruce | 2004-11-06 09:42:12 -0600 (Sat, 06 Nov 2004) | 2 lines
Changed paths:
   M /trunk/NEWS

Added note about the qmail code rewrite.

------------------------------------------------------------------------
r261 | bruce | 2004-11-06 09:41:03 -0600 (Sat, 06 Nov 2004) | 3 lines
Changed paths:
   M /trunk/NEWS
   A /trunk/cvm-qmaillookup.c
   A /trunk/cvm-qmaillookup=x

Added new cvm-qmaillookup module, which can be used to verify validity
of recipient addresses on qmail systems.

------------------------------------------------------------------------
r260 | bruce | 2004-11-06 09:37:44 -0600 (Sat, 06 Nov 2004) | 2 lines
Changed paths:
   M /trunk/qmail-users.c

Add support for default/alias delivery.

------------------------------------------------------------------------
r259 | bruce | 2004-11-06 09:36:51 -0600 (Sat, 06 Nov 2004) | 3 lines
Changed paths:
   A /trunk/qmail-domains.c (from /trunk/qmail-vdomains.c:251)
   M /trunk/qmail-lookup.c
   D /trunk/qmail-vdomains.c
   M /trunk/qmail.h
   M /trunk/qmail=l
   M /trunk/tests/build-qmail
   M /trunk/vmlookup.c

Renamed qmail_vdomains_* to qmail_domains_* and added control/local
lookups, which makes the qmail looks completely compliant with qmail.

------------------------------------------------------------------------
r258 | bruce | 2004-11-06 09:35:40 -0600 (Sat, 06 Nov 2004) | 2 lines
Changed paths:
   M /trunk/qmail-dotfile.c

Added error checking on str_* return codes.

------------------------------------------------------------------------
r257 | bruce | 2004-11-05 16:44:05 -0600 (Fri, 05 Nov 2004) | 3 lines
Changed paths:
   M /trunk/cvm-vmailmgr.h
   M /trunk/vmlookup.c
   M /trunk/vmmain.c

Rewrote the lookup_reinit, lookup_domain, lookup_baseuser, and
lookup_virtuser to use the newly created qmail_lookup_cvm routine.

------------------------------------------------------------------------
r256 | bruce | 2004-11-05 16:35:08 -0600 (Fri, 05 Nov 2004) | 4 lines
Changed paths:
   M /trunk/cvm-vmailmgr.c
   M /trunk/cvm-vmailmgr.h
   M /trunk/cvm-vmlookup.c
   M /trunk/vmlookup.c
   M /trunk/vmmain.c

Instead of calling vpwentry_auth from within the (custom) qmail lookup
code, use a cvm_preauth routine to specifically handle the lookup module
case (for cvm-vmlookup, unneeded in cvm-vmailmgr).

------------------------------------------------------------------------
r255 | bruce | 2004-11-05 16:17:33 -0600 (Fri, 05 Nov 2004) | 2 lines
Changed paths:
   M /trunk/module.html

Updated this documentation to reflect the current calling sequence.

------------------------------------------------------------------------
r254 | bruce | 2004-11-05 16:16:35 -0600 (Fri, 05 Nov 2004) | 2 lines
Changed paths:
   M /trunk/command=l
   M /trunk/local=l
   M /trunk/module.h
   M /trunk/module.html
   M /trunk/module=l
   A /trunk/module_preauth.c
   M /trunk/module_request.c
   M /trunk/udp=l

Added an optional cvm_preauth call before doing account lookups.

------------------------------------------------------------------------
r253 | bruce | 2004-11-05 12:39:21 -0600 (Fri, 05 Nov 2004) | 2 lines
Changed paths:
   A /trunk/qmail-dotfile.c
   A /trunk/qmail-lookup.c
   M /trunk/qmail.h
   M /trunk/qmail=l

Added qmail dotfile ($HOME/.qmail*) and generic lookup functions.

------------------------------------------------------------------------
r252 | bruce | 2004-11-05 12:38:19 -0600 (Fri, 05 Nov 2004) | 2 lines
Changed paths:
   M /trunk/vmlookup.c

Updated file header comments.

------------------------------------------------------------------------
r251 | bruce | 2004-11-04 22:21:48 -0600 (Thu, 04 Nov 2004) | 5 lines
Changed paths:
   M /trunk/cvm-vmailmgr-local=x
   M /trunk/cvm-vmailmgr-udp=x
   M /trunk/cvm-vmailmgr.h
   M /trunk/cvm-vmailmgr=x
   M /trunk/cvm-vmlookup=x
   A /trunk/qmail-init.c
   A /trunk/qmail-users.c
   A /trunk/qmail-vdomains.c
   A /trunk/qmail.h
   A /trunk/qmail=l
   M /trunk/vmlookup.c
   M /trunk/vmmain.c

Broke the vmailmgr lookup code into three parts:
1) qmail virtualdomains lookups
2) qmail users/cdb lookups
3) vmailmgr password table lookups

------------------------------------------------------------------------
r250 | bruce | 2004-11-04 12:06:06 -0600 (Thu, 04 Nov 2004) | 3 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/cvm-vmailmgr.c
   M /trunk/cvm-vmlookup.c
   M /trunk/sql-auth.c
   M /trunk/sql-query.c
   M /trunk/vmlookup.c
   M /trunk/vmmain.c

Fixed cvm/module.h header file include problem.
Thanks Paul Jarc for pointing this out.

------------------------------------------------------------------------
r249 | bruce | 2004-11-04 10:47:24 -0600 (Thu, 04 Nov 2004) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/VERSION

Bumped version to 0.25

------------------------------------------------------------------------
r248 | bruce | 2004-11-03 22:08:55 -0600 (Wed, 03 Nov 2004) | 1 line
Changed paths:
   A /tags/0.20 (from /trunk:247)

Tagged version 0.20
------------------------------------------------------------------------
r247 | bruce | 2004-11-03 21:47:55 -0600 (Wed, 03 Nov 2004) | 2 lines
Changed paths:
   M /trunk/spec

Added -I/usr/include/pgsql flag needed in some build environments.

------------------------------------------------------------------------
r246 | bruce | 2004-11-03 18:13:39 -0600 (Wed, 03 Nov 2004) | 2 lines
Changed paths:
   M /trunk/tests/pwfile-local
   M /trunk/tests/pwfile-local-bad-password
   M /trunk/tests/pwfile-udp
   M /trunk/tests/pwfile-udp-bad-password
   M /trunk/tests/stop-pwfile-local
   M /trunk/tests/stop-pwfile-udp

Switch to newer "tail -n #" usage.

------------------------------------------------------------------------
r245 | bruce | 2004-02-20 23:36:17 -0600 (Fri, 20 Feb 2004) | 3 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/client.c

Fixed a bug in client.c that prevented at least OpenBSD from using UDP
modules.  Thanks Balazs Nagy.

------------------------------------------------------------------------
r244 | bruce | 2004-02-10 14:28:20 -0600 (Tue, 10 Feb 2004) | 2 lines
Changed paths:
   A /trunk/README.vchkpw

Added cvm-vchkpw README from Sebastian Benoit <benoit-lists@fb12.de>

------------------------------------------------------------------------
r243 | bruce | 2004-02-10 13:29:03 -0600 (Tue, 10 Feb 2004) | 2 lines
Changed paths:
   M /trunk/cvm-vchkpw.c

Added comments from Sebastian Benoit <benoit-lists@fb12.de>

------------------------------------------------------------------------
r242 | bruce | 2004-02-10 13:22:31 -0600 (Tue, 10 Feb 2004) | 3 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/module_request.c

Treat cvm_fact_shell as optional (as defined by facts.html) instead of
required.

------------------------------------------------------------------------
r241 | bruce | 2004-02-10 00:10:52 -0600 (Tue, 10 Feb 2004) | 4 lines
Changed paths:
   M /trunk/cvm-pwfile.c
   M /trunk/cvm-unix.c
   M /trunk/cvm-vchkpw.c
   M /trunk/module.h
   M /trunk/module_request.c
   M /trunk/sql-auth.c
   M /trunk/vmmain.c

Seperate the lookup, authenticate, and result generation into three
seperate functions.  This will (eventually) allow for lookup-only
operation without recoding modules.

------------------------------------------------------------------------
r240 | bruce | 2004-02-09 12:24:20 -0600 (Mon, 09 Feb 2004) | 2 lines
Changed paths:
   M /trunk/EXTRADIST

Added missing NEWS.sql to extra distributed files.

------------------------------------------------------------------------
r239 | bruce | 2004-02-09 11:53:43 -0600 (Mon, 09 Feb 2004) | 2 lines
Changed paths:
   M /trunk/EXTRADIST
   A /trunk/NEWS.vmailmgr
   M /trunk/README.in

Added notes from cvm-vmailmgr.

------------------------------------------------------------------------
r238 | bruce | 2004-02-09 11:44:37 -0600 (Mon, 09 Feb 2004) | 2 lines
Changed paths:
   M /trunk/NEWS
   A /trunk/NEWS.sql
   M /trunk/README.in
   M /trunk/TODO
   A /trunk/TOP.spac
   A /trunk/cvm-mysql-local.c (from /trunk/cvm-mysql-local.c:151)
   A /trunk/cvm-mysql-local=x (from /trunk/cvm-mysql-local=x:151)
   A /trunk/cvm-mysql-udp.c (from /trunk/cvm-mysql-udp.c:151)
   A /trunk/cvm-mysql-udp=x (from /trunk/cvm-mysql-udp=x:151)
   A /trunk/cvm-mysql.c (from /trunk/cvm-mysql.c:151)
   A /trunk/cvm-mysql.html
   A /trunk/cvm-mysql=x (from /trunk/cvm-mysql=x:151)
   A /trunk/cvm-pgsql-local.c (from /trunk/cvm-pgsql-local.c:151)
   A /trunk/cvm-pgsql-local=x (from /trunk/cvm-pgsql-local=x:151)
   A /trunk/cvm-pgsql-udp.c (from /trunk/cvm-pgsql-udp.c:151)
   A /trunk/cvm-pgsql-udp=x (from /trunk/cvm-pgsql-udp=x:151)
   A /trunk/cvm-pgsql.c (from /trunk/cvm-pgsql.c:151)
   A /trunk/cvm-pgsql.html
   A /trunk/cvm-pgsql=x (from /trunk/cvm-pgsql=x:151)
   M /trunk/insthier.c
   A /trunk/mysql.spac
   A /trunk/pgsql.spac
   A /trunk/programs.spac
   M /trunk/spec
   A /trunk/sql-auth.c (from /trunk/sql-auth.c:151)
   A /trunk/sql-query-test.c (from /trunk/sql-query-test.c:151)
   A /trunk/sql-query-test=x (from /trunk/sql-query-test=x:151)
   A /trunk/sql-query.c (from /trunk/sql-query.c:151)
   A /trunk/sql.h (from /trunk/sql.h:151)
   A /trunk/sql.html (from /trunk/sql.html:151)
   A /trunk/sql=l (from /trunk/sql=l:151)
   A /trunk/tests/sql-substitution

Merged SQL modules back in from the seperated cvm-sql package.

------------------------------------------------------------------------
r237 | bruce | 2004-02-09 10:04:12 -0600 (Mon, 09 Feb 2004) | 2 lines
Changed paths:
   A /trunk/EXTRADIST
   A /trunk/cvm-vchkpw.c

Added contributed vpopmail CVM (cvm-vchkpw).

------------------------------------------------------------------------
r236 | bruce | 2004-02-09 09:43:04 -0600 (Mon, 09 Feb 2004) | 2 lines
Changed paths:
   A /trunk/ChangeLog.vmailmgr
   M /trunk/NEWS
   M /trunk/README.in
   M /trunk/TODO
   A /trunk/cvm-vmailmgr-local.c
   A /trunk/cvm-vmailmgr-local=x
   A /trunk/cvm-vmailmgr-udp.c
   A /trunk/cvm-vmailmgr-udp=x
   A /trunk/cvm-vmailmgr.c
   A /trunk/cvm-vmailmgr.h
   A /trunk/cvm-vmailmgr=x
   A /trunk/cvm-vmlookup.c
   A /trunk/cvm-vmlookup=x
   M /trunk/insthier.c
   M /trunk/spec
   A /trunk/tests/build-qmail
   A /trunk/tests/del-qmail
   A /trunk/tests/vmailmgr-normal
   A /trunk/tests/vmailmgr-upper-domain
   A /trunk/tests/vmailmgr-upper-pass
   A /trunk/tests/vmailmgr-upper-virt
   A /trunk/tests/vmlookup-badpass
   A /trunk/tests/vmlookup-normal
   A /trunk/tests/vmlookup-pass
   A /trunk/tests/vmlookup-upper-domain
   A /trunk/tests/vmlookup-upper-virt
   M /trunk/tests.inc
   A /trunk/vmlookup.c
   A /trunk/vmmain.c

Merged cvm-vmailmgr (including cvm-vmlookup) into this package.

------------------------------------------------------------------------
r235 | bruce | 2004-02-09 09:41:27 -0600 (Mon, 09 Feb 2004) | 2 lines
Changed paths:
   M /trunk/README.in

Bumped up the copyright year.

------------------------------------------------------------------------
r234 | bruce | 2004-02-08 22:14:06 -0600 (Sun, 08 Feb 2004) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/VERSION

Bumped version up to 0.20

------------------------------------------------------------------------
r233 | bruce | 2003-11-17 17:52:52 -0600 (Mon, 17 Nov 2003) | 1 line
Changed paths:
   A /tags/0.18 (from /trunk:232)

Tagged version 0.18
------------------------------------------------------------------------
r232 | bruce | 2003-11-17 17:50:01 -0600 (Mon, 17 Nov 2003) | 2 lines
Changed paths:
   M /trunk/README.in
   M /trunk/makedist.py

Renamed lists.em.ca to lists.untroubled.org

------------------------------------------------------------------------
r231 | bruce | 2003-11-17 17:47:58 -0600 (Mon, 17 Nov 2003) | 2 lines
Changed paths:
   M /trunk/tests/command-bad-password
   M /trunk/tests/command-bad-username
   M /trunk/tests/command-case
   M /trunk/tests/command-no-prefix
   M /trunk/tests/command-prefix
   M /trunk/tests/pwfile
   M /trunk/tests/pwfile-crypt
   A /trunk/tests/pwfile-local (from /trunk/tests/unix-local:221)
   A /trunk/tests/pwfile-local-bad-password (from /trunk/tests/unix-local-bad-password:221)
   A /trunk/tests/pwfile-udp (from /trunk/tests/unix-udp:221)
   A /trunk/tests/pwfile-udp-bad-password (from /trunk/tests/unix-udp-bad-password:221)
   A /trunk/tests/start-pwfile-local (from /trunk/tests/start-unix-local:221)
   A /trunk/tests/start-pwfile-udp (from /trunk/tests/start-unix-udp:221)
   D /trunk/tests/start-unix-local
   D /trunk/tests/start-unix-udp
   A /trunk/tests/stop-pwfile-local (from /trunk/tests/stop-unix-local:187)
   A /trunk/tests/stop-pwfile-udp (from /trunk/tests/stop-unix-udp:187)
   D /trunk/tests/stop-unix-local
   D /trunk/tests/stop-unix-udp
   D /trunk/tests/unix-local
   D /trunk/tests/unix-local-bad-password
   D /trunk/tests/unix-udp
   D /trunk/tests/unix-udp-bad-password
   A /trunk/tests.inc

Converted tests to use pwfile to allow for fully localized config.

------------------------------------------------------------------------
r230 | bruce | 2003-11-17 10:49:53 -0600 (Mon, 17 Nov 2003) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/client_setenv.c

Export both $MAIL and $MAILBOX if cvm_fact_mailbox is set.

------------------------------------------------------------------------
r229 | bruce | 2003-07-07 12:33:56 -0600 (Mon, 07 Jul 2003) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/client_setugid.c

Changed the order of the chdir in cvm_setugid.

------------------------------------------------------------------------
r228 | bruce | 2003-05-22 09:43:11 -0600 (Thu, 22 May 2003) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/insthier.c

Fixed yet another installer typo, installing sasl.h as libcvm-sasl.a

------------------------------------------------------------------------
r227 | bruce | 2003-05-22 09:42:18 -0600 (Thu, 22 May 2003) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/VERSION

Bumped version number to 0.18

------------------------------------------------------------------------
r226 | bruce | 2003-05-21 16:48:35 -0600 (Wed, 21 May 2003) | 1 line
Changed paths:
   A /tags/0.17 (from /trunk:225)

Tagged version 0.17
------------------------------------------------------------------------
r225 | bruce | 2003-05-21 16:03:25 -0600 (Wed, 21 May 2003) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/cvm-testclient.c

Fixed cvm-testclient to work with modules that accept zero credentials.

------------------------------------------------------------------------
r224 | bruce | 2003-05-20 16:47:29 -0600 (Tue, 20 May 2003) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/insthier.c

Added missing "lib" prefix to installed library files.

------------------------------------------------------------------------
r223 | bruce | 2003-05-20 16:45:38 -0600 (Tue, 20 May 2003) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/VERSION

Bumped up version number.

------------------------------------------------------------------------
r222 | bruce | 2003-04-22 12:23:25 -0600 (Tue, 22 Apr 2003) | 1 line
Changed paths:
   A /tags/0.16 (from /trunk:221)

Tagged version 0.16
------------------------------------------------------------------------
r221 | bruce | 2003-04-22 12:20:37 -0600 (Tue, 22 Apr 2003) | 2 lines
Changed paths:
   M /trunk/tests/command-bad-password
   M /trunk/tests/command-bad-username
   M /trunk/tests/command-case
   M /trunk/tests/command-no-prefix
   M /trunk/tests/command-prefix
   M /trunk/tests/pwfile
   M /trunk/tests/pwfile-crypt
   M /trunk/tests/start-unix-local
   M /trunk/tests/start-unix-udp
   M /trunk/tests/unix-local
   M /trunk/tests/unix-local-bad-password
   M /trunk/tests/unix-udp
   M /trunk/tests/unix-udp-bad-password

Use paths in all command invocations.

------------------------------------------------------------------------
r220 | bruce | 2003-04-22 12:18:16 -0600 (Tue, 22 Apr 2003) | 2 lines
Changed paths:
   M /trunk/tests/start-unix-local
   M /trunk/tests/start-unix-udp

Fixed up tests to use new module invocation mode.

------------------------------------------------------------------------
r219 | bruce | 2003-04-22 12:15:44 -0600 (Tue, 22 Apr 2003) | 2 lines
Changed paths:
   M /trunk/cvm-pwfile=x
   M /trunk/cvm-unix=x

Added socket.lib to all executable targets.

------------------------------------------------------------------------
r218 | bruce | 2003-04-22 12:03:25 -0600 (Tue, 22 Apr 2003) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/TODO
   M /trunk/cvm.html
   M /trunk/module_local.c

Allow for setting the mode & ownership of the created local socket.

------------------------------------------------------------------------
r217 | bruce | 2003-04-22 11:04:25 -0600 (Tue, 22 Apr 2003) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/module_command.c

Modified the module command mode to always write the output.

------------------------------------------------------------------------
r216 | bruce | 2003-04-21 17:06:57 -0600 (Mon, 21 Apr 2003) | 2 lines
Changed paths:
   M /trunk/protocol-2.html

Updated examples and some details.

------------------------------------------------------------------------
r215 | bruce | 2003-04-21 17:06:11 -0600 (Mon, 21 Apr 2003) | 2 lines
Changed paths:
   M /trunk/credentials.h
   M /trunk/credentials.html

Added a "shared secret" credential number.

------------------------------------------------------------------------
r214 | bruce | 2003-04-17 10:33:36 -0600 (Thu, 17 Apr 2003) | 8 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/client.c

From: "Lars Uffmann" <lars.uffmann@mediaways.net>
I ran into a problem where a cvm-command module exited without reading
frpom the pipe-fd. The parent-process (imapfront-auth) then died due to
an untrapped SIGPIPE. This happens only on Solaris (all versions). The
same cvm on Linux did not recvieved the PIPE signal. A patch is
attached, which blocks SIGPIPE before any call to either cvm_udp,
cvm_local or cvm_command, instead of just cvm_local.

------------------------------------------------------------------------
r213 | bruce | 2003-04-17 10:31:39 -0600 (Thu, 17 Apr 2003) | 2 lines
Changed paths:
   M /trunk/NEWS

Added note about cvm-sasl library.

------------------------------------------------------------------------
r212 | bruce | 2003-04-17 10:25:36 -0600 (Thu, 17 Apr 2003) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/VERSION

Bumped up version to 0.16

------------------------------------------------------------------------
r211 | bruce | 2003-04-16 14:24:03 -0600 (Wed, 16 Apr 2003) | 2 lines
Changed paths:
   M /trunk/cvm-benchclient.html

Fixed up usage documentation.

------------------------------------------------------------------------
r210 | bruce | 2003-04-15 17:23:30 -0600 (Tue, 15 Apr 2003) | 2 lines
Changed paths:
   M /trunk/cvm.html
   M /trunk/insthier.c
   A /trunk/sasl.h
   A /trunk/sasl.html
   A /trunk/sasl=l
   A /trunk/sasl_authenticate.c
   A /trunk/sasl_cram_md5.c
   A /trunk/sasl_init.c
   A /trunk/sasl_internal.h
   A /trunk/sasl_login.c
   A /trunk/sasl_plain.c
   A /trunk/sasl_start.c

Merged SASL library into cvm package from bglibs.

------------------------------------------------------------------------
r209 | bruce | 2003-04-15 16:52:46 -0600 (Tue, 15 Apr 2003) | 1 line
Changed paths:
   A /tags/0.15 (from /trunk:208)

Tagged version 0.15
------------------------------------------------------------------------
r208 | bruce | 2003-04-15 16:51:36 -0600 (Tue, 15 Apr 2003) | 2 lines
Changed paths:
   M /trunk/spec

Build the libraries too...

------------------------------------------------------------------------
r207 | bruce | 2003-04-15 16:48:18 -0600 (Tue, 15 Apr 2003) | 2 lines
Changed paths:
   M /trunk/module_main.c

Fixed usage information.

------------------------------------------------------------------------
r206 | bruce | 2003-04-15 16:41:42 -0600 (Tue, 15 Apr 2003) | 2 lines
Changed paths:
   M /trunk/NEWS
   D /trunk/cvm-pwfile-local.c
   D /trunk/cvm-pwfile-local=x
   D /trunk/cvm-pwfile-udp.c
   D /trunk/cvm-pwfile-udp=x
   D /trunk/cvm-unix-local.c
   D /trunk/cvm-unix-local=x
   D /trunk/cvm-unix-udp.c
   D /trunk/cvm-unix-udp=x
   M /trunk/insthier.c

Removed the separated modules.

------------------------------------------------------------------------
r205 | bruce | 2003-04-15 16:40:57 -0600 (Tue, 15 Apr 2003) | 2 lines
Changed paths:
   M /trunk/insthier.c

Install new generic module library.

------------------------------------------------------------------------
r204 | bruce | 2003-04-15 16:39:32 -0600 (Tue, 15 Apr 2003) | 2 lines
Changed paths:
   M /trunk/cvm-pwfile.c
   M /trunk/cvm-pwfile=x
   M /trunk/cvm-unix.c
   M /trunk/cvm-unix=x

Link to the new generic module library.

------------------------------------------------------------------------
r203 | bruce | 2003-04-15 16:38:53 -0600 (Tue, 15 Apr 2003) | 2 lines
Changed paths:
   M /trunk/cvm-testclient.html

Fixed the documentation here to match the current program.

------------------------------------------------------------------------
r202 | bruce | 2003-04-15 16:38:15 -0600 (Tue, 15 Apr 2003) | 3 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/cvm.html
   M /trunk/module.h
   A /trunk/module=l
   A /trunk/module_main.c

Added a new generic module library that supports all three operation 
modes (command, local socket, UDP socket) from the same binary.

------------------------------------------------------------------------
r201 | bruce | 2003-04-15 16:31:45 -0600 (Tue, 15 Apr 2003) | 2 lines
Changed paths:
   M /trunk/command=l
   M /trunk/local=l
   M /trunk/module_command.c
   A /trunk/module_command_main.c
   M /trunk/module_local.c
   A /trunk/module_local_main.c
   M /trunk/module_udp.c
   A /trunk/module_udp_main.c
   M /trunk/udp=l

Separated the main routine from the authentication loop.

------------------------------------------------------------------------
r200 | bruce | 2003-04-15 16:28:34 -0600 (Tue, 15 Apr 2003) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/getpwnam.c

Use the right #ifdef when checking for shadow password support.

------------------------------------------------------------------------
r199 | bruce | 2003-04-15 16:27:26 -0600 (Tue, 15 Apr 2003) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/VERSION

Bumped up version number to 0.15

------------------------------------------------------------------------
r198 | bruce | 2003-04-15 15:14:37 -0600 (Tue, 15 Apr 2003) | 1 line
Changed paths:
   A /tags/0.12 (from /trunk:197)

Tagged version 0.12
------------------------------------------------------------------------
r197 | bruce | 2003-04-15 15:11:36 -0600 (Tue, 15 Apr 2003) | 2 lines
Changed paths:
   D /trunk/README.CVS

Removed irrelevant CVS file.

------------------------------------------------------------------------
r196 | bruce | 2003-04-15 15:11:24 -0600 (Tue, 15 Apr 2003) | 2 lines
Changed paths:
   D /trunk/README
   A /trunk/README.in (from /trunk/README:188)

Switched to templated README file.

------------------------------------------------------------------------
r195 | bruce | 2003-04-15 15:10:43 -0600 (Tue, 15 Apr 2003) | 2 lines
Changed paths:
   M /trunk/insthier.c
   M /trunk/spec

Include development files in the installed set.

------------------------------------------------------------------------
r194 | bruce | 2003-04-15 14:48:46 -0600 (Tue, 15 Apr 2003) | 2 lines
Changed paths:
   A /trunk/protocol-2.html
   M /trunk/protocol.html

Broke the protocol document into current + proposed sections.

------------------------------------------------------------------------
r193 | bruce | 2003-04-15 14:48:17 -0600 (Tue, 15 Apr 2003) | 2 lines
Changed paths:
   M /trunk/cvm-benchclient=x
   M /trunk/cvm-checkpassword=x
   M /trunk/cvm-pwfile-local=x
   M /trunk/cvm-pwfile-udp=x
   M /trunk/cvm-pwfile=x
   M /trunk/cvm-testclient=x
   M /trunk/cvm-unix-local=x
   M /trunk/cvm-unix-udp=x

Use new style external bglibs linkage.

------------------------------------------------------------------------
r192 | bruce | 2003-04-15 14:46:25 -0600 (Tue, 15 Apr 2003) | 2 lines
Changed paths:
   M /trunk/tests/command-case
   M /trunk/tests/command-no-prefix
   M /trunk/tests/command-prefix
   M /trunk/tests/pwfile
   M /trunk/tests/pwfile-crypt
   M /trunk/tests/unix-local
   M /trunk/tests/unix-udp

Added mailbox path to list of facts in all tests.

------------------------------------------------------------------------
r191 | bruce | 2003-04-15 14:46:01 -0600 (Tue, 15 Apr 2003) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/cvm-pwfile.c
   M /trunk/tests/pwfile

Dropped use of non-portable fgetpwent in cvm-pwfile.

------------------------------------------------------------------------
r190 | bruce | 2003-01-03 11:22:58 -0600 (Fri, 03 Jan 2003) | 2 lines
Changed paths:
   M /trunk/client.c
   M /trunk/module_udp.c

Fixed up for new ipv4addr definition.

------------------------------------------------------------------------
r189 | bruce | 2002-12-20 16:26:13 -0600 (Fri, 20 Dec 2002) | 2 lines
Changed paths:
   M /trunk/cvm-pwfile.c

Previous commit was missing this change.

------------------------------------------------------------------------
r188 | bruce | 2002-12-20 15:37:52 -0600 (Fri, 20 Dec 2002) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/README
   M /trunk/cvm-benchclient=x
   M /trunk/cvm-checkpassword=x
   M /trunk/cvm-pwfile-local=x
   M /trunk/cvm-pwfile-udp=x
   M /trunk/cvm-pwfile=x
   M /trunk/cvm-testclient=x
   M /trunk/cvm-unix-local=x
   M /trunk/cvm-unix-udp=x
   M /trunk/insthier.c

Completed switch to external bglibs.

------------------------------------------------------------------------
r187 | bruce | 2002-12-16 14:05:18 -0600 (Mon, 16 Dec 2002) | 1 line
Changed paths:
   A /branches

Created branches directory
------------------------------------------------------------------------
r186 | bruce | 2002-12-16 14:05:18 -0600 (Mon, 16 Dec 2002) | 1 line
Changed paths:
   A /tags

Created tags directory
------------------------------------------------------------------------
r185 | bruce | 2002-12-16 18:13:14 -0600 (Mon, 16 Dec 2002) | 2 lines
Changed paths:
   M /trunk/README.CVS
   M /trunk/TODO

*** empty log message ***

------------------------------------------------------------------------
r184 | bruce | 2002-12-16 18:12:59 -0600 (Mon, 16 Dec 2002) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/README
   M /trunk/VERSION

Changed version to 0.12

------------------------------------------------------------------------
r183 | bruce | 2002-12-16 18:12:11 -0600 (Mon, 16 Dec 2002) | 2 lines
Changed paths:
   M /trunk/protocol.html

Clarified the protocol specification.

------------------------------------------------------------------------
r182 | bruce | 2002-12-16 18:11:49 -0600 (Mon, 16 Dec 2002) | 2 lines
Changed paths:
   M /trunk/module.html

Clarified the module requirements.

------------------------------------------------------------------------
r181 | bruce | 2002-12-16 18:10:28 -0600 (Mon, 16 Dec 2002) | 2 lines
Changed paths:
   M /trunk/module_local.c

Prevent a potential file descriptor leak.

------------------------------------------------------------------------
r180 | bruce | 2002-12-16 18:09:59 -0600 (Mon, 16 Dec 2002) | 2 lines
Changed paths:
   M /trunk/errors.h
   M /trunk/errors.html

Add a new error code: CVME_NOCRED.

------------------------------------------------------------------------
r179 | bruce | 2002-12-16 18:09:16 -0600 (Mon, 16 Dec 2002) | 2 lines
Changed paths:
   M /trunk/cvm.html

Change *sql links to reflect that cvm-sql is now seperate.

------------------------------------------------------------------------
r178 | bruce | 2002-12-16 18:08:40 -0600 (Mon, 16 Dec 2002) | 2 lines
Changed paths:
   M /trunk/cvm-benchclient=x
   M /trunk/cvm-checkpassword=x
   M /trunk/cvm-pwfile-local=x
   M /trunk/cvm-pwfile-udp=x
   M /trunk/cvm-testclient=x
   M /trunk/cvm-unix-local=x
   M /trunk/cvm-unix-udp=x

Use the "net" library instead of "socket".

------------------------------------------------------------------------
r177 | bruce | 2002-12-16 18:07:42 -0600 (Mon, 16 Dec 2002) | 2 lines
Changed paths:
   M /trunk/client.html

Added a chdir/setuid recommendation.

------------------------------------------------------------------------
r176 | bruce | 2002-12-16 18:06:43 -0600 (Mon, 16 Dec 2002) | 2 lines
Changed paths:
   M /trunk/client.c
   M /trunk/client_setenv.c
   M /trunk/cvm-unix.c
   M /trunk/getpwnam.c
   M /trunk/module_local.c
   M /trunk/module_udp.c

Converted to external bglibs headers.

------------------------------------------------------------------------
r175 | bruce | 2002-12-16 17:58:28 -0600 (Mon, 16 Dec 2002) | 2 lines
Changed paths:
   M /trunk/spec

Building no longer requires postgresql or mysql.

------------------------------------------------------------------------
r174 | bruce | 2002-04-17 22:55:40 -0600 (Wed, 17 Apr 2002) | 2 lines
Changed paths:
   M /trunk/client_setenv.c

Set $GIDS to a comma-seperated list of supplemental group IDs.

------------------------------------------------------------------------
r173 | bruce | 2001-12-28 07:23:38 -0600 (Fri, 28 Dec 2001) | 3 lines
Changed paths:
   M /trunk/getpwnam.c

Fixed thinko in reallocating the account name buffer -- needed to
reallocate the buffer based on the *new* length, not the *old*.

------------------------------------------------------------------------
r172 | bruce | 2001-10-18 23:11:31 -0600 (Thu, 18 Oct 2001) | 2 lines
Changed paths:
   M /trunk/cvm-benchclient=x
   M /trunk/cvm-checkpassword=x
   M /trunk/cvm-pwfile-local=x
   M /trunk/cvm-pwfile-udp=x
   M /trunk/cvm-testclient=x
   M /trunk/cvm-unix-local=x
   M /trunk/cvm-unix-udp=x

Added missing socket.lib link targets.

------------------------------------------------------------------------
r171 | bruce | 2001-09-27 17:42:59 -0600 (Thu, 27 Sep 2001) | 2 lines
Changed paths:
   M /trunk/client.c

Fixed one-off bug in parsing domain names.

------------------------------------------------------------------------
r170 | bruce | 2001-09-18 21:57:36 -0600 (Tue, 18 Sep 2001) | 2 lines
Changed paths:
   M /trunk/protocol.html

Added example datagrams.

------------------------------------------------------------------------
r169 | bruce | 2001-09-18 21:35:39 -0600 (Tue, 18 Sep 2001) | 2 lines
Changed paths:
   M /trunk/protocol.html

Documented the version 2 protocol.

------------------------------------------------------------------------
r168 | bruce | 2001-09-18 21:35:09 -0600 (Tue, 18 Sep 2001) | 2 lines
Changed paths:
   A /trunk/credentials.h
   A /trunk/credentials.html
   M /trunk/cvm.html

Added credential definitions.

------------------------------------------------------------------------
r167 | bruce | 2001-09-18 21:34:31 -0600 (Tue, 18 Sep 2001) | 2 lines
Changed paths:
   M /trunk/rationale.html

Fixed a typo.

------------------------------------------------------------------------
r166 | bruce | 2001-09-18 21:33:34 -0600 (Tue, 18 Sep 2001) | 2 lines
Changed paths:
   M /trunk/facts.html

Reworded the section on predefined and local fact numbering.

------------------------------------------------------------------------
r165 | bruce | 2001-09-18 21:33:02 -0600 (Tue, 18 Sep 2001) | 2 lines
Changed paths:
   M /trunk/facts.h

Renamed AUTHENTICATOR to CVM finally.

------------------------------------------------------------------------
r164 | bruce | 2001-09-13 22:16:41 -0600 (Thu, 13 Sep 2001) | 2 lines
Changed paths:
   M /trunk/cvm-testclient.c

Added the mailbox path fact to the output.

------------------------------------------------------------------------
r163 | bruce | 2001-09-12 22:29:15 -0600 (Wed, 12 Sep 2001) | 2 lines
Changed paths:
   M /trunk/insthier.c

Removed mysql and pgsql installations.

------------------------------------------------------------------------
r162 | bruce | 2001-09-12 22:25:46 -0600 (Wed, 12 Sep 2001) | 2 lines
Changed paths:
   M /trunk/spec

Removed mysql and pgsql portions.

------------------------------------------------------------------------
r161 | bruce | 2001-09-12 22:24:36 -0600 (Wed, 12 Sep 2001) | 2 lines
Changed paths:
   M /trunk/cvm-benchclient=x
   M /trunk/cvm-testclient=x

Added missing setenv.o object.

------------------------------------------------------------------------
r160 | bruce | 2001-09-12 22:22:47 -0600 (Wed, 12 Sep 2001) | 2 lines
Changed paths:
   M /trunk/README
   M /trunk/TODO
   M /trunk/client.h

*** empty log message ***

------------------------------------------------------------------------
r159 | bruce | 2001-09-12 22:22:28 -0600 (Wed, 12 Sep 2001) | 2 lines
Changed paths:
   M /trunk/cvm-checkpassword.c

Replaced manual setenv calls with call to cvm_setenv.

------------------------------------------------------------------------
r158 | bruce | 2001-09-10 17:11:54 -0600 (Mon, 10 Sep 2001) | 2 lines
Changed paths:
   M /trunk/client.h
   M /trunk/client.html
   M /trunk/client=l
   A /trunk/client_domain.c
   A /trunk/client_setenv.c
   A /trunk/client_setugid.c

Added some convenience client functions.

------------------------------------------------------------------------
r157 | bruce | 2001-09-10 17:11:15 -0600 (Mon, 10 Sep 2001) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/TODO

*** empty log message ***

------------------------------------------------------------------------
r156 | bruce | 2001-09-10 16:34:46 -0600 (Mon, 10 Sep 2001) | 2 lines
Changed paths:
   M /trunk/client.c
   M /trunk/facts.c
   M /trunk/facts.h
   M /trunk/facts.html
   M /trunk/module_request.c

Added new fact CVM_FACT_MAILBOX.

------------------------------------------------------------------------
r155 | bruce | 2001-08-28 21:21:35 -0600 (Tue, 28 Aug 2001) | 2 lines
Changed paths:
   D /trunk/rts.exp
   D /trunk/rts.sh
   D /trunk/rts.tests
   A /trunk/tests
   A /trunk/tests/command-bad-password
   A /trunk/tests/command-bad-username
   A /trunk/tests/command-case
   A /trunk/tests/command-no-prefix
   A /trunk/tests/command-prefix
   A /trunk/tests/pwfile
   A /trunk/tests/pwfile-crypt
   A /trunk/tests/start-unix-local
   A /trunk/tests/start-unix-udp
   A /trunk/tests/stop-unix-local
   A /trunk/tests/stop-unix-udp
   A /trunk/tests/unix-local
   A /trunk/tests/unix-local-bad-password
   A /trunk/tests/unix-udp
   A /trunk/tests/unix-udp-bad-password

Modified tests to use new SPAC testing framework.

------------------------------------------------------------------------
r154 | bruce | 2001-08-28 20:23:23 -0600 (Tue, 28 Aug 2001) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/getpwnam.c

Bugfix: cvm_getpwnam needs to lowercase the account name.

------------------------------------------------------------------------
r153 | bruce | 2001-08-28 17:33:40 -0600 (Tue, 28 Aug 2001) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/VERSION

*** empty log message ***

------------------------------------------------------------------------
r152 | bruce | 2001-08-24 20:23:11 -0600 (Fri, 24 Aug 2001) | 2 lines
Changed paths:
   M /trunk/README
   D /trunk/cvm-mysql-local.c
   D /trunk/cvm-mysql-local=x
   D /trunk/cvm-mysql-udp.c
   D /trunk/cvm-mysql-udp=x
   D /trunk/cvm-mysql.c
   D /trunk/cvm-mysql.html
   D /trunk/cvm-mysql=x
   D /trunk/cvm-pgsql-local.c
   D /trunk/cvm-pgsql-local=x
   D /trunk/cvm-pgsql-udp.c
   D /trunk/cvm-pgsql-udp=x
   D /trunk/cvm-pgsql.c
   D /trunk/cvm-pgsql.html
   D /trunk/cvm-pgsql=x
   M /trunk/rts.exp
   M /trunk/rts.tests
   D /trunk/sql-auth.c
   D /trunk/sql-query-test.c
   D /trunk/sql-query-test=x
   D /trunk/sql-query.c
   D /trunk/sql.h
   D /trunk/sql.html
   D /trunk/sql=l

Removed the SQL portions and put them into a seperate package, cvm-sql.

------------------------------------------------------------------------
r151 | bruce | 2001-08-24 18:07:55 -0600 (Fri, 24 Aug 2001) | 2 lines
Changed paths:
   M /trunk/rts.exp
   M /trunk/rts.tests

Fixed up tests to account for domain name.

------------------------------------------------------------------------
r150 | bruce | 2001-08-24 18:07:47 -0600 (Fri, 24 Aug 2001) | 2 lines
Changed paths:
   M /trunk/README

*** empty log message ***

------------------------------------------------------------------------
r149 | bruce | 2001-08-23 22:51:45 -0600 (Thu, 23 Aug 2001) | 2 lines
Changed paths:
   M /trunk/TODO

*** empty log message ***

------------------------------------------------------------------------
r148 | bruce | 2001-08-23 22:44:13 -0600 (Thu, 23 Aug 2001) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/TODO
   M /trunk/cvm-mysql.c
   M /trunk/cvm-mysql.html

Make the MySQL module handle connection options from a defaults file.

------------------------------------------------------------------------
r147 | bruce | 2001-08-23 22:37:57 -0600 (Thu, 23 Aug 2001) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/TODO
   M /trunk/sql-auth.c
   M /trunk/sql-query-test.c
   M /trunk/sql-query.c
   M /trunk/sql.html

Updated the SQL code to handle domain names.

------------------------------------------------------------------------
r146 | bruce | 2001-08-23 22:28:26 -0600 (Thu, 23 Aug 2001) | 2 lines
Changed paths:
   M /trunk/rationale.html

Cleaned up some wording.

------------------------------------------------------------------------
r145 | bruce | 2001-08-23 22:28:13 -0600 (Thu, 23 Aug 2001) | 2 lines
Changed paths:
   M /trunk/client.html

Documented new cvm_authenticate interface.

------------------------------------------------------------------------
r144 | bruce | 2001-08-23 22:27:36 -0600 (Thu, 23 Aug 2001) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/TODO

*** empty log message ***

------------------------------------------------------------------------
r143 | bruce | 2001-08-23 22:27:28 -0600 (Thu, 23 Aug 2001) | 2 lines
Changed paths:
   M /trunk/insthier.c

Updated to new insthier interface.

------------------------------------------------------------------------
r142 | bruce | 2001-08-23 22:24:04 -0600 (Thu, 23 Aug 2001) | 2 lines
Changed paths:
   M /trunk/cvm-checkpassword.c
   M /trunk/cvm-checkpassword.html

Modified to use the new cvm_authenticate interface.

------------------------------------------------------------------------
r141 | bruce | 2001-08-23 22:22:11 -0600 (Thu, 23 Aug 2001) | 2 lines
Changed paths:
   M /trunk/protocol.html

Document new client->server protocol.

------------------------------------------------------------------------
r140 | bruce | 2001-08-23 22:21:51 -0600 (Thu, 23 Aug 2001) | 2 lines
Changed paths:
   M /trunk/cvm-benchclient.c
   M /trunk/cvm-testclient.c

Adjust to new cvm_authenticate calling scheme.

------------------------------------------------------------------------
r139 | bruce | 2001-08-23 22:21:17 -0600 (Thu, 23 Aug 2001) | 2 lines
Changed paths:
   M /trunk/cvm-unix.c

Fixed a typo in the declaration of cvm-getpwnam.

------------------------------------------------------------------------
r138 | bruce | 2001-08-23 22:19:40 -0600 (Thu, 23 Aug 2001) | 2 lines
Changed paths:
   M /trunk/facts.c
   M /trunk/facts.h
   M /trunk/facts.html

Added a new fact for domain names.

------------------------------------------------------------------------
r137 | bruce | 2001-08-23 22:17:51 -0600 (Thu, 23 Aug 2001) | 2 lines
Changed paths:
   M /trunk/module.html

Document the new domain name features.

------------------------------------------------------------------------
r136 | bruce | 2001-08-23 22:17:08 -0600 (Thu, 23 Aug 2001) | 2 lines
Changed paths:
   M /trunk/module.h
   M /trunk/module_log.c
   M /trunk/module_request.c

Reverted the change of data types from "const char*" to "str".

------------------------------------------------------------------------
r135 | bruce | 2001-08-23 22:03:06 -0600 (Thu, 23 Aug 2001) | 2 lines
Changed paths:
   M /trunk/module_log.c

Log the domain name along with the account name.

------------------------------------------------------------------------
r134 | bruce | 2001-08-23 22:02:27 -0600 (Thu, 23 Aug 2001) | 3 lines
Changed paths:
   M /trunk/module.h
   M /trunk/module_request.c

Handle the protocol number and domain name in parsing the request packet.
Store the results in str's instead of const char*.

------------------------------------------------------------------------
r133 | bruce | 2001-08-23 22:00:32 -0600 (Thu, 23 Aug 2001) | 3 lines
Changed paths:
   M /trunk/client.c
   M /trunk/client.h

Modified to handle domain names in the protocol, and parsing domain
names in the account name.

------------------------------------------------------------------------
r132 | bruce | 2001-08-15 04:25:45 -0600 (Wed, 15 Aug 2001) | 2 lines
Changed paths:
   M /trunk/README
   M /trunk/TODO
   M /trunk/VERSION

*** empty log message ***

------------------------------------------------------------------------
r131 | bruce | 2001-08-10 15:35:17 -0600 (Fri, 10 Aug 2001) | 2 lines
Changed paths:
   M /trunk/TODO

*** empty log message ***

------------------------------------------------------------------------
r130 | bruce | 2001-08-10 15:35:04 -0600 (Fri, 10 Aug 2001) | 2 lines
Changed paths:
   M /trunk/cvm-unix-local=x
   M /trunk/cvm-unix-udp=x
   M /trunk/cvm-unix.c
   M /trunk/cvm-unix=x
   A /trunk/getpwnam.c

Moved the multi-step getpwnam functionality into a seperate module.

------------------------------------------------------------------------
r129 | bruce | 2001-08-10 15:26:15 -0600 (Fri, 10 Aug 2001) | 3 lines
Changed paths:
   M /trunk/module_local.c

Set the umask to zero before creating the socket to allow full access to
it.

------------------------------------------------------------------------
r128 | bruce | 2001-08-09 17:10:24 -0600 (Thu, 09 Aug 2001) | 2 lines
Changed paths:
   M /trunk/TODO

*** empty log message ***

------------------------------------------------------------------------
r127 | bruce | 2001-07-17 22:25:08 -0600 (Tue, 17 Jul 2001) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/README
   M /trunk/VERSION

Bumped up the version number.

------------------------------------------------------------------------
r126 | bruce | 2001-07-17 22:22:59 -0600 (Tue, 17 Jul 2001) | 3 lines
Changed paths:
   M /trunk/cvm-mysql.c
   M /trunk/cvm-mysql.html
   M /trunk/cvm-pgsql.c
   M /trunk/cvm-pgsql.html
   M /trunk/sql-auth.c
   M /trunk/sql.h

Added support to the SQL framework for executing a query after the
credentials have been validated.

------------------------------------------------------------------------
r125 | bruce | 2001-07-16 20:34:21 -0600 (Mon, 16 Jul 2001) | 2 lines
Changed paths:
   M /trunk/sql.html

Reworded details of query substitution.

------------------------------------------------------------------------
r124 | bruce | 2001-07-16 20:30:40 -0600 (Mon, 16 Jul 2001) | 2 lines
Changed paths:
   M /trunk/cvm-mysql.html
   M /trunk/cvm-pgsql.html
   D /trunk/sql-query.html
   A /trunk/sql.html

Renamed sql-query.html to sql.html.

------------------------------------------------------------------------
r123 | bruce | 2001-07-16 20:22:46 -0600 (Mon, 16 Jul 2001) | 2 lines
Changed paths:
   M /trunk/sql-auth.c
   M /trunk/sql-query.c

Moved the default query from sql-query.c to sql-auth.c

------------------------------------------------------------------------
r122 | bruce | 2001-07-16 20:22:26 -0600 (Mon, 16 Jul 2001) | 2 lines
Changed paths:
   M /trunk/rts.exp
   M /trunk/rts.tests

Added some new tests for the SQL query parser.

------------------------------------------------------------------------
r121 | bruce | 2001-07-16 20:12:42 -0600 (Mon, 16 Jul 2001) | 3 lines
Changed paths:
   M /trunk/sql-auth.c
   M /trunk/sql-query.c
   M /trunk/sql-query.html

Added group name, system username, and system directory to the list of
query results.

------------------------------------------------------------------------
r120 | bruce | 2001-07-16 18:35:53 -0600 (Mon, 16 Jul 2001) | 2 lines
Changed paths:
   M /trunk/README

Reverted back to older non-automatically versioned version.

------------------------------------------------------------------------
r119 | bruce | 2001-07-16 18:29:23 -0600 (Mon, 16 Jul 2001) | 2 lines
Changed paths:
   M /trunk/cvm-mysql-local=x
   M /trunk/cvm-mysql-udp=x
   M /trunk/cvm-mysql.c
   M /trunk/cvm-mysql=x
   M /trunk/cvm-pgsql-local=x
   M /trunk/cvm-pgsql-udp=x
   M /trunk/cvm-pgsql.c
   M /trunk/cvm-pgsql=x
   A /trunk/sql-auth.c
   M /trunk/sql.h
   M /trunk/sql=l

Merged the common code in the MySQL and PgSQL modules into a common core.

------------------------------------------------------------------------
r118 | bruce | 2001-07-16 18:25:16 -0600 (Mon, 16 Jul 2001) | 2 lines
Changed paths:
   M /trunk/NEWS

*** empty log message ***

------------------------------------------------------------------------
r117 | bruce | 2001-07-16 18:24:43 -0600 (Mon, 16 Jul 2001) | 2 lines
Changed paths:
   M /trunk/client.c

Fixed bug: the shell fact is not required.

------------------------------------------------------------------------
r116 | bruce | 2001-07-16 18:13:58 -0600 (Mon, 16 Jul 2001) | 2 lines
Changed paths:
   M /trunk/sql-query-test=x

Only include sql-query.o, not the entire sql.a.

------------------------------------------------------------------------
r115 | bruce | 2001-07-16 17:49:06 -0600 (Mon, 16 Jul 2001) | 5 lines
Changed paths:
   M /trunk/cvm-mysql.c
   M /trunk/cvm-pgsql.c
   M /trunk/sql-query.c
   M /trunk/sql-query.html
   M /trunk/sql.h

Modified the SQL query building framework to use $account instead of %
for the substitution reference, and also to allow references to
environment variables.  Changed the required order of fields in the
query.

------------------------------------------------------------------------
r114 | bruce | 2001-07-16 17:48:00 -0600 (Mon, 16 Jul 2001) | 2 lines
Changed paths:
   A /trunk/sql-query-test.c
   A /trunk/sql-query-test=x

Added a test harness for the sql-query framework.

------------------------------------------------------------------------
r113 | bruce | 2001-07-16 16:26:15 -0600 (Mon, 16 Jul 2001) | 2 lines
Changed paths:
   M /trunk/sql-query.html

Clarified requirements of required fields.

------------------------------------------------------------------------
r112 | bruce | 2001-07-13 21:41:59 -0600 (Fri, 13 Jul 2001) | 2 lines
Changed paths:
   M /trunk/spec

Fixed old URL references.

------------------------------------------------------------------------
r111 | bruce | 2001-07-13 18:26:33 -0600 (Fri, 13 Jul 2001) | 2 lines
Changed paths:
   M /trunk/spec

The PostgreSQL package is named postgresql, not pgsql.

------------------------------------------------------------------------
r110 | bruce | 2001-07-13 17:58:40 -0600 (Fri, 13 Jul 2001) | 2 lines
Changed paths:
   M /trunk/spec

Fixed typo in description tag.

------------------------------------------------------------------------
r109 | bruce | 2001-07-13 16:54:24 -0600 (Fri, 13 Jul 2001) | 2 lines
Changed paths:
   M /trunk/README
   M /trunk/TODO

*** empty log message ***

------------------------------------------------------------------------
r108 | bruce | 2001-07-12 23:55:38 -0600 (Thu, 12 Jul 2001) | 2 lines
Changed paths:
   M /trunk/NEWS

*** empty log message ***

------------------------------------------------------------------------
r107 | bruce | 2001-07-12 23:54:16 -0600 (Thu, 12 Jul 2001) | 2 lines
Changed paths:
   M /trunk/cvm-mysql.html
   M /trunk/cvm-pgsql.html
   A /trunk/sql-query.html

Moved the common SQL documentation into a seperate file.

------------------------------------------------------------------------
r106 | bruce | 2001-07-12 23:53:51 -0600 (Thu, 12 Jul 2001) | 2 lines
Changed paths:
   M /trunk/cvm-mysql.c
   M /trunk/cvm-pgsql.c
   M /trunk/sql-query.c
   M /trunk/sql.h

Modified the SQL framework to allow substitution of multiple % symbols.

------------------------------------------------------------------------
r105 | bruce | 2001-07-11 15:09:04 -0600 (Wed, 11 Jul 2001) | 2 lines
Changed paths:
   M /trunk/TODO

*** empty log message ***

------------------------------------------------------------------------
r104 | bruce | 2001-07-10 17:12:34 -0600 (Tue, 10 Jul 2001) | 2 lines
Changed paths:
   M /trunk/cvm.html

Note PAM in the ideas.

------------------------------------------------------------------------
r103 | bruce | 2001-07-10 17:12:06 -0600 (Tue, 10 Jul 2001) | 2 lines
Changed paths:
   M /trunk/cvm-mysql.html
   M /trunk/cvm-pgsql.html
   M /trunk/cvm-pwfile.html

Reference the pwcmp configuration parameter.

------------------------------------------------------------------------
r102 | bruce | 2001-07-10 17:11:44 -0600 (Tue, 10 Jul 2001) | 2 lines
Changed paths:
   M /trunk/cvm-pwfile.c

Use pwcmp library for password comparisons.

------------------------------------------------------------------------
r101 | bruce | 2001-07-10 17:11:13 -0600 (Tue, 10 Jul 2001) | 2 lines
Changed paths:
   M /trunk/cvm-mysql-local=x
   M /trunk/cvm-mysql-udp=x
   M /trunk/cvm-mysql=x
   M /trunk/cvm-pgsql-local=x
   M /trunk/cvm-pgsql-udp=x
   M /trunk/cvm-pgsql=x
   M /trunk/cvm-pwfile-local=x
   M /trunk/cvm-pwfile-udp=x
   M /trunk/cvm-pwfile=x

Need to link against pwcmp client library.

------------------------------------------------------------------------
r100 | bruce | 2001-07-10 17:11:01 -0600 (Tue, 10 Jul 2001) | 5 lines
Changed paths:
   M /trunk/cvm-pgsql.c

Use new pwcmp client library for password comparisons.
Remove unused str_cats_quoted routine.
Signal fatal errors to the module library.
Add cvm_auth_stop routine.

------------------------------------------------------------------------
r99 | bruce | 2001-07-10 17:10:00 -0600 (Tue, 10 Jul 2001) | 5 lines
Changed paths:
   M /trunk/cvm-mysql.c

Use new pwcmp library for password comparisons.
Fixed bug in database connect function.
Signal fatal errors to the module library.
Add cvm_auth_stop routine.

------------------------------------------------------------------------
r98 | bruce | 2001-07-10 17:08:03 -0600 (Tue, 10 Jul 2001) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/TODO

*** empty log message ***

------------------------------------------------------------------------
r97 | bruce | 2001-07-09 23:48:52 -0600 (Mon, 09 Jul 2001) | 2 lines
Changed paths:
   M /trunk/cvm-unix.c

Added a stub cvm_auth_stop routine.

------------------------------------------------------------------------
r96 | bruce | 2001-07-09 22:52:52 -0600 (Mon, 09 Jul 2001) | 2 lines
Changed paths:
   M /trunk/spec

Split the mysql and pgsql modules into subpackages.

------------------------------------------------------------------------
r95 | bruce | 2001-07-09 22:36:46 -0600 (Mon, 09 Jul 2001) | 3 lines
Changed paths:
   M /trunk/errors.h
   M /trunk/module.h
   M /trunk/module_command.c
   M /trunk/module_local.c
   M /trunk/module_udp.c

Added a fatal error indicator.
Added a new required function, cvm_auth_stop.

------------------------------------------------------------------------
r94 | bruce | 2001-07-08 04:34:31 -0600 (Sun, 08 Jul 2001) | 2 lines
Changed paths:
   M /trunk/TODO

*** empty log message ***

------------------------------------------------------------------------
r93 | bruce | 2001-07-06 23:03:46 -0600 (Fri, 06 Jul 2001) | 2 lines
Changed paths:
   M /trunk/cvm.html
   M /trunk/insthier.c

Added new MySQL and PgSQL modules.

------------------------------------------------------------------------
r92 | bruce | 2001-07-06 23:03:21 -0600 (Fri, 06 Jul 2001) | 2 lines
Changed paths:
   M /trunk/cvm-pwfile-local=x
   M /trunk/cvm-pwfile-udp=x
   M /trunk/cvm-pwfile=x

The pwfile module doesn't need s.lib or shadow.lib.

------------------------------------------------------------------------
r91 | bruce | 2001-07-06 23:02:57 -0600 (Fri, 06 Jul 2001) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/README.CVS
   M /trunk/TODO
   M /trunk/VERSION

*** empty log message ***

------------------------------------------------------------------------
r90 | bruce | 2001-07-06 23:02:31 -0600 (Fri, 06 Jul 2001) | 2 lines
Changed paths:
   M /trunk/cvm-pwfile.c

Use new "config" error code.

------------------------------------------------------------------------
r89 | bruce | 2001-07-06 23:01:27 -0600 (Fri, 06 Jul 2001) | 2 lines
Changed paths:
   A /trunk/cvm-mysql-local.c
   A /trunk/cvm-mysql-local=x
   A /trunk/cvm-mysql-udp.c
   A /trunk/cvm-mysql-udp=x
   A /trunk/cvm-mysql.c
   A /trunk/cvm-mysql.html
   A /trunk/cvm-mysql=x

Added new MySQL module.

------------------------------------------------------------------------
r88 | bruce | 2001-07-06 23:01:15 -0600 (Fri, 06 Jul 2001) | 2 lines
Changed paths:
   A /trunk/cvm-pgsql-local.c
   A /trunk/cvm-pgsql-local=x
   A /trunk/cvm-pgsql-udp.c
   A /trunk/cvm-pgsql-udp=x
   A /trunk/cvm-pgsql.c
   A /trunk/cvm-pgsql.html
   A /trunk/cvm-pgsql=x

Added new PgSQL module.

------------------------------------------------------------------------
r87 | bruce | 2001-07-06 22:55:12 -0600 (Fri, 06 Jul 2001) | 2 lines
Changed paths:
   M /trunk/errors.h
   M /trunk/errors.html

Added new configuration error code.

------------------------------------------------------------------------
r86 | bruce | 2001-07-06 22:32:51 -0600 (Fri, 06 Jul 2001) | 3 lines
Changed paths:
   A /trunk/sql-query.c
   A /trunk/sql.h
   A /trunk/sql=l

Added a library of functions common to SQL modules (currently only the
query building mechanism).

------------------------------------------------------------------------
r85 | bruce | 2001-07-06 18:16:24 -0600 (Fri, 06 Jul 2001) | 3 lines
Changed paths:
   M /trunk/cvm-unix.c

Applied patch from Paul Jarc to fix temporary error return cases, and
properly add the primary group ID to the supplemental group list.

------------------------------------------------------------------------
r84 | bruce | 2001-07-05 21:47:32 -0600 (Thu, 05 Jul 2001) | 2 lines
Changed paths:
   M /trunk/README

*** empty log message ***

------------------------------------------------------------------------
r83 | bruce | 2001-07-05 21:47:19 -0600 (Thu, 05 Jul 2001) | 2 lines
Changed paths:
   M /trunk/cvm-pwfile.html

Added explanation for CVM_PWFILE_PATH

------------------------------------------------------------------------
r82 | bruce | 2001-07-04 04:52:29 -0600 (Wed, 04 Jul 2001) | 2 lines
Changed paths:
   A /trunk/TODO

Added the TODO file.

------------------------------------------------------------------------
r81 | bruce | 2001-07-04 04:51:41 -0600 (Wed, 04 Jul 2001) | 2 lines
Changed paths:
   M /trunk/README.CVS

The CDB library is not needed yet.

------------------------------------------------------------------------
r80 | bruce | 2001-07-03 22:32:13 -0600 (Tue, 03 Jul 2001) | 2 lines
Changed paths:
   M /trunk/NEWS
   D /trunk/cvm-file-local.c
   D /trunk/cvm-file-local=x
   D /trunk/cvm-file-udp.c
   D /trunk/cvm-file-udp=x
   D /trunk/cvm-file.c
   D /trunk/cvm-file.html
   D /trunk/cvm-file=x
   A /trunk/cvm-pwfile-local.c
   A /trunk/cvm-pwfile-local=x
   A /trunk/cvm-pwfile-udp.c
   A /trunk/cvm-pwfile-udp=x
   A /trunk/cvm-pwfile.c
   A /trunk/cvm-pwfile.html
   A /trunk/cvm-pwfile=x
   M /trunk/cvm.html
   M /trunk/insthier.c

Renamed cvm-file to cvm-pwfile to reflect its true nature.

------------------------------------------------------------------------
r79 | bruce | 2001-07-03 22:32:00 -0600 (Tue, 03 Jul 2001) | 2 lines
Changed paths:
   M /trunk/README
   A /trunk/README.CVS

*** empty log message ***

------------------------------------------------------------------------
r78 | bruce | 2001-06-30 00:05:01 -0600 (Sat, 30 Jun 2001) | 2 lines
Changed paths:
   A /trunk/cvm-file-local.c
   A /trunk/cvm-file-local=x
   A /trunk/cvm-file-udp.c
   A /trunk/cvm-file-udp=x
   A /trunk/cvm-file.c
   A /trunk/cvm-file.html
   A /trunk/cvm-file=x
   M /trunk/cvm.html
   M /trunk/insthier.c

Added a new cvm-file module set.

------------------------------------------------------------------------
r77 | bruce | 2001-06-30 00:04:48 -0600 (Sat, 30 Jun 2001) | 2 lines
Changed paths:
   M /trunk/cvm-unix.c

Replaced the hard-coded numeric error codes with CVME symbols.

------------------------------------------------------------------------
r76 | bruce | 2001-06-30 00:04:12 -0600 (Sat, 30 Jun 2001) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/README
   M /trunk/spec

*** empty log message ***

------------------------------------------------------------------------
r75 | bruce | 2001-06-29 23:58:52 -0600 (Fri, 29 Jun 2001) | 2 lines
Changed paths:
   A /trunk/cvm-unix.html

Added some documentation for cvm-unix.

------------------------------------------------------------------------
r74 | bruce | 2001-06-29 23:58:27 -0600 (Fri, 29 Jun 2001) | 2 lines
Changed paths:
   M /trunk/module.html

Documented the new cvm_auth_init API.

------------------------------------------------------------------------
r73 | bruce | 2001-06-29 23:20:37 -0600 (Fri, 29 Jun 2001) | 2 lines
Changed paths:
   M /trunk/cvm-unix.c
   M /trunk/module.h
   M /trunk/module_command.c
   M /trunk/module_local.c
   M /trunk/module_udp.c

Added new cvm_auth_init feature to the module API.

------------------------------------------------------------------------
r72 | bruce | 2001-06-29 23:19:37 -0600 (Fri, 29 Jun 2001) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/makedist.py

*** empty log message ***

------------------------------------------------------------------------
r71 | bruce | 2001-05-18 21:39:56 -0600 (Fri, 18 May 2001) | 2 lines
Changed paths:
   M /trunk/NEWS

*** empty log message ***

------------------------------------------------------------------------
r70 | bruce | 2001-05-18 21:39:46 -0600 (Fri, 18 May 2001) | 2 lines
Changed paths:
   M /trunk/cvm-benchclient.c
   M /trunk/cvm-checkpassword.c
   M /trunk/cvm-testclient.c
   M /trunk/cvm-unix.c

Updated to call the new cvm_ prefixed symbols.

------------------------------------------------------------------------
r69 | bruce | 2001-05-18 21:38:22 -0600 (Fri, 18 May 2001) | 3 lines
Changed paths:
   M /trunk/client.c
   M /trunk/client.h
   M /trunk/client.html

Prepend "cvm_" to all exported symbols.
Invert the return value from the cvm_fact routines.

------------------------------------------------------------------------
r68 | bruce | 2001-05-18 21:37:22 -0600 (Fri, 18 May 2001) | 2 lines
Changed paths:
   M /trunk/module.h
   M /trunk/module.html
   M /trunk/module_command.c
   M /trunk/module_local.c
   M /trunk/module_log.c
   M /trunk/module_output.c
   M /trunk/module_request.c
   M /trunk/module_udp.c

Prepend all exported symbols with "cvm_"

------------------------------------------------------------------------
r67 | bruce | 2001-05-18 19:22:01 -0600 (Fri, 18 May 2001) | 4 lines
Changed paths:
   M /trunk/facts.html

Added specific note about what numbers are reserved for local or
experimental use.
Made the CVM_FACT_SHELL fact optional.

------------------------------------------------------------------------
r66 | bruce | 2001-05-18 18:36:14 -0600 (Fri, 18 May 2001) | 2 lines
Changed paths:
   M /trunk/errors.h
   M /trunk/errors.html

Added a "no fact" error code.

------------------------------------------------------------------------
r65 | bruce | 2001-05-18 18:35:58 -0600 (Fri, 18 May 2001) | 2 lines
Changed paths:
   M /trunk/facts.c
   M /trunk/facts.h
   M /trunk/facts.html

Renamed all facts to prepend a "cvm_".

------------------------------------------------------------------------
r64 | bruce | 2001-05-17 22:31:05 -0600 (Thu, 17 May 2001) | 3 lines
Changed paths:
   M /trunk/facts.h
   M /trunk/facts.html

Added the office location, work phone, and home phone information from
the GECOS field of the passwd struct.

------------------------------------------------------------------------
r63 | bruce | 2001-05-17 20:01:50 -0600 (Thu, 17 May 2001) | 2 lines
Changed paths:
   M /trunk/cvm.html
   M /trunk/errors.html
   M /trunk/facts.html

Improved the wording and formatting of the documentation.

------------------------------------------------------------------------
r62 | bruce | 2001-05-17 20:01:19 -0600 (Thu, 17 May 2001) | 3 lines
Changed paths:
   M /trunk/benchmark.sh

Add a short delay after backgrounding the socket servers so they can
establish their socket.

------------------------------------------------------------------------
r61 | bruce | 2001-05-17 20:00:28 -0600 (Thu, 17 May 2001) | 3 lines
Changed paths:
   M /trunk/cvm-unix.c

Truncate the GECOS field at the first comma.
Parse and show the supplemental group IDs.

------------------------------------------------------------------------
r60 | bruce | 2001-05-17 16:06:18 -0600 (Thu, 17 May 2001) | 2 lines
Changed paths:
   M /trunk/module.html

*** empty log message ***

------------------------------------------------------------------------
r59 | bruce | 2001-05-17 16:05:53 -0600 (Thu, 17 May 2001) | 2 lines
Changed paths:
   M /trunk/cvm-testclient.c

Added support for reporting the supplemental group list.

------------------------------------------------------------------------
r58 | bruce | 2001-05-16 05:42:13 -0600 (Wed, 16 May 2001) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/README
   M /trunk/VERSION

*** empty log message ***

------------------------------------------------------------------------
r57 | bruce | 2001-05-16 05:41:05 -0600 (Wed, 16 May 2001) | 3 lines
Changed paths:
   M /trunk/cvm-testclient.c
   M /trunk/facts.c
   M /trunk/facts.h
   M /trunk/module.h
   M /trunk/module_output.c

Completed upgrading "unsigned" to "unsigned long" as the integer fact
type everywhere.

------------------------------------------------------------------------
r56 | bruce | 2001-05-16 05:37:39 -0600 (Wed, 16 May 2001) | 2 lines
Changed paths:
   M /trunk/cvm-checkpassword.c

Include the proper dynamic header file.

------------------------------------------------------------------------
r55 | bruce | 2001-05-16 05:35:55 -0600 (Wed, 16 May 2001) | 2 lines
Changed paths:
   M /trunk/cvm.html
   A /trunk/facts.html
   M /trunk/protocol.html

Moved the list of fact numbers into its own document.

------------------------------------------------------------------------
r54 | bruce | 2001-05-16 05:35:26 -0600 (Wed, 16 May 2001) | 5 lines
Changed paths:
   M /trunk/client.c
   M /trunk/client.h
   M /trunk/client.html

Modified the fact_uint function to use unsigned long instead of just
unsigned.
Modified the fact_str function to return sucessive facts when the call
is repeated.

------------------------------------------------------------------------
r53 | bruce | 2001-05-16 05:34:01 -0600 (Wed, 16 May 2001) | 2 lines
Changed paths:
   M /trunk/rationale.html

Improved wording.

------------------------------------------------------------------------
r52 | bruce | 2001-05-10 19:58:51 -0600 (Thu, 10 May 2001) | 2 lines
Changed paths:
   D /trunk/makedist.in
   A /trunk/makedist.py

Moved to the new Python-based SPAC makedist system.

------------------------------------------------------------------------
r51 | bruce | 2001-05-10 19:58:26 -0600 (Thu, 10 May 2001) | 2 lines
Changed paths:
   M /trunk/cvm-benchclient=x
   M /trunk/cvm-checkpassword=x
   M /trunk/cvm-testclient=x

Add iopoll.o to this programs that use iopoll.

------------------------------------------------------------------------
r50 | bruce | 2001-05-10 19:58:00 -0600 (Thu, 10 May 2001) | 2 lines
Changed paths:
   M /trunk/rts.exp

Fixed the use of the wrong error code for an authentication failure.

------------------------------------------------------------------------
r49 | bruce | 2001-05-09 18:56:17 -0600 (Wed, 09 May 2001) | 2 lines
Changed paths:
   M /trunk/README

*** empty log message ***

------------------------------------------------------------------------
r48 | bruce | 2001-05-09 18:52:00 -0600 (Wed, 09 May 2001) | 2 lines
Changed paths:
   A /trunk/cvm-benchclient.html
   A /trunk/cvm-checkpassword.html
   A /trunk/cvm-testclient.html
   M /trunk/cvm.html

Added program documentation.

------------------------------------------------------------------------
r47 | bruce | 2001-05-09 18:51:43 -0600 (Wed, 09 May 2001) | 2 lines
Changed paths:
   M /trunk/cvm-benchclient.c
   M /trunk/cvm-testclient.c

Fixed the program name in the usage notes.

------------------------------------------------------------------------
r46 | bruce | 2001-05-09 18:40:02 -0600 (Wed, 09 May 2001) | 2 lines
Changed paths:
   M /trunk/cvm-checkpassword.c

Added missing close of FD 3 after reading the data.

------------------------------------------------------------------------
r45 | bruce | 2001-05-09 17:54:42 -0600 (Wed, 09 May 2001) | 2 lines
Changed paths:
   M /trunk/insthier.c

Add new program cvm-checkpassword to list of installed binaries.

------------------------------------------------------------------------
r44 | bruce | 2001-05-09 17:43:53 -0600 (Wed, 09 May 2001) | 2 lines
Changed paths:
   M /trunk/README

*** empty log message ***

------------------------------------------------------------------------
r43 | bruce | 2001-05-09 17:37:53 -0600 (Wed, 09 May 2001) | 2 lines
Changed paths:
   M /trunk/NEWS
   A /trunk/cvm-checkpassword.c
   A /trunk/cvm-checkpassword=x

Added a checkpassword emulator.

------------------------------------------------------------------------
r42 | bruce | 2001-03-22 17:59:59 -0600 (Thu, 22 Mar 2001) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/insthier.c

*** empty log message ***

------------------------------------------------------------------------
r41 | bruce | 2001-03-22 17:59:36 -0600 (Thu, 22 Mar 2001) | 2 lines
Changed paths:
   M /trunk/README
   M /trunk/VERSION

Bumped up the version number.

------------------------------------------------------------------------
r40 | bruce | 2001-03-22 17:59:02 -0600 (Thu, 22 Mar 2001) | 2 lines
Changed paths:
   A /trunk/benchmark.sh
   A /trunk/cvm-benchclient.c
   A /trunk/cvm-benchclient=x

Added a benchmarking tool.

------------------------------------------------------------------------
r39 | bruce | 2001-03-22 17:58:41 -0600 (Thu, 22 Mar 2001) | 2 lines
Changed paths:
   M /trunk/client.c

Fixed bogus use of vfork, and poor handling of data parsing.

------------------------------------------------------------------------
r38 | bruce | 2001-03-19 23:17:02 -0600 (Mon, 19 Mar 2001) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/README
   M /trunk/makedist.in

*** empty log message ***

------------------------------------------------------------------------
r37 | bruce | 2001-03-19 23:11:48 -0600 (Mon, 19 Mar 2001) | 2 lines
Changed paths:
   M /trunk/README
   M /trunk/spec

*** empty log message ***

------------------------------------------------------------------------
r36 | bruce | 2001-03-19 23:10:17 -0600 (Mon, 19 Mar 2001) | 2 lines
Changed paths:
   M /trunk/client.c
   M /trunk/cvm-testclient.c
   M /trunk/cvm-unix.c
   M /trunk/facts.c
   M /trunk/module_command.c
   M /trunk/module_local.c
   M /trunk/module_log.c
   M /trunk/module_output.c
   M /trunk/module_request.c
   M /trunk/module_udp.c

Added GPL copyright notices.

------------------------------------------------------------------------
r35 | bruce | 2001-03-19 23:04:16 -0600 (Mon, 19 Mar 2001) | 2 lines
Changed paths:
   M /trunk/module_local.c
   M /trunk/module_udp.c

Exit in signal handler.

------------------------------------------------------------------------
r34 | bruce | 2001-03-19 23:03:54 -0600 (Mon, 19 Mar 2001) | 2 lines
Changed paths:
   M /trunk/client.c

Fixed return of error codes from command exit.

------------------------------------------------------------------------
r33 | bruce | 2001-03-19 23:03:40 -0600 (Mon, 19 Mar 2001) | 2 lines
Changed paths:
   M /trunk/rts.exp
   M /trunk/rts.tests

Filled in tests.

------------------------------------------------------------------------
r32 | bruce | 2001-03-19 22:30:48 -0600 (Mon, 19 Mar 2001) | 2 lines
Changed paths:
   M /trunk/client.c
   M /trunk/client.h
   A /trunk/command=l
   M /trunk/cvm-testclient.c
   A /trunk/cvm-unix-local.c
   A /trunk/cvm-unix-local=x
   A /trunk/cvm-unix-udp.c
   A /trunk/cvm-unix-udp=x
   M /trunk/cvm-unix.c
   M /trunk/cvm-unix=x
   A /trunk/errors.h
   M /trunk/insthier.c
   A /trunk/local=l
   M /trunk/module.h
   D /trunk/module=l
   A /trunk/module_command.c
   D /trunk/module_input.c
   A /trunk/module_local.c
   A /trunk/module_log.c
   D /trunk/module_main.c
   M /trunk/module_output.c
   A /trunk/module_request.c
   A /trunk/module_udp.c
   A /trunk/udp=l

Totally rewrote the package to provide three modes of operation.

------------------------------------------------------------------------
r31 | bruce | 2001-03-19 22:30:26 -0600 (Mon, 19 Mar 2001) | 2 lines
Changed paths:
   M /trunk/README
   A /trunk/rts.exp
   A /trunk/rts.sh
   A /trunk/rts.tests

*** empty log message ***

------------------------------------------------------------------------
r30 | bruce | 2001-03-19 22:30:07 -0600 (Mon, 19 Mar 2001) | 2 lines
Changed paths:
   M /trunk/README
   M /trunk/makedist.in

Removed the mailing list data from the makedist.in and added it to README.

------------------------------------------------------------------------
r29 | bruce | 2001-03-19 22:27:55 -0600 (Mon, 19 Mar 2001) | 2 lines
Changed paths:
   M /trunk/VERSION

Bumped up version number.

------------------------------------------------------------------------
r28 | bruce | 2001-03-19 22:27:09 -0600 (Mon, 19 Mar 2001) | 3 lines
Changed paths:
   M /trunk/NEWS

Added note about new features.
Bumped version number.

------------------------------------------------------------------------
r27 | bruce | 2001-03-19 22:23:57 -0600 (Mon, 19 Mar 2001) | 2 lines
Changed paths:
   M /trunk/cvm.html

Renamed the local-domain socket module to cvm-local:

------------------------------------------------------------------------
r26 | bruce | 2001-03-11 23:16:58 -0600 (Sun, 11 Mar 2001) | 2 lines
Changed paths:
   M /trunk/client.html
   M /trunk/cvm.html
   A /trunk/errors.html
   M /trunk/module.html
   M /trunk/protocol.html
   M /trunk/rationale.html

Updated documentation for new server framework.

------------------------------------------------------------------------
r25 | bruce | 2001-03-10 04:24:51 -0600 (Sat, 10 Mar 2001) | 2 lines
Changed paths:
   M /trunk/client.c

Rewrote the client library to do UDP calls.

------------------------------------------------------------------------
r24 | bruce | 2001-03-10 04:24:14 -0600 (Sat, 10 Mar 2001) | 2 lines
Changed paths:
   M /trunk/cvm-testclient=x

CVM clients now need the socket library.

------------------------------------------------------------------------
r23 | bruce | 2001-03-10 04:23:51 -0600 (Sat, 10 Mar 2001) | 3 lines
Changed paths:
   M /trunk/cvm.html
   A /trunk/protocol.html
   A /trunk/rationale.html

Further split up the CVM documentation, modified to account for upcoming
UDP modifications.

------------------------------------------------------------------------
r22 | bruce | 2001-03-10 04:22:40 -0600 (Sat, 10 Mar 2001) | 2 lines
Changed paths:
   M /trunk/module_input.c
   M /trunk/module_output.c

Shrank buffer size down to 512 bytes.

------------------------------------------------------------------------
r21 | bruce | 2001-03-08 15:08:19 -0600 (Thu, 08 Mar 2001) | 2 lines
Changed paths:
   M /trunk/README

Updated date.

------------------------------------------------------------------------
r20 | bruce | 2001-03-07 17:25:54 -0600 (Wed, 07 Mar 2001) | 2 lines
Changed paths:
   M /trunk/NEWS

*** empty log message ***

------------------------------------------------------------------------
r19 | bruce | 2001-03-07 00:04:34 -0600 (Wed, 07 Mar 2001) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/README
   M /trunk/VERSION

Bumped up version number.

------------------------------------------------------------------------
r18 | bruce | 2001-03-06 23:13:08 -0600 (Tue, 06 Mar 2001) | 3 lines
Changed paths:
   M /trunk/client.c

Properly handle unsigned numbers, rejecting negatives.
Return error if parsing data fails, even if module returns OK.

------------------------------------------------------------------------
r17 | bruce | 2001-02-27 17:16:15 -0600 (Tue, 27 Feb 2001) | 2 lines
Changed paths:
   M /trunk/insthier.c

Fixed to account for file name changes.

------------------------------------------------------------------------
r16 | bruce | 2001-02-27 17:15:15 -0600 (Tue, 27 Feb 2001) | 2 lines
Changed paths:
   M /trunk/README

Fixed up date.

------------------------------------------------------------------------
r15 | bruce | 2001-02-27 17:15:09 -0600 (Tue, 27 Feb 2001) | 2 lines
Changed paths:
   M /trunk/cvm-unix=x

Added shadow.lib dependancy to cvm-unix.

------------------------------------------------------------------------
r14 | bruce | 2001-02-23 17:27:40 -0600 (Fri, 23 Feb 2001) | 2 lines
Changed paths:
   A /trunk/cvm-testclient.c
   A /trunk/cvm-testclient=x
   D /trunk/testcvmclient.c
   D /trunk/testcvmclient=x

Renamed testcvmclient to cvm-testclient

------------------------------------------------------------------------
r13 | bruce | 2001-02-23 17:18:02 -0600 (Fri, 23 Feb 2001) | 2 lines
Changed paths:
   A /trunk/client.html
   M /trunk/cvm.html
   A /trunk/module.html

Added new library documentation.

------------------------------------------------------------------------
r12 | bruce | 2001-02-23 17:17:48 -0600 (Fri, 23 Feb 2001) | 2 lines
Changed paths:
   M /trunk/client.c

Fixed bug of using strtol instead of strtoul.

------------------------------------------------------------------------
r11 | bruce | 2001-02-23 17:17:30 -0600 (Fri, 23 Feb 2001) | 2 lines
Changed paths:
   M /trunk/NEWS
   M /trunk/VERSION

Bumped up version number.

------------------------------------------------------------------------
r10 | bruce | 2001-02-23 17:16:59 -0600 (Fri, 23 Feb 2001) | 2 lines
Changed paths:
   A /trunk/cvm-unix.c
   A /trunk/cvm-unix=x
   D /trunk/cvm_unix.c
   D /trunk/cvm_unix=x

Renamed cvm_unix to cvm-unix.

------------------------------------------------------------------------
r9 | bruce | 2001-02-23 00:29:57 -0600 (Fri, 23 Feb 2001) | 2 lines
Changed paths:
   M /trunk/README
   M /trunk/makedist.in

*** empty log message ***

------------------------------------------------------------------------
r8 | bruce | 2001-02-23 00:26:42 -0600 (Fri, 23 Feb 2001) | 2 lines
Changed paths:
   A /trunk/makedist.in

Added the makedist file.

------------------------------------------------------------------------
r7 | bruce | 2001-02-23 00:24:31 -0600 (Fri, 23 Feb 2001) | 2 lines
Changed paths:
   A /trunk/NEWS
   A /trunk/README
   M /trunk/VERSION
   A /trunk/spec

Fixed up distribution files.

------------------------------------------------------------------------
r6 | bruce | 2001-02-22 23:37:59 -0600 (Thu, 22 Feb 2001) | 2 lines
Changed paths:
   D /trunk/testclient.c
   D /trunk/testclient=x
   A /trunk/testcvmclient.c
   A /trunk/testcvmclient=x

Renamed testclient to testcvmclient.

------------------------------------------------------------------------
r5 | bruce | 2001-02-22 23:37:48 -0600 (Thu, 22 Feb 2001) | 2 lines
Changed paths:
   M /trunk/insthier.c

Install cvm_unix and testcvmclient in conf_bin.

------------------------------------------------------------------------
r4 | bruce | 2001-02-22 23:37:22 -0600 (Thu, 22 Feb 2001) | 3 lines
Changed paths:
   M /trunk/client.c

Wait for program exit after killing the program to catch exit codes
properly.

------------------------------------------------------------------------
r3 | bruce | 2001-02-22 23:24:15 -0600 (Thu, 22 Feb 2001) | 2 lines
Changed paths:
   A /trunk/cvm.html
   D /trunk/interface.html

Renamed interface.html to cvm.html

------------------------------------------------------------------------
r2 | bruce | 2001-02-22 23:15:28 -0600 (Thu, 22 Feb 2001) | 2 lines
Changed paths:
   D /trunk/auth_sys.c
   D /trunk/auth_sys=x
   A /trunk/cvm_unix.c
   A /trunk/cvm_unix=x

Renamed auth_sys to cvm_unix.

------------------------------------------------------------------------
r1 | bruce | 2001-02-22 23:11:51 -0600 (Thu, 22 Feb 2001) | 2 lines
Changed paths:
   A /trunk
   A /trunk/VERSION
   A /trunk/auth_sys.c
   A /trunk/auth_sys=x
   A /trunk/client.c
   A /trunk/client.h
   A /trunk/client=l
   A /trunk/facts.c
   A /trunk/facts.h
   A /trunk/insthier.c
   A /trunk/interface.html
   A /trunk/module.h
   A /trunk/module=l
   A /trunk/module_input.c
   A /trunk/module_main.c
   A /trunk/module_output.c
   A /trunk/testclient.c
   A /trunk/testclient=x

Initial revision

------------------------------------------------------------------------