~louis/ubuntu/trusty/clamav/lp799623_fix_logrotate

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
clamav (0.98.1+dfsg-1ubuntu5) trusty; urgency=low

  * debian/common_functions
    - Fix slurp_config() that is sometimes not discriminative
    enough which leads to invalid configuration files (LP: #799623)

 -- Louis Bouchard <louis.bouchard@ubuntu.com>  Mon, 10 Feb 2014 17:56:52 +0100

clamav (0.98.1+dfsg-1ubuntu4) trusty; urgency=medium

  * Stop using a cargo-culted syscall table and trust the glibc headers.

 -- Adam Conrad <adconrad@ubuntu.com>  Mon, 03 Feb 2014 17:04:49 -0700

clamav (0.98.1+dfsg-1ubuntu3) trusty; urgency=low

  * Add #ifndef __NR_fanotify_init in clamd/fan-syscalllib.h to avoid local
    definitions when already defined and FTBFS if local definition is missing
    - Fix for FTBFS on arm64

 -- Scott Kitterman <scott@kitterman.com>  Mon, 03 Feb 2014 13:24:29 -0500

clamav (0.98.1+dfsg-1ubuntu2) trusty; urgency=low

  * Really drop build-dep on electric-fence (in Universe)

 -- Scott Kitterman <scott@kitterman.com>  Sat, 01 Feb 2014 14:42:28 -0500

clamav (0.98.1+dfsg-1ubuntu1) trusty; urgency=low

  * Merge from Debian unstable.  Remaining changes:
    - Drop build-dep on electric-fence (in Universe)
    - Add apparmor profiles for clamd and freshclam along with maintainer
      script changes
    - Add autopkgtest

 -- Scott Kitterman <scott@kitterman.com>  Sat, 01 Feb 2014 11:06:17 -0500

clamav (0.98.1+dfsg-1) unstable; urgency=low

  * New upstream release
    - Update embedded-library override for modified zlid for new SO version
  * Add definitions in clamd/fan-syscalllib.h for missing arches to fix FTBFS
    (Closes: #737119)
    - Thanks to Andreas Cadhalpun for the patch
  * Really use autoreconf (Closes: #727291) again
    - Thanks to Andreas Cadhalpun for the corrected patch

 -- Scott Kitterman <scott@kitterman.com>  Fri, 31 Jan 2014 23:03:09 -0500

clamav (0.98+dfsg-1) unstable; urgency=low

  [ Matthias Klose ]
  * Use dh_autotools-dev to update config.{sub,guess} for AArch64
    (Closes: #727291)

  [ Scott Kitterman ]
  * New upstream release (Closes: #727027)
    - Update embedded-library override for modified zlid for new SO version
    - Update debian/clamav-*.examples for upstream change in sample config file
      names
  * Stop removing clamav user and group on purge (Closes: #626547)
  * Moved split-tarball.sh from contrib to debian since it is debian specific
    and not provided by upstream
  * Update standards version to 3.9.5 without further change.
  * Add missing includes to shared/output.c and libclamav/clamav.h to fix
    FTBFS
  * Fix STATBUF definition to be struct stat vice struct64 to resolve FTBFS on
    32 bit archs (Thanks to Andreas Cadhalpun)

 -- Scott Kitterman <scott@kitterman.com>  Sun, 26 Jan 2014 00:57:46 -0500

clamav (0.97.8+dfsg-1ubuntu5) trusty; urgency=medium

  * Use dh_autoreconf to update libtool.

 -- Dimitri John Ledkov <xnox@ubuntu.com>  Fri, 20 Dec 2013 21:46:34 +0000

clamav (0.97.8+dfsg-1ubuntu4) saucy; urgency=low

  * Use dh_autotools-dev to update config.{sub,guess} for AArch64.

 -- Matthias Klose <doko@ubuntu.com>  Thu, 10 Oct 2013 13:10:04 +0200

clamav (0.97.8+dfsg-1ubuntu3) saucy; urgency=low

  * debian/tests: Update clamd test to not require network access.

 -- Yolanda Robla <yolanda.robla@canonical.com>  Wed, 29 May 2013 11:33:15 +0200

clamav (0.97.8+dfsg-1ubuntu2) saucy; urgency=low

  * debian/tests: Add autopkgtest.

 -- Yolanda Robla <yolanda.robla@canonical.com>  Wed, 22 May 2013 12:29:44 +0200

clamav (0.97.8+dfsg-1ubuntu1.13.04.1) raring-security; urgency=low

  [ Seth Arnold ]
  * SECURITY UPDATE: Updated to 0.97.8 to fix multiple security issues.
    - CVE-2013-2020 and CVE-2013-2021

  [ Scott Kitterman ]
  * Merge from Debian unstable (LP: #1172981).  Remaining changes:
    - Drop build-dep on electric-fence (in Universe)
    - Add apparmor profiles for clamd and freshclam along with maintainer
      script changes

 -- Scott Kitterman <scott@kitterman.com>  Thu, 25 Apr 2013 23:41:55 -0400

clamav (0.97.8+dfsg-1) unstable; urgency=medium

  * New upstream release
  * Update libclamav6 lintian override to match updated soversion
  * Urgency medium due to security fixes

 -- Scott Kitterman <scott@kitterman.com>  Wed, 24 Apr 2013 22:34:16 -0400

clamav (0.97.7+dfsg-1ubuntu1) raring; urgency=low

  * Merge from Debian unstable.  Remaining changes:
    - Drop build-dep on electric-fence (in Universe)
    - Add apparmor profiles for clamd and freshclam along with maintainer
      script changes

 -- Scott Kitterman <scott@kitterman.com>  Tue, 19 Mar 2013 06:38:51 -0400

clamav (0.97.7+dfsg-1) unstable; urgency=medium

  * New upstream release
  * Update libclamav6 lintian override to match updated soversion
  * Urgency medium due to security fixes

 -- Scott Kitterman <scott@kitterman.com>  Mon, 18 Mar 2013 22:28:02 -0400

clamav (0.97.6+dfsg-1ubuntu1) quantal; urgency=low

  * Merge from Debian unstable.  Remaining changes:
    - Drop build-dep on electric-fence (in Universe)
    - Add apparmor profiles for clamd and freshclam along with maintainer
      script changes

 -- Scott Kitterman <scott@kitterman.com>  Mon, 08 Oct 2012 12:29:39 -0400

clamav (0.97.6+dfsg-1) unstable; urgency=low

  * New upstream release (Closes: #689487)
  * Update libclamav6 lintian override to match updated soversion

 -- Scott Kitterman <scott@kitterman.com>  Mon, 08 Oct 2012 12:11:43 -0400

clamav (0.97.5+dfsg-6ubuntu2) quantal; urgency=low

  * debian/clamav-base.install, debian/source_clamav.py: Install apport
    hook so we can get AppArmor denials in bug reports.

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Wed, 22 Aug 2012 08:33:24 -0400

clamav (0.97.5+dfsg-6ubuntu1) quantal; urgency=low

  * Merge from Debian unstable (LP: #1015405).  Remaining changes:
    - Drop build-dep on electric-fence (in Universe)
    - Add apparmor profiles for clamd and freshclam along with maintainer
      script changes

 -- Scott Kitterman <scott@kitterman.com>  Tue, 14 Aug 2012 21:29:59 -0400

clamav (0.97.5+dfsg-6) unstable; urgency=medium

  * Urgency medium for RC bug fix the addressess regression from 0.97.3
  * Add changes from upstream commit 6a879ad98460303b23a6fc119769a3b463a902f8
    to fix unpack errors for various compressed files including some .bz2,
    .xls, .doc, and PDF (Closes: #684697)

 -- Scott Kitterman <scott@kitterman.com>  Tue, 14 Aug 2012 12:11:19 -0400

clamav (0.97.5+dfsg-5) unstable; urgency=low

  * Drop /var/run/clamav from the directories shipped in clamav-base (policy
    9.1.4) and trust it will get cleaned up on boot
    - Thanks to Andreas Beckmann for the cluebat

 -- Scott Kitterman <scott@kitterman.com>  Thu, 19 Jul 2012 10:51:59 -0400

clamav (0.97.5+dfsg-4) unstable; urgency=low

  * Drop postrm snippets from clamav-base, clamav-freshclam, clamav-daemon,
    and clamav-milter that remove /var/log/clamav, /var/lib/clamav,
    /var/run/clamav, and /etc/clamav and and let dpkg remove the directories
    once they are empty in order to fix problems with directory removal by a
    package that did not own the directory (Closes: #681960)
  * Add /var/run/clamav to directories shipped by clamav-base so dpkg cleanup
    will work for it too.

 -- Scott Kitterman <scott@kitterman.com>  Wed, 18 Jul 2012 09:29:50 -0400

clamav (0.97.5+dfsg-3ubuntu1) quantal; urgency=low

  * Merge from Debian unstable.  Remaining changes:
    - Drop build-dep on electric-fence (in Universe)
    - Add apparmor profiles for clamd and freshclam along with maintainer
      script changes

 -- Scott Kitterman <scott@kitterman.com>  Mon, 09 Jul 2012 19:22:18 -0400

clamav (0.97.5+dfsg-3) unstable; urgency=low

  * Fix proxy port configuration handling in clamav-freshclam.postinst so that
    failure to specify port does not result in an invalid configuration
    (Closes: #678247), (LP: #784797)

 -- Scott Kitterman <scott@kitterman.com>  Sat, 30 Jun 2012 21:35:33 -0400

clamav (0.97.5+dfsg-2ubuntu1) quantal; urgency=low

  * Merge from Debian Unstable.  Remaining Ubuntu changes:
    - Drop build-dep on electric-fence (in Universe)
    - Add apparmor profiles for clamd and freshclam along with maintainer
      script changes

 -- Scott Kitterman <scott@kitterman.com>  Tue, 19 Jun 2012 21:39:28 -0400

clamav (0.97.5+dfsg-2) unstable; urgency=medium

  * Medium urgency due to security fixes
  * Update debian/clamav-base.postinst.in to test for the existence of the
    actual .cvd files before trying to install them and not just the directory
    they should be in (Closes: #678019)
  * Remove /var/run/clamav on purge (LP: #829945)
    - Thanks to Imre Gergely for the patch
  * Add call to /sbin/restorecon in debian/common_functions make_directory to
    to label the /run directory for SE Linux (Closes: #677686)
    - Thanks to Russell Coker for the patch
  * Remove obsolete reference to clamav-data package in clamav-daemon init log
    failure message

 -- Scott Kitterman <scott@kitterman.com>  Mon, 18 Jun 2012 20:32:06 -0400

clamav (0.97.5+dfsg-1ubuntu1) quantal; urgency=low

  * Merge from Debian Unstable.  Remaining Ubuntu changes:
    - Drop build-dep on electric-fence (in Universe)
    - Add apparmor profiles for clamd and freshclam along with maintainer
      script changes
  * New upstream version no longer includes virus definition files
   (LP: #460316)

 -- Scott Kitterman <scott@kitterman.com>  Fri, 15 Jun 2012 21:20:04 -0400

clamav (0.97.5+dfsg-1) unstable; urgency=medium

  [ Scott Kitterman ]
  * Urgency medium due to security fixes
  * New upstream release (Closes: #669370)
    - Addresses possible evasion cases in some archive formats (CVE-2012-1419,
      CVE-2012-1457, CVE-2012-1458, CVE-2012-1459) (Closes: #668273)
    - Repack tarball to remove non-free unrar code and win32 directory
    - Add contrib/split-tarball.sh and docs/man/clambc.1 in the diff.gz
      (these used to be added to the Debian specific upstream tarball, but
      aren't upstream so are better in the diff)
    - Change etc/clamav-milter.conf to Debian defaults 
  * Enabled hardened build flags (Closes: #653958)
    - Thanks to Moritz Muehlenhoff for the patch
  * Remove var/lib/clamav/daily.cvd and main.cvd from clamav-base.examples
    because they aren't installed by the build system anymore (and are
    provided only as empty files in the upstream tarball)
  * Fix typos in README.Debian (Closes: #667831)
  * Update libclamav6 binary lintian override to match current filename
  * Bump standards version to 3.9.3 without further change

  [ Stephen Gran ]
    - Add a note about RAR functionality to README.Debian (Closes: #652009)

 -- Scott Kitterman <scott@kitterman.com>  Fri, 15 Jun 2012 11:39:26 -0400

clamav (0.97.3+dfsg-2.2) unstable; urgency=low

  * Non-maintainer upload.
  * Fix "FTBFS: llvm/lib/ExecutionEngine/JIT/Intercept.cpp:69:67: error:
    'lseek64' was not declared in this scope": add missing <unistd.h> include.
    Also fixed in upstream git already [bb8ab5c].
    (Closes: #674330)

 -- gregor herrmann <gregoa@debian.org>  Fri, 01 Jun 2012 16:46:45 +0200

clamav (0.97.3+dfsg-2.1ubuntu1) precise; urgency=low

  * Merge from Debian Unstable.  Remaining Ubuntu changes:
    - Drop build-dep on electric-fence (in Universe)
    - Add apparmor profiles for clamd and freshclam along with maintainer
      script changes

 -- Scott Kitterman <scott@kitterman.com>  Sat, 03 Mar 2012 11:44:26 -0500

clamav (0.97.3+dfsg-2.1) unstable; urgency=low

  * Non-maintainer upload.
  * Fix spelling error in debconf templates. Closes: #660966
  * Fix pending l10n issues. Debconf translations:
    - Dutch; (Jeroen Schot).  Closes: #651405
    - German (Thomas Müller).  Closes: #653409
    - Polish (Michał Kułach).  Closes: #659369
    - Japanese (Kenshi Muto).  Closes: #659980
    - Czech (Miroslav Kure).  Closes: #660319
    - Italian (Luca Monducci).  Closes: #660475

 -- Christian Perrier <bubulle@debian.org>  Thu, 23 Feb 2012 09:46:53 +0100

clamav (0.97.3+dfsg-2ubuntu1) precise; urgency=low

  * Merge from Debian Unstable.  Remaining Ubuntu changes:
    - Drop build-dep on electric-fence (in Universe)
    - Add apparmor profiles for clamd and freshclam along with maintainer
      script changes

 -- Scott Kitterman <scott@kitterman.com>  Fri, 09 Dec 2011 00:31:48 -0500

clamav (0.97.3+dfsg-2) unstable; urgency=low

  [ Loïc Minier ]
  * Pass --without-included-ltdl to configure instead of hardcoding
    --with-ltdl-include= and --with-ltdl-lib= pathnames, the pathnames
    wouldn't work with multiarch anymore.
  * rules: let clamav-dbg depend on libclamav6 as it seems to require it and
    this could make rules -j safe (didn't manage to reproduce the -j2 failure
    I was getting with the change).

  [ Stephen Gran ]
  * Add VERBOSE=1 to make check

  [ Scott Kitterman ]
  * Add myself to uploaders

 -- Scott Kitterman <scott@kitterman.com>  Tue, 06 Dec 2011 16:44:16 -0500

clamav (0.97.3+dfsg-1ubuntu3) precise; urgency=low

  * No-change rebuild to drop spurious libsfgcc1 dependency on armhf.

 -- Adam Conrad <adconrad@ubuntu.com>  Fri, 02 Dec 2011 17:28:45 -0700

clamav (0.97.3+dfsg-1ubuntu2) precise; urgency=low

  * Pass --without-included-ltdl to configure instead of hardcoding
    --with-ltdl-include= and --with-ltdl-lib= pathnames, the pathnames
    wouldn't work with multiarch anymore.
  * rules: let clamav-dbg depend on libclamav6 as it seems to require it and
    this could make rules -j safe (didn't manage to reproduce the -j2 failure
    I was getting with the change).

 -- Loïc Minier <loic.minier@ubuntu.com>  Thu, 01 Dec 2011 20:37:48 +0100

clamav (0.97.3+dfsg-1ubuntu1) precise; urgency=low

  * Merge from Debian unstable.  Remaining changes:
    - Drop build-dep on electric-fence (in Universe)
    - Add apparmor profiles for clamd and freshclam along with maintainer
      script changes

 -- Scott Kitterman <scott@kitterman.com>  Mon, 24 Oct 2011 11:57:42 -0400

clamav (0.97.3+dfsg-1) unstable; urgency=medium

  [ Michael Tautschnig ]
  * New upstream release: Fixes potential DoS

 -- Michael Tautschnig <mt@debian.org>  Sun, 23 Oct 2011 23:20:17 +0100

clamav (0.97.2+dfsg-1ubuntu2) oneiric; urgency=low

  [ Imre Gergely ]
  * Fix clamd apparmor profile to work with mimedefang (LP: #829089)
  * Stop samba related log spamming from freshclam apparmor profile
    (LP: #752833)

 -- Scott Kitterman <scott@kitterman.com>  Thu, 25 Aug 2011 08:43:22 -0400

clamav (0.97.2+dfsg-1ubuntu1) oneiric; urgency=low

  * Merge from Debian unstable.  Remaining changes:
    - Drop build-dep on electric-fence (in Universe)
    - Add apparmor profiles for clamd and freshclam along with maintainer
      script changes

 -- Scott Kitterman <scott@kitterman.com>  Fri, 29 Jul 2011 14:15:15 -0400

clamav (0.97.2+dfsg-1) unstable; urgency=low

  [ Michael Tautschnig ]
  * New upstream release
    - Fixes off-by-one-error (closes: #635599)
    - Fixes opcode 20 is not implemented error (closes: #635340)
    - New option ExtraDatabase for freshclam
  * Debconf translation updates
    - Portuguese (closes: #630954)
    - French (closes: #631978)
    - Swedish (closes: #632144)
    - Danish (closes: #632558)
    - Spanish (closes: #633883)
    - Russian (closes: #635145)

 -- Michael Tautschnig <mt@debian.org>  Fri, 29 Jul 2011 16:13:32 +0200

clamav (0.97.1+dfsg-1ubuntu3) oneiric; urgency=low

  * SECURITY UPDATE: denial of service via hash manager off-by-one
    - libclamav/matcher-hash.c: fix count.
    - http://git.clamav.net/gitweb?p=clamav-devel.git;a=commit;h=4842733eb3f09be61caeed83778bb6679141dbc5
    - CVE-2011-2721

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Wed, 27 Jul 2011 13:28:52 -0400

clamav (0.97.1+dfsg-1ubuntu2) oneiric; urgency=low

  * adjust AppArmor profile for /var/run -> /run (LP: #810270)

 -- Jamie Strandboge <jamie@ubuntu.com>  Thu, 14 Jul 2011 08:36:01 -0500

clamav (0.97.1+dfsg-1ubuntu1) oneiric; urgency=low

  * Merge from debian unstable.  Remaining changes:
    - Drop build-dep on electric-fence (in Universe)
    - Add apparmor profiles for clamd and freshclam along with maintainer
      script changes

 -- Scott Kitterman <scott@kitterman.com>  Sat, 18 Jun 2011 11:56:34 -0400

clamav (0.97.1+dfsg-1) unstable; urgency=low

  [ Michael Tautschnig ]
  * New upstream release
    - New option ClamukoExcludeUID for clamd
  * Added debconf question for clamav-milter/LogClean (closes: #617890).
  * Clarified text about clamav-milter's temporary directory in debconf
    question (closes: #617889).
  * Debconf translation updates
    - Japanese (closes: #624802)
  * Remove references to other libraries from dependency_libs field
    (closes: #621206). Thanks Luk Claes for the patch.
  * Added doc-base file to clamav-docs (closes: #629357). Thanks John Vogel.
  * Bumped Standards-Version to 3.9.2, no changes needed.

  [ Stephen Gran ]
  * Update README.Debian to reflect reality for the milter (closes: #597048)

 -- Michael Tautschnig <mt@debian.org>  Fri, 10 Jun 2011 16:09:55 +0200

clamav (0.97+dfsg-2ubuntu1) natty; urgency=low

  * Merge from debian unstable.  Remaining Ubuntu changes:
    - Drop initial signature definitions from clamav-base
    - Drop build-dep on electric-fence (in Universe)
    - Add apparmor profiles for clamd and freshclam along with maintainer
      script changes

 -- Scott Kitterman <scott@kitterman.com>  Fri, 11 Mar 2011 08:07:46 -0500

clamav (0.97+dfsg-2) unstable; urgency=low

  [ Michael Tautschnig ]
  * Proper suite name.
  * More tidy up: new upstream release also fixed problems with
    ExtendedDetectionInfo (upstream bb#2409, closes: #617262).

 -- Michael Tautschnig <mt@debian.org>  Thu, 10 Mar 2011 22:50:28 +0000

clamav (0.97+dfsg-1) UNRELEASED; urgency=low

  [ Alberto Wu ]
  * New upstream release

  [ Stephen Gran ]
  * General tidy up

 -- Stephen Gran <sgran@debian.org>  Fri, 18 Feb 2011 20:52:08 +0000

clamav (0.97+dfsg-0ubuntu1) natty; urgency=low

  * Merge from debian unstable (0ubuntu1 because the Debian upload was
    inadvertently left marked UNRELEASED).  Remaining changes:
    - Drop initial signature definitions from clamav-base
    - Drop build-dep on electric-fence (in Universe)
    - Add apparmor profiles for clamd and freshclam along with maintainer
      script changes

 -- Scott Kitterman <scott@kitterman.com>  Sat, 19 Feb 2011 09:51:33 -0500

clamav (0.97+dfsg-1) UNRELEASED; urgency=low

  [ Alberto Wu ]
  * New upstream release

  [ Stephen Gran ]
  * General tidy up

 -- Stephen Gran <sgran@debian.org>  Fri, 18 Feb 2011 20:52:08 +0000

clamav (0.96.5+dfsg-2) UNRELEASED; urgency=low
  
  [ Stephen Gran ]
  * Remove ucf backup files in cron.d directory (closes: #607053).
  
  [ Michael Tautschnig ]
  * Acknowledge NMU - thanks Christian for fixing my earlier broken upload
    (probably 0.96.3+dfsg-1) (closes: #610058).
  * Debconf translation updates
    - Danish (closes: #605626)
    - Dutch (closes: #605903)
  * Cherry-pick bc0ef08bb7312b5f295cd4070d44be96d4aed9d2 to fix crashes in
    paranoid mode (closes: #606308).
  * Cherry-pick ee50848a509662aa21c6c6a41b72c4053b1eedf3 to improve scanning
    of mbox files (closes: #589767).
  
 -- Michael Tautschnig <mt@debian.org>  Tue, 18 Jan 2011 23:21:34 +0000

clamav (0.96.5+dfsg-1.1) unstable; urgency=low

  * Non-maintainer upload.
  * Fix encoding of Italian debconf translation.

 -- Christian Perrier <bubulle@debian.org>  Wed, 12 Jan 2011 19:51:36 +0100

clamav (0.96.5+dfsg-1ubuntu2) natty; urgency=low

  * Cherry pick 1d99d54d9d5794af0bc7308389e68cf1cc90f4b8 from Debian
    pkg-clamav git to remove leftover temp files from /etc/cron.d/
    clamav-freshclam since cron will consider them valid and use them

 -- Scott Kitterman <scott@kitterman.com>  Fri, 17 Dec 2010 10:49:56 -0500

clamav (0.96.5+dfsg-1ubuntu1) natty; urgency=low

  * Merge from debian unstable.  Remaining changes:
    - Drop initial signature definitions from clamav-base
    - Drop build-dep on electric-fence (in Universe)
    - Add apparmor profiles for clamd and freshclam along with maintainer
      script changes

 -- Scott Kitterman <scott@kitterman.com>  Thu, 02 Dec 2010 21:04:10 -0500

clamav (0.96.5+dfsg-1) unstable; urgency=low
  
  [ Alberto WU ]
  * New upstream release
    - Fix JIT-related crashes on VIA (closes: #604621).
    - New option DatabaseCustomURL for freshclam
    - New option OLE2BlockMacros for clamd

  [ Michael Tautschnig ]
  * Forcibly remove files in purge even if ucf is not available (anymore) -
    thanks piuparts.
  * Change StreamMaxLength default to 25Mb, also update user configurations
    still using 0 as value (closes: #602840).
  
 -- Michael Tautschnig <mt@debian.org>  Wed, 01 Dec 2010 16:46:37 +0100

clamav (0.96.4+dfsg-1ubuntu2) natty; urgency=low

  * Backport security fixes from 0.96.5:
    - Git commits 019f1955194360600ecf0644959ceca6734c2d7b and
      1f3db7f074995bd4e1d0183b2db8b1c472d2f41b

 -- Scott Kitterman <scott@kitterman.com>  Wed, 01 Dec 2010 17:03:22 -0500

clamav (0.96.4+dfsg-1ubuntu1) natty; urgency=low

  * Merge from debian unstable.  Remaining changes:
    - Drop initial signature definitions from clamav-base
    - Drop build-dep on electric-fence (in Universe)
    - Add apparmor profiles for clamd and freshclam along with maintainer
      script changes
  * Cherry pick 89e80e83a8c256e15821b6558b5ed7fc9e65f4b5 from upstream git to
    fix CPU detection for LLVM JIT - JIT will now be correctly enabled on
    Pentium IV - fixes FTBFS due to test failures

 -- Scott Kitterman <scott@kitterman.com>  Wed, 10 Nov 2010 23:08:16 -0500

clamav (0.96.4+dfsg-1) unstable; urgency=low
  
  [ Alberto WU ]
  * New upstream release
    - Fix 'Unknown error code ERROR' (closes: #599372).
    - Disable the JIT on K6-2 (closes: #600088).
    - Fix parsing of malformed pdf files (closes: #599908).

  [ Michael Tautschnig ]
  * Debconf translation updates
    - Czech (closes: #600098)
    - Vietnamese (closes: #601538)
  * Add additional check for milter socket in status command of milter init
    script (thanks Chris Moules for proposing a patch, closes: #600908).
  
 -- Michael Tautschnig <mt@debian.org>  Fri, 29 Oct 2010 12:38:52 +0200

clamav (0.96.4+dfsg-1~volatile1ubuntu2) natty; urgency=low

  * Cherry pick 89e80e83a8c256e15821b6558b5ed7fc9e65f4b5 from upstream git to
    fix CPU detection for LLVM JIT - JIT will now be correctly enabled on
    Pentium IV - fixes FTBFS due to test failures

 -- Scott Kitterman <scott@kitterman.com>  Sun, 31 Oct 2010 08:47:03 -0400

clamav (0.96.4+dfsg-1~volatile1ubuntu1) natty; urgency=low

  * Merge from Debian Volatile.  Remaining Ubuntu changes:
    - Drop initial signature definitions from clamav-base
    - Drop build-dep on electric-fence (in Universe)
    - Add apparmor profiles for clamd and freshclam along with maintainer
      script changes
  * Dropped diff for PDF clamdscan crash, incorporated upstream

 -- Scott Kitterman <scott@kitterman.com>  Tue, 26 Oct 2010 19:10:37 -0400

clamav (0.96.4+dfsg-1~volatile1) lenny-volatile; urgency=low

  [ Alberto WU ]
  * New upstream release
    - Fix 'Unknown error code ERROR' (closes: #599372).
    - Disable the JIT on K6-2 (closes: #600088).
    - Fix parsing of malformed pdf files (closes: #599908).

  [ Michael Tautschnig ]
  * Debconf translation updates
    - Czech (closes: #600098)
  * Add additional check for milter socket in status command of milter init
    script (thanks Chris Moules for proposing a patch, closes: #600908).

 -- Michael Tautschnig <mt@debian.org>  Mon, 25 Oct 2010 22:58:36 +0200

clamav (0.96.3+dfsg-2ubuntu2) natty; urgency=low

  * PDF clamdscan crash fix (LP: #658341) - Cherry pick from Clamav git commit
    e142504b07d7f81435f6ac99ec1eedf6c08f2188, will be part of 0.96.4

 -- Scott Kitterman <scott@kitterman.com>  Fri, 15 Oct 2010 08:13:38 -0400

clamav (0.96.3+dfsg-2ubuntu1) maverick; urgency=low

  * Merge from Debian Unstable.  Remaining Ubuntu changes:
    - Drop initial signature definitions from clamav-base
    - Drop build-dep on electric-fence (in Universe)
    - Add apparmor profiles for clamd and freshclam along with maintainer
      script changes

 -- Scott Kitterman <scott@kitterman.com>  Wed, 29 Sep 2010 23:00:09 -0400

clamav (0.96.3+dfsg-2) unstable; urgency=low

  [ Stephen Gran ]
  * Add NotifyClamd only if set to nonempty value.
  
  [ Michael Tautschnig ]
  * Cherry-pick from upstream: Only enable RLIMIT_DATA warning on *BSD
    (already included in Ubuntu's 1ubuntu3) (closes: #598083).
  * Do rmdir /etc/clamav, /var/log/clamav, /var/lib/clamav in all postrms as
    we cannot count on clamav-base's postrm to be the last one being called
    (thanks piuparts).
  * Remove trailing / in freshclam's DatabaseDirectory default value
    (closes: #598084).
  
 -- Michael Tautschnig <mt@debian.org>  Sun, 26 Sep 2010 11:18:22 +0200

clamav (0.96.3+dfsg-1ubuntu4) maverick; urgency=low

  * debian/usr.sbin.clamd: updated to give read access to
    @{PROC}/[0-9]*/status and @{PROC}/filesystems. The latter is covered by
    the base abstraction, but we add it here to ease backporting.
    - LP: #645956

 -- Jamie Strandboge <jamie@ubuntu.com>  Thu, 23 Sep 2010 07:58:35 -0500

clamav (0.96.3+dfsg-1ubuntu3) maverick; urgency=low

  * Change from upstream to fix clamd/clamd.c to only check RLIMIT_DATA on
    FreeBSD since the check is not relevant to Linux (See clamav bug #1941 for
    details)

 -- Scott Kitterman <scott@kitterman.com>  Wed, 22 Sep 2010 20:09:07 -0400

clamav (0.96.3+dfsg-1ubuntu2) maverick; urgency=low

  * debian/usr.bin.freshclam: updated to give read access to
    @{PROC}/[0-9]*/status and @{PROC}/filesystems. The latter is covered by
    the base abstraction, but we add it here to ease backporting.
    - LP: #645061

 -- Jamie Strandboge <jamie@ubuntu.com>  Wed, 22 Sep 2010 12:28:39 -0500

clamav (0.96.3+dfsg-1ubuntu1) maverick; urgency=low

    * Merge new upstream release from Debian Unstable. FFe (LP: #644707).
      Also fixes (LP: #643682).  Remaining Ubuntu changes:
      - Drop initial signature definitions from clamav-base
      - Drop build-dep on electric-fence (in Universe)
      - Add apparmor profiles for clamd and freshclam along with maintainer
        script changes
    * Fix NotifyClamd configurate in debian/clamav-freshclam.postinst
      - Cherry pick from Debian pkg-clamav Git, Thanks to Stephen Gran

 -- Scott Kitterman <scott@kitterman.com>  Mon, 20 Sep 2010 15:41:38 -0400

clamav (0.96.3+dfsg-1) unstable; urgency=high

  [ Stephen Gran ]
  * Fixed NotifyClamd config options handling.
  
  [ Alberto WU ]
  * New upstream release
    - urgency=high as this addresses CVE-2010-0405
    - Reset MaxFileSize to default value if set to 0 (closes: #585479)
    - New config option ExtendedDetectionInfo (clamd.conf)
  
  [ Michael Tautschnig ]
  * Set data segment limit in tests to 524288 to make kfreebsd-i386 systems
    happy (closes: #591245).
  * Bumped Standards-Version to 3.9.1, no changes needed.
  * Preserve order of database mirrors (closes: #592322).
  * Added Vcs-Git and Vcs-Browser control fields.
  * Debconf translation updates
    - Italian (closes: #597307)
  * We'll stay with 1.0 Debian source format for now, added proper
    debian/source/format

 -- Michael Tautschnig <mt@debian.org>  Mon, 20 Sep 2010 20:04:33 +0200

clamav (0.96.1+dfsg-3ubuntu5.1) maverick; urgency=low

  * SECURITY UPDATE: fix integer overflow in BZ2_decompress()
    - libclamav/nsis/bzlib.c: return error if N is larger than 2*1024^2 which
      keeps us from overflowing but leaves enough room for the 900k maximum
      value of the RUNA/RUNB encoding
    - patch based on upstream bzip2
    - LP: #625849
    - CVE-2010-0405

 -- Jamie Strandboge <jamie@ubuntu.com>  Mon, 13 Sep 2010 14:44:01 -0500

clamav (0.96.1+dfsg-3ubuntu5) maverick; urgency=low

  * Revert bump in debhelper version requirement since we aren't using
    dh_apparmor

 -- Scott Kitterman <scott@kitterman.com>  Sun, 08 Aug 2010 13:30:23 -0400

clamav (0.96.1+dfsg-3ubuntu4) maverick; urgency=low

  * debian/rules, debian/clamav-daemon.post{inst.in,rm},
    debian/clamav-freshclam.post{inst.in,rm}: don't use dh_apparmor but
    instead put it would dh_apparmor would do, since dh_apparmor isn't
    available in backports. Thanks to Scott Kitterman for pointint this
    out.

 -- Jamie Strandboge <jamie@ubuntu.com>  Fri, 06 Aug 2010 22:04:36 -0500

clamav (0.96.1+dfsg-3ubuntu3) maverick; urgency=low

  * debian/rules: move dh_apparmor before dh_installinit
  * debian/clamav-freshclam.postinst: move #DEBHELPER# to top, so it is
    added before starting freshclam

 -- Jamie Strandboge <jamie@ubuntu.com>  Fri, 06 Aug 2010 17:32:08 -0500

clamav (0.96.1+dfsg-3ubuntu2) maverick; urgency=low

  * update to use dh_apparmor:
    - debian/rules, debian/clamav-daemon.post{inst.in,rm},
      debian/clamav-freshclam.post{inst.in,rm}: updated to use dh_apparmor
    - debian/control: Build-Depends on debhelper >= 7.4.20ubuntu5
  * debian/usr.sbin.clamd and debian/usr.bin.freshclam: updated to use local
    include

 -- Jamie Strandboge <jamie@ubuntu.com>  Fri, 06 Aug 2010 15:22:10 -0500

clamav (0.96.1+dfsg-3ubuntu1) maverick; urgency=low

  * Merge from Debian Unstable.  Remaining Ubuntu changes:
    - Drop initial signature definitions from clamav-base
    - Drop build-dep on electric-fence (in Universe)
    - Add apparmor profiles for clamd and freshclam along with maintainer
      script changes
    - Detect incorrect value for clamav-freshclam/NotifyClamd and set it to
      true
    - Correct for differences between the Ubuntu and Debian orig.tar.gz in
      diff.gz (added win32 makefile targets, contrib/split-tarball.sh, and
      docs/man/clambc.1)

 -- Scott Kitterman <scott@kitterman.com>  Tue, 27 Jul 2010 21:06:05 -0400

clamav (0.96.1+dfsg-3) unstable; urgency=low

  [ Michael Tautschnig ]
  * Increase memory limit for tests (closes: #590271).

 -- Michael Tautschnig <mt@debian.org>  Sun, 25 Jul 2010 22:47:46 +0200

clamav (0.96.1+dfsg-2) unstable; urgency=low

  [ Michael Tautschnig ]
  * Really ship clamav-milter.conf man page (closes: #585160)
  * Really fix PowerPC issue (closes: #587738, #579960)
  * Debconf translation updates
    - German (closes: #585482)
    - Russian (closes: #585691)
    - French (closes: #585894)
  * Copied BSD license text from concerned files into debian/copyright, as
    suggested by lintian.
  * Bumped Standards-Version to 3.9.0, no changes needed.

 -- Michael Tautschnig <mt@debian.org>  Sun, 25 Jul 2010 08:50:01 +0200

clamav (0.96.1+dfsg-1) unstable; urgency=medium

  [ Stephen Gran ]
  * Only manipulate /etc/aliases on fresh install (closes: #580020)
  * Handle RejectMsg with special care when upgrading (closes: #581410)
  * 0 is a valid value for StreamMaxLength, handle it properly (closes: #581408)
  
  [ Alberto WU ]
  * New upstream release
    - Includes PowerPC workaround (closes: #579960)
    - Ships clamav-milter.conf man page (closes: #565208)
    - Fixes CVE-2010-1639, CVE-2010-1640 (closes: #584183)
  
  [ Scott Kitterman ]
  * Add support for new TestDatabases option in
    debian/clamav-freshclam.postinst.in (match upstream default of yes)
  * Add VirusAction option to debian/clamav-milter.postinst.in

  [ Michael Tautschnig ]
  * Debconf translation updates
    - French (closes: #579827)
    - Swedish (closes: #580143)
    - Spanish (closes: #581735)

 -- Michael Tautschnig <mt@debian.org>  Thu, 03 Jun 2010 13:20:50 +0200

clamav (0.96.1+dfsg-0ubuntu2) maverick; urgency=low

  * Enhance README.Debian discssion of apparmor profiles to include Freshclam
    based on the discussion in lp #585026

 -- Scott Kitterman <scott@kitterman.com>  Wed, 26 May 2010 16:45:50 -0400

clamav (0.96.1+dfsg-0ubuntu1) maverick; urgency=low

  * New upstream release
    - Remove non-free libclamunrar directory and repack +dfsg tarball
    - Remove win32/ for size reasons since the tarball is repacked already and
      adjust Makefile.in/am
    - Add support for new TestDatabases option in debian/clamav-
      freshclam.postinst.in (match upstream default of yes)
    - Add VirusAction option to debian/clamav-milter.postinst.in
    - Drop powerpc clamd fix, incorporated upstream
    - Drop diff in docs/man/clamd.conf.5.in, incorporated upstream
    - Drop addition of COPYING.llvm, incorporated upstream
  * Remaining differences from Debian:
    - Drop initial signature definitions from clamav-base
    - Drop build-dep on electric-fence (in Universe)
    - Add apparmor profiles for clamd and freshclam along with maintainer
      script changes
    - Detect incorrect value for clamav-freshclam/NotifyClamd and set it to true

 -- Scott Kitterman <scott@kitterman.com>  Thu, 20 May 2010 22:09:21 -0400

clamav (0.96+dfsg-4) unstable; urgency=low

  [ Stephen Gran ]
  * Fixed typo in clamav-milter's postinst
  
  [ Michael Tautschnig ]
  * Fixed typo in clamav-freshclam's postinst (closes: #579271)
  * Debconf translation updates
    - Portuguese (closes: #579068)

 -- Stephen Gran <sgran@debian.org>  Mon, 26 Apr 2010 21:41:18 +0200

clamav (0.96+dfsg-2ubuntu1.2) lucid-proposed; urgency=low

  * Add commit c8f3cdbf31a7a51c643fd4e784773a91d872261a from upstream,
    inadvertently omitted from the last upload
    - Fix the PowerPC workaround to not crash when not using the JIT

 -- Scott Kitterman <scott@kitterman.com>  Wed, 05 May 2010 11:00:16 -0400

clamav (0.96+dfsg-2ubuntu1.1) lucid-proposed; urgency=low
 
  [ Stephen Gran ]
  * Fixed typo in clamav-milter's postinst
  * Protect against bogus values in clamav-freshclam.config
  
  [ Michael Tautschnig ]
  * Fixed typo in clamav-freshclam's postinst (closes: #579271)
 
  [ Scott Kitterman ]
  * Cherry pick packaging fixes for Lucid (LP: #571543)
  * Detect incorrect value for clamav-freshclam/NotifyClamd and set it to true
  * Cherry pick powerpc clamd failure to start from upstream (LP: #574906)

 -- Scott Kitterman <scott@kitterman.com>  Tue, 04 May 2010 00:14:54 -0400

clamav (0.96+dfsg-2ubuntu1) lucid; urgency=low

  * Merge from Debian Unstable.  Remaining Ubuntu changes:
    - Drop initial signature definitions from clamav-base
    - Drop build-dep on electric-fence (in Universe)
    - Add apparmor profiles for clamd and freshclam along with maintainer
      script changes

 -- Scott Kitterman <scott@kitterman.com>  Thu, 22 Apr 2010 07:23:14 -0400

clamav (0.96+dfsg-2) unstable; urgency=low

  [ Scott Kitterman ]
  * In debian/clamav-base.postinst.in and debian/clamav-freshclam.postinst.in,
    adjust debconf processing for new options to produce valid configuration
    files (closes: #577499, #577952)

  [ Stephen Gran ]
  * Note that this series (closes: #577462)
  * Update ScanMail template and make freshclam LogTime default to true to
    bring it into alignment with others (closes: #521661, #521657)
    Other questions were deemed outside of scope of debconf for now.
  * Added debconf handling of new config options (closes: #577611, #577920)
  * Update debian/copyright (thanks Török Edwin <edwintorok@gmail.com>)
    (closes: #578306)
  
  [ Michael Tautschnig ]
  * Create and maintain freshclam's logrotate file (closes: #577041)
  * Set milter's LogFile debconf option to a non-blank value; LogFile was
    implicitly enabled by default anyway through postinst logic; make LogTime
    default to sync with clamav-daemon (closes: #534748)
  * Copy files from /usr/share/doc/clamav-base/examples/ only if this dir
    exists (closes: #550641)
  * Increase virtual memory ulimit for unit tests to 600000 to make unit tests
    work on kfreebsd-amd64 as well (closes: #578451)
  * Changed debconf template for freshclam/interface question to make clear
    that multiple interfaces are ok (closes: #545969)

 -- Stephen Gran <sgran@debian.org>  Tue, 20 Apr 2010 08:22:36 +0200

clamav (0.96+dfsg-1ubuntu2) lucid; urgency=low

  [ Scott Kitterman ]
  * Cherry pick packaging fixes from Debian pkg-clamav git (LP: #561751)

  [ Stephen Gran ]
  * Note that this series (closes: #577462)
  * Added debconf handling of new config options (closes: #577611)
  * Remove code from clamav-milter.postrm that cleans up install directories
    - No longer needed as other packages do that now

  [ Michael Tautschnig ]
  * Create and maintain logrotate file (closes: #577041)
  * Set milter's LogFile debconf option to a non-blank value; LogFile was
    implicitly enabled by default anyway through postinst logic; make LogTime
    default to sync with clamav-daemon (closes: #534748)
  * Copy files from /usr/share/doc/clamav-base/examples/ only if this dir
    exists (closes: #550641)

 -- Scott Kitterman <scott@kitterman.com>  Tue, 13 Apr 2010 22:09:37 -0400

clamav (0.96+dfsg-1ubuntu1) lucid; urgency=low

  * Merge from Debian Unstable.  Remaining Ubuntu changes:
    - Drop initial signature definitions from clamav-base
    - Drop build-dep on electric-fence (in Universe)
    - Add apparmor profiles for clamd and freshclam along with maintainer
      script changes
  * Adjust debconf processing for new options to the produce valid
    configuration files

 -- Scott Kitterman <scott@kitterman.com>  Sun, 11 Apr 2010 19:58:58 -0400

clamav (0.96+dfsg-1) unstable; urgency=low

  [ Scott Kitterman ]
  * Bump libclamav SO version to 6.1.0 in libclamav6.install and Update SO
    version for lintian override for libclamav6
  * Add a check in debian/clamav-daemon.init.in to see if signatures are
    present before starting and exit with a useful log message if not
  * Remove deprecated MailFollowURLs option from default clamd.conf in
    clamav-base.postinst.in
  * Additional debian/copyright updates for OpenBSD regex in llvm
  * Update clamav-milter.logcheck.ignore.server (closes: #541008)
    - Thanks to Martin Krafft for the patch
  * Correct options in clamav-milter.init.in (closes: #576955)
    - Thanks to Marco d'Itri for the patch 

  [ Alberto WU ]
  * New upstream release (closes: #576908)
  * Update debian/clamav-base.templates and clamav-base.postinst.in for new
    options:
    - OfficialDatabaseOnly, LocalSocketGroup, LocalSocketMode, CrossFilesystems,
      ClamukoScannerCount, and BytecodeSecurity
  * Update debian/clamav-freshclam.postinst.in for new options:
    - DetectionStatsHostID and Bytecode
  * Update debian/clamav-milter.templates and clamav-milter.postinst.in for new
    options:
    - MilterSocketGroup, MilterSocketMode, and ReportHostname
  * Update debian/rules to provide appropriate CXXFLAGS because clamav now
    includes C++ code
  * Update debian/clamav-testfiles.install to provide all test files
  * Remove the new bytcode.cvd file along with the other signature files when
    clamav-base or clamav-freshclam are purged
  * Drop libclamav.a from libclamav-dev.install (not built by upstream)
  * Add new Bytecode Testing Tool, usr/bin/clambc, to clamav.install
  * Add build-depends on python for llvm
  * Drop build-depends on libwrap0-dev (no longer needed)
  * Update debian/copyright for the embedded copy of llvm (using the system
    llvm is not currently feasible)

  [ Stephen Gran ]
  * Prep for release

 -- Stephen Gran <sgran@debian.org>  Sun, 11 Apr 2010 22:29:10 +0100

clamav (0.96~rc2+dfsg-0ubuntu3) lucid; urgency=high

  * SECURITY UPDATE: (LP: #553266)
  * References clamav bugs #1771 and #1826
  * libclamav/mspack.c: fix Quantum decompressor (bb#1771)
    - clamav git 224fee54dd6cd8933d7007331ec2bfca0398d4b4
  * libclamav/mspack.c: improve unpacking of malformed cabinets (bb#1826)
    - clamav git 31b77b3fb589ab07e7b4d84f8b3825178864ee51

 -- Scott Kitterman <scott@kitterman.com>  Thu, 01 Apr 2010 11:09:57 -0400

clamav (0.96~rc2+dfsg-0ubuntu2) lucid; urgency=low

  * Add a check in debian/clamav-daemon.init.in to see if signatures are
    present before starting and exit with a useful log message if not
    - Much more likely now that we don't ship signatures in clamav-base
  * Removed the new bytcode.cvd file along with the other signature files when
    clamav-base or clamav-freshclam are removed

 -- Scott Kitterman <scott@kitterman.com>  Sat, 27 Mar 2010 18:42:12 -0400

clamav (0.96~rc2+dfsg-0ubuntu1) lucid; urgency=low

  * New upstream RC
    - Add new option for BytecodeTimeout with default to 6000 to debian/
      clamav-base.postininst.in
    - New capability for freshclam to update third party signatures
    - Man page additions and corrections (LP: #538464, #538465)
    - Other bug fixes
  * Increase bytecode_timeout to 100 in unit_tests/check_bytecode.c as
    recommended by upstream to fix test failure - see clamav bug #1899 for
    details

 -- Scott Kitterman <scott@kitterman.com>  Thu, 25 Mar 2010 15:35:28 -0400

clamav (0.96~rc1+dfsg-0ubuntu2) lucid; urgency=low

  * Drop initial signature definitions from clamav-base (LP: #460316)
    - Signatures will have to be obtained via freshclam or clamav-data
  * Remove deprecated MailFollowURLs option from default clamd.conf in
    clamav-base.postinst.in (LP: #538417)

 -- Scott Kitterman <scott@kitterman.com>  Sat, 13 Mar 2010 13:35:18 -0500

clamav (0.96~rc1+dfsg-0ubuntu1) lucid; urgency=low

  * New upstream RC - FFE (LP: #537636):
    - Add OfficialDatabaseOnly option to clamav-base.postinst.in
    - Add LocalSocketGroup option to clamav-base.postinst.in
    - Add LocalSocketMode option to clamav-base.postinst.in
    - Add CrossFilesystems option to clamav-base.postinst.in
    - Add ClamukoScannerCount option to clamav-base.postinst.in
    - Add BytecodeSecurity opiton to clamav-base.postinst.in
    - Add DetectionStatsHostID option to clamav-freshclam.postinst.in
    - Add Bytecode option to clamav-freshclam.postinst.in
    - Add MilterSocketGroup option to clamav-milter.postinst.in
    - Add MilterSocketMode option to clamav-milter.postinst.in
    - Add ReportHostname option to clamav-milter.postinst.in
    - Bump libclamav SO version to 6.1.0 in libclamav6.install
    - Drop clamdmon from clamav.examples (no longer shipped by upstream)
    - Drop libclamav.a from libclamav-dev.install (not built by upstream)
    - Update SO version for lintian override for libclamav6
    - Add new Bytecode Testing Tool, usr/bin/clambc, to clamav.install
    - Add build-depends on python and python-setuptools for new test suite
    - Update debian/copyright for the embedded copy of llvm (using the system
      llvm is not currently feasible)

 -- Scott Kitterman <scott@kitterman.com>  Fri, 12 Mar 2010 11:30:04 -0500

clamav (0.95.3+dfsg-1ubuntu1) lucid; urgency=low

  * Merge from debian unstable, remaining changes:
    - Drop build-dep on electric-fence (in Universe)
    - Build-dep on libltdl3-dev instead of libltdl-dev for updating earlier
      releases more easily
    - Add apparmor profiles for clamd and freshclam along with maintainer
      script changes

 -- Scott Kitterman <scott@kitterman.com>  Mon, 02 Nov 2009 23:27:19 -0500

clamav (0.95.3+dfsg-1) unstable; urgency=low

  [ Michael Tautschnig ]
  * New upstream version
  * Should fix clamd segfault on startup (closes: #537629)
  * Updated info in clamd.conf man page (closes: #534443)
  * Proper socket ownership setup, no chgrp in make_dir (closes: #553333)
  
 -- Michael Tautschnig <mt@debian.org>  Mon, 02 Nov 2009 10:24:35 +0100

clamav (0.95.2+dfsg-5) unstable; urgency=low

  [ Michael Meskes ]
  * Debconf translation updates
    - Czech (closes: #535672)
    - Italian (closes: #537471) 
    - Dutch (closes: #545061)
    - German (closes: #545753)
    - Vietnamese (closes: #548050)
  * Fixed LSB header information. (Closes: #546450) - thanks to Petter
    Reinholdtsen <pere@hungry.com>
  * Bumped Standards-Version to 3.8.3, no changes needed.
  
  [ Stephen Gran ]
  * Remove clamav-milter logrotate file on purge (closes: #536669)
  * Always use clamav-milter.ctl as local socket (closes: #543309)
  
  [ Michael Tautschnig ]
  * Remove all remaining files during purge

 -- Michael Meskes <meskes@debian.org>  Sat, 31 Oct 2009 17:50:46 +0100

clamav (0.95.2+dfsg-4ubuntu4) karmic; urgency=low

  [ Scott Kitterman ]
  * Apparmor profile fixes (reviewed by Ubuntu Security):
    - Allow clamav-daemon access to the home directory of the user running it
      and update README.Debian to explain the need to adjust the apparmor
      profile for it to scan elsewhere (LP: #450250)
    - Add capability dac_override to clamav-daemon profile to allow
      AllowSupplementaryGroups to work (LP: #433764)
  * Cherry pick packaging bug fixes from pkg-clamav git

  [ Stephen Gran ]
  * Make all references to the milter socket reference the same path
    - b71e1a26bafb0df532df2673fcd1cd53bc6952bd
  * Read default file once (LP: #430421)
    - 86b421dac00e49abb8e5907b9e952e33e83b7aec

  [ Michael Meskes ]
  * Fixed LSB header information. (Closes: #546450) - thanks to Petter
    Reinholdtsen <pere@hungry.com>
    - 3f59d827d1e54ce1efcb7e050c57866ccdfaedae

  [ Michael Tautschnig ]
  * Remove all remaining files during purge
    - 4132426753b674dd9c622f1c0501703ed987a239

 -- Scott Kitterman <scott@kitterman.com>  Sat, 24 Oct 2009 12:34:00 -0400

clamav (0.95.2+dfsg-4ubuntu3) karmic; urgency=low

  * Fix clamd apparmor profile to work with havp (LP: #423669)
    - Thanks to Imre Gergely for the fix

 -- Scott Kitterman <scott@kitterman.com>  Thu, 03 Sep 2009 14:16:19 -0400

clamav (0.95.2+dfsg-4ubuntu2) karmic; urgency=low

  * Add the milter logrotate file to the list of purged files
    - Cherry picked from pkg-clamav git (thanks to Stephen Gran)
      0aebeb19f8169da097d21b021dd67ca06ffe3ca6

 -- Scott Kitterman <scott@kitterman.com>  Mon, 20 Jul 2009 12:20:11 -0400

clamav (0.95.2+dfsg-4ubuntu1) karmic; urgency=low

  [ Scott Kitterman ]
  * Merge from debian unstable, remaining changes:
    - Drop build-dep on electric-fence (in Universe)
    - Build-dep on libltdl3-dev instead of libltdl-dev for updating earlier
      releases more easily
    - Add apparmor profiles for clamd and freshclam along with maintainer
      script changes

  [ Jamie Strandboge ]
  * update clamav-freshclam and clamav-daemon postinst to reload the
    individual AppArmor profiles instead of reloading all of AppArmor
    - LP: #397988

 -- Scott Kitterman <scott@kitterman.com>  Mon, 13 Jul 2009 08:42:39 -0400

clamav (0.95.2+dfsg-4) unstable; urgency=low

  * Fix the changelog

 -- Stephen Gran <sgran@debian.org>  Sun, 12 Jul 2009 11:02:12 +0100

clamav (0.95.2+dfsg-3) unstable; urgency=low

  [ Michael Meskes ]
  * Debconf translation updates
    - Finnish (closes: #534339)

  [ Stephen Gran ]
  * Lots more milter maintainer script cleanups

 -- Stephen Gran <sgran@debian.org>  Sat, 11 Jul 2009 16:23:35 +0100

clamav (0.95.2+dfsg-2ubuntu1) karmic; urgency=low

  * Merge from debian unstable, remaining changes:
    - Drop build-dep on electric-fence (in Universe)
    - Build-dep on libltdl3-dev instead of libltdl-dev for updating earlier
      releases more easily
    - Add apparmor profiles for clamd and freshclam along with maintainer
      script changes

 -- Scott Kitterman <scott@kitterman.com>  Mon, 22 Jun 2009 20:57:39 -0400

clamav (0.95.2+dfsg-2) unstable; urgency=low

  * Don't abort dpkg on failed start (closes: #533397)
  * Get rid of spurious patch downgrading version (closes: #533638)
  * [Debconf translation updates]
    - French (closes: #533667)
    - Portuguese (closes: #533779)
    - Russian (closes: #533548)
    - Swedish (closes: #533568)

 -- Stephen Gran <sgran@debian.org>  Sat, 20 Jun 2009 14:51:35 +0100

clamav (0.95.2+dfsg-1ubuntu2) karmic; urgency=low

  * Correct upstream version change in configure/configure.in invadertently
    introduced in previous upload (LP: #389587)

 -- Scott Kitterman <scott@kitterman.com>  Fri, 19 Jun 2009 16:10:50 -0400

clamav (0.95.2+dfsg-1ubuntu1) karmic; urgency=low

  * Merge from debian unstable, remaining changes (LP: #388111):
    - Drop build-dep on electric-fence (in Universe)
    - Add apparmor profiles for clamd and freshclam along with maintainer
      script changes

 -- Scott Kitterman <scott@kitterman.com>  Thu, 18 Jun 2009 23:43:01 -0400

clamav (0.95.2+dfsg-1) unstable; urgency=low

  * New upstream version
  * Should fix crash on unofficial sigs (closes: #525483)
  * Get rid of ridiculous home rolled suid (closes: #522106)
  * Freshclam gets 0400 or 0444 config file (closes: #524356)
  * Debconf templates and debian/control reviewed by the debian-l10n-
    english team as part of the Smith review project. Closes: #523573
  * [Debconf translation updates]
    - Swedish. Closes: #525044
    - Japanese. Closes: #525084
    - French. Closes: #526024
    - Portuguese. Closes: #526644
    - Russian. Closes: #526727
    - German. Closes: #526730
    - Dutch. Closes: #526745
    - Galician. Closes: #527320
  * Define status_of_proc in the event that it's not in lsb/init-functions
    (closes: #527903)
  * Stop referencing /etc/default/clamav-milter and drop command line 
    arguments in milter init script (closes: #526123)

 -- Stephen Gran <sgran@debian.org>  Fri, 12 Jun 2009 21:42:59 +0100

clamav (0.95.1+dfsg-3) unstable; urgency=low
  
  [ Michael Tautschnig ]
  * Unignored make check results on ia64, sparc (alpha still broken): tell
    electric-fence that the alignment is at least 8 bytes (thanks Aurelien
    Jarno).

  [ Stephen Gran ]
  * Fix wrong variable useage in milter init script

  [ Michael Meskes ]
  * Applied patch assembled by Christian Perrier <bubulle@debian.org>:
    - Debconf templates and debian/control reviewed by the debian-l10n-
      english team as part of the Smith review project. Closes: #523573
    - [Debconf translation updates]
      - Swedish. Closes: #525044
      - Japanese. Closes: #525084
      - French. Closes: #526024
      - Portuguese. Closes: #526644
      - Russian. Closes: #526727
      - German. Closes: #526730
      - Dutch. Closes: #526745
      - Galician. Closes: #527320
      - Basque. Closes: #530854
  * Made pid files word readable. There doesn't seem to be any sense in not
    doing this given that the information is available for everyone anyway.
    Closes: #527901

 -- Michael Meskes <meskes@debian.org>  Thu, 28 May 2009 14:10:22 +0200

clamav (0.95.1+dfsg-2ubuntu1) karmic; urgency=low

  * Merge from debian unstable, remaining changes:
    - Drop build-dep on electric-fence (in Universe) and run make test on all
      archs since arch specific test failures with electric-fence are not a
      problem
    - Add apparmor profiles for clamd and freshclam along with maintainer
      script changes
    - Don't pass $SOCKET in the clamav-milter init as the new milter does not
      use it

 -- Scott Kitterman <scott@kitterman.com>  Tue, 28 Apr 2009 20:20:17 -0400

clamav (0.95.1+dfsg-2) unstable; urgency=low

  [ Michael Tautschnig ]
  * Fixed LogFile handling in clamav-milter.postinst (logrotation was broken) 
  
  [ Stephen Gran ]
  * More work on clamav-milter's init script

 -- Stephen Gran <sgran@debian.org>  Mon, 20 Apr 2009 08:17:29 +0200

clamav (0.95.1+dfsg-1ubuntu1.1) jaunty-proposed; urgency=low

  * Fixed clamd apparmor profile based on pre-release testing
    - added permissions for qpsmtpd, p3scan spools
  * clamav-milter postinst/logrotate fix from pkg-clamav git repo (LP: #363804) 
  * clamav-milter init script fix (LP: #363796)

 -- Imre Gergely <gimre@narancs.net>  Mon, 20 Apr 2009 17:34:28 +0300

clamav (0.95.1+dfsg-1ubuntu1) jaunty; urgency=low

  [ Scott Kitterman ]
  * Merge from debian unstable, remaining changes (LP: #361762):
    - Drop build-dep on electric-fence (in Universe) and run make test on all
      archs since arch specific test failures with electric-fence are not a
      problem
    - Add apparmor profiles for clamd and freshclam along with maintainer
      script changes
  * Update suggested version of apparmor to 2.3+1289 due to use of deny in the
    freshclam apparmor profile
  * Cherrypick addition clamav-milter init fixes from pkg-clamav git repo

  [ Imre Gergely ]
  * fix freshclam apparmor profile for clamtk (LP: #359301)

 -- Scott Kitterman <scott@kitterman.com>  Fri, 17 Apr 2009 14:51:37 -0400

clamav (0.95.1+dfsg-1) unstable; urgency=low

  [ Michael Tautschnig ]
  * New upstream version, fixes:
    - clamav-milter: Add option to skip scanning of authenticated smtp users
    (closes: #519505)
  * Really ignore failing test suite on alpha, ia64, sparc.
  * Build-Depends libltdl3-dev updated to new libltdl-dev.
  * Translation update:
    - sv (thanks Martin Bagge <brother@bsnet.se>)
  * Don't suggest unrar, lha anymore as external unpackers aren't supported
    anyway since 0.94.

  [ Stephen Gran ]
  * Readd special handling for postfix (closes: #523119)
  * clamav-daemon: ArchiveLimitMemoryUsage is deprecated (closes: #522910)
  * Allow user to select db.ipv6.clamav.net (closes: #513023)
  * clamav-docs: unneeded dependency on sharutils (closes: #523878)
  * Make libclamav suggest libclamunrar

 -- Stephen Gran <sgran@debian.org>  Tue, 14 Apr 2009 19:22:48 +0100

clamav (0.95.1+dfsg-0ubuntu1) jaunty; urgency=low

  [ Scott Kitterman ]
  * New upstream bugfix release 
    - libclamav/others.h: harden CLI_ISCONTAINED macro (bb#1552)
    - libclamav/phishcheck.c: fix possible crash in cli_url_canon() (bb#1553)
    - Signficant clamav-milter bug fixes
    - Other fixes throughout
  * Drop ArchiveLimitMemoryUsage option from clamav-base.postinst.in (option
    removed upstream)
  * Add CommandReadTimeout, SendBufTimeout, and MaxQueue to
    clamav-base.postinst.in
  * Add SkipAuthenticated to clamav-milter.postinst.in
  * Drop unrar and lha from clamav Suggests since external unpackers are not
    supported since 0.94

  [ Jamie Strandboge ]
  * fix freshclam apparmor profile for klamav (LP: #359301)

 -- Scott Kitterman <scott@kitterman.com>  Fri, 10 Apr 2009 21:57:17 -0400

clamav (0.95+dfsg-2ubuntu1) jaunty; urgency=low

  * Merge from debian unstable, remaining changes (LP: #354015):
    - Drop build-dep on electric-fence (in Universe) and run make test on all
      archs since arch specific test failures with electric-fence are not a
      problem
    - Add apparmor profiles for clamd and freshclam along with maintainer
      script changes
  * Update apparmor profile to allow access to usr-tmp for klamav
    (LP: #310737)
  * Update apparmor profile to not log samba related denails (LP: #346397)
  * Move apparmor from recommends to suggests - we don't want to cause it to
    be installed if it has been removed

 -- Scott Kitterman <scott@kitterman.com>  Thu, 02 Apr 2009 13:55:34 -0400

clamav (0.95+dfsg-2) unstable; urgency=low

  [ Michael Tautschnig ]
  * Improved debconf questions
  * Added Homepage: control field
  * Another watch file fix to rank upstreams rc lower than releases.
  * Even more /var/run-on-tmpfs fixes (closes: #521606).
  * Ignore failing test suite on alpha, ia64, sparc (bugs filed against
    glibc).

  [ Stephen Gran ]
  * Lots of option handling fixups for clamav-milter (closes: #521668).
  * Remove new .cld files on removal of freshclam
  * Eliminate unnecessary ucf version check
  * Try to preseed clamav-milter.conf with options from clamd.conf where
    possible
  * package new clamdtop utility (closes: #521658)

 -- Stephen Gran <sgran@debian.org>  Wed, 01 Apr 2009 23:41:27 +0100

clamav (0.95+dfsg-1) unstable; urgency=low

  [ Michael Tautschnig ]
  * New upstream version, fixes:
    - License incompatibility with libgmp (closes: #512776)
    - wrong claim about all interception message methods (closes: #438455)
    - clamdscan fails to connect to clamd (closes: #515798)
    - clamav-milter dies after email scanning (sparc64) (closes: #339590)
    - VERSION reports wrong database version (closes: #323803)
    - memory footprint skyrockets (closes: #420391)
    - Virus not detected in RAR-archive inside email (closes: #484642)
    - clamav-milter ignores whitelist file (closes: #520353)
    - clamav-milter won't start when both local and tcp socket are in use 
      (closes: #505852)
    - ERROR: Can't find any clamd server (closes: #435007)
    - clamd: random SIGABRT (closes: #512720)
  * Removed configure options that aren't supported anymore (--with-sendmail,
    --with-tcpwrappers, --with-dns)
  * Bumped Standards-Version to 3.8.1 (added mkdir calls to ensure
    /var/run/clamav exists)
  * Configure with --with-system-tommath to use Debian's libtommath-dev
    instead of the bundled one.
  * Updated *Depends (dropped essential packages and removed versions where
    etch already satisfies the dependencies).
  * SONAME bump: libclamav5 -> libclamav6
  * Build-Depend on libltdl3-dev to avoid using the bundled libltdl, but still
    get support for runtime loading (nonfree) unrar code if the user so
    decides.
  * Fixed watch file to deal with new versioning schema (+dfsg).
  * Run make check unless nocheck is in DEB_BUILD_OPTIONS
  * Changed Section of clamav-dbg to debug.
  * Override lintian error stating that libclamav6 statically links to zlib
    (lintian is right, libclamav6 does indeed duplicate parts of the zlib
    code, but there is not way around that).
  * Handle new option SafeBrowsing in freshclam.conf.
  * Create symlinks to AUTHORS, not AUTHORS.gz (closes: #520172).
  * clamav-milter got its own config file and logging options, handled via
    debconf, added logrotation (closes: #518628)

 -- Michael Tautschnig <mt@debian.org>  Wed, 25 Mar 2009 16:02:18 +0100

clamav (0.94.dfsg.2-1ubuntu3) jaunty; urgency=low

  * Update apparmor profile in debian/usr.bin/freshclam to allow freshclam to
    update virus signatures in user home directories (LP: #312695)

 -- Scott Kitterman <scott@kitterman.com>  Wed, 07 Jan 2009 08:03:57 -0500

clamav (0.94.dfsg.2-1ubuntu2) jaunty; urgency=low

  * Update apparmor profile in debian/usr.sbin.clamd to allow log file locking

 -- Scott Kitterman <scott@kitterman.com>  Mon, 01 Dec 2008 12:38:42 -0500

clamav (0.94.dfsg.2-1ubuntu1) jaunty; urgency=low

  * Merge from debian unstable, remaining changes:
    - debian/control: Recommends apparmor >= 2.1+1075-0ubuntu6 for
      clamav-daemon and clamav-freshclam
    - add debian/usr.bin.freshclam and debian/usr.sbin.clamd
    - debian/clamav-(daemon|freshclam).dirs: add etc/apparmor.d/force-complain
    - debian/clamav-(daemon|freshclam).install: install profiles
    - debian/clamav-(daemon|freshclam).preinst: create symlink for
      force-complain/ on pre-feisty upgrades, upgrades where apparmor-profiles
      profile is unchanged (ie non-enforcing) and upgrades where the profile
      doesn't exist.
    - debian/clamav-(daemon|freshclam).postrm: remove symlink in
      force-complain/ on purge.
    - debian/clamav-(daemon|freshclam).postinst.in: reload apparmor
    - update README.Debian with note on Apparmor
  * Enable upstream test suite in debian/rules
    - Not adding valgrind yet due to test failures

 -- Scott Kitterman <scott@kitterman.com>  Sun, 30 Nov 2008 23:45:29 -0500

clamav (0.94.dfsg.2-1) unstable; urgency=low

  [ Stephen Gran ]
  * New upstream version

  [ Michael Meskes ]
  * Removed unused debconf templates and unfuzzied all translations.
  
  [ Michael Tautschnig ]
  * Removed --unzip from clampipe script (closes: #506055)
  * Moved clamav-milter specific stuff from its specific README.Debian to
    clamav-global one.
  * Sync start of clamav-milter with clamav-daemon when clamav-daemon is being
    upgraded (closes: #309067)
  * The TemporaryDirectory option has been added long ago, no need for hacks
    via clamav-daemon.default anymore (closes: #253080)

 -- Michael Meskes <meskes@debian.org>  Sat, 29 Nov 2008 12:15:34 -0800

clamav (0.94.dfsg.1-1ubuntu2) jaunty; urgency=low

  * Restore clamav (0.94.dfsg.1~rc1-0ubuntu2) change inadvertently dropped
    during the merge

 -- Scott Kitterman <scott@kitterman.com>  Wed, 12 Nov 2008 15:42:36 -0500

clamav (0.94.dfsg.1-1ubuntu1) jaunty; urgency=low

  * Merge from Debian Unstable (LP: #296704).  Remaining Ubuntu changes:
    - debian/control: Recommends apparmor >= 2.1+1075-0ubuntu6 for
      clamav-daemon and clamav-freshclam
    - add debian/usr.bin.freshclam and debian/usr.sbin.clamd
    - debian/clamav-(daemon|freshclam).dirs: add etc/apparmor.d/force-complain
    - debian/clamav-(daemon|freshclam).install: install profiles
    - debian/clamav-(daemon|freshclam).preinst: create symlink for
      force-complain/ on pre-feisty upgrades, upgrades where apparmor-profiles
      profile is unchanged (ie non-enforcing) and upgrades where the profile
      doesn't exist.
    - debian/clamav-(daemon|freshclam).postrm: remove symlink in
      force-complain/ on purge.
    - debian/clamav-(daemon|freshclam).postinst.in: reload apparmor
    - update README.Debian with note on Apparmor
  * Update apparmor profile for clamd to work with TCP sockets (LP: #288942)

 -- Scott Kitterman <scott@kitterman.com>  Tue, 11 Nov 2008 22:24:38 -0500

clamav (0.94.dfsg.1-1) unstable; urgency=low

  [ Stephen Gran ]
  * New upstream version (closes: #505134, #502165, #501298)
  * Handle new option SubmitDetectionStats in freshclam.conf
  * Remove RAR from the description, since we really don't handle it anymore
  * Skip 'sleep until -e socket' logic if socket is of type inet (LP #296086)

  [ Michael Meskes ]
  * Added myself as uploader.
  * Changed watch file to account for dfsg extension.
  * Do not configure temporary directory in clamd.conf anymore unless it is
    already configured there.
  * Added Basque debconf translation (closes: #500007)

  [ Michael Tautschnig ]
  * Use lsb's status_of_proc function to determine the status of the process
    and return with according exit codes (closes: #486076)
  * Updated Dutch debconf translation (thanks Paul Gevers <paul@climbing.nl>)
    (closes: #501627)
  * Changed versioned dependency of clamav-daemon to clamav-base to equals
    (closes: #500416)
  * Handle new option DetectionStatsCountry in freshclam.conf
  * Don't trust the multilib guessing stuff, always use libdir=$prefix/lib
  * Removed nowadays unused lintian overrides
  * Create md5sums control file for clamav-dbg as well (thanks, lintian)
  
 -- Michael Tautschnig <mt@debian.org>  Wed, 12 Nov 2008 01:57:58 +0100

clamav (0.94.dfsg.1~rc1-0ubuntu2) intrepid; urgency=low

  * update clamd profile for use with exim (LP: #288110)

 -- Jamie Strandboge <jamie@ubuntu.com>  Thu, 23 Oct 2008 07:36:11 -0500

clamav (0.94.dfsg.1~rc1-0ubuntu1) intrepid; urgency=low

  * New upstream RC release (LP:#286176)
    - Odd version numbering is to get a higher version than 0.94.dfsg without
      an epoch and was coordinated with Debian
    - Packaging based on current Ubuntu (0.94.dfsg-1ubuntu2) and does not use
      unreleased packaging improvements in the Debian pkg-claamv Git repo to
      minimize risk for Intrepid
    - Handle new freshclam option SubmitDetectionStats (cherry picked from
      Debian pkg-clamav Git repo)

 -- Scott Kitterman <scott@kitterman.com>  Sun, 19 Oct 2008 20:38:42 -0400

clamav (0.94.dfsg-1ubuntu2) intrepid; urgency=low

  * Update apparmor profile based on test feedback (LP: #276865)
    -Thanks to Ante Karamatić for the change 

 -- Scott Kitterman <scott@kitterman.com>  Thu, 02 Oct 2008 16:23:17 -0400

clamav (0.94.dfsg-1ubuntu1) intrepid; urgency=low

  * Follow ApparmorProfileMigration and force apparmor complain mode on some
    upgrades (LP: #264817)
    - debian/control: Recommends apparmor >= 2.1+1075-0ubuntu6 for
      clamav-daemon and clamav-freshclam
    - add debian/usr.bin.freshclam and debian/usr.sbin.clamd
    - debian/clamav-(daemon|freshclam).dirs: add etc/apparmor.d/force-complain
    - debian/clamav-(daemon|freshclam).install: install profiles
    - debian/clamav-(daemon|freshclam).preinst: create symlink for
      force-complain/ on pre-feisty upgrades, upgrades where apparmor-profiles
      profile is unchanged (ie non-enforcing) and upgrades where the profile
      doesn't exist.
    - debian/clamav-(daemon|freshclam).postrm: remove symlink in
      force-complain/ on purge.
    - debian/clamav-(daemon|freshclam).postinst.in: reload apparmor
    - update README.Debian with note on Apparmor

 -- Jamie Strandboge <jamie@ubuntu.com>  Thu, 18 Sep 2008 22:06:59 -0400

clamav (0.94.dfsg-1) unstable; urgency=low

  * New upstream version (closes: #497662, #497773)
    - lots of new options for clamd.conf
    - fixes CVEs CVE-2008-3912, CVE-2008-3913, CVE-2008-3914, and
      CVE-2008-1389
  * No longer supports --unzip option, so typo is gone (closes: #496276)
  * Translations:
    - sv (thanks Martin Bagge <brother@bsnet.se>) (closes: #491760)

 -- Stephen Gran <sgran@debian.org>  Fri, 05 Sep 2008 17:25:34 +0100

clamav (0.93.3.dfsg-1) unstable; urgency=low

  * New upstream version (closes: #489890, #492838, #491720)
  * Fix AUTHORS symlink (closes: #490207)
  * Fix freshclam's logcheck regex (closes: #486385)

 -- Stephen Gran <sgran@debian.org>  Sun, 03 Aug 2008 20:20:40 +0100

clamav (0.93.1.dfsg-1.1) unstable; urgency=high

  * Non-maintainer upload by the Security Team.
  * This update addresses the following security issue:
    - CVE-2008-2713: A crafted petite file can trigger an out-of-bound
      read operation in petite.c resulting in a denial of sevice
      (Closes: #490925).

 -- Stephen Gran <sgran@debian.org>  Tue, 10 Jun 2008 20:43:32 +0100

clamav (0.93.1.dfsg-1) unstable; urgency=low

  * New upstream version
  * Move conflicts to freshclam

 -- Stephen Gran <sgran@debian.org>  Tue, 10 Jun 2008 20:43:32 +0100

clamav (0.93~dfsg-4) unstable; urgency=low

  * Dammit.  The -f flag is there for a reason (closes: #484262)

 -- Stephen Gran <sgran@debian.org>  Tue, 03 Jun 2008 14:35:29 +0100

clamav (0.93~dfsg-3) unstable; urgency=low

  * Make dash happy with use of return (closes: #484170)

 -- Stephen Gran <sgran@debian.org>  Mon, 02 Jun 2008 22:45:21 +0100

clamav (0.93~dfsg-2) unstable; urgency=low

  * Remove dpatch dependency - we keep the code in a patch system.
  * Wrap evaluations of [ $variable = true ] in calls to to_lower()
  * Add is_true function to catch the 7 bajillion variants of something being
    true (closes: #483874)
  * Clean up old incompatible database formats.  Users of 3rd party software
    that also loads those old databases are now out of luck. (closes: #481864)
  * Fix logcheck lines for clamav-daemon (closes: #477818)
  * New translation:
    - sv (thanks Martin Bagge <martin.bagge@bthstudent.se>)(closes: #483765)

 -- Stephen Gran <sgran@debian.org>  Sun, 01 Jun 2008 16:25:50 +0100

clamav (0.93~dfsg-1) unstable; urgency=low

  * New upstream release (closes: #476450, #477278)
    - Fixes failure to lock database directory 
      (closes: #467298, #471643, #426503)
  * Fix logrotation when supervised (closes: #469196)
  * Run adduser on every new install - this should work around the
    xen-create-image thing of adding users but not groups (closes: #458015)
  * Make clamav-milter be a little more self-documenting (closes: #477178)

 -- Stephen Gran <sgran@debian.org>  Mon, 28 Apr 2008 23:57:28 +0100

clamav (0.92.1~dfsg2-1.1) unstable; urgency=high

  * Non-maintainer upload by the Security Team.
  * This update addresses the following security issue:
    - CVE-2008-1833: heap-based buffer overflow allows remote
      attackers to execute arbitrary code via a crafted WWPack compressed
      PE binary (Closes: #476694).

 -- Nico Golde <nion@debian.org>  Sat, 19 Apr 2008 12:42:18 +0200

clamav (0.92.1~dfsg2-1) unstable; urgency=high

  * libclamav/pe.c: possible integer overflow in wwpack
  * [CVE-2008-1100]: libclamav/pe.c: possible integer overflow in upack
  * [CVE-2008-1387]: libclamav/spin.c: possible integer overflow
  * libclamav/unarj.c: DoS in unarj

 -- Stephen Gran <sgran@debian.org>  Tue, 15 Apr 2008 17:48:43 +0100

clamav (0.92.1~dfsg2-0.1) unstable; urgency=low

  * Non-maintainer upload.
  * Remove non-free unrar files and repack orig.tar.gz (Closes: #470073)

 -- Scott Kitterman <scott@kitterman.com>  Sat, 08 Mar 2008 19:29:19 -0500

clamav (0.92.1~dfsg-1) unstable; urgency=low

  * New upstream bugfix release
    - [2007-6595]: libclamav/others.c: symlink vulnerability
      cli_gentempfd now calls open with O_EXCL (closes: #458532)
    - [CVE-2008-0318]: libclamav/pe.c: possible integer overflow
    - libclamav/mew.c: possible heap corruption
  * Add a note to NEWS.Debian about unrar support being dropped
    (closes: #465203)
  * clamav-milter: off-by-one programming error in pingServer
    (closes: #458204)
  * Copyright now complete (thanks Scott Kitterman <scott@kitterman.com>)
    (closes: #456770)
  * Attempt to work around clamav-milter not bothering to check if another
    instance is running on startup (reported as LP bug 179169)

 -- Stephen Gran <sgran@debian.org>  Tue, 12 Feb 2008 02:25:20 +0000

clamav (0.92~dfsg-3) unstable; urgency=low

  * Copyright clarifications (closes: #456770) (thanks 
    Scott Kitterman <scott@kitterman.com>)

 -- Stephen Gran <sgran@debian.org>  Thu, 20 Dec 2007 15:28:12 +0000

clamav (0.92~dfsg-2) unstable; urgency=low

  * Drop obsolete option NodalCoreAcceleration (closes: #457051)

 -- Stephen Gran <sgran@debian.org>  Wed, 19 Dec 2007 11:45:28 +0000

clamav (0.92~dfsg-1) unstable; urgency=medium

  * New upstream version
    - urgency medium due to 3 CVEs:
      * [CVE-2007-6336]: libclamav/mspack.c: Off-by-1 error in LZX_READ_HUFFSYM
      * [CVE-2007-6337]: libclamav/nsis/bzlib_private.h: bzlib issue
      * [CVE-2007-6335]: libclamav/pe.c: MEW PE File Integer Overflow
    - would be urgency=high, except we have soname transition
      - new package libclamav3 thanks to that
    - Memory optimizations in trie building (closes: #420391)
    - Don't create circular lists when two version of the same database are
      loaded (closes: #454052)
    - sigtool prints name of file being processed (closes: #414246)
    - now displays message number during mbox scans with debug enabled
      (closes: #452543)
    - clamav-milter now accepts HUP to reopen logfile (closes: #414993)
  * Packaging changes:
  * Check that directories shipped in the .deb exist before chowning them.
    This is apparently an unreported problem for some Ubuntu users
  * Patches:
    - remove 25_wrong_shebang.dpatch (merged upstream)
    - add 25_skip_sendmail.cf.dpatch (closes: #312575)
  * Translations:
    - fr (closes: #454128)(thanks Christian Perrier <bubulle@debian.org>)
  * Handle new option LogTime for freshclam
  * Move clamav-docs to section 'doc'
  * Catch all cases where the init script is called from freshclam's postinst
    and make sure invoke-rc.d is used if available
  * Freshen patches

 -- Stephen Gran <sgran@debian.org>  Mon, 17 Dec 2007 16:58:40 +0000

clamav (0.91.2-4) unstable; urgency=low

  * i18n rework (closes: #444801)
  * New translations:
    - cs (closes: #446786)(thanks Miroslav Kure <kurem@upcase.inf.upol.cz>)
    - de (closes: #447489)(thanks Helge Kreutzmann <debian@helgefjell.de>)
    - es (closes: #445605)(thanks Javier Fernández-Sanguino Peña <jfs@computer.org>)
    - fi (closes: #447000)(thanks Esko Arajärvi <edu@iki.fi>)
    - gl (closes: #446473)(thanks Jacobo Tarrio <jtarrio@trasno.net>)
    - it (closes: #445348)(thanks Cristian Rigamonti <cri@linux.it>)
    - ja (closes: #446208)(thanks Kenshi Muto <kmuto@debian.org>)
    - pt (closes: #447291)(thanks Ricardo Silva <ardoric@gmail.com>)
    - pt_BR (closes: #446940)(thanks Felipe Augusto van de Wiel (faw)
      <faw@debian.org>)
    - ru (closes: #447356)(thanks Yuri Kozlov <kozlov.y@gmail.com>)
    - vi (closes: #446898)(thanks Clytie Siddall <clytie@riverland.net.au>)
  * Get rid of some unused debconf notes
  * Update NEWS.Debian retroactively to quiet lintian
  * Add Build-Dep on po-debconf and call debconf-updatepo in clean target
  * Better watch file (closes: #449622) (thanks Raphael Geissert
    <atomo64@gmail.com>)
  * Better integration between postfix and clamav-milter (closes: #446404)

 -- Stephen Gran <sgran@debian.org>  Sat, 01 Dec 2007 13:01:49 +0000

clamav (0.91.2-3) unstable; urgency=low

  * Remove spurious dependency on libcurl3-dev from libclamav-dev 
    (closes: #440771)

 -- Stephen Gran <sgran@debian.org>  Tue, 04 Sep 2007 12:29:13 +0100

clamav (0.91.2-2) unstable; urgency=low

  * Use the correct variable for $user (closes: #439253)
  * Guard against unset $DatabaseDirectory (closes: #439913)
  * Make it easier to use clamav-milter with postfix (closes: #434995)
  * Fix shebang paths in contrib directories (closes: #439352)
  * Quiet clamav-milter startup (closes: #438454)

 -- Stephen Gran <sgran@debian.org>  Fri, 31 Aug 2007 12:29:09 +0100

clamav (0.91.2-1) unstable; urgency=low

  * New upstream version
    - fix call to tolower() which led to a crash in libclamav
    - fix possible NULL dereference, e.g. when parsing email with RFC2397
      URI
    - fix floating point exception when using ScanOLE2
    - fix possible NULL dereference in rtf.c

 -- Stephen Gran <sgran@debian.org>  Tue, 21 Aug 2007 11:17:01 +0100

clamav (0.91.1-2) unstable; urgency=low

  * Move database files to -base package (closes: #434505)
  * Use right config option to determine freshclam's uid (closes: #436204)
  * Freshclam ignore.d.server update for cdiff downloads (closes: #435199)

 -- Stephen Gran <sgran@debian.org>  Sat, 11 Aug 2007 12:53:03 +0100

clamav (0.91.1-1) unstable; urgency=low

  * New upstream version
  * Patches:
    - drop 25_phishcheck-crash.dpatch (upstream)

 -- Stephen Gran <sgran@debian.org>  Mon, 16 Jul 2007 23:47:27 +0100

clamav (0.91-2) unstable; urgency=low

  * Pull 25_phishcheck-crash.dpatch from upstream svn to fix a possible crash
    in phishcheck.c
  * Handle new Phish* options (no longer experimental code)

 -- Stephen Gran <sgran@debian.org>  Sun, 15 Jul 2007 17:24:55 +0100

clamav (0.91-1) unstable; urgency=low

  * New upstream version (closes: #432857)
  * Fixes long database load time (closes: #423879, #427154, #428675, #432334)
  * [CVE-2007-3725] DoS in unrarvm.c
    - This should make this urgency=high, but I am nervous about some changes
      in clamav.h.  After discussion with the Release Wizard, I am not going
      to bump the soname unilaterally, but I am going to delay the migration
      to testing to catch any problems.
  * Patch rework:
    - freshen 02_milter_sendmail_version_patch
    - freshen 03_etc_files_patch
    - 20_clamscan-manpage-update.dpatch obsoleted
    - freshen 24_nullmailer_ftbfs.dpatch

 -- Stephen Gran <sgran@debian.org>  Sun, 15 Jul 2007 16:48:06 +0100

clamav (0.90.3-2) unstable; urgency=low

  * Fix newaliases test to not fail when newaliases isn't present
    (closes: #431990)
  * Quiet freshclam warnings when run from cron (closes: #427420)

 -- Stephen Gran <sgran@debian.org>  Sat, 07 Jul 2007 09:21:20 +0100

clamav (0.90.3-1) unstable; urgency=low

  * New upstream version
    - Fixes segfault in segfault handler (closes: #420593)
    - Fixes slow load times seen in earlier 09.x versions
      (closes: #425796, #425661)
  * Stop using killproc for reloading logs, at least until it stops removing
    pidfiles out from under us (closes: #424618)

 -- Stephen Gran <sgran@debian.org>  Thu, 31 May 2007 01:02:05 +0100

clamav (0.90.2-4) unstable; urgency=low

  * Make sure su gets a shell (closes: #424772)
  * Correct previous chown/chmod breakage (closes: #424758)

 -- Stephen Gran <sgran@debian.org>  Fri, 18 May 2007 11:34:29 +0100

clamav (0.90.2-3) unstable; urgency=low

  * freshclam.postinst: s/chown/chmod/.  Argg. (closes: #424128)

 -- Stephen Gran <sgran@debian.org>  Tue, 15 May 2007 20:00:44 +0100

clamav (0.90.2-2) unstable; urgency=low

  * clamav-milter pid recognition fixup (closes: #419983)
  * clamav-freshclam doesn't need to copy in full databases if .inc directory
    is present (closes: #420024)
  * The init scripts now su to $User before starting the daemons
    (closes: #413624)
  * Oh, fine.  Remove your /var/run on every reboot for no good reason
    (closes: #406576)
  * chown 0755 the .inc directories.  This is a hack to workaround a temporary
    bug that is now fixed upstream, and we can drop this soon (hopefully)
    (closes: #417985)
  * Update Build-Dependncies to also use libcurl-dev (closes: #423623)

 -- Stephen Gran <sgran@debian.org>  Mon, 14 May 2007 23:16:27 +0100

clamav (0.90.2-1) unstable; urgency=low

  * New upstream version
    - Fixes reconnect issue in non-block-connect (closes: #418935)
    - Fixes a segfault in pdf scanning (closes: #418849)
  * Update description to reflect new features in 0.9x (closes: #414884)
  * Translation:
    - Ru (thanks Yuriy Talakan <yt@drsk.ru>)(closes: #416342)
  * Logcheck rule update for freshclam 
    (thanks Jefferson Cowart <jeff@cowart.net>) (closes: #415073)

 -- Stephen Gran <sgran@debian.org>  Fri, 13 Apr 2007 11:44:17 +0100

clamav (0.90.1-2) unstable; urgency=low

  * Another NotifyClamd fix that somehow didn't make it into the last upload
    (closes: #414407)
  * Remove references to Woody backports.  No longer supported
    (closes: #412386)
  * Add more files to freshclam's purge list

 -- Stephen Gran <sgran@debian.org>  Mon, 12 Mar 2007 23:00:42 +0000

clamav (0.90.1-1) unstable; urgency=low

  * New upstream version.
    - many memory leaks fixed.
    - soname version increase now upstream
  * Patches:
    - freshen 02_milter_sendmail_version_patch
    - freshen 20_clamscan-manpage-update.dpatch
    - freshen 24_nullmailer_ftbfs.dpatch
    - remove 25_soname_bump.dpatch (merged upstream)
    - remove 26_isspace_fix_segv.dpatch (merged upstream)
  * Another NotifyClamd fix: guard against it being accidentally set to 'true'
    on upgrade (closes: #411095)
  * Document use of a TCP socket with clamav-milter in README.Debian
  * Remove obsolete --mbox switch from clampipe
  * add --enable-dns-fix to ./configure (closes: #411921)
  * Remove spurious Conflicts/Provides libclamav (this results in attempting
    to remove libclamav1, which is not what we want).
  * Remove Provides libclamav1-dev from the -dev package.
  * Better /etc/init.d/ stop handling (closes: #411373, #411448)

 -- Stephen Gran <sgran@debian.org>  Fri,  2 Mar 2007 03:18:31 +0000

clamav (0.90-1) unstable; urgency=medium

  * New upstream version (closes: #410966)
  * Patch rework:
    - freshen 02_milter_sendmail_version_patch
    - remove 05_freshclam_manpage.dpatch (obsoleted upstream)
    - freshen 19_freshclam-manpage-info.dpatch
    - freshen 20_clamscan-manpage-update.dpatch
    - freshen 24_nullmailer_ftbfs.dpatch
    - add 25_soname_bump
    - add 26_isspace_fix_segv.dpatch to address segv in entity normalization
     (taken from upstream CVS)
  * New freshclam option: ScriptedUpdates
  * Add manpage for clamconf
  * soname bump and library package rename due to dropped functions
  * Security issues addressed in this release:
    - [CVE-2007-0897] CAB File Denial of Service Vulnerability
    - [CVE-2007-0898] MIME Parsing Directory Traversal Vulnerability
    - [CVE-2007-0899] Possible heap overflow in libclamav/fsg.c

 -- Stephen Gran <sgran@debian.org>  Thu, 15 Feb 2007 01:28:37 +0000

clamav (0.90~rc3-1) unstable; urgency=low

  * New upstream version
    - New config options:
      MailMaxRecursion
      PhishingSignatures
  * Add clamconf to clamav-daemon package
  * New translations:
    - gl (closes: #407281)
  * patch rework:
    - Remove 10_base64.dpatch (merged upstream)
    - Remove 22_libtoolize.dpatch (merged upstream: w0000t)
    - Remove 26_implicit_functions.dpatch (merged upstream)
    - Remove 25_kfreebsd.dpatch (merged upstream)
    - Freshen 20_clamscan-manpage-update.dpatch
    - Freshen 24_nullmailer_ftbfs.dpatch

 -- Stephen Gran <sgran@debian.org>  Thu,  1 Feb 2007 02:10:55 +0000

clamav (0.90~rc2-2) experimental; urgency=low

  * CVE's unavailable at previous upload time fixed in -1:
    CVE-2006-6481
    CVE-2006-6406
  * NotifyClamd option handling was wrong for freshclam (closes: #403265)
  * Fix Foreground parsing bug in clamav-milter.init
  * Document postfix useage for clamav-milter, and include upstream INSTALL
    file which has more information (closes: #392224)
  * patches rework: libtoolizing is now a dpatch, to reduce patch size between
    releases in the future
  * New translation:
    - es.po (closes: #402668)

 -- Stephen Gran <sgran@debian.org>  Sun, 17 Dec 2006 01:35:38 +0000

clamav (0.90~rc2-1) experimental; urgency=low

  * New upstream version
    - Can now disable options one by one (closes: #316330)
    - Fixes recursion based DoS (closes: #401874)
  * Patches:
    - Freshen all
    - Delete obsoleted ones
    - 10_base64.dpatch added for MIME bypass (closes: #401873)
  * New config file format dealt with in postinst
  * Freshclam now takes a PidFile argument - we don't need s-s-d to handle it
  * debian/rules check to make sure all config options are handled

 -- Stephen Gran <sgran@debian.org>  Mon, 11 Dec 2006 13:44:54 +0000

clamav (0.88.6-1) unstable; urgency=low

  * New upstream version
    - incorporates freshclam non-block patch, thus dropping it from patches/

 -- Stephen Gran <sgran@debian.org>  Mon,  6 Nov 2006 11:19:38 +0000

clamav (0.88.5-3) unstable; urgency=low

  * Fix broken configure.in patch.  Never mattered on systems where sendmail
    wasn't installed, but would make the build system fail to pick up local
    versions of sendmail on custom arrangements

 -- Stephen Gran <sgran@debian.org>  Mon, 23 Oct 2006 23:18:59 +0100

clamav (0.88.5-2) unstable; urgency=high

  * Fix FTBFS with nullmailer (closes: #393672)
  * Urgency high because this was keeping security fixes out of testing
  * Noted here since they were unavailable at previous upload time:
    - IDEF1597 is CVE-2006-4182 (libclamav/rebuildpe.c)
    - IDEF1736 is CVE-2006-5295 (libclamav/chmunpack.c)

 -- Stephen Gran <sgran@debian.org>  Thu, 19 Oct 2006 12:30:07 +0100

clamav (0.88.5-1) unstable; urgency=medium

  * New upstream version
    - libclamav/rebuildpe.c: fix possible heap overflow [IDEF1597]
    - libclamav/chmunpack.c: fix possible crash [IDEF1736]
    - urgency medium for this reason

 -- Stephen Gran <sgran@debian.org>  Mon, 16 Oct 2006 01:40:57 +0100

clamav (0.88.4-4) unstable; urgency=low

  * Versioned build-dep on dpkg-dev so I can use ${binary:Version}
  * Actually remove Magnus this time
  * Add Recommends clamav-base to clamav (closes: #391038)
  * Fix parse problem is slurp_config() (closes: #384046)

 -- Stephen Gran <sgran@debian.org>  Sun,  8 Oct 2006 13:39:15 +0100

clamav (0.88.4-3) unstable; urgency=low

  * Move logrotate handling to clamav-daemon.postrm (closes: #384011)
  * Apply upstream freshclam timeout patch (closes: #334911, #382353)
  * Actually install changelogs, symlink other docs.
  * Make binary packages binNMU'able
  * lsb init comments added to init scripts
  * Remove Magnus from Uploaders field, as it looks like he's really not
    coming back to it.  Thanks for all your work, Magnus!
  * Add shlibsdeps to clamav-dbg

 -- Stephen Gran <sgran@debian.org>  Mon,  2 Oct 2006 19:47:06 +0100

clamav (0.88.4-2) unstable; urgency=low

  * Just to note here for the security team, 0.88.4-1 fixed
    [CVE-2006-4018]: libclamav/upx.c: buffer overflow
    (CVE unavailable at upload time)
  * Fix up arguments to start_daemon() in init scripts (closes: #382092)
  * Fix override disparity

 -- Stephen Gran <sgran@debian.org>  Tue,  8 Aug 2006 21:38:43 +0100

clamav (0.88.4-1) unstable; urgency=low

  * New upstream version
    - Fixes UPX unpacker overflow vulnerability (closes: #382004, 382007)
  * Add example for clamscan(1) (closes: #374614)
  * freshclam(1) typo fix (closes: #376152)
  * New translations:
    - pt (thanks Ricardo Silva <ardoric@gmail.com>) (closes: #380216)
    - ja (thanks Kenshi Muto <kmuto@debian.org>) (closes: #379955)

 -- Stephen Gran <sgran@debian.org>  Tue,  8 Aug 2006 11:24:05 +0100

clamav (0.88.3-1) unstable; urgency=low

  * New upstream version
  * New translatiosn:
    - nl (thanks Vincent Zweije <zweije@xs4all.nl>) (closes: #370271)
    - pt_BR (Andre Luis Lopes <andrelop@debian.org>) (closes: #374028)

 -- Stephen Gran <sgran@debian.org>  Sat,  1 Jul 2006 15:04:11 +0100

clamav (0.88.2-2) unstable; urgency=low

  * Add -dbg package
    - this requires update to debian compat level 5
  * upgrade to standards version 3.7.2 (no changes)

 -- Stephen Gran <sgran@debian.org>  Thu, 18 May 2006 23:45:00 +0100

clamav (0.88.2-1) unstable; urgency=high

  * New upstream version
    - CVE-2006-1989
      freshclam/manager.c: lack of proper check for the size of header data
  * Typo fix in debian/control (closes: #363201)
  * Fix cut-n-paste error in clamav-config.1 (closes: #364563)
  * Removed dpatches merged upstream
  * Upgrade to Standards Version 3.7.0 (no changes)
  * For security team: 0.88.1-1 fixed the following CVE's:
    CVE-2006-1614 (libclamav/pe.c,libclamav/others.h)
    CVE-2006-1615 (shared/ouput.c)
    CVE-2006-1630 (libclamav/others.c)
    These CVE Ids were unavailable at upload time.

 -- Stephen Gran <sgran@debian.org>  Sun, 30 Apr 2006 12:35:19 +0100

clamav (0.88.1-1) unstable; urgency=low

  * New upstream release
    - Fixes segfault in bitset routine (closes: #360159)
    - Remerge patches (17_freshclam.conf_typos removed)
  * Rebuilding should fix libcurl linkage (closes: #355509)
  * Path to example conf file in clamav-daemon.init was wrong
  * New translation:
    - cs: (thanks Miroslav Kure <kurem@upcase.inf.upol.cz>)(closes: #356547)

 -- Stephen Gran <sgran@debian.org>  Tue,  4 Apr 2006 16:34:04 +0100

clamav (0.88-4) unstable; urgency=low

  * Only use ucf, userdel, and groupdel conditionally in clamav-base postrm
    (closes: #351198)
  * Only use ucf conditionally in clamav-freshclam postrm (closes: #351225)
  * Manpage typo fixes (closes: #351005, #351006, #351007, #351008)

 -- Stephen Gran <sgran@debian.org>  Fri,  3 Feb 2006 17:37:39 +0000

clamav (0.88-3) unstable; urgency=low

  * Reupload to try to triggter a rebuild with fixed debhelper

 -- Stephen Gran <sgran@debian.org>  Tue, 24 Jan 2006 23:26:12 +0000

clamav (0.88-2) unstable; urgency=low

  * Actually rebuild ./configure with the magic to make pass_all work

 -- Stephen Gran <sgran@debian.org>  Tue, 10 Jan 2006 02:55:18 +0000

clamav (0.88-1) unstable; urgency=high

  * New upstream version
    - [ libclamav/upx.c ]:
      fix possible heap overflow
    - [ libclamav/zziplib/zzip-zip.c ]:
      fix pointer misalignment problem on sparc64
    - [ libclamav/zziplib ]:
      improve handling of incorrectly created/handcrafted zip archives.
    - Many other fixes
  * Urgency high due to security fixes
  * Updated all package descriptions.
  * Patch merged upstream:
    - 10_zzip_aligned_patch
  * Patch added:
    - 05_freshclam_manpage.dpatch (quiets lintain complaint)
  * Add versioned dependency on lsb-base - we use log_daemon_msg now
    (closes: #338414)
  * New Translation:
    - de (thanks Erik Schanze <schanzi_usenet@gmx.de>)(closes: #345697)

 -- Stephen Gran <sgran@debian.org>  Tue, 10 Jan 2006 02:02:56 +0000

clamav (0.87.1-1) unstable; urgency=low

  * New upstream release
    - Upstream fix for possible infinite loop
      libclamav/tnef.c: IDEF1169]
    - Upstream fix for possible infinite loop
      libclamav/mspack/cabd.c: IDEF1180]
    - Upstream fix for buffer size calculation
      libclamav/fsg.c: ZDI-CAN-004]
    - Upstream fix for possible infinite loop
      libclamav/others.c,h, libclamav/ole2_extract.c: CAN-2005-3239]
      (closes: #333566)
    - Upstream fix for boundary checks
      libclamav/petite.c]
    - Upstream fix to scan attachments that have no file names
      libclamav/mbox.c]
  * Some more lsb changes to init scripts
  * New Translations:
    - it (Thanks Cristian Rigamonti <cri@linux.it>)(closes: #330240)
    - sv (Thanks Daniel Nylander <po@danielnylander.se>)(closes: #333400)
  * Move to dpatch for patch management, and add build-dependencies (dpatch
    and cpp)
  * Apply patch for bus error on sparc in zzip routines (closes: #322396)

 -- Stephen Gran <sgran@debian.org>  Thu,  3 Nov 2005 23:21:30 +0000

clamav (0.87-1) unstable; urgency=low

  * New upstream version
    - Fixes CAN-2005-2920 and CAN-2005-2919 (closes: #328660)
  * New logcheck line for clamav-daemon (closes: #323132)
  * relibtoolize and apply kfreebsd patch (closes: #327707)
  * Make sure init.d script starts freshclam up again after upgrade when run
    from if-up.d (closes: #328912)

 -- Stephen Gran <sgran@debian.org>  Mon, 19 Sep 2005 09:05:59 +0100

clamav (0.86.2-5) unstable; urgency=low

  * Make sure pidfile always expands to something in clamd init script
    (closes: #322564)

 -- Stephen Gran <sgran@debian.org>  Thu, 11 Aug 2005 11:52:05 -0400

clamav (0.86.2-4) unstable; urgency=low

  * Really, I mean it this time, add the depends on lsb-base.

 -- Stephen Gran <sgran@debian.org>  Thu, 11 Aug 2005 08:34:23 -0400

clamav (0.86.2-3) unstable; urgency=low

  * Forgot a Depends on lsb-base last time.  Duh.

 -- Stephen Gran <sgran@debian.org>  Wed, 10 Aug 2005 13:24:57 -0400

clamav (0.86.2-2) unstable; urgency=low

  * Get rid of broken check for timeout (closes: #320301)
  * Add a reload-log target to the init script, so that other packages can
    make clamd reload it's database easily (closes: #321725)
  * Start exising XSI'isms from maintainer scripts.
  * Switch to lsb-base init functions
  * Init script exits if if-up.d method has been chosen and at least one
    of the interfaces is up (closes: #319865)
  * New translations:
    it (thanks Cristian Rigamonti <cri@linux.it>)(closes: #320793)
  * Documenting here what has not been previously documented just to keep the
    record straight for those interested.
    CAN's closed by _previous_ uploads, but not listed due to CAN unknown at
    time or other bad excuse:
    - 0.86.1: CAN-2005-1923
    - 0.86.2: CAN-2005-2450

 -- Stephen Gran <sgran@debian.org>  Wed, 10 Aug 2005 08:34:53 -0400

clamav (0.86.2-1) unstable; urgency=high

  * New upstream version (closes: #319898, #320014)
  * This upload will build against new libgmp3 (closes: #317853)
  * This version fixes several security bugs, will put CANs in a later
    changelog for reference

 -- Stephen Gran <sgran@debian.org>  Tue, 26 Jul 2005 08:57:49 -0400

clamav (0.86.1-2) unstable; urgency=high

  * Updated standards version (no changes)
  * Just a note for the security team's reference.  Version 0.86.1 of clamav
    fixes the following security bugs:
    - CAN-2005-2070
    - CAN-2005-2056
    - CAN-2005-1922
    Urgency high for this reason
  * README.Debian - explain that all conf files are handled by ucf, and add a
    pointer to ucf's documentation reagrding conffile handling
    (closes: #316049)
  * New translations
    - vi (thanks Clytie Siddall <clytie@riverland.net.au>)(closes: #315804)

 -- Stephen Gran <sgran@debian.org>  Fri,  1 Jul 2005 18:15:15 -0400

clamav (0.86.1-1) unstable; urgency=low

  * New upstream version
  * New translations
    - da (thanks Mohammed Adnene Trojette <adn+deb@diwi.org>)(closes: #315396)
    - fr (thanks Claus Hindsgaul <claus_h@image.dk>)(closes: #315410)

 -- Stephen Gran <sgran@debian.org>  Thu, 23 Jun 2005 18:58:41 -0400

clamav (0.86-1) unstable; urgency=low

  * New upstream version
  * Pull unneeded dh_installdocs and arguments out of debian/rules
    (closes: #314747)
  * Properly check for sendmail version to be non-null in configure.in before
    defining macros (closes: #314752)
  * Define sendmail version macros to be the same as current Debian packages
    of sendmail if those macros are undefined - temporary fix until upstream
    porperly use #if defined before checking values.  Also lets milter build
    with correct behavior for Debian sendmail users, without having to have
    sendmail as a build dep for something we already know (closes: #314914)

 -- Stephen Gran <sgran@debian.org>  Mon, 20 Jun 2005 17:12:57 -0400

clamav (0.85.2-0.86rc1-1) unstable; urgency=low

  * New Upstream Version 
    (complete with hideous version number to allow upgrades) *sigh*
  * Allow for entry 'none' in LogFile debconf entry, disabling LogFile
    directive (closes: #309444)
  * Also disable logrotate file if it was previously enabled, but there is now
    no LogFile directive.
  * Multiple typo fixups in documentation
    (closes: #310014, #310015, #310016, #310017)
  * README.Debian erroneously still recommended reconfiguring clamav-daemon,
    although the debconf stuff has been moved to clamav-base
  * Loosen permissions on freshclam.conf if proxy password not used
    (closes: #310238)
  * Fix stray -e in echo statement (closes: #313198)
  * move db_stop in clamav-daemon's postinst, so that it actually stops
    debconf before doing anything that needs input or output (closes: #308740)
  * New translations
    - de (thanks Erik Schanze <mail@erikschanze.de>)(closes: #311706)
    - ru (thanks Yuriy Talakan' <yt@amur.elektra.ru>)(closes: #311969)
    - vi (thanks Clytie Siddall <clytie@riverland.net.au>)(closes: #313359)

 -- Stephen Gran <sgran@debian.org>  Mon, 13 Jun 2005 20:56:44 -0400

clamav (0.85.1-2) unstable; urgency=low

  * How about I remember the acinclude patch this time

 -- Stephen Gran <sgran@debian.org>  Mon, 16 May 2005 20:45:53 -0400

clamav (0.85.1-1) unstable; urgency=low

  * New upstream version

 -- Stephen Gran <sgran@debian.org>  Mon, 16 May 2005 19:07:40 -0400

clamav (0.85-1) unstable; urgency=low

  * New upstream version (closes: #308758)
  * Better logcheck line for freshclam (closes: #307189)
  * freshclam's postinst uses /dev/urandom instead of /dev/random now - no
    reason to block for perfect entropy when generating a cron job :)
  * Implement a 'reload-log' init script target for freshclam and clamd,
    so that logrotate does the right thing. (closes: #308153)

 -- Stephen Gran <sgran@debian.org>  Thu, 12 May 2005 09:20:15 -0400

clamav (0.84-2) unstable; urgency=medium

  * New logcheck lines for freshclam (closes: #307062)
  * Urgency is medium - should really have been medium for -1.  The reason for
    this urgency is to get a fix for #304123 into sarge.

 -- Stephen Gran <sgran@debian.org>  Sat, 30 Apr 2005 09:56:23 -0400

clamav (0.84-1) unstable; urgency=low

  * New upstream version
      Fit for sarge (closes: #304059)
  * Fix logrotate to only HUP freshclam if pidfile is present.  This is for
    people who don't run it as a deamon (closes: #306678)

 -- Stephen Gran <sgran@debian.org>  Fri, 29 Apr 2005 10:08:31 -0400

clamav (0.83.84rc2-2) unstable; urgency=low

  * Tighten permissions on freshclam.conf (may have passwords in it)
    (closes: #305483)
  * Put pointer to README.Debian in autogenerated clamd.conf, and explanation
    of why non-default configuration options have been chosen
    (closes: #292870)
  * Remove all reload targets in init scripts (the clam suite does not yet
    reread it's configuration on HUP).  Replace all calls to reload in
    logrotate scripts with kill -HUP (closes: #305590)

 -- Stephen Gran <sgran@debian.org>  Fri, 22 Apr 2005 12:06:31 -0400

clamav (0.83.84rc2-1) unstable; urgency=low

  * New upstream version
  * New clamav-milter logcheck lines

 -- Stephen Gran <sgran@debian.org>  Tue, 19 Apr 2005 23:03:48 -0400

clamav (0.83.84rc1-1) unstable; urgency=low

  * New upstream version (0.84rc1)
    Freshclam:
    - URL added to verbose output for freshclam (closes: #231865)
    - mutex using logg() code removed from freshclam signal handling, which
      fixes hang during update (closes: #274255, #274646, #292487)
    libclamav:
    - Fixes digest handling bug (closes: #299469)
    - better tar file (and by extension, deb) support (closes: #300223)
  * Clarify the warning about ScanMail (it is enabled by default, after all)
  * New logcheck files (thanks Marc Sherman <msherman@projectile.ca>)
    (closes: #302253, #302254)

 -- Stephen Gran <sgran@debian.org>  Sat,  9 Apr 2005 19:14:52 -0400

clamav (0.83-5) unstable; urgency=low

  * Typo fix in README.Debian (thanks Tomasz Papszun <tomek@lodz.tpsa.pl> for
    noticing)
  * Fix redirection error in clamav-freshclam.postinst (closes: #301032)

 -- Stephen Gran <sgran@debian.org>  Wed, 23 Mar 2005 09:16:11 -0500

clamav (0.83-4) unstable; urgency=low

  * Typo fix for ucf handling of freshclam cron.d file
  * Make sure ucf cache directory is there before copying into it
    (closes: #297589)
  * Add another logcheck ignore for freshclam (closes: #299546)
  * Documentation update:
    - some reorganization, and addition of headers so sections are more
      clearly delimited.
    - sample exim4 integration provided (closes: #297748)
  * Better debconf/ucf handling in clamav-daemon.postinst (closes: #300779)

 -- Stephen Gran <sgran@debian.org>  Mon, 21 Mar 2005 15:56:11 -0500

clamav (0.83-3) unstable; urgency=low

  * Typo fix in NEWS.Debian
  * Actually don't compress clamd.conf (duh) (really closes 295565 this time)
  * Split out common functions for better maintainability.
  * Put logrotate.d/clamav-daemon back into clamav-daemon package
    (closes: #296196)
  * New Translations:
    - cs (thanks Miroslav Kure <kurem@debian.cz>)
    - fr (thanks Mohammed Adnène Trojette <adn+deb@diwi.org>)(closes: #295905)
    - pt_BR (thanks André Luís Lopes <andrelop@debian.org>)

 -- Stephen Gran <sgran@debian.org>  Sat, 26 Feb 2005 21:50:53 -0500

clamav (0.83-2) unstable; urgency=low

  * Don't compress example clamd.conf (closes: #295565)
  * Add dh_installman rule to clamav-base (closes: #295569)

 -- Stephen Gran <sgran@debian.org>  Thu, 17 Feb 2005 20:06:55 -0500

clamav (0.83-1) unstable; urgency=low

  * New upstream version
    - No longer uses SESSION in clamav-milter (should close 294666, but will
      wait for confirmation)
    - Fixes false positives on RIFF files (closes: #294799)
  * Add clamav-milter logcheck files
  * Change timeout in kill of clamav-milter - it just shouldn't take that long
  * Move configuration of clamd.conf to the package clamav-base, and decouple
    clamav-milter from clamav-daemon.  Now that clamav-milter can run without
    clamav-daemon, there is no reason for this dependency.
  * Sadly this will blow up upgrades of clamav-milter that _do_ use clamd for
    scanning - apt/dpkg sets them up in essentially random order, so it is
    equally likely that the milter will get set up first and bail since it
    can't connect to clamd.  Waiting for the bug reports, but I see no other
    way to do this properly.
  * Since this involved a total reworking of the debconf stuff anyway (sigh),
    I have added debconf support for ArchiveMaxCompressionRatio
    (closes: #291414)
  * Make sure that default values match in clamav-base for DataBaseDirectory
    (closes: #294402)
  * error trapping in freshclam.postinst if check frequency is greater than 24
    and run from cron - this script does not gracefully handle that yet, so we
    trap the error and move on.  Thanks to John R. Shearer <john@puremail.com>
    for catching this.
  * New Translations:
    - da (thanks Claus Hindsgaul <claus_h@image.dk>)
    - it (thanks Cristian Rigamonti <cri@linux.it>)
    - ja (thanks Kenshi Muto <kmuto@debian.org>)

 -- Stephen Gran <sgran@debian.org>  Mon, 14 Feb 2005 14:54:51 -0500

clamav (0.82-1) unstable; urgency=low

  * New upstream version (closes: #294095)
  * New translations:
    - cs (thanks Miroslav Kure <kurem@upcase.inf.upol.cz>)(closes: #293609)
  * Re-add freshclam logcheck files (closes: #284732)
  * 0.81 fixed CAN-2005-0218, noted here for completeness, as this
    vulnerability was not announced until after 0.81 was already uploaded.

 -- Stephen Gran <sgran@debian.org>  Mon,  7 Feb 2005 18:03:32 -0500

clamav (0.81-2) unstable; urgency=high

  * Dammit!  Forgot to fix acinclude.m4 so that all arches get pass_all
    instead of retarded magic file test.  Let's try again.  Sigh.
  * urgency=high t fix security bug in sarge (CAN-2005-0133, actually fixed in
    0.81rc1, but this looks like it's the first version taht will make it).

 -- Stephen Gran <sgran@debian.org>  Thu, 27 Jan 2005 23:46:51 -0500

clamav (0.81-1) unstable; urgency=low

  * New upstream version
    - programs now report normal messages on stdout, and errors and warnings
      on stderr - this lets me better handle freshclam cron jobs, so warnings
      will now be seen by admins (closes: #247180, #279249)
  * Fixed bug in clamav-milter.init (upstream is trying to work around 2.4
    kernel bugs in thread signal handling the same way I was, and this
    caused, er, strange results)
  * Add html/ docs back in (manually generated and uuencoded images, blech -
    have to get upstream to start making them themselves)  Also make my own
    icons, to avoid any licensing problems with latex2html, at least until it
    is released under the GPL in the next version.
  * Add support for new options:
    - clamd: ExitOnOOM, StreamMinPort, StreamMaxPort and LeaveTemporaryFiles
    - freshclam: AllowSupplementaryGroups
  * Please read NEWS.Debian for notes about clamav-milter!

 -- Stephen Gran <sgran@debian.org>  Thu, 27 Jan 2005 20:03:18 -0500

clamav (0.80-0.81rc1-1) unstable; urgency=medium

  * New upstream version
    - Fixes endless loop in VBA scan (closes: #288762)
    - Fixes parsing of certain invalid MIME boundaries (closes: #277531)
    - Fixes X-Virus_Scanned header (closes: #278300)
    - Fixes problem with hard links in GNU tar archives (closes: #283748)
    - ArchiveBlockMax now also applies to ArchiveMaxRecursion
      (closes: #290250)
  * urgency is medium due to fixing endless loop and ArchiveBlockMax bug -
    these should go into sarge soon, if possible
  * Upstream has removed the html documentation from this version, so there
    are no more broken links (closes: #284072)
  * Add logcheck files for freshclam (closes: #284732)
  * New translation:
    - fr.po (closes: #285562)
  * New subdirectories of /etc/clamav/ and notes in README for run-parts style
    scripts on update, error, and virusevent.  Allows packagers and admins to
    drop scripts in transparently, although feature is disabled by default.
    (closes: #288691)
  * Split out -docs package (closes: #290756)
  * This gives me a chance to rename libclamav1-dev to libclamav-dev, and
    totally reorganize packaging of redundant documentation (liberal usage of
    dh_link, IOW)
  * Properly escape hyphens in clamav-config manpage
  * Lowercase all first letters of short descriptions

 -- Stephen Gran <sgran@debian.org>  Fri, 21 Jan 2005 00:06:33 -0500

clamav (0.80-7) unstable; urgency=low

  * Remove milter pid in postrm, in case it's not already gone (makes purge a
    little smoother)
  * Check for ucf file existence before copy in transition to clamd.conf
    (closes: #281867)

 -- Stephen Gran <sgran@debian.org>  Thu, 18 Nov 2004 18:26:24 -0500

clamav (0.80-6) unstable; urgency=low

  * Maintaining versioning even thoug -5 never got uploaded.  Thanks to all
    who run debs from p.d.o for extra testing of new init scripts.
  * Rewrite clamav init script to actually be portable - thanks to
    squid maintainers, from which I borrowed liberally.  Thanks especially 
    to Elrond <elrond+bugs.debian.org@samba-tng.org> and Robert Schmidli
    <robert_s@emailme.net.au> for assistance in debugging and testing.                    
  * freshclam init script no longer produces spurious error message
    (closes: #281514)
  * Again with parser fixups (freshclam, clamd)
  * New translations:
    - da.po (Thanks Claus Hindsgaul <claus_h@image.dk>)
    - de.po (Thanks Erik Schanze <mail@erikschanze.de>)
    - es.po (Thanks Javi Castelo <javicastelo@ono.com>)

 -- Stephen Gran <sgran@debian.org>  Tue, 16 Nov 2004 18:29:39 -0500

clamav (0.80-5) unstable; urgency=low

  * Maintainer script review:
    - clamav-milter:
      instead of -R to start-stop-daemon, we find the right thread and signal
        that one, and loop until it dies.  Much better behavior here, at least.
        Note that this approach is a hack for 2.4 kernels.
      Also patch for $SOCKET upgrades, in case someone has set an alternate one
        from default.  Should work without intervention now.
    - clamav-daemon and clamav-milter:
      Trying to get away from the -R option to start-stop-daemon (which
        produces error message with the milter), we wait until the pid is
        actually gone. (closes: #278198)
    - clamav-daemon and clamav-freshclam
      parser for conf file (preseeding debconf and so forth) reworked a bit for
        better support of options that may have whitespace in them.
  * Remove milter dependency on sendmail, now that (finally) libmilter is
    packaged seperately
  * Add /etc/mail/m4/clamav-milter.m4 (thanks Elrond
    <elrond+bugs.debian.org@samba-tng.org> for patch)(closes: #280048)
    Please see /usr/share/doc/clamav-milter/README.Debian for usage
    instructions.
  * Only look for ^clamav (as opposed to ^clamav:) in /etc/aliases - postfix
    apparently doesn't use the colon.

 -- Stephen Gran <sgran@debian.org>  Sat, 13 Nov 2004 12:54:47 -0500

clamav (0.80-4) unstable; urgency=low

  * Add '|| true' to newaliases invocation in clamav-base (closes:#279724)
  * Updated translations:
    - it (thanks Cristian Rigamonti <cri@linux.it>)(closes: #279849)
    - ja (thanks Kenshi Muto <kmuto@debian.org>)

 -- Stephen Gran <sgran@debian.org>  Fri,  5 Nov 2004 08:54:41 -0500

clamav (0.80-3) unstable; urgency=medium

  * Fix libclamav1-dev dependencies (closes: #277843)
  * Don't enforce local: type socket on clamav-milter - this change should be
    transparent for anyone who hasn't touched the defaults, but will bite
    anyone who has.  Please make sure you review your
    /etc/default/clamav-milter if you have made any modifications.
    (closes: #277505)
  * dpkg-reconfigure works again (failed on StreamSavetoDisk - incomplete
    ripping out of deprecated option). (closes: #279129) (I think)
  * Updated translations:
    - fr (thanks Christian Perrier <bubulle@debian.org>)(closes: #279450)
    - pt_BR (thanks Andre Luis Lopes <andrelop@debian.org>)

 -- Stephen Gran <sgran@debian.org>  Wed,  3 Nov 2004 18:32:25 -0500

clamav (0.80-2) unstable; urgency=low

  * Change Build-Depends:
    - libcurl-dev to libcurl3-dev
    - add bc (for configure test)
  * Some missed updates for new config file name:
    - clamav-milter.README.Debian
    - clamav-base.postinst
    - clamav-freshclam.init
    - clamav-milter.init
    - README.Debian (clamav-base)
    - clamav-daemon.config
    - clamav-freshclam-ifupdown
  * Better ucf management of new clamd.conf on upgrade
  * Add /etc/cron.d/clamav-frechlam to ucf management (oops)
  * ucf -p freshclam.conf and cron.d/clamav-freshclam in postrm
  * Fix freshclam preconfigure warning (test with apt instead of dpkg, Steve)
    (closes: #277274)
  * Some code reorganization in postinsts for freshclam and daemon - mainly
    making functions of repetitive code blocks.
  * debian/control typo fixed (closes: #277215) (thanks Florian Zumbiehl
    <florz@gmx.de>)
  * Now that freshclam does a DNS lookup preferentially over HTTP lookups, the
    default number of checks has been raised to 24 - if you are upgrading,
    feel free to raise it from the old default of 12

 -- Stephen Gran <sgran@debian.org>  Tue, 19 Oct 2004 23:53:10 -0400

clamav (0.80-1) experimental; urgency=low

  * New upstream version (closes: #270265)
  * Many many changes and cleanups, but the biggies are:
    - Detects jpeg attacks (closes: #273889)
    - Clearer error messages (closes: #255954)
    - conf file for clamd{,scan} is now clamd.conf (Arrgh!)
    - Several new conf file directives, selected ones added by default.  ScanOLE
      is now added for new installs and this upgrade only (closes: #272809)
    - StreamSavetoDisk is now deprecated, and will cause clamd to not start if
      it is found in the (renamed) conf file.  Remove automatically on
      upgrade, hopefully.
    - New option for freshclam - DNSDatabaseInfo.  Will do database lookups
      via DNS TXT records, rather than using HTTP HEAD as before.
  * Add absolute path to note in NEWS (closes: #269430)
  * Fix freshclam's cron script not to fail after --remove (closes: #270789)
  * Add warning note about new socket location for upgrades from ancient
    versions.  Hopefully this will stop or slow the bug reports from people
    upgrading from versions where clam still ran as root. (closes: #265606)
  * Change units from Mb to MB in debconf question (closes: #269616)
  * Parser fix to handle extra whitespace in conf files during postinst/config
    (closes: #273805)
  * Add country names to mirror selection question for freshclam - all country
    codes and country names are from http://www.iana.org/cctld/cctld-whois.htm
    Any compaints about country names should be directed to IANA.
    (closes: #270436)
  * Preseed debconf with $http_proxy for freshclam proxy question
    (closes: #266436)
  * New translations:
    - de (thanks Erik Schanze <mail@erikschanze.de>)
    - es (thanks Javi Castelo <javicastelo@ono.com>)
    - fr (thanks Mohammed Adnene Trojette <adn@via.ecp.fr>) (closes: #274675)
    - it (thanks Cristian Rigamonti <cri@linux.it>)
    - ja (thanks Kenshi Muto <kmuto@debian.org>)
    - nl (thanks Tim Dijkstra <tim@famdijkstra.org>) (closes: #274356)

 -- Stephen Gran <sgran@debian.org>  Mon, 18 Oct 2004 19:48:21 -0400

clamav (0.75.1-4) unstable; urgency=medium

  * New da.po (thanks Claus Hindsgaul <claus_h@image.dk>)
    (closes: #268386)
  * Better formatting for fr.po (thanks Ludovic Rousseau
    <rousseau@debian.org>) (closes: #266433)

 -- Stephen Gran <sgran@debian.org>  Sat, 28 Aug 2004 14:39:07 -0400

clamav (0.75.1-3) unstable; urgency=low

  * Add lintian overrides for translations
  * A little more readability cleanup in maintainer scripts
  * Fix clamav-freshclam's postinst to generate a random number using perl,
    instead of relying on bashisms (closes: #263167)
  * Fix clamav-base's postinst for the case where clamav-daemon is not
    installed, so it properly deals with directory permissions even in the
    absence of clamav.conf (closes: #261636)
  * Fix the ifupdown scripts to handle more recent pppd run-parts invocations.
    mea culpa - I only have access to a woody machine that uses pppd.
    (closes: #265137)
  * Updated translations:
    - da (thanks Claus Hindsgaul <claus_h@image.dk>)
    - de (thanks Erik Schanze <mail@erikschanze.de>)
    - es (thanks Javi Castelo <javicastelo@ono.com>)
    - fr (thanks Christian Perrier <bubulle@debian.org>)
    - it (thanks Cristian Rigamonti <cri@linux.it>) (closes: #262704)
    - ja (thanks Kenshi Muto <kmuto@debian.org>)
    - nl (thanks Tim Dijkstra <newsuser@famdijkstra.org>)
    - pt_BR (thanks Andre Luis Lopes <andrelop@debian.org>)

 -- Stephen Gran <sgran@debian.org>  Sun, 15 Aug 2004 19:15:42 -0400

clamav (0.75.1-2) unstable; urgency=low

  * Fix quoting problem inpostinst when multiple group names entered
    (closes: #262433)

 -- Stephen Gran <sgran@debian.org>  Fri, 30 Jul 2004 21:03:30 -0400

clamav (0.75.1-1) unstable; urgency=low

  * New upstream release (closes: #261672)
    - Additional patch from Nicolas Boullis <nboullis@debian.org> to fix read
      from stdin when clamd listens on a unix socket. (closes: #260322)
    - Fixes segfault with LogSyslog on PPC (closes: #250320)
  * Remove duplicated NEWS/README from clamav (closes: #261813)
  * init script changes:
    - Add support for running clamd and clamav-milter under daemon to init
      scripts.  See clamav-base/README.Debian for details (closes: #250008)
    - Change test for milter's socket to use -e instead of -f (duh)
  * Some readability cleanup in maintainer scripts, and more code cleanup:
    - Add an if -d to clamav-base.postrm to get rid of some annoying but
      harmless error messages.
    - Add if -e before chmod call in clamav-freshclam postinst; the ppp
      scripts are technically conffiles, so if the local admin removes
      them manually, dpkg won't put them back, and postinst will blow up
      (closes: #258885)
  * Some additional (*sigh*) debconf questions:
    - Upstream is again changing their mirror network around.  New question
      about mirrors.
    - Question about adding clamav to extra groups.
      (closes: #250335, #250691, #255733, #256892)

 -- Stephen Gran <sgran@debian.org>  Thu, 29 Jul 2004 23:01:05 -0400

clamav (0.74-1) unstable; urgency=low

  * New upstream version
    - Additional patch from Tomasz Kojm <zolw@konarski.edu.pl> to fix hang on
      stdin with clamdscan
  * More cruft cleanup - this time in clamav-freshclam.postinst
  * debhelper build-depend tightening (closes: #259257)
  * Aadd a sleep to clamav-milter.init, so it restarts a little more
    gracefully (hopefully) (closes: #259161)
  * Add amavis reference to README (thanks Andrea Borgia <andrea@borgia.bo.it>)
  * New translations:
    - German (thanks Erik Schanze <mail@erikschanze.de>)
    - Spanish (thanks Javi Castelo <javicastelo@ono.com>)
    - Dutch (thanks  Tim Dijkstra <tim@famdijkstra.org>) (closes: #259272)

 -- Stephen Gran <sgran@debian.org>  Thu, 15 Jul 2004 22:33:53 -0400

clamav (0.73-2) unstable; urgency=low

  * Change dependency versioning for clamav-milter
  * Fix up overthought ucf call in clamav-base that ended up making ucf think
    manually managed conf file was unmodified and safe to overwrite.
    (closes: #255428)
  * Stop cleaning up after the daemons (clamd, freshclam, milter) in init
    scripts.  It seems they all (with the exception of the milter) do a decent
    job cleaning up after themselves now.  The milter leaves behind a pidfile,
    which is sloppy, but doesn't seem to harm anything.  This should fix the
    problems on upgrade. (closes: #255437, #255436)
  * Remove unnecessary depends/recommends from clamav-testfiles - these 
    testfiles could be used for any A/V suite, and have nothing specific to 
    do with clamav. (closes: #255370)

 -- Stephen Gran <sgran@debian.org>  Mon, 21 Jun 2004 22:26:45 -0400

clamav (0.73-1) unstable; urgency=low

  * New Upstream Version
    - adds pkgconfig and clamav-config to libclamav1-dev
    - Fixes some crash situations with OLE viruses, and some mbox code
      cleanup
  * Add --with-tcpwrappers to ./configure
  * Stop creating a logrotate file if logfile is under /dev (e.g.,
    stderr/stdout - multilog or other users)
  * Add clamav user to /etc/aliases (closes: #253960)
  * Add an ignore.d.server logcheck file for clamav-daemon (closes: #253255)
  * Remerge sample conf file changes - they also got lost on upgrade, somehow
  * Rework debconf templates with a lot of help from Christian Perrier
    <bubulle@debian.org> and Cristian Rigamonti <cri@linux.it>.  String
    freeze after this, hopefully.
    (closes: #253344)
  * New translations:
    - German (thanks Claus Hindsgaul <claus_h@image.dk>)
    - French (thanks Christian Perrier <bubulle@debian.org>)
      (closes: #253581)
    - Italian (thanks Cristian Rigamonti <cri@linux.it>)
      (closes: #254030)
    - Japanese (thanks Kenshi Muto <kmuto@debian.org>)
    - Brazillian (thanks André Luís Lopes <andrelop@debian.org>)
      (sorry if your name gets mangled here)

 -- Stephen Gran <sgran@debian.org>  Sat, 19 Jun 2004 11:42:41 -0400

clamav (0.72-1) unstable; urgency=low

  * New upstream release
    - Fixes read from STDIN oddity (closes: #250806)
  * Add debian/watch
  * Re-add an '|| true' to the rmdir calls in clamav-base's postrm.  They
    somehow got lost in the last upload.  (closes: #252955)
  * New Danish translation (thanks Claus Hindsgaul <claus_h@image.dk>)
    (closes: #252511)

 -- Stephen Gran <sgran@debian.org>  Sun,  6 Jun 2004 15:38:58 -0400

clamav (0.71-3) unstable; urgency=low

  * Forcibly remove pidfile in clamav-milter.init.  It seems clamav-milter has
    some problems cleaning up after itself.  Also use -R to keep trying until
    really dead.
  * Add debconf question about User setting for clamav.conf - will be
    displayed on upgrade if User directive is unset, otherwise not seen
    until dpkg-reconfigure
  * Add AllowSupplementaryGroups (closes: #250634) for new installs and
    upgrades from <= 0.70-2
  * New German translation (thanks Erik Schanze <mail@erikschanze.de>)
    (closes: #250947)

 -- Stephen Gran <sgran@debian.org>  Tue,  1 Jun 2004 19:52:38 -0400

clamav (0.71-2) unstable; urgency=low

  * Fix broken clamav-milter init script.  Reality apparently does not match
    the man page: -i is not a real option, although it is supposed to be the
    same as --pidfile.

 -- Stephen Gran <sgran@debian.org>  Sat, 22 May 2004 00:01:12 -0400

clamav (0.71-1) unstable; urgency=low

  * New upstream version
    - clamav-milter now uses --pidfile, so can fix init script to use -p
    - clamscan no longer follows symlinks on archive scanning
      (closes: #247574)
    - Can scan msexpand files (closes: #245240)
  * Change group for logfiles to adm.
  * Fix error in md5sum comparison in clamav-freshclam.config
    (closes: #247815)
  * clamd no longer runs as root - see NEWS.Debian for more information
    (closes: #248419)
  * Manually change pid file for clamav-daemon to /var/run/clamav/clamd.pid -
    no breakage should occur, and this will assist people with new change to
    running as unpriviledged user (closes: #238915)
  * Add contrib directory to clamav - this package is getting overloaded now,
    I think
  * Finally get around to including joey's clampipe (closes: #209087)
  * Forgot to close this earlier, but it has built just fine on woody for some
    time (closes: #236098)
  * Manually deal with permissions on /etc/network and /etc/ppp files in
    postinst - I still see some installs without -x bit set
  * Add multiple interface handling for freshclam and ifup/down method
    (closes: #239217, #245230)

 -- Stephen Gran <sgran@debian.org>  Thu, 20 May 2004 22:23:12 -0400

clamav (0.70-4) unstable; urgency=low

  * Fix clamav-milter.init thinko (closes: #246919)

 -- Stephen Gran <sgran@debian.org>  Sun,  2 May 2004 10:07:00 -0400

clamav (0.70-3) unstable; urgency=low

  * Some reworking of freshclam.config, to make sure that no user changes are
    lost on upgrade (same changes as to clamav-daemon, but for some reason I
    didn't port them over to freshclam)
  * Moved db_stop out of case . . . esac statement, to make sure the running
    debconf instance is never stopped before ucf is called (closes: #246611)

 -- Stephen Gran <sgran@debian.org>  Sat,  1 May 2004 13:15:03 -0400

clamav (0.70-2) unstable; urgency=medium

  * Urgency medium again - still trying to get this into testing
  * Fix typo in freshclam description (closes: #244654)
  * Updated init scripts to not uses --exec on stop, and also to use --retry in
    case signal handling issues aren't completely resolved
  * Add /etc/default/clamav-daemon for setting environment variables before
    starting clamd. (closes: #246313)
  * Do a slightly smarter job preserving user changes on upgrade
    (closes: #245379)
  * Updated translations:
    - French (thanks Christian Perrier <bubulle@debian.org>)(closes: #244045)
    - Danish (thanks Claus Hindsgaul <claus_h@image.dk>)(closes: #244445)
    - Japanese (Thanks Kenshi Muto <kmuto@debian.org>)(closes: #245431)

 -- Stephen Gran <sgran@debian.org>  Wed, 28 Apr 2004 13:14:00 -0400

clamav (0.70-1) unstable; urgency=medium

  * New Upstream release
  * Urgency medium due to impending change of sigtool and database format
    change - version in testing will not support change.
  * Try to handle rename of ArchiveDetectEncrypted to ArchiveBlockEncrypted
  * Unless previously set, LogFileMaxSize is now set to 0 (disabled) by
    default - it's handled by logrotate, so this shouldn't be an issue
  * Got a little smarter about registering the file with ucf on first run this
    time around

 -- Stephen Gran <sgran@debian.org>  Sat, 17 Apr 2004 19:38:26 -0400

clamav (0.69-0.70-rc-3) unstable; urgency=low

  * New French translation (thanks Christian Perrier <bubulle@debian.org>)
    (closes: #244045)

 -- Stephen Gran <sgran@debian.org>  Fri, 16 Apr 2004 09:01:12 -0400

clamav (0.69-0.70-rc-2) unstable; urgency=low

  * Remove mentions of dazuko from debian/control (closes: #243217)
  * Add dh_installchangelogs for all binary packages built from same source
  * Try to work around renaming of config file option ThreadTimeout to
    ReadTimeout.  *sigh* (closes: #243550)
  * New Danish translation (thanks Claus Hindsgaul <claus_h@image.dk>)
    (closes: #243562)

 -- Stephen Gran <sgran@debian.org>  Thu, 15 Apr 2004 13:16:01 -0400

clamav (0.69-0.70-rc-1) unstable; urgency=low

  * New Upstream Version
    - Fixes segfault on some RAR archives (closes: #238986, #240472)
    - New thread manager should eliminate most of the problems of clamd
      children dying (closes: #238916)
  * sgran:
  * Add /etc/ppp/ip-{down,up}.d scripts for ppp users of freshclam.
  * mirrors.txt debconf note has been changed to reflect what actually happens
    - mirrors.txt is removed if unchenged, and backed up otherwise
    (closes: #242657)
  * clamav-base postinst no longer does permissions check if default setup is
    being used - let's not try to be too smart here (closes: #237146)
  * Work begun to ease backporting to stable.  postinst now does some checks
    to see what version of ucf is available, because debconf-ok is not
    available in the version in stable.  Still have to manually deal with it
    in debian/control, but it's improving.
  * This version builds against gcc 2.95 again, removing the Build-Dependency
    on gcc (>=3.0).  Have to rethink how to do that so that it works a little
    better in the future anyway.  (closes: #236769)
  * Add a 'head -n1' to the config file parser.  This prevents people from
    having multiple lines with the same option, but that would be a broken
    config file anyway.
  * Manually set x bit on /etc/network/if-{up,down}.d scripts, as it seems the
    handling has been inconsistent.  I see the bit set correctly, but there
    have been reports otherwise.  Consistency is better, even if it feels
    kludgy.
  * Use delaycompress in logrotate files, so we don't have any open file
    descriptors trying to write to a now gzipped file.
  * New version has TCPWrappers support, add Build-Depends on libwrap0-dev
  * Fix up NEWS.Debian so that the real default socket is actually described.
    (closes: #238917)
  * Add note to NEWS.Debian about permissions on directories needed by clamav
    - permission problems will be corrected, but only if the default setup is
    being used.
  * New translations:
    - Dutch (thanks Tim Dijkstra <tim@famdijkstra.org>) (closes: #239330)
    - Japanese (thanks Kenshi Muto <kmuto@debian.org>) (closes: #237783)

 -- Stephen Gran <sgran@debian.org>  Sun, 11 Apr 2004 15:51:47 -0400

clamav (0.67-7) unstable; urgency=low

  * sgran:
  * Updated French translation (thanks Christian Perrier <bubulle@debian.org>)
    (closes: #235742)
  * Clean up clamav-freshclam package description
  * Now adds old mirrors.txt contents into freshclam.conf but has them
    commented out to begin with.  The default is to only use the round robin
    mirror address, so this is probably best - I just don't want to throw away
    old configuration settings. (closes: #236180)  Also fix quoting problem on
    inserting them into file.
  * Fix versioned depends on ucf - should have been 0.28, not 0.30
  * Fix stupid thinko in /etc/logrotate.d script (create should be earlier)
    (closes: #236603)
  * tlamy:
  * Used some CVS code:
    - qmail bounces get scanned if ScanMail is enabled
    - clamav-milter looks if clamd is available at start
    - Some bounce messages weren't properly recognized as mails, so they
      weren't scanned
    - New config option for clamav.conf ArchiveDetectEncrypted added to
      postinst.  Man page fixup for this new option for clamav.conf and
      clamscan.
  * Removed preliminary code for bounce scanning (closes: #235792, #235992)
  * Added preliminary code to prevent #235792, #235992 in the future

 -- Stephen Gran <sgran@debian.org>  Sun,  7 Mar 2004 19:36:04 +0100

clamav (0.67-6) unstable; urgency=low

  * Add line break in clamav-milter.8 (closes: #235452) * Add a longer
    sleep, and an earlier socket removal, to clamav-milter.init.
    Hopefully this will help it restart more cleanly (closes: #235463)
  * Fix my totally stupid lack of error checking in clamav-base.postinst,
    so that it actually works as intended in the permissions checking section
    (closes: #235624)
  * Better logic for clamav-freshclam.postinst, and if-up.d scripts.
    - postinst doesn't place rc*/ links unless set to run as daemon, and will
      remove if reconfigured to run as something else.
    - postinst creates /var/lib/clamav/interface if configured to run from
      ifup.d, and removes it if not.
    - if/up.d scripts just exit if /var/lib/clamav/interface doesn't exist,
      instead of complaining unnecessarily
      (closes: #235561)
  * Some more general cleanup in clamav-freshclam.postinst - better grouping
    of sections, better comments, better output to stdout
  * ifup scripts are not called with an argument, so if [ -n "$1" ] has been
    corrected to [ -z "$1" ]
  * Now ship cvd's in /usr/share/doc/clamav-freshclam/examples, and only cp
    them into DataDirectory if they don't exist after trying to run freshclam
    once.  These files are really dynamic data, and should not be under package
    management.  The downside of not doing this hackish system is if the the
    user is installing from cd or something, everything else in the clam*
    packages breaks without something there.  This will hopefully protect the
    user who wants to run freshclam once a week from his dialup, while still
    keeping these files out of dpkg's control.  Also move the removal of these
    files from purge to remove, so that a normal apt-get install clamav-data
    will remove the files, before installing the new package. (closes: #234928)
  * Also mention more prominently that freshclam needs an internet connection,
    and that people who intend to not have one should instead opt for
    clamav-data (although how they're going to get updated versions of that is
    left as an exercise for the end user)
  * Some more packaging cleanup:
    clamav:
    - Don't gzip html, css, png or pdf files
    clamav-daemon:
    - Don't gzip sample conffile
    clamav-testfiles:
    - get rid of redundant extra mbox code checker in /usr/share

 -- Stephen Gran <sgran@debian.org>  Mon,  1 Mar 2004 23:48:34 -0500

clamav (0.67-5) unstable; urgency=low

  * Fix stupid typo in if-up/down script (closes: #235313)
  * Make freshclam more error tolerant - thanks Luca 'NERvOus' Gibelli
    <nervous@nervous.it> for patch for reading config file
  * New Danish translation, thanks to Claus Hindsgaul <claus_h@image.dk>
    (closes: #235337)
  * Put in some rough checking that permissions are set properly for clamd to
    run in clamav-base.postinst - probably will cause more false alarms than
    good, but it is a step in the right direction.  Thanks Josip Rodin
    <joy@srce.hr> for coming up with the idea
  * Run autoreconf in source dir, hopefully fixing FTBFS on mips
  * Remove call to autoreconf -v from debian/rules (why did anyone want that
    there, and how did I miss it for so long?)
  * Also rmdir /var/lib/clamav on purge (if dpkg doesn't)

 -- Stephen Gran <sgran@debian.org>  Sat, 28 Feb 2004 21:42:47 -0500

clamav (0.67-4) unstable; urgency=low

  * sgran:
  * Added versioned Build-Depend on gcc, since the build blows up with 2.95,
    adding a little work for backporting
  * Make logrotate scripts use reload, since Thomas got clamd and freshclam to
    accept a HUP signal and reopen their respective logfiles. Will hopefully
    make both more stable, as we're not trying to kill and restart them every
    week
  * Properly check if freshclam is being run from cron or manual before putting
    a 'Checks' line into the config file (Checks will be an empty field if it's
    being run from cron or manually, and this breaks the config file)
    (closes: #235276, #235289)
  * Only chown logdir, datadir, and rundir on fresh install (closes: #235193)
  * Stop relying on debhelper for starting and stoping of freshclam - now it
    really won't get started on install/upgrade. (closes: #235292)
  * tlamy:
  * Patch up freshclam/notify.c error messages produced during attempt to
    notify clamd.  Error messages are now more helpful about what went wrong
    when attempting to notify clamd about updates, if NotifyClamd is set in
    freshclam.conf (closes: #234916, #234922)
  * Better option parsing in freschlam/options.c
  * Better signal handling in freshclam/freshclam.c

 -- Stephen Gran <sgran@debian.org>  Sat, 28 Feb 2004 10:22:39 -0500

clamav (0.67-3) unstable; urgency=low

  * The "Let's Clean This Thing Up" release
  * sgran:
  * clamav-freshclam:
    - Fixup for clamav-freshclam init script - better parsing of options
      allowing for spaces in OnUpdate commands. (closes: #214279)
    - Better error reporting in clamav-freshclam init script
    - All of the debconf questions have been rewritten, thanks to suggestions
      from the many helpful translators who have worked on this package.  They
      now follow the guidelines at http://people.debian.org/~bubulle/dtsg.txt
      (closes: #233241, #233525)
    - Rework clamav-freshclam config, postinst, and templates.  Should avoid
      asking unnecessary questions about conffiles after this upgrade
      (closes: #233610).
    - Move Interface option out of freshclam.conf and into seperate file, so
      freshclam doesn't have parse errors (closes: #234919)
    - postinst generated config file should now finally add back in any
      options the local admin has put in the config file that are not part of
      the debconf questions.
    - update ucf dependency, so that it has --debconf-ok
  * clamav-daemon:
    - Fix up some spacing issues in debconf templates
    - Also some minor changes in debconf question type - mostly changing of
      unnecessary 'select' to 'boolean' to make life easier for translators
      (closes: #233862)
    - Got rid of all the 'question #foo of 28 ...'
    - Similar debconf style cleanup as freshclam, above.
    - Rework clamav-daemon config, postinst, and templates.
    - postinst generated config file should now finally add back in any
      options the local admin has put in the config file that are not part of
      the debconf questions.  Should also respect previous config file
      options, and will preseed the debconf interaction with the choice found
      in the config file.
    - update ucf dependency, so that it has --debconf-ok
    - generate cron.d with user option correvtly (closes: #234458)
  * clamav:
    - Add in some more documentation to the clamav package - provided by
      upstream but previously left out of the package itself.
  * Source package:
    - Fix NEWS.Debian so apt-listchanges will display it (closes: #233795)
    - Find and add back in the French po file (closes: #232010)
    - Add new Danish translation (thanks Claus Hindsgaul <claus_h@image.dk>)
    - New Japanese translation (thanks Kenshi Muto <kmuto@debian.org>)
    - New French translation (thanks Christian Perrier <bubulle@debian.org>)
    - Fix clamscan's manpage to refer to the new-style databases
      (closes: #234927)
  * tlamy:
  * freshclam:
    - freshclam -d now writes it's pid file if configured in freshclam.conf
      (closes: #232206) and also re-opens it's log file on SIGHUP
  * clamd:
    - Handle bounces better by both scanning for bounce delimiters and multipart
      delimiters (closes: #232244)
    - handles SIGHUP by reopening it's log file, allowing more graceful
      reloads after logrotate.
  * 

 -- Stephen Gran <sgran@debian.org>  Fri, 27 Feb 2004 00:55:12 -0500

clamav (0.67-2) unstable; urgency=low

  * Correct debian/rules thinko - Correct ordering of build targets now.

 -- Stephen Gran <sgran@debian.org>  Mon, 16 Feb 2004 19:42:09 -0500

clamav (0.67-1) unstable; urgency=low

  * New Upstream Release (closes: #232904)
  * Use orig.tar.gz (groan)(closes: #231963)
  * Add NEWS.Debian telling people about changed default run/ directory - now
    /var/run/clamav.  This should not actually change the conffile, but only
    affect new installs, but it seems that it has bitten at least on person.
    (closes: #231962)
  * Finally find and fix the broken acinclude.m4 that was causing libtool to
    link incorrectly on mips* (closes: #231970)
  * Added MaxAttempts to default freshclam.conf, so that it will try up to 5
    times if the first mirror is broken. (closes: #232221)
  * Add in the po files submitted via the BTS.  Note that they will need to be
    retranslated for the changed string sets.
    (closes: #211902, #218900, #227368, #230337, #232010)
  * Remove trailing space in freshclam init script output (closes: #232468)
  * Remove old symlink for handledaemon, left over from 0.60 (closes: #232440)
  * Freshclam now has the ability to execute a command on update, or on error.
    (closes: #214279)
  * Remove var/lib/clamav/clamav-freshclam.debconf on purge (closes: #212653)
  * Explicitly remove ucf generated files, in case ucf -p fails
    (closes: #212661)
  * Updated ja.po (thanks Kenshi Muto <kmuto@debian.org>)
  * Updated es.po (thanks Javi Castelo <javicastelo@ono.com>)
  * Correct Depends for libclamav1-dev (closes: #232961)

 -- Stephen Gran <sgran@debian.org>  Mon, 16 Feb 2004 14:03:25 -0500

clamav (0.65-3) unstable; urgency=low

  * Give clamav-milter priority: extra, as it depends on sendmail.
  * Fix dependencies on libclamav1 (closes:#231785, #231930)
  * Fix endianness problem breaking md5sum verification for freshclam
    (closes: #23186, #231772, #231778)
  * Build-Depend on correct version of autoconf (closes: #231931)
  * cut-n-paste error fixed in clamav-milter.init (closes: #231878) 

 -- Stephen Gran <sgran@debian.org>  Mon,  9 Feb 2004 14:08:09 -0500

clamav (0.65-2) unstable; urgency=low

  * Run autoreconf in source directory - Hopefully fix FTBFS on several
    arches.  Also B-D on automake/conf as fallback.

 -- Stephen Gran <sgran@debian.org>  Sat,  7 Feb 2004 19:03:52 -0500

clamav (0.65-1) unstable; urgency=low

  * New Upstream Version (closes: #220792)
    - max-recursion level problem fixed (closes: #215306)
    - Support for digitally signed databases (closes: #165246)
    - Better stale socket detection and removal (closes: #207922)
    - Better zip file handling (closes: #219073, #223923)
    - Fixes format string vulnerability (closes: #221854)
    - Should no longer hang (closes: #222327, #213598)
    - Should no longer dump core (closes: #225356)
    - Can run as non-root user, although will have to be explicitly configured
      to do so (closes: #200525)
    - Handles RAR archives better, now uses internal rar unpacker.  RAR
      code disabled by default. (closes: #223022)
    - Handles maildirs now (closes: #209084)
    - clamav-milter debug option (-x) now apparently does something, according
      to sources. (closes: #217155)
  tlamy:
  * Updated clamav to CVS 20040119
  * Applied upstream mbox.c fixes as of CVS 20040124
  * Updated documentation
  * Added Config-Option "Interface" to get rid of freshclam-handle-daemon.conf
  * freshclam-handle-daemon is split up into /etc/init.d/clamav-freshclam and
    if-up/down.d scripts
  * manpage for new freshclam.conf
  * debconf support for new options in freshclam.conf
  * fix SEGV on incomplete Content-type specifications (like in "text/")
    (forwarded upstream)
  * fix possible infinite loop in BinHex decoding, causing DoS
    (forwarded upstream)
  * use autoheader and "clamav-config.h" for build defines (forwarded
    upstream)
  sgran:
  * Make clamav-freshclam-handledaemon a properly named init script and not a
    symlink(closes: #212648)
  * clamav-freshclam logrotate output sent to /dev/null 
    (closes: #222565, #230658)
  * Fixed clamav-freshclam.postinst error (closes: #223018, #212052)
  * Removed extra call to dh_install (closes: #217746)
  * Added clamav-milter init script (closes: #204340)
  * Fix up clamav-daemon init script.
    - Checks for and removes pidfile and socket on restart, and sleeps to give
      clam a chance to restart gracefully (closes: #214278, #219801)
  * Cosmetic fix for clamav-freshclam init script (closes: #222740)
  * Added /var/run/clamav for all pid and socket files (closes: #219182)
  * freshclam init.d script now checks if if-up.d method is being used, and
    exits if network is down (closes: #214608)

 -- Stephen Gran <sgran@debian.org>  Sat,  7 Feb 2004 13:29:57 -0500

clamav (0.60-10) unstable; urgency=high

  * Updated libclamav to CVS 20030916
  * Fixes at least some mbox problems (closes:Bug#211442)
  * Updated french translation patch from Christian Perrier
  * README.Debian
     Clarified how debconf handles mixing dpkg-reconfigure and 
       manual editing (closes:Bug#210908)
     Warnings about unstable mbox code in (also in debconf
       templates and manpages)

 -- Magnus Ekdahl <magnus@debian.org>  Sat, 20 Sep 2003 00:31:38 +0200

clamav (0.60-9) unstable; urgency=high

  * Updated libclamav fixes to CVS 20030905 (closes:Bug#208822)
    (closes:Bug#206562)
  * Reformulated template to avoid illegal template field (closes:Bug#208656)
  * Patch from Adam D. Barratt Fixing another incorrect reference
    (closes:Bug#208667)
  * Cleaned templates from debconf frontend-dependent text (closes:Bug#209026)
  * Added warning for the fact that freshclam doesn't check the gpg
    signature on the database. (closes:Bug#209027)
  * Made clamav-freshclam-handledaemon mimic init scripts when needed
    and updated manpage (closes:Bug#208818)
  * Added logrotate ability to clamav-freshclam and clamav-daemon
    (closes:Bug#208819)
     Logrotate deprecates the LogFileMaxSize debconf handling
  * New libclamav1 description (closes:Bug#210100)
  * Purging more files (hopefully all now)
  * Made clamav-daemon autoconfigured during install (Idea by Tore
    Anderson)

 -- Magnus Ekdahl <magnus@debian.org>  Thu, 11 Sep 2003 11:25:43 +0200

clamav (0.60-8) unstable; urgency=medium

  * Patch from Adam D. Barratt Fixing incorrect references 
    (closes:Bug#208517) (closes:Bug#208519) (closes:Bug#208520)
  * Corrected a souring bug in clamav-freshclam-handledaemon

 -- Magnus Ekdahl <magnus@debian.org>  Wed,  3 Sep 2003 13:10:57 +0200

clamav (0.60-7) unstable; urgency=medium

  * Based on 0.60+bugfixes in 20030829 snapshot
    Holding back mbox fixes for this package (introducing new bugs)
  * Patch from Jerome BENOIT: handling running freshclam as daemon
    (closes:Bug#206706) (closes:Bug#198652)
  * Patch from Christian Perrier
     support for different languages in packaging text (closes:Bug#205820)
     french translation (closes:Bug#206773)
     updated Brazilian translation (closes:Bug#187777)
     fixed wrong default in clamav-daemon.templates (closes:Bug#206706)
  * Implemented Colin Watson's backport friendly translation extensions
  * Fixed careless handling of configure files that can be removed by
    user (closes:Bug#205426)
  * Improved the default /etc/clamav.conf for the case when user doesn't
    configure using debconf
  * Added even more docs to the templates, to avoid pink finger injuries
    (for more info see bug 206373)
  * Added debconf proxy support to clamav-freshclam (closes:Bug#205124)
  * Wrote manpages for new files

 -- Magnus Ekdahl <magnus@debian.org>  Mon,  1 Sep 2003 19:21:35 +0200

clamav (0.60-6) unstable; urgency=high

  * Patches from Tomasz Papszun
  *  Fixing a mbox problem
  *  Spelling in changelog

 -- Magnus Ekdahl <magnus@debian.org>  Tue, 12 Aug 2003 09:58:19 +0200

clamav (0.60-5) unstable; urgency=medium

  * Based on 0.60+bugfixes in 20030806 snapshot
  * Patch from Jean Charles Delepine depending on the correct version of
    ucf (closes:Bug#202417) (closes:Bug#203444)
  * Brought configuration management up to debian standards
     Corrected a significant number of debconf priorities
      (closes:Bug#197264)
     Added SelfCheck question
     Updated documentation
  * Patch from Timshel Knoll fixing bashism in init file

 -- Magnus Ekdahl <magnus@debian.org>  Thu,  7 Aug 2003 20:52:55 +0200

clamav (0.60-4) unstable; urgency=high

  * Based on 0.60+bugfixes in 20030720 snapshot
  * Patch by Jonas Smedegaard realizing bashism in initfile + adding
    correct options to start-stop-daemon (closes:Bug#202175)
  * Patch from Chris Butler unconfusing upgrading notes (closes:Bug#202266)

 -- Magnus Ekdahl <magnus@debian.org>  Mon, 21 Jul 2003 18:34:10 +0200

clamav (0.60-3) unstable; urgency=high

  * Based on 20030719 snapshot. However new code (not fixing bugs) in freshclam
    removed. Fixes many problems including (closes: Bug#201812).
  * Corrected permissions on LogFile (closes: Bug#200527)
  * Removed --notify-daemon option from cron-script
    (closes:Bug#198758)
  * Implemented ucf purging
  * Included most of the upstream clamav description in package description
    for clamav-base
  * Make sure that daemon not tries to start if /etc/clamav.conf contain
    Example
  * PidFile bug in initscript fixed

 -- Magnus Ekdahl <magnus@debian.org>  Sun, 20 Jul 2003 10:22:55 +0200

clamav (0.60-2) unstable; urgency=high

  * Corrected permissions on PidFile (closes: Bug#200527)
  * Patch from Tomasz Papszun making freshclam run as clamav from cron
    (closes: Bug#200508)
  * Debconf now respects manual clamav.conf changes
  * Improved pidfile handling in init script (problem found by Daniel E.
    Atencio Psille)
  * Downgraded dazuko-source dependency to a suggestion (closes:Bug#199823)
  * Spelling (closes Bug#199987)

 -- Magnus Ekdahl <magnus@debian.org>  Thu, 10 Jul 2003 00:35:44 +0200

clamav (0.60-1) unstable; urgency=high

  * New upstream release (closes:Bug#198366)
     Includes bzip2 support (closes:Bug#171665)
     Includes syslog support (closes:Bug#190699)
     Fixes CONTSCAN command in daemon (closes:Bug#194696)
     0.61-1 contains no source differences compared to upstream release
  * Updated docs
  * New package: clamav-milter
  * Updated copyright statement
  * Lowered debhelper dependency to >=4 (reported by Jefferson Cowart)
  * Started usability upgrade of debconf scripts
     Included configuration handling for new daemon options
     Implemented backing functionality
     Replacing defaults with defaults conditioned on answer to previous
       questions. The expected number of questions has been lowered.

 -- Magnus Ekdahl <magnus@debian.org>  Mon, 23 Jun 2003 00:05:36 +0200

clamav (0.54-11) unstable; urgency=high

  * patch from Brian May fixing typo in debian/rules
    (closes: Bug#193373)
  * clamav-freshclam depends on cron (closes:Bug#196902)
  * --daemon-notify added to cron script (closes:Bug#194013)
  * important updates from development snapshot
    newest freshclam with mirror support (closes:Bug#185043)
    zzlib security fix

 -- Magnus Ekdahl <magnus@debian.org>  Thu, 12 Jun 2003 22:42:04 +0200

clamav (0.54-10) unstable; urgency=low

  * Splitting patch from Marc Haber, (closes:Bug#190176), new packages:
    clamav-base
    clamav-freshclam
  * replaced zoo with unzoo (closes: Bug#187927)
  * Changed section of development library
  * added watch file
  * downgrading debconf dependency, allowing stable backports
  * cleaned docs

 -- Magnus Ekdahl <magnus@debian.org>  Wed,  7 May 2003 20:19:26 +0200

clamav (0.54-9) unstable; urgency=low

  * corrected UNIX socket permissions (closes:Bug#191286)

 -- Magnus Ekdahl <magnus@debian.org>  Tue,  6 May 2003 20:41:15 +0200

clamav (0.54-8) unstable; urgency=high

  * pulled enough *printf and daemonize() changes from upstream snapshot to 
    avoid printing to closed stderr (closes:Bug#190143)
  * delayed writing to pidfile until after fork (daemon).
 
 -- Magnus Ekdahl <magnus@debian.org>  Thu, 24 Apr 2003 20:27:45 +0200

clamav (0.54-7) unstable; urgency=low

  * fixed binary-indep/arch build rules (closes: Bug#186616)

 -- Magnus Ekdahl <magnus@debian.org>  Sat, 29 Mar 2003 16:28:19 +0100

clamav (0.54-6) unstable; urgency=low

  * changed arch any->all for clamav-testfiles (closes: Bug#184733)
  * added (deprecated) unarj option to keep qmail compability 
    (closes: Bug#184840)

 -- Magnus Ekdahl <magnus@debian.org>  Sun, 16 Mar 2003 17:26:31 +0100

clamav (0.54-5) unstable; urgency=high

  * fixed permission on /var/lib/clamav (closes: Bug#184433)
  * included security fix posted on clamav-users mailing list

 -- Magnus Ekdahl <magnus@debian.org>  Wed, 12 Mar 2003 22:07:04 +0100

clamav (0.54-4) unstable; urgency=low

  * added documentation concerning the database location (closes: Bug#183821)

 -- Magnus Ekdahl <magnus@debian.org>  Sat,  8 Mar 2003 10:46:07 +0100

clamav (0.54-3) unstable; urgency=low

  * updated virus database, including removal of bad Chemnitz signature
    (closes: Bug#181500)
  * replaced unarj with arj (closes: Bug#182283)
  * moved database to /usr. Soft links remain under /var (closes: Bug:#181204)

 -- Magnus Ekdahl <magnus@debian.org>  Mon,  3 Mar 2003 20:16:22 +0100

clamav (0.54-2) unstable; urgency=low

  * replaced close with dup2 in conjunction with -i option (closes:
    Bug#173376)
  * fixed missing build dependency (closes: Bug#170113)
  * updated virus database

 -- Magnus Ekdahl <magnus@debian.org>  Fri, 24 Jan 2003 17:25:24 +0100

clamav (0.54-1) unstable; urgency=low

  * new upstream version

 -- Magnus Ekdahl <magnus@debian.org>  Thu, 21 Nov 2002 20:08:18 +0100

clamav (0.53-1) unstable; urgency=low

  * new upstream version
  * added default localsocket (closes: Bug:#168302)

 -- Magnus Ekdahl <magnus@debian.org>  Sat,  9 Nov 2002 21:18:14 +0100

clamav (0.51-2) unstable; urgency=low

  * patch from Martin Lesser <admin-debian@bettercom.de>
  *   correct http-proxy code (closes: Bug#165141)
  * clamav-daemon. postinst and configure now traps db_* error codes
    using || true, which makes dpkg-preconfigure & co work (closes: Bug#165121)
  * rewrote the pidfile patch so its less intrusive
  * the daemon won't try to run as clamav until the FHS issues are resolved

 -- Magnus Ekdahl <magnus@debian.org>  Thu, 17 Oct 2002 20:01:57 +0200

clamav (0.51-1) unstable; urgency=low

  * new upstream version (closes: Bug#163406) (closes: Bug#155485)
  * patch from Marc Haber (closes: Bug#161916)
  *   properly clean up latex files during debian/rules clean
  *   make clamav build correctly with cvs-buildpackage
  * new build system/rules file
  * splitted package, new packages: libclamav1, libclamav1-dev, clamd
  * removed oav-support since upstream doesn't support it anymore
  * trashscan isn't even included in upstream anymore (closes: Bug#161202)
  * updated and splitted documentation
  * added clamd templates/config
  * clamd is a system command (clamd.1 -> clamd.8, /usr/bin -> /usr/sbin)
  * removed troublesome hardlink in docs/html/
  * updated docs again after upstream release 0.51
  * Made the daemon write pidfile to /var/run before releasing root rights
  * patch from Ola Lundqvist <opal@debian.org> (closes: Bug#164290)
  *   option --system to addgroup + delete the group in postrm
  * close fd 3 in clamd
  * made clamd more understanding for extra whitespaces in clamav.conf
  * clamav-daemon.config now prompts users for a correct value when they
    enter non-numerical values for numerical questions

 -- Magnus Ekdahl <magnus@debian.org>  Sat, 12 Oct 2002 16:15:50 +0200

clamav (0.24-3) unstable; urgency=low

  * added modified freshclam that should play nicely with oav-update.
  * added trashscan explanation in README.Debian

 -- Magnus Ekdahl <magnus@debian.org>  Tue, 17 Sep 2002 20:35:00 +0200

clamav (0.24-2) unstable; urgency=low

  * added support for custom database directories (by request from Marc
    Haber) after discussing integration with upstream (Tomasz)

 -- Magnus Ekdahl <magnus@debian.org>  Wed, 28 Aug 2002 15:12:23 +0200

clamav (0.24-1) unstable; urgency=low

  * new upstream version 0.24

 -- Magnus Ekdahl <magnus@debian.org>  Fri, 23 Aug 2002 15:52:24 +0200

clamav (0.23-4) unstable; urgency=low

  * added missing Buildepend on tetex-extra (closes: Bug#156367)

 -- Magnus Ekdahl <magnus@debian.org>  Mon, 12 Aug 2002 11:12:34 +0200

clamav (0.23-3) unstable; urgency=low

  * clamscan doesn't work with unrar v2.71, added versioned dependency
    (closes: Bug#156059)
  * fixed error in control description (bz2 isn't supported for now)

 -- Magnus Ekdahl <magnus@debian.org>  Fri,  9 Aug 2002 16:31:21 +0200

clamav (0.23-2) unstable; urgency=low

  * added .gz support
  * added bunzip2 support
  * fixed linewrapping in description (closes: Bug#155507)
  * Upstream are reworking the archive support part. Removed .gz/.bz2
    support, if you're really in a hurry the patch is available in the
    source as debian/GzBz2Support.diff. Upstream version will be fixed in 0.30.
  * fixed Builddepends (closes: Bug#155722)

 -- Magnus Ekdahl <magnus@debian.org>  Thu,  8 Aug 2002 09:58:45 +0200

clamav (0.23-1) unstable; urgency=low

  * now has upstreams names of debian docs
  * fixed lintian warning (Matthew Grant)
  * cleaned up debian/ (Matthew Grant)
  * new upstream version 0.23

 -- Magnus Ekdahl <magnus@debian.org>  Tue, 30 Jul 2002 11:06:23 +0200

clamav (0.22-1) unstable; urgency=low

  * added debconf template handling old freshclam cron entries (closes: Bug#154117)
  * added support for debian package scanning.
  * removed/replaced more generic docs with debian specific versions (closes: Bug#153789)
  * added sigtool
  * new upstream version 0.22

 -- Magnus Ekdahl <magnus@debian.org>  Wed, 24 Jul 2002 10:50:19 +0200

clamav (0.20-2) unstable; urgency=low

  * new upstream version 0.20

 -- Magnus Ekdahl <magnus@debian.org>  Mon, 15 Jul 2002 11:25:44 +0200

clamav (0.15-2) unstable; urgency=low

  * accepted changes from Matthew Grant (thank you Matthew).
  * Removed freshclam specific parts from description.
  * Removed Suggest/ Recommend on essential packages (Policy 2.3.4).
  * converted non-essential commands from postrm to essential (Policy 7.2).
  * fixed CPU autodetection (closes: Bug#149552)
  * added missing depends,recommends and suggestions (closes: Bug#151421)
  * Removed unneccesary docs (closes: Bug#151420)
  * Added extra check on detectCPU after mail from Tomasz (upstream).

 -- Magnus Ekdahl <magnus@debian.org>  Sun, 30 Jun 2002 16:36:15 +0200

clamav (0.15-1.mag.3) unstable; urgency=low

  * Added missing Recommends and Suggests fields to control file.

 -- Matthew Grant <grantma@anathoth.gen.nz>  Mon, 24 Jun 2002 23:17:45 +1200

clamav (0.15-1.mag.2) unstable; urgency=low

  * Removed cruft from package diff by going back to original tarball.
    Checked files that had been changed with "zcat *.diff.gz | fgrep '+++' ".
    None found apart from unneeded business in clamscan/Makefile.am and 
    freshclam/Makefile.am and running automake to change where viruses.db 
    lives.  This is now set up by defining pkgdatadir when making clamscan 
    in debian/rules.

 -- Matthew Grant <grantma@anathoth.gen.nz>  Mon, 24 Jun 2002 22:28:52 +1200

clamav (0.15-1.mag.1) unstable; urgency=low

  * Removed freshclam and associated files, and cron support
  * Changed viruses.db path to /var/lib/oav-virussignatures/viruses.db
  * Cleaned up debian directory - there was a lot of unnecessary cruft - 
    extra dir files etc.
  * Moved DMS documentation copying from rules into docs file
  * Added missing prerm script for debhelper documentation symlink removal
    as given in manpage for dh_installdocs
  * Removed preinst script as user is preferred to be added in postinst
    as per Policy Manual Section 11.9
  * Replaced most of the maintainer scripts as they tended to ignore all 
    arguments
  * Made deluser happen on purge and not remove in postrm as in gdm and pidentd 
    packages. Of course first tested for existence in passwd and group files.
    This is OK as by default no data is left behind when the package is 
    purged (consider when you purge a Web server - you want the pages probably).
  * Fixed addition of clamav user so that in 'postinst configure' it tests
    before adding the user, and take care that all the /etc/passwd fields
    are set securely.  
  * Made postinst script re-add clamav group just in case it is removed.
  * Removed dependency on cron.
  * Added dependency on oav-virussignatures pseudo-package.

 -- Matthew Grant <grantma@anathoth.gen.nz>  Mon, 24 Jun 2002 13:46:52 +1200

clamav (0.15-1) unstable; urgency=low

  * adapted to upstream version 0.15 (closes: Bug#149957)

 -- Magnus Ekdahl <magnus@debian.org>  Fri, 14 Jun 2002 14:41:40 +0200

clamav (0.14-2) unstable; urgency=low

  * Fixed confusing output from postinst script (closes: Bug#149552)

 -- Magnus Ekdahl <magnus@debian.org>  Mon, 10 Jun 2002 21:01:50 +0200

clamav (0.14-1) unstable; urgency=low

  * adapted to upstreams clamav v 0.14
  * made cron script use the clamav user

 -- Magnus Ekdahl <magnus@debian.org>  Fri, 31 May 2002 19:59:53 +0200

clamav (0.13-3) unstable; urgency=low

  * fixed wrong path references caused by previous fix (closes: Bug#148427)

 -- Magnus Ekdahl <magnus@debian.org>  Wed, 29 May 2002 10:43:01 +0200

clamav (0.13-2) unstable; urgency=low

  * moved the virus database to /var/lib/clamav (closes: Bug#148367)

 -- Magnus Ekdahl <magnus@debian.org>  Tue, 28 May 2002 15:36:46 +0200

clamav (0.13-1) unstable; urgency=low

  * Adapted debian package to new upstream version

 -- Magnus Ekdahl <magnus@debian.org>  Sat, 25 May 2002 18:45:07 +0200

clamav (0.12-1) unstable; urgency=low

  * fixed permissions on log file

 -- Magnus Ekdahl <magnus@debian.org>  Wed, 22 May 2002 21:32:23 +0200

clamav (0.11-1) unstable; urgency=low

  * Initial Release. Closes: #146283

 -- Magnus Ekdahl <magnus@debian.org>  Thu,  9 May 2002 11:06:00 +0200