~ubuntu-branches/ubuntu/vivid/postfix/vivid-proposed

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
postfix (2.10.0-2) unstable; urgency=low

  * Correctly set smtpd_relay_restrictions on upgrade to 2.10.0.
    Closes: #702374

 -- LaMont Jones <lamont@debian.org>  Thu, 14 Mar 2013 08:15:51 -0600

postfix (2.10.0-1) unstable; urgency=low

  [Wietse Venema]

  * New upstream version

  [LaMont Jones]

  * Fix fumbled merge to actually have the right maintainer address. 
    Closes: #699877
  * Fix how we copy $smtp_tls_CApath into the chroot.  LP: #1139159

 -- LaMont Jones <lamont@debian.org>  Mon, 04 Mar 2013 09:03:31 -0700

postfix (2.9.6-1) unstable; urgency=low

  [Wietse Venema]

  * New upstream version

  [Scott Kitterman]

  * reacquire NIS authentication, include libresolv in chroot.  Closes: #683687

  [LaMont Jones]

  * Drop bashism in init.d script.  Closes: #690936

 -- LaMont Jones <lamont@debian.org>  Tue, 05 Feb 2013 17:11:41 -0700

postfix (2.9.5-1ubuntu1) raring; urgency=low

  * Merge from Debian unstable.  Remaining changes:
    - Re-enabled NIS authentication which was inadvertently dropped

 -- Scott Kitterman <scott@kitterman.com>  Mon, 31 Dec 2012 17:13:13 -0500

postfix (2.9.5-1) unstable; urgency=low

  [Wietse Venema]

  * New upstream version

  [LaMont Jones]

  * memcache support was dropped in error as part of Debian packaging. 
    Reported by: Ács Gábor <acs.gabor@linuxprog.hu>
  * Merge remote-tracking branch 'origin/stable/v2.9' into stable/v2.9
  * Acknowledege 2.9.3-2.1 NMU, add Indonesian

  [localization folks]

  * l10n: Russian translation updates.  Closes: #677135 (Sergey Alyoshin)
  * l10n: Japanese translation updates.  Closes: #675738 (Kenshi Muto)
  * l10n: Catalan translation updates.  Closes: #675758 (Jordà Polo)
  * l10n: German translation updates.  Closes: #675999 (Helge Kreutzmann)
  * l10n: Dutch translation updates.  Closes: #675953 (Jeroen Schot)
  * l10n: Finnish translation updates.  Closes: #676178 (Tommi Vainikainen)
  * l10n: Indonesian translations.  Closes: #695644 (Mahyuddin Susanto)
  * l10n: Swedish translation updates.  Closes: #675994 (Martin Bagge)
  * l10n: Danish translation updates.  Closes: #675609 (Joe Dalton)
  * l10n: Czech translation updates.  Closes: #675574 (Miroslav Kure)
  * l10n: Add Polish debconf translation.  Closes: #676835 (Michał Kułach)
  * l10n: Portuguese translation updates.  Closes: #676260 (Miguel Figueiredo)
  * l10n: French translation updates.  Closes: #675904 (Christian Perrier)
  * l10n: Turkish translation updates.  Closes: #677056 (Atila KOÇ)
  * l10n: Italian translation updates.  Closes: #677349 (Cristian Rigamonti)

 -- LaMont Jones <lamont@debian.org>  Sun, 16 Dec 2012 21:40:56 -0700

postfix (2.9.3-2.1) unstable; urgency=low

  * Non-maintainer upload.
  * Fix pending l10n issues. Debconf translations:
    - Czech (Miroslav Kure).  Closes: #675574
    - Danish (Joe Hansen).  Closes: #675609
    - Japanese (Kenshi Muto).  Closes: #675738
    - Catalan; (Jord Polo).  Closes: #675758
    - French (Christian Perrier).  Closes: #675904
    - Dutch; (Jeroen Schot).  Closes: #675953
    - Swedish (Martin Bagge / brother).  Closes: #675994
    - German (Helge Kreutzmann).  Closes: #675999
    - Finnish (Tommi Vainikainen).  Closes: #676178
    - Portuguese (Miguel Figueiredo).  Closes: #676260
    - Polish (Michał Kułach).  Closes: #676835
    - Turkish (Atila KOÇ).  Closes: #677056
    - Russian (Sergey Alyoshin).  Closes: #677135
    - Italian (Cristian Rigamonti).  Closes: #677349
    - Spanish; (Matías A. Bellone).  Closes: #679290
    - Slovak (Ivan Masár).  Closes: #681529

 -- Christian Perrier <bubulle@debian.org>  Tue, 17 Jul 2012 20:33:40 -0600

postfix (2.9.3-2ubuntu2.1) quantal-proposed; urgency=low

  * Re-enabled NIS authentication which was inadvertently dropped
    (LP: #1068036)

 -- Scott Kitterman <scott@kitterman.com>  Thu, 18 Oct 2012 23:50:55 -0400

postfix (2.9.3-2ubuntu2) quantal; urgency=low

  * d/rules: Fix apport hook installation (LP: #1038527)

 -- Clint Byrum <clint@ubuntu.com>  Sat, 18 Aug 2012 15:45:12 -0700

postfix (2.9.3-2ubuntu1) quantal; urgency=low

  * Add libresolv to libs copied to chroot so postfix can resolve hostnames in
    remote maps (LP: #1023550)

 -- Scott Kitterman <scott@kitterman.com>  Fri, 27 Jul 2012 09:56:33 -0400

postfix (2.9.3-2) unstable; urgency=low

  [LaMont Jones]

  * add sqlite entry to dynamicmaps.cf on upgrade.  Closes: #675247

  [localization folks]

  * l10n: update spanish translations.  Closes: #674938 (Francisco Javier
    Cuadrado)

 -- LaMont Jones <lamont@debian.org>  Wed, 30 May 2012 22:40:11 -0600

postfix (2.9.3-1) unstable; urgency=low

  * New upstream

 -- LaMont Jones <lamont@debian.org>  Tue, 29 May 2012 20:15:26 -0600

postfix (2.9.2-1) unstable; urgency=low

  [Wietse Venema]

  - Bitrot: shut up useless warnings about Cyrus SASL call-back function
    pointer type mis-matches.
  - Bitrot: OpenSSL 1.0.1 introduces new protocols. Update the known TLS
    protocol list so that protocols can be turned off selectively to
    work around implementation bugs.  Based on a patch by Victor Duchovni.

  [LaMont Jones]

  * Suggest: postfix-doc, for completeness.  Closes: #670376

 -- LaMont Jones <lamont@debian.org>  Mon, 30 Apr 2012 18:58:47 -0600

postfix (2.9.1-5) unstable; urgency=low

  [LaMont Jones]

  * do not try to copy /etc/resolv.conf onto itself.  LP: #980682

  [localization folks]

  * l10n: updated Turkish debconf.  Closes: #669095 (Atila KOÇ)

 -- LaMont Jones <lamont@debian.org>  Mon, 23 Apr 2012 05:33:41 -0600

postfix (2.9.1-4) unstable; urgency=low

  [LaMont Jones]

  * postfix Depends: cpio.  Closes: #617703
  * create /dev/{,u}random for SSL.  Closes: #572841
  * cleanup cert copying code to handle trailing / on CApath

  [Sven Joachim]

  * add --quiet to cpio invocation.  Closes: #614675

  [localization folks]

  * l10n: Updated dutch debconf.  Closes: #668531 (Jeroen Schot)

 -- LaMont Jones <lamont@debian.org>  Fri, 13 Apr 2012 12:10:32 -0600

postfix (2.9.1-3) unstable; urgency=low

  [LaMont Jones]

  * Link with and use sqlite when building dict_sqlite.  add sqlite
    dictionary to dynamicmaps.cf. Closes: #666950
  * whitespace cleanup
  * Default to version3 of ldap, instead of version2.  Closes: #668095
  * address init script silent failure when cert copy fails.  Closes: #667055
  * copy libgcc_s.so into the postfix chroot so that pthread_cancel stays
    happy.  May address launchpad bug 970921.

  [David Olrik]

  * also need to link dict_sqlite.so against -lpthread. [Based on the patch
    from David.] Closes: #666693 LP: #978698

  [localization folks]

  * l10n: updated Russian debconf.  Closes: #666785 (Sergey Alyoshin)
  * l10n: updated Japanese debconf.  Closes: #666897 (Kenshi Muto)
  * l10n: Updated German debconf.  Closes: #666412 (Helge Kreutzmann)
  * l10n: updated Swedish debconf.  Closes: #668184 (Martin Bagge)
  * l10n: updated Danish debconf.  Closes: #668033 (Joe Dalton)
  * l10n: updated Czech debconf.  Closes: #668046 (Miroslav Kure)
  * l10n: updated Portuguese debconf.  Closes: #668210 (Miguel Figueiredo)
  * l10n: updated French debconf.  Closes: #666784 (Christian Perrier)
  * l10n: Turkish debconf.  Closes: #666533 (Atila KOÇ)
  * l10n: updated Italian debconf.  Closes: #667532 (Cristian Rigamonti)

 -- LaMont Jones <lamont@debian.org>  Thu, 12 Apr 2012 06:55:26 -0600

postfix (2.9.1-2) unstable; urgency=low

  * Drop unnecessary openssl check, since sonames will save us.

 -- LaMont Jones <lamont@debian.org>  Tue, 20 Mar 2012 13:47:16 -0600

postfix (2.9.1-1) unstable; urgency=low

  [Wietse Venema]

  * 2.9.1

  [Steve Langasek]

  * debian/update-libc.d: before we try to copy the resolv.conf over, just
    check if the service is running by calling /etc/init.d/postfix status.  If
    it's not running, there's never a need to copy, and if it's running we
    know the package is installed - making other checks superfluous and
    ensuring our hook doesn't exit non-zero if called before /var is mounted
    read-write.  LP: #927803.
  * debian/init.d: if postmulti fails (which for some reason it does when
    the rootfs is read-only in early boot!), the init script 'status' command
    returns zero because "all" of 0 configured instances are running.  Fix the
    script to return non-zero in this case.  LP: #927803.

  [LaMont Jones]

  * Cleanup root_address template, to reduce ambiguous meaning.  LP: #877150
  * revert debian/control maintainer changes from Ubuntu

 -- LaMont Jones <lamont@debian.org>  Sun, 11 Mar 2012 21:11:43 -0600

postfix (2.8.7-1ubuntu2) precise; urgency=low

  * debian/init.d: if postmulti fails (which for some reason it does when
    the rootfs is read-only in early boot!), the init script 'status'
    command returns zero because "all" of 0 configured instances are
    running.  Fix the script to return non-zero in this case.  LP: #927803.

 -- Steve Langasek <steve.langasek@ubuntu.com>  Fri, 17 Feb 2012 11:07:48 -0800

postfix (2.8.7-1ubuntu1) precise; urgency=low

  * debian/update-libc.d: before we try to copy the resolv.conf over, just
    check if the service is running by calling /etc/init.d/postfix status.
    If it's not running, there's never a need to copy, and if it's running
    we know the package is installed - making other checks superfluous and
    ensuring our hook doesn't exit non-zero if called before /var is mounted
    read-write.  LP: #927803.

 -- Steve Langasek <steve.langasek@ubuntu.com>  Thu, 16 Feb 2012 17:53:51 -0800

postfix (2.8.7-1) unstable; urgency=low

  [Wietse Venema]

  * New Upstream Version

  [LaMont Jones]

  * ack NMU
  * add debian/copyright file for lintian
  * Add SMTPS entry to ufw profile.  LP: #859658
  * Add sqlite map support.  LP: #774500  Closes: #651208
  * Fix linux 3.0 + multiarch FTBFS, based on patch from Loïc Minier.
    Closes: #643020

 -- LaMont Jones <lamont@debian.org>  Tue, 17 Jan 2012 19:48:32 -0700

postfix (2.8.5-1.1) unstable; urgency=high

  * Non-maintainer upload.
  * Fix FTBFS on kfreebsd with patch from Christoph Egger (closes: #640012).

 -- Julien Cristau <jcristau@debian.org>  Wed, 14 Dec 2011 23:33:12 +0100

postfix (2.8.5-1) unstable; urgency=low

  [Wietse Venema]

  * 2.8.5
    - Workaround: report a {client_connections} Milter macro value of zero
      instead of garbage, when the remote SMTP client is not subject to any
      smtpd_client_* limits. Problem reported by Christian Roessner.
    - Bugfix: allow for Milters that send an SMTP server reply without RFC 3463
      enhanced status code. Reported by Vladimir Vassiliev.

  [LaMont Jones]

  * remerge ubuntu fork: do not use dh_apport

 -- LaMont Jones <lamont@debian.org>  Wed, 05 Oct 2011 14:11:54 -0600

postfix (2.8.4-1ubuntu2) oneiric; urgency=low

  * makedefs: fix FTBFS for Linux 3.x + multiarch with same approach as in
    2.8.1-1ubuntu1 for the backported chunk added in 2.8.3-1ubuntu1.

 -- Loïc Minier <loic.minier@ubuntu.com>  Mon, 26 Sep 2011 01:47:30 +0200

postfix (2.8.4-1ubuntu1) oneiric; urgency=low

  * Add back in apport.  Debian lacks it, so the package is now
    forked. :(

 -- LaMont Jones <lamont@ubuntu.com>  Sat, 20 Aug 2011 14:39:33 -0600

postfix (2.8.4-1) unstable; urgency=low

  [Scott Kitterman]

  * Switch to debhelper 7, use dh_prep instead of dh_clean -k

  [Friedemann Stoyan]

  * create chroots with the right ca_path.  Closes: #627266

  [Wietse Venema]

  * Upstream fix release
    - Performance: a high load of DSN success notification requests
      could slow down the queue manager.
    - Bugfix (introduced Postfix 2.3 and Postfix 2.7): the Milter
      client reported some "file too large" errors as temporary
      errors.
    - Bugfix (introduced in Postfix 1.1, duplicated in Postfix
      2.3, unrelated mistake in Postfix 2.7): the local(8) delivery
      agent ignored table lookup errors in mailbox_command_maps,
      mailbox_transport_maps, fallback_transport_maps and (while
      bouncing mail to alias) alias owner lookup.
    - Bugfix (introduced Postfix 2.6 with master_service_disable)
      loop control error when parsing a malformed master.cf file.
    - Bugfix (introduced: Postfix 2.7): "sendmail -t" reported
      "protocol error" after queue file write error.
    - Linux kernel version 3 support.
    - Workaround: some Spamhaus RHSBL rejects lookups with "No
      IP queries" even if the name has an alphanumerical prefix.
      We play safe, and skip both RHSBL and RHSWL queries for
      names ending in a numerical suffix.

  [LaMont Jones]

  * apport, fix FTBFS on linux 3.0 - From ubuntu.
  * SASL vs multiarch.  Closes: #638443, #638045
  * Update init.d script to handle multi_instance setups.  Closes: #560682
  * Do not try to update resolv.conf when main.cf does not exist.  LP: #530323
  * Better handle bad map names in postmap -u.  LP: #647647
  * Drop apport usage, since debian lacks it and failing to build is bad.

 -- LaMont Jones <lamont@debian.org>  Sat, 20 Aug 2011 13:48:59 -0600

postfix (2.8.3-1ubuntu3) oneiric; urgency=low

  * src/xsasl/xsasl_cyrus_{client,server}.c: don't set a sasl callback for
    the path, only do so for the config path; we shouldn't override the
    already-correct module path built into cyrus-sasl2 itself,
    especially now that said path may change due to multiarch.

 -- Steve Langasek <steve.langasek@ubuntu.com>  Mon, 15 Aug 2011 20:10:53 -0700

postfix (2.8.3-1ubuntu2) oneiric; urgency=low

  * debian/rules: pass postfix to dh_apport so packages don't all get
    apport hook. (LP: #822566)

 -- Clint Byrum <clint@ubuntu.com>  Mon, 08 Aug 2011 10:46:18 -0500

postfix (2.8.3-1ubuntu1) oneiric; urgency=low

  * debian/source.apport: Adding postfix hook to help discover what
    invalid hostnames cause bug reports and stop obviously invalid
    names. (LP: #782204)
  * makedefs, sys/utils/sys_defs.h: Apply upstream patch to fix FTBFS
    with 3.0 kernel. (LP: #821609)

 -- Clint Byrum <clint@ubuntu.com>  Sat, 06 Aug 2011 08:20:40 -0700

postfix (2.8.3-1) unstable; urgency=low

  [Wietse Venema]

  * 2.8.3
    - Cleanup: postscreen(8) and verify(8) daemons now lock their respective
      cache file exclusively upon open, to avoid massive cache corruption
      by unsupported sharing.
    - Bugfix (introduced with Postfix SASL patch 20000314): don't reuse a
      server SASL handle after authentication failure.  CVE-2011-1720

  [LaMont Jones]
  * Ack ubuntu fixes for multiarch.  Closes: #620326, #625674

 -- LaMont Jones <lamont@debian.org>  Tue, 10 May 2011 08:40:13 -0600

postfix (2.8.2-1ubuntu2) natty-proposed; urgency=low

  * debian/init.d: copy both /lib/libnss_*.so and /lib/*/libnss_*.so to the
    chroot; this is overbroad since it will pick up NSS modules for
    architectures other than our own, but avoids a runtime dep on dpkg-dev
    or build-time munging of the init script.  Thanks to Kevin Sumner for
    the patch.  LP: #764096.

 -- Steve Langasek <steve.langasek@ubuntu.com>  Wed, 04 May 2011 14:48:07 -0700

postfix (2.8.2-1ubuntu1) natty; urgency=low

  * Merge from debian unstable.  Remaining changes:
    - makedefs: search all directories known by the compiler for our
      libraries, not just /lib and /lib64; fixing the build failure with
      multiarch.

 -- Scott Kitterman <scott@kitterman.com>  Mon, 04 Apr 2011 23:43:56 -0400

postfix (2.8.2-1) unstable; urgency=low

  [Wietse Venema]

  * new upstream, various bug fixes

 -- LaMont Jones <lamont@debian.org>  Tue, 22 Mar 2011 10:37:24 -0600

postfix (2.8.1-1ubuntu1) natty; urgency=low

  * makedefs: search all directories known by the compiler for our libraries,
    not just /lib and /lib64; fixing the build failure with multiarch.

 -- Steve Langasek <steve.langasek@ubuntu.com>  Fri, 01 Apr 2011 04:06:29 +0000

postfix (2.8.1-1) unstable; urgency=low

  [Wietse Venema]

  * new upstream version

  [Kees Cook]

  * debian/init.d: fix relative path problem in CA bundle chroot copying.
    Closes: #614748, #614750  LP: #723312

 -- LaMont Jones <lamont@debian.org>  Wed, 23 Feb 2011 02:04:21 -0700

postfix (2.8.0-2) unstable; urgency=low

  * a little more lintian cleanup
  * Fix missing format strings in smtp-sink.c

 -- LaMont Jones <lamont@debian.org>  Tue, 22 Feb 2011 11:20:43 -0700

postfix (2.8.0-1) unstable; urgency=low

  [Wietse Venema]
  * New Upstream

  [martin f krafft]
  * copy ssl certs to the chroot at startup more completely.  Closes: #287795

  [ Scott Kitterman ]
  * Update to compat 5 and bump required debhelper version to 5
  * Add Homepage: to debian/control
  * Switch x-vcs* fields to vcs* in debian/control
  * Bump standards version to 3.9.1.0
  * Expunge archaic references to the postfix-tls package from debian/control
  * Add dovecot-common to suggests as an alternate smtp-auth provider
  * Add smtp-auth providers to Should-Start and Should-Stop in init.d to
    finish dependency based boot support (Closes: #543472)
  * Update README.Debian to remove the obsolete reference to deviating from
    upstream on smtp_line_length_limit settings (Closes: #561426)
  * Include status declarartion in init script (Closes: #509922)
    - Thanks to Fladischer Michael for the patch

  [ LaMont Jones ]
  * A little bit more lintian cleanup.

 -- LaMont Jones <lamont@debian.org>  Mon, 21 Feb 2011 14:38:01 -0700

postfix (2.7.1-2) unstable; urgency=low

  [LaMont Jones]

  * dpkg-dev changed how it handled ${newline} in vars.in.  remove the space
    following.  Needs 1.15.5.  Closes: #579668

  [Gabriele 'LightKnight' Stilli]

  * Deliver insserv.conf.d/postfix for ordering.  Closes: #592920

  [Hideki Yamane]

  * Updates to Japanase debconf templates.  Closes: #591991

  [Thijs Kinkhorst]

  * Spelling error in Dutch templates translation.  Closes: #589538

  [Joe Dalton]

  * Danish translation of the debconf templates postfix.  Closes: #601128

  [Emanuele Aina]

  * Merge correction

 -- LaMont Jones <lamont@debian.org>  Wed, 27 Oct 2010 11:58:50 -0600

postfix (2.7.1-1) unstable; urgency=low

  [Matt Moen]

  * Create ca-certificates.crt for smtp{,d}_enforce_tls case, too.
    Closes: #575464

  [Wietse Venema]

  * New upstream release.

  [LaMont Jones]

  * add freebsd 8 support.  Closes: #570327
  * Drop tinycdb build-dep.  Closes: #577997

 -- LaMont Jones <lamont@debian.org>  Sun, 13 Jun 2010 18:30:59 -0600

postfix (2.7.0-1) unstable; urgency=low

  * New upstream release

 -- LaMont Jones <lamont@debian.org>  Wed, 17 Feb 2010 09:06:13 -0700

postfix (2.7.0~rc2-1) experimental; urgency=low

  * New upstream release

 -- LaMont Jones <lamont@debian.org>  Tue, 09 Feb 2010 15:18:45 -0700

postfix (2.7.0~rc1-1) experimental; urgency=low

  * New upstream release

  [Alexandre SIMON]

  * Have postfix-script look for itself in the right place.  Closes: #560051

 -- LaMont Jones <lamont@debian.org>  Sun, 07 Feb 2010 13:39:49 -0700

postfix (2.6.5-3) unstable; urgency=low

  [Andreas Olsson]

  * postrm: Remove /var/lib/postfix on purge.  LP: #348990

  [LaMont Jones]

  * Just use the first line of /etc/mailname.  Closes: #484246  LP: #251433
  * SECURITY-UPDATE: correct permissions on /var/spool/postfix/pid
    - adjust /var/spool/postfix/pid directory to be owned by root, not postfix.
    - CVE-2009-2930

 -- LaMont Jones <lamont@debian.org>  Fri, 18 Sep 2009 09:52:47 -0600

postfix (2.6.5-1ubuntu2) karmic; urgency=low

  [Andreas Olsson]

  * Removes /var/lib/postfix on purge (LP: #348990)

 -- Thierry Carrez <thierry.carrez@ubuntu.com>  Tue, 15 Sep 2009 11:18:03 +0200

postfix (2.6.5-2) unstable; urgency=low

  [Scott Kitterman]

  * Recommend: python for postfix-add-* scripts.

  [LaMont Jones]

  * Merge ubuntu changes

 -- LaMont Jones <lamont@debian.org>  Tue, 01 Sep 2009 22:04:01 -0600

postfix (2.6.5-1ubuntu1) karmic; urgency=low

  * Merge from Debian unstable (no previous delta)
  * Add python recommends to postfix for postfix-add-* scripts

 -- Scott Kitterman <scott@kitterman.com>  Tue, 01 Sep 2009 09:06:43 -0400

postfix (2.6.5-1) unstable; urgency=low

  [Wietse Venema]

  * New upstream release: 2.6.5

  [Francisco Javier Cuadrado]

  * Updated spanish translations.  Closes: #523463

 -- LaMont Jones <lamont@debian.org>  Mon, 31 Aug 2009 20:22:38 -0600

postfix (2.6.3-1) unstable; urgency=low

  [Wietse Venema]

  * New upstream version

  [LaMont Jones]

  * update mysql build-deps

 -- LaMont Jones <lamont@debian.org>  Sat, 15 Aug 2009 00:08:20 -0600

postfix (2.6.2~rc1-1) unstable; urgency=low

  [Wietse Venema]

  * New upstream release: 2.6.2~rc1

  [LaMont Jones]

  * move postfix-add-{filter,policy} manpages to section 8, and deliver
  * provide: default-mta on ubuntu

 -- LaMont Jones <lamont@debian.org>  Wed, 03 Jun 2009 14:17:08 -0600

postfix (2.6.1-0) experimental; urgency=low

  [Wietse Venema]

  * New upstream version.

  [LaMont Jones]

  * Ack NMU.  Closes: #311812

 -- LaMont Jones <lamont@debian.org>  Thu, 28 May 2009 03:57:46 -0600

postfix (2.5.5-1.1) unstable; urgency=medium

  * Non-maintainer upload.
  * Add rsyslog.d config snipped to create a /dev/log syslog socket in the
    postfix chroot.  Also, add a note about other syslog daemons to
    README.Debian.  Closes: #311812

 -- Christoph Berg <myon@debian.org>  Sun, 07 Sep 2008 14:02:15 +0200

postfix (2.5.5-1) unstable; urgency=low

  [Wietse Venema]

  * local file descriptor leak with 2.6 kernels and epoll.

 -- LaMont Jones <lamont@debian.org>  Tue, 02 Sep 2008 07:20:37 -0600

postfix (2.5.4-2) unstable; urgency=low

  [Nicolas Valcárcel]

  * Add ufw integration (from 2.5.4-1ubuntu2)

  [LaMont Jones]

  * mail_params: drop relay_domains from default
    parent_domain_matches_subdomains.  LP: #242383

  [Kees Cook]

  * debian/{control,rules}: enable PIE hardening (from 2.5.4-1ubuntu1)

  [Scott Kitterman]

  * Add postfix-add-{filter,policy} scripts for easier integration of
    same.  LP: #247332

 -- LaMont Jones <lamont@debian.org>  Thu, 28 Aug 2008 22:25:32 -0600

postfix (2.5.4-1) unstable; urgency=low

  [Wietse Venema]

  * New upstream release:
    - Bugfix: dangling pointer in vstring_sprintf_prepend()
    - Harden delivery to symlink destinations.  CVE-2008-2936

 -- LaMont Jones <lamont@debian.org>  Wed, 13 Aug 2008 21:21:10 -0600

postfix (2.5.3-1) unstable; urgency=low

  [Wietse Venema]

  * new upstream
    - Bugfix: null-terminate CN comment string after sanitization.
    - Workaround: avoid "bad address pattern" errors with non-address
      patterns in namadr_list_match() calls.
    - Bugfix (introduced 20080207): "cleanup -v" panic because
      the new "SMTP reply" request flag did not have a printable
      name.
    - Cleanup: using "Before-queue content filter", RFC3848
      information was not added to the headers. Carlos Velasco.
    - Cleanup: a poorly-implemented integer overflow check for
      TCP MSS calculation had the unexpected effect that people
      broke Postfix on LP64 systems while attempting to silence
      a compiler warning.
    - Paranoia: defer delivery when a mailbox file is not owned
      by the recipient. Requested by Sebastian Krahmer, SuSE.
      Specify "strict_mailbox_ownership=no" to ignore ownership
      discrepancies.

  [LaMont Jones]

  * config: use inet_protocols from main.cf if set.  Closes: #486141

  [localization folks]

  * l10n: Swedish debconf templates.  Closes: #491425 (Martin Ågren)

 -- LaMont Jones <lamont@debian.org>  Tue, 12 Aug 2008 10:29:50 -0600

postfix (2.5.2-2) unstable; urgency=low

  [localization folks]

  * l10n: Catalan debconf template update.  Closes: #490112 (Jordà Polo)
  * l10n: Vietnamese debconf templates translation update.  Closes: #483653
    (Clytie Siddall)
  * l10n: Korean postfix debconf PO translation update.  Closes: #484844
    (Sunjae Park)
  * l10n: Updated Japanese translations.  Closes: #483511 (Kenshi Muto)
  * l10n: Updated Russian translations (Sergey Alyoshin)
  * l10n: Updated German translations.  Closes: #483648 (Helge Kreutzmann)
  * l10n: Updated Finnish translation (Tommi Vainikainen)
  * l10n: Updated Dutch po-debconf translation.  Closes: #483652 (cobaco (aka
    Bart Cornelis))
  * l10n: French debconf templates translation update.  Closes: #483835
    (Christian Perrier)
  * l10n: Galician debconf template translation for postfix.  Closes: #483720
    (Jacobo Tarrio)
  * l10n: updated Czech translations.  Closes: #483978 (Miroslav Kure)
  * l10n: Portuguese translation for postfix's debconf messages (Miguel
    Figueiredo)
  * l10n: Updated Portuguese translation.  Closes: #488052 (Traduz -
    Portuguese Translation Team)
  * l10n: updated Italian translations. (Cristian Rigamonti)

 -- LaMont Jones <lamont@debian.org>  Thu, 10 Jul 2008 09:54:27 -0600

postfix (2.5.2-1) unstable; urgency=low

  [Kenshi Muto]

  * l10n: updated Japanese debconf translation

  [Piarres Beobide]

  * l10n: Basque translation.  Closes: #483238

  [LaMont Jones]

  * postinst/init.d: blacklist common misconfiguration values for myorigin
  * config: if myorigin is blacklisted, set to default and prompt
  * debconf: allow ==default== as an answer for myorigin, to help with
    preseeding.
  * update template to better explain mailname.

 -- LaMont Jones <lamont@debian.org>  Thu, 29 May 2008 19:58:30 -0600

postfix (2.5.2-0) unstable; urgency=low

  [Wietse Venema]

  * New upstream release

  [Sergey Alyoshin]

  * l10n: Po debconf Russian translation.  Closes: #479776

  [LaMont Jones]

  * meta: fix changelog
  * finish cherrypick of 2.5.2~rc2 fixes.
  * lintian: don't depend on a -1 version of a package
  * meta: fix MySQL/PostgreSQL spelling
  * doc-base: change to Network/Communication

  [Rudy Godoy Guillén]

  * l10n: Spanish debconf translation update.  Closes: #480750

  [Michel Grentzinger]

  * l10n: french debconf templates update.  Closes: #468392

  [Jacobo Tarrio]

  * l10n: new Galacian translations.  Closes: #480973

  [Miroslav Kure]

  * l10n: updated Czech (cs.po).  Closes: #480927

 -- LaMont Jones <lamont@debian.org>  Wed, 14 May 2008 21:30:25 -0600

postfix (2.5.1-2ubuntu1) hardy; urgency=low

  * (2.5.2-0 or later contains all these fixes.)

  [ LaMont Jones]

  * cherry-pick upstream fixes
    - bounce: segv on one-line template text.
    - sasl: enforce mechanism output filter on client command input.
    - milter-app callbacks didn't receive {mail_addr} or {rcpt_addr}
      information
    - warn_if_reject reject_unlisted_recipient/sender worked incorrectly
    - qmgr was incorrectly initializing client logging attributes

  [Michel Grentzinger]

  * l10n: french debconf templates update.  Closes: #468392

 -- LaMont Jones <lamont@debian.org>  Tue, 15 Apr 2008 21:55:08 -0600

postfix (2.5.2~rc2-1) unstable; urgency=low

  [Wietse Venema]

  * Upstream changes, including:
    - bounce: segv on one-line template text.
    - sasl: enforce mechanism output filter on client command input.

 -- LaMont Jones <lamont@debian.org>  Mon, 14 Apr 2008 09:20:11 -0600

postfix (2.5.1-2) unstable; urgency=low

  [Michael Vogt]

  * postfix-doc: run postconf only if there is a main.cf available.  LP: #203849

  [LaMont Jones]

  * main.cf.tls: put cache files in the right directory.  LP: #207526

  [cobaco (aka Bart Cornelis)]

  * l10n: new nl.po.  Closes: #467538

 -- LaMont Jones <lamont@debian.org>  Wed, 02 Apr 2008 07:15:03 -0600

postfix (2.5.1-1) unstable; urgency=low

  [Helge Kreutzmann]

  * l10n: new de.po.  Closes: #465479

  [Wietse Venema]

  * New upstream release

  [LaMont Jones]

  * rules: add msg-email target

 -- LaMont Jones <lamont@debian.org>  Thu, 21 Feb 2008 22:17:18 -0700

postfix (2.5.1~rc1-1) unstable; urgency=low

  [Scott Kitterman]

  * Add IPv6 loopback addresses to default mynetworks in debian/templates.  Closes: #345047

  [Benjamin Sonntag]

  * SSL certs are needed by the (chrooted) smtp and smtpd processes.  Closes: #444951

  [Wietse Venema]

  * 2.5.1~rc1

  [LaMont Jones]

  * postconf.5: myhostname documenation unclear.  LP: #180551
  * postinst: also set relay_transport=error on Local Only systems
  * new template

  [Miguel Figueiredo]

  * l10n: new pt.po.  Closes: #463188

 -- LaMont Jones <lamont@debian.org>  Fri, 08 Feb 2008 23:47:04 -0700

postfix (2.4.7-1) unstable; urgency=low

  [Wietse Venema]

  * backport of several fixes from 2.5.0

  [LaMont Jones]

  * Package-n-upload

 -- LaMont Jones <lamont@debian.org>  Fri, 01 Feb 2008 15:27:31 -0700

postfix (2.5.0-1) experimental; urgency=low

  [Sergey Alyoshin]

  * l10n: new ru.po

  [Clytie Siddall]

  * l10n: new vi.po

  [LaMont Jones]

  * init.d: running check should handle prelinked systems.  Closes: #456940
  * install/upgrade: suppress 'Unknown host' errors.  Closes: #259097
  * rules: suppress command output in msgstats target.
  * l10n: dropped quote char in it.po
  * postinst: set default transport to error on 'Local only' systems.

  [Kenshi Muto]

  * l10n: new ja.po.  Closes: #462187

  [Jordà Polo]

  * l10n: New Catalan ca.po.  Closes: #461803

  [cobaco (aka Bart Cornelis)]

  * l10n: new nl.po

  [Jacobo Tarrio]

  * l10n: new gl.po.  Closes: #461777

  [Tirumurti Vasudevan]

  * l10n: Updated Tamil translations.  Closes: #461840

  [Cristian Rigamonti]

  * l10n: new it.po.  Closes: #461791

  [Wietse Venema]

  * 2.5.0

  [Sunjae Park]

  * l10n: new ko.po.  Closes: #462195

 -- LaMont Jones <lamont@debian.org>  Thu, 24 Jan 2008 21:55:59 -0700

postfix (2.4.6-5) unstable; urgency=low

  [Sergey Alyoshin]

  * l10n: new ru.po

  [Clytie Siddall]

  * l10n: new vi.po

  [Sunjae Park]

  * l10n: new ko.po.  Closes: #462195

  [LaMont Jones]

  * Deliver /var/spool/postfix/usr/lib/sasl2.  Closes: #426338
  * init.d: running check should handle prelinked systems.  Closes: #456940
  * install/upgrade: suppress 'Unknown host' errors.  Closes: #259097
  * rules: suppress command output in msgstats target.
  * l10n: dropped quote char in it.po
  * postinst: set default transport to error on 'Local only' systems.

  [Jordà Polo]

  * l10n: New Catalan ca.po.  Closes: #461803

  [Jacobo Tarrio]

  * l10n: new gl.po.  Closes: #461777

  [cobaco (aka Bart Cornelis)]

  * l10n: new nl.po

  [Michel Grentzinger]

  * l10n: new fr.po.  Closes: #460086

  [Kenshi Muto]

  * l10n: new ja.po.  Closes: #462187

  [Tirumurti Vasudevan]

  * l10n: Updated Tamil translations.  Closes: #461840

  [Cristian Rigamonti]

  * l10n: new it.po.  Closes: #461791

 -- LaMont Jones <lamont@debian.org>  Thu, 24 Jan 2008 21:06:21 -0700

postfix (2.5.0~rc2-1) experimental; urgency=low

  [Wietse Venema]

  * New upstream release

  [LaMont Jones]

  * lintian: eliminate warnings
  * Deliver /var/spool/postfix/usr/lib/sasl2.  Closes: #426338
  * fix directory permissions on /var/lib/postfix at install

  [Michel Grentzinger]

  * l10n: new fr.po.  Closes: #460086

 -- LaMont Jones <lamont@debian.org>  Sat, 19 Jan 2008 09:31:39 -0700

postfix (2.4.6-4) unstable; urgency=low

  [Piarres Beobide]

  * l10n: New Basque translations.  Closes: #457293

  [LaMont Jones]

  * control: drop deprecated Source-Version
  * lintian: eliminate warnings
  * postfix-doc cannot use postconf without checking for existance.  LP: #173868

  [Michel Grentzinger]

  * l10n: French debconf templates translation update.  Closes: #457452

 -- LaMont Jones <lamont@debian.org>  Tue, 18 Dec 2007 08:04:31 -0700

postfix (2.5-20071224-1) experimental; urgency=low

  * New upstream release

 -- LaMont Jones <lamont@debian.org>  Wed, 26 Dec 2007 17:41:11 -0700

postfix (2.5-20071221-1) experimental; urgency=low

  [Piarres Beobide]

  * l10n: New Basque translations.  Closes: #457293

  [Wietse Venema]

  * New upstream release

  [LaMont Jones]

  * control: drop deprecated Source-Version
  * lintian: eliminate warnings

  [Michel Grentzinger]

  * l10n: French debconf templates translation update.  Closes: #457452

 -- LaMont Jones <lamont@debian.org>  Sat, 22 Dec 2007 20:48:28 -0700

postfix (2.5-20071216-1) experimental; urgency=low

  [Wietse Venema]
  * New upstream release

 -- LaMont Jones <lamont@debian.org>  Mon, 17 Dec 2007 22:20:30 -0700

postfix (2.5-20071213-1) experimental; urgency=low

  * New upstream version

 -- LaMont Jones <lamont@debian.org>  Fri, 14 Dec 2007 05:10:29 -0700

postfix (2.5-20071208-1) experimental; urgency=low

  * New upstream version.

  [Helge Kreutzmann]

  * l10n: German translations.  Closes: #454337

  [LaMont Jones]

  * postinst: let postfix-doc exist without postconf.  Closes: #453805
  * control: cleanup ancient Replaces: cruft.

 -- LaMont Jones <lamont@debian.org>  Sun, 09 Dec 2007 18:33:28 -0700

postfix (2.5-20071203-1) experimental; urgency=low

  [Wietse Venema]

  * New upstream

  [Mike O'Connor]

  * init.d: LSB compliance.  Closes: #451595

 -- LaMont Jones <lamont@debian.org>  Sat, 01 Dec 2007 08:20:30 -0700

postfix (2.4.6-3) unstable; urgency=low

  [Helge Kreutzmann]

  * l10n: German translations.  Closes: #454337

  [LaMont Jones]

  * postinst: let postfix-doc exist without postconf.  Closes: #453805
  * control: cleanup ancient Replaces: cruft.

 -- LaMont Jones <lamont@debian.org>  Sat, 01 Dec 2007 08:20:30 -0700

postfix (2.5-20071111-1) experimental; urgency=low

  [Wietse Venema]

  * New upstream release

  [LaMont Jones]

  * Merge 2.4.6-2 changes forward to 2.5 branch

 -- LaMont Jones <lamont@debian.org>  Mon, 12 Nov 2007 09:52:01 -0700

postfix (2.5-20071006-1) experimental; urgency=low

  * New upstream:
    - smtp-sink: per-command delays
    - Logging improvements
    - *qmgr: it's OK when corrupt queue files are deleted before they can
      be saved.
    - flush: force atime update on per-dest logfile
    - util: event_mask_drain() was missing event mask init
    - and more.

 -- LaMont Jones <lamont@debian.org>  Sun, 07 Oct 2007 09:57:01 -0600

postfix (2.5-20070911-1) experimental; urgency=low

  * New upstream

 -- LaMont Jones <lamont@debian.org>  Tue, 11 Sep 2007 16:51:05 -0600

postfix (2.5-20070824-2) experimental; urgency=low

  * Switch to db4.6.  Closes: #355434

 -- LaMont Jones <lamont@debian.org>  Fri, 31 Aug 2007 10:38:47 -0600

postfix (2.5-20070824-1) experimental; urgency=low

  * New upstream

 -- LaMont Jones <lamont@debian.org>  Thu, 30 Aug 2007 23:16:31 -0600

postfix (2.4.6-2) unstable; urgency=low

  [Jacobo Tarrio]

  * l10n: new gl.po.  Closes: #447931

  [cobaco (aka Bart Cornelis)]

  * l10n: new nl.po file.  Closes: #447717

  [Mike O'Connor]

  * init.d: LSB compliance.  Closes: #451595

  [LaMont Jones]

  * sys_defs.h: switch to using getifaddrs(3) with glibc 2.4 and later
  * templates: add units to mailbox size question.  LP: #35329
  * main.cf: set {readme,html}_directory when postfix-doc is installed.  LP: #135851
  * postinst: add retry service as needed, which sadly changes templates again.  LP: #172925

 -- LaMont Jones <lamont@debian.org>  Thu, 08 Nov 2007 21:20:05 -0700

postfix (2.4.6-1) unstable; urgency=low

  * New upstream:
    - TLS client cert with unparsable canonical name -> assert
    - util: event_mask_drain() was missing event mask init
    - flush: force atime update on per-dest logfile

  [LaMont Jones]

  * l10n: no ca.po.  Closes: #446400
  * l10n: new ja.po.  Closes: #446565

 -- LaMont Jones <lamont@debian.org>  Fri, 19 Oct 2007 00:15:41 -0600

postfix (2.4.5-4) unstable; urgency=low

  [ Wietse Venema ]
  * smtpd: unparsable canonical name led to an assertion failure

  [ LaMont Jones ]
  * examples: add mailqfmt.pl in -doc. Closes: #440814
  * l10n: updated French translations.  Closes: #440525
  * control: switch to db 4.6
  * control: Document move to git repository location, add vcs-* fields to source
  * copyright: document move to git.debian.org
  * l10n: Updated german translations. Closes: #438414

 -- LaMont Jones <lamont@debian.org>  Tue, 11 Sep 2007 23:18:43 -0600

postfix (2.4.5-3) unstable; urgency=low

  * LFS file changes.  Closes: #434851
  * Typo in postconf.5.  Closes: #426312.
  * Catalan debconf templates translation update.  Closes: #430852

 -- LaMont Jones <lamont@debian.org>  Wed, 15 Aug 2007 01:10:11 -0600

postfix (2.4.5-2) unstable; urgency=low

  * debconf script had some issues backing up.  (LP: #43615)
  * Suggest: mail-reader.  Closes: #437937, #437938
  * Only add postmaster alias one time.  Closes: #436269
  * Don't allow multiple relay hosts.  Closes: #433321

 -- LaMont Jones <lamont@debian.org>  Tue, 14 Aug 2007 17:28:14 -0600

postfix (2.5-20070731-0) experimental; urgency=low

  * Latest snapshot release

 -- LaMont Jones <lamont@debian.org>  Thu,  2 Aug 2007 12:33:51 -0600

postfix (2.4.5-1) unstable; urgency=low

  * New upstream
    - various milter fixes
    - performance improvements on loopback smtp connections
  * Merge changes from Ubuntu
    - debian/postfix.postinst:
      - Rename fallback_relay to smtp_fallback_relay in generated master.cf
        (LP: #121823)
    - debian/update-libc:
      - Don't raise an error if Postfix isn't running yet (LP: #41302)
  * Korean debconf template.  Closes: #430752
  * Move postfix into git: git://kernel.ubuntu.com/lamont/postfix.git
  * Drop dpatch use.

 -- LaMont Jones <lamont@debian.org>  Tue, 31 Jul 2007 21:56:24 -0600

postfix (2.4.3-1) unstable; urgency=low

  * New upstream version
  * Cleanup merge markers in changelog.  Closes: #420411
  * Remove stale code in preinst.  Upgrading from pre-sarge versions no
    longer works.  Closes: #420413
  * Template file overhaul to go with stale code removal, and translations
    Closes: #420156, #422339, #422975, #423110, #423367, #423876, #423878,
    #423894, #424689, #424762, #425411, #425682, #425980, #426052, #426214,
    #426329, #426833

 -- LaMont Jones <lamont@debian.org>  Fri,  1 Jun 2007 23:14:55 -0600

postfix (2.4.0-3) unstable; urgency=low

  * Have preinst get user approval before installing (and being broken) on a
    pre-2.6 kernel.  Closes: #417530

 -- LaMont Jones <lamont@debian.org>  Sun, 15 Apr 2007 16:00:44 -0600

postfix (2.4.0-2) unstable; urgency=low

  * TLS path should use ${config_directory}/sasl, not /etc/postfix/sasl.
  * Drop libgdbm-dev, since it's not used anymore.
  * switch back to libdb4.3, since libnss (and others?) haven't yet either.
    Reopens:  #355434.  Closes: #416765, #416748

 -- LaMont Jones <lamont@debian.org>  Fri, 30 Mar 2007 08:41:30 -0600

postfix (2.4.0-1) unstable; urgency=low

  * New upstream version

 -- LaMont Jones <lamont@debian.org>  Thu, 29 Mar 2007 12:24:22 -0600

postfix (2.4.0~rc9-1) experimental; urgency=low

  * new upstream version

 -- LaMont Jones <lamont@debian.org>  Mon, 26 Mar 2007 10:55:15 -0600

postfix (2.4.0~rc8-1) experimental; urgency=low

  * New upstream version
  * Merge 2.3.8-3 parts
    - No need to call lsb_release during init

 -- LaMont Jones <lamont@debian.org>  Sat, 24 Mar 2007 09:43:19 -0600

postfix (2.3.8-3) unstable-UNRELEASED; urgency=low

  * No need to call lsb_release during init.d

 -- LaMont Jones <lamont@debian.org>  Sat, 24 Mar 2007 09:39:45 -0600

postfix (2.4.0~rc7-1) experimental; urgency=low

  * New upstream version

 -- LaMont Jones <lamont@debian.org>  Wed, 21 Mar 2007 12:00:43 -0600

postfix (2.4.0~rc6-1) experimental; urgency=low

  * New upstream version

 -- LaMont Jones <lamont@debian.org>  Mon, 19 Mar 2007 07:14:06 -0600

postfix (2.4.0~rc5-1) experimental; urgency=low

  * New upstream version
  * Merge 2.3.8-2 released bits.

 -- LaMont Jones <lamont@debian.org>  Tue, 13 Mar 2007 08:02:36 -0600

postfix (2.4.0~rc4-1) experimental; urgency=low

  * New upstream version.
  * Merge from unstable as below.  Closes: #414392

 -- LaMont Jones <lamont@debian.org>  Mon, 12 Mar 2007 12:09:59 -0600

postfix (2.3.8-2) unstable; urgency=low

  * Updated Czech debconf template.  Closes: #414392

 -- LaMont Jones <lamont@debian.org>  Mon, 12 Mar 2007 22:42:23 -0600

postfix (2.3.8-1) unstable; urgency=low

  * New upstream version:
    - Workaround: GNU POP3D creates a new mailbox and deletes the
      old one. Postfix now backs off and retries delivery later,
      instead of appending mail to a deleted file.  File:
      global/mbox_open.c.
    - Workaround: Disable SSL/TLS ciphers when the underlying
      symmetric algorithm is not available in the OpenSSL crypto
      library at the required bit strength. Problem observed with
      SunOS 5.10's bundled OpenSSL 0.9.7 and AES 256. Also possible
      with OpenSSL 0.9.8 and CAMELLIA 256. Root cause fixed in
      upcoming OpenSSL 0.9.7m, 0.9.8e and 0.9.9 releases. Victor
      Duchovni, Morgan Stanley. Files: src/smtp/smtp_proto.c,
      src/smtpd/smtpd.c, src/tls/tls.h, src/tls/tls_client.c,
      src/tls/tls_misc.c and src/tls/tls_server.c.
  * Correct check for new (empty) answer to root alias debconf question.
    Introduced in 2.3.6-2.  Closes: #413610, #413086

 -- LaMont Jones <lamont@debian.org>  Fri,  2 Mar 2007 16:12:26 -0700

postfix (2.4.0~rc2-1) experimental; urgency=low

  * New upstream version
  * merge 2.3.7-4
  * Switch to libdb4.5.  Closes: #355434

 -- LaMont Jones <lamont@debian.org>  Fri,  2 Mar 2007 11:11:11 -0700

postfix (2.4-20070224-1) experimental; urgency=low

  * New upstream

 -- LaMont Jones <lamont@debian.org>  Mon,  5 Mar 2007 21:43:22 -0700

postfix (2.3.7-4) unstable; urgency=low

  * New russian, portugese, spanish, galician debconf templates.
    Closes: #411941, #412205, #412413, #412494

 -- LaMont Jones <lamont@debian.org>  Mon, 26 Feb 2007 14:04:32 -0700

postfix (2.3.7-3) unstable; urgency=low

  * Really fix update-inetd's verboseness, by running it after dh_stop.
    Closes: #410871

 -- LaMont Jones <lamont@debian.org>  Wed, 14 Feb 2007 21:41:37 -0700

postfix (2.3.7-2) unstable; urgency=low

  * Don't let update-inetd spew garbage to debconf.  Closes: #410871

 -- LaMont Jones <lamont@debian.org>  Tue, 13 Feb 2007 21:47:27 -0700

postfix (2.3.7-1) unstable; urgency=low

  * New upstream version
    - Bugfix (introduced Postfix 2.3): when creating an alias map
      on a NIS-enabled system, don't case-fold the YP_MASTER_NAME
      and YP_LAST_MODIFIED lookup keys. This requires that an
      application can turn off case folding on the fly. This is
      a point fix. A complete fix requires updates to other map
      types and to the proxymap protocol, which is too much change
      for a stable release.
    - Bugfix (introduced 20011008): after return from a nested
      access restriction, possible longjump into exited stack
      frame upon configuration error or table lookup error.
    - Workaround: don't insert empty-line header/body separator
      into malformed MIME attachments, to avoid breaking digital
      signatures. This change introduces ambiguity. Postfix still
      treats the remainder of the attachment as body content;
      header_checks rules will not detect forbidden MIME types
      inside a message/rfc822 attachment.  With the empty-line
      header/body separator no longer inserted by Postfix, other
      software may process the malformed attachment differently,
      and thus may become exposed to forbidden MIME types.  This
      is back-ported from Postfix 2.4.
    - Bugfix: match lists didn't implement ![ipv6address].
  * New fr.po
  * Updated postfix_groups.pl.  Closes: #409009, #409010

 -- LaMont Jones <lamont@debian.org>  Wed, 31 Jan 2007 12:45:49 -0700

postfix (2.3.6-2) unstable; urgency=low

  * Fix preinst checking mydomain.  Closes: #407790, #408089
  * Deal with debconf silliness.  Closes: #387646
  * Don't directly call initscript in prerm.
  * Updated Dutch, Czech, Galician templates. Closes: #407433, #407832, #407959
  * Change the "I'm stupid enough to not want a root alias" answer from the
    localization-problematic 'NONE' to the empty string, and mark it
    non-translatable.  Closes: #389675
    - changes to ca.po, de.po, gl.po, ja.po, nl.po for same

 -- LaMont Jones <lamont@debian.org>  Tue, 23 Jan 2007 07:46:45 -0700

postfix (2.4-20070218-1) experimental; urgency=low

  * New upstream version

 -- LaMont Jones <lamont@debian.org>  Tue, 20 Feb 2007 18:29:37 -0700

postfix (2.4-20070202-1) experimental; urgency=low

  * New upstream version
    - GNU/kFreeBSD case fix in makedefs.  Closes: #409036

 -- LaMont Jones <lamont@debian.org>  Fri,  2 Feb 2007 22:21:40 -0700

postfix (2.4-20070201-1) experimental; urgency=low

  * New upstream release
    - various fixes incorporated upstream.  Removes: 10man, 10tlsmgr,
    10warnings, 30hurd.  Closes: #398396, #409036
  * prng_exch belongs in /var/lib/postfix, not in the chroot.

 -- LaMont Jones <lamont@debian.org>  Fri,  2 Feb 2007 02:18:40 -0700

postfix (2.4-20070125-1) experimental; urgency=low

  * New upstream version

 -- LaMont Jones <lamont@debian.org>  Fri, 26 Jan 2007 07:00:10 -0700

postfix (2.4-20070123-1) experimental; urgency=low

  * New upstream
  * Drop the smtplinelength patch and join upstream (since 2.0) in standards
    conformance of breaking smtp lines longer than $smtp_line_length_limit.
    See /usr/share/doc/postfix/NEWS.Debian.gz
  * Merge 2.3.6-2 final.

 -- LaMont Jones <lamont@debian.org>  Wed, 24 Jan 2007 07:28:15 -0700

postfix (2.4-20070119-1) experimental; urgency=low

  * New upstream.

 -- LaMont Jones <lamont@debian.org>  Fri, 19 Jan 2007 10:16:39 -0700

postfix (2.4-20070113-1) experimental; urgency=low

  * New upstream version
  * merge 2.3.6-1, and the beginnings of -2

 -- LaMont Jones <lamont@debian.org>  Sun, 14 Jan 2007 22:12:17 -0700

postfix (2.4-20061229-1) experimental; urgency=low

  * New upstream

 -- LaMont Jones <lamont@debian.org>  Mon,  1 Jan 2007 10:03:43 -0700

postfix (2.4-20061224-1) experimental; urgency=low

  * New upstream
  * Merge in 2.3.5-4

 -- LaMont Jones <lamont@debian.org>  Mon, 25 Dec 2006 12:31:13 -0700

postfix (2.3.6-1) unstable; urgency=low

  * New upstream version
  * French debconf template.  Closes: #404132
  * Galician debconf template.  Closes: #404573
  * fix typos in debconf messages.  Closes: #399916
  * Catalan debconf template.  Closes: #405320

 -- LaMont Jones <lamont@debian.org>  Fri,  5 Jan 2007 19:31:31 -0700

postfix (2.4-20061217-1) experimental; urgency=low

  * New upstream

 -- LaMont Jones <lamont@debian.org>  Mon, 18 Dec 2006 06:44:46 -0700

postfix (2.4-20061210-1) experimental; urgency=low

  * New upstream release
  * merge in 2.3.5-3 debian changes

 -- LaMont Jones <lamont@debian.org>  Sun, 17 Dec 2006 20:26:52 -0700

postfix (2.3.5-3) unstable; urgency=low

  * Fix typo.  Closes: #403121
  * German translation update.  Closes: #403310

 -- LaMont Jones <lamont@debian.org>  Sat, 16 Dec 2006 06:30:17 -0700

postfix (2.3.5-2) unstable; urgency=low

  * Don't call update-inetd in postinst if it's not there.  Fixes Ubuntu
    bug #73511.  Not yet reported in Debian.

 -- LaMont Jones <lamont@debian.org>  Wed, 13 Dec 2006 09:04:10 -0700

postfix (2.3.5-1) unstable; urgency=low

  * New upstream version
  * mydomain needs some cleanup if we're upgrading from < 2.3.5-1 on a machine
    where hostname(2) is a short name.  Bug introduced in 2.3.3-2.  Closes: #402788

 -- LaMont Jones <lamont@debian.org>  Thu,  9 Nov 2006 10:30:39 -0700

postfix (2.3.4-3) unstable; urgency=high

  * Fix broken tls patch.  Closes: #397771, #398534

 -- LaMont Jones <lamont@debian.org>  Wed,  6 Dec 2006 14:09:25 -0700

postfix (2.3.4-2) unstable; urgency=low

  * Fix sasl patch.. Thanks again to Fabian Fagerholm. Closes: #398245
  * New ja.po.  Closes: #398599
  * New de.po.  Closes: #399918
  * New fr.po.  Closes: #399998

 -- LaMont Jones <lamont@debian.org>  Thu, 23 Nov 2006 22:53:16 -0700

postfix (2.4-20061019-2) experimental; urgency=low

  * merge in 2.3.4-1
  * cleanup changelog to make aba and his scripts happy.

 -- LaMont Jones <lamont@debian.org>  Thu,  9 Nov 2006 10:30:39 -0700

postfix (2.3.4-1) unstable; urgency=low

  * SASL split conf and plugin directories.  Thanks to Fabian Fagerholm for
    the patch.  Closes: #397771
  * New upstream version.

 -- LaMont Jones <lamont@debian.org>  Thu,  9 Nov 2006 10:36:45 -0700

postfix (2.4-20061019-1) experimental; urgency=low

  * New upstream version

 -- LaMont Jones <lamont@debian.org>  Sat, 28 Oct 2006 20:04:55 -0600

postfix (2.4-20061015-1) experimental; urgency=low

  * new upstream version
  * merge in 2.3.3-4

 -- LaMont Jones <lamont@debian.org>  Wed, 18 Oct 2006 10:52:26 -0600

postfix (2.3.3-4) unstable; urgency=low

  * Empty /etc/mailname was incorrectly handled.  Closes: #387641
  * updated spanish,french translations.  Closes: #393770, #391884
  * also copy /etc/nss_mdns.config into the chroot.  Closes: #393716

 -- LaMont Jones <lamont@debian.org>  Wed, 18 Oct 2006 10:46:48 -0600

postfix (2.4-20061006-1) experimental; urgency=low

  * New upstream version
  * Merge in 2.3.3-3 from unstable

 -- LaMont Jones <lamont@debian.org>  Sun, 15 Oct 2006 18:03:41 -0600

postfix (2.3.3-3) unstable; urgency=low

  * Fix rfc1035_violation template entry.  Closes: #393087
  * Add catalan transations. (debian/po/ca.po)  Closes: #393090
  * Need to have libcdb1, not just tinycdb without the .so
  * Fix postfix-cdb so that it actually works.

 -- LaMont Jones <lamont@debian.org>  Sun, 15 Oct 2006 21:11:54 -0600

postfix (2.3.3-2) unstable; urgency=low

  * Add postfix-cdb package, which supports tinycdb maps.
    Closes: #183163
  * Detect and die nicely on emty myorigin file.  Closes: #322602
  * Drop 10hostname.dpatch, which was only needed for installing
    postfix inside of debian-installer.  Closes: #333646
  * cleanup confusing debconf question.  Closes: #387646

 -- LaMont Jones <lamont@debian.org>  Tue, 19 Sep 2006 09:04:02 -0600

postfix (2.3.3-1) unstable; urgency=low

  * New upstream version with various bug fixes.
  * use invoke-rc.d in preinst.  Closes: #381167
  * Suggest: resolvconf
  * Fix section 8postfix man page headers to say '8postfix', to fix lintian
    errors.

 -- LaMont Jones <lamont@debian.org>  Tue, 29 Aug 2006 08:49:35 -0600

postfix (2.4-20060903-1) experimental-UNRELEASED; urgency=low

  * New upstream version

 -- LaMont Jones <lamont@debian.org>  Tue,  5 Sep 2006 00:49:52 -0600

postfix (2.4-20060806-1) experimental-UNRELEASED; urgency=low

  * New upstream version
  * Merge changes from 2.3.2

 -- LaMont Jones <lamont@debian.org>  Sat, 12 Aug 2006 08:10:27 -0600

postfix (2.4-20060727-0) experimental; urgency=low

  * New upstream snapshot
  * Merged as below.

 -- LaMont Jones <lamont@debian.org>  Tue,  1 Aug 2006 00:01:12 -0600

postfix (2.3.2-1) unstable; urgency=low

  * New upstream version: more milter fixes.
  * Update japanese translations.  Closes: #379951
  * Move prng_exch back to $queue_directory from /etc (where it
    lived for all of 2.2...)  Closes: #380285

 -- LaMont Jones <lamont@debian.org>  Mon, 31 Jul 2006 23:50:43 -0600

postfix (2.3.1-1) unstable; urgency=low

  * New upstream.

 -- LaMont Jones <lamont@debian.org>  Mon, 24 Jul 2006 23:42:21 -0600

postfix (2.3.0-2) unstable; urgency=low

  * init script needs to deal with queue_directory being non-standard.
    Closes: #379357
  * Fix .so-using man pages.  Closes: #358935

 -- LaMont Jones <lamont@debian.org>  Mon, 24 Jul 2006 10:42:18 -0600

postfix (2.4-20060722-0) experimental; urgency=low

  * New upstream snapshot

 -- LaMont Jones <lamont@debian.org>  Mon, 24 Jul 2006 10:20:34 -0600

postfix (2.3.0-1) unstable; urgency=low

  * New upstream release.  Closes: #378074, #378109
    Thanks to Pascal A Dupuis for the patch migration work.

 -- LaMont Jones <lamont@debian.org>  Thu, 13 Jul 2006 08:28:02 -0600

postfix (2.3-20060611-1) experimental; urgency=low

  * New upstream release

 -- LaMont Jones <lamont@debian.org>  Wed, 14 Jun 2006 15:15:50 -0600

postfix (2.2.10-2) unstable-UNRELEASED; urgency=low

  * Drop conffiles listed under /etc, since debhelper does that for us now.
    Closes: #356768
  * Add portugese translations.  Close: #363134

 -- LaMont Jones <lamont@debian.org>  Wed, 19 Apr 2006 11:37:05 -0600

postfix (2.3-20060405-1) experimental; urgency=low

  * New upstream version

 -- LaMont Jones <lamont@debian.org>  Fri,  7 Apr 2006 08:38:45 -0600

postfix (2.2.10-1) unstable; urgency=low

  * New upstream version
  * Add Galician debconf translations.  Closes: #361255

 -- LaMont Jones <lamont@debian.org>  Fri,  7 Apr 2006 08:20:32 -0600

postfix (2.2.9-4) unstable; urgency=low

  * When lo is configured, don't bother having i[pf]-up.d/postfix
    restart postfix.  Thanks to Scott James Remnant.

 -- LaMont Jones <lamont@debian.org>  Wed,  5 Apr 2006 23:28:58 -0600

postfix (2.3-20060403-1) experimental; urgency=low

  * New upstream version

 -- LaMont Jones <lamont@debian.org>  Wed,  5 Apr 2006 22:42:03 -0600

postfix (2.2.9-3) unstable; urgency=low

  * Don't override the admin's changes to inet_protocols.  Closes: #359272
  * Update description of satellite system, including in several
    translations.  Closes: #359271
  * Add buildsystem support for Hurd.  Closes: #356392
  * New Czech translations.  Closes: #356559
  * Include fixes for pcre maps and sendmail -t/MIME issues.
    - Workaround: null-terminate the input after stripping CR,
      and before passing the input to the MIME processor. Leandro
      Santi. The fix, a rewrite of the MIME processor input
      handling, is too much change for a stable release. File:
      sendmail/sendmail.c.
    - Workaround: the PCRE library reports an inappropriate error
      code (invalid substring) when $number refers to a valid ()
      expression that matches the null string. This caused fatal
      run-time errors.  File: dict_pcre.c.

 -- LaMont Jones <lamont@debian.org>  Wed,  5 Apr 2006 22:22:16 -0600

postfix (2.3-20060315-1) experimental; urgency=low

  * New upstream

 -- LaMont Jones <lamont@debian.org>  Sat, 18 Mar 2006 22:55:36 -0700

postfix (2.2.9-1) unstable; urgency=low

  * New upstream, fixes various TLS/SASL bugs.

 -- LaMont Jones <lamont@debian.org>  Fri, 24 Feb 2006 10:10:26 -0700

postfix (2.2.8-10) unstable; urgency=low

  * Don't call permit_sasl_auth in smtpd checks if sasl is not enabled.
    Thanks to Sven Mueller <debian@incase.de> and Victor Duchovni.
    Closes: #351675
  * if ssl-cert created a cert, then configure smtpd to use it (only
    on fresh installation)
  * make sure usr/lib/zoneinfo exists in the chroot before using it.
    Closes: #163861
  * init.d start must return 0 when already running.  Closes: #351466
  * Make mydomain selection in postinst conform to resolver library method.
    Closes: #351937

 -- LaMont Jones <lamont@debian.org>  Thu, 23 Feb 2006 11:08:23 -0700

postfix (2.3-20060207-1) experimental; urgency=low

  * New upstream

 -- LaMont Jones <lamont@debian.org>  Mon, 13 Feb 2006 08:59:02 -0700

postfix (2.3-20060126-1) experimental; urgency=low

  * Merge in 2.2.8-9 fix

 -- LaMont Jones <lamont@debian.org>  Sat, 28 Jan 2006 08:36:19 -0700

postfix (2.2.8-9) unstable; urgency=low

  * ifup/down need to deal with /var not being writable (by exiting).
    Closes: launchpad.net/29925

 -- LaMont Jones <lamont@debian.org>  Sat, 28 Jan 2006 08:33:43 -0700

postfix (2.3-20060126-0) experimental; urgency=low

  * New upstream version
  * add the now-necessary -DUSE_CYRUS_SASL.  Closes: #350151
  * deliver lmtp symlink.  Closes: #350158

 -- LaMont Jones <lamont@debian.org>  Fri, 27 Jan 2006 12:06:49 -0700

postfix (2.2.8-8) unstable; urgency=low

  * init.d stop needs to be more thurough in killing master.  Closes: #349950
  * ifup should be quiet when /usr is not mounted.  Closes launchpad.net/29788

 -- LaMont Jones <lamont@debian.org>  Fri, 27 Jan 2006 12:09:43 -0700

postfix (2.3-20060123-0) experimental; urgency=low

  * New upstream version

 -- LaMont Jones <lamont@debian.org>  Mon, 23 Jan 2006 16:40:28 -0700

postfix (2.2.8-7) unstable; urgency=low

  * Drop /dev/{u,}random creation, add a note to
    /usr/share/doc/postfix-ldap/README.Debian.  Closes: #349244

 -- LaMont Jones <lamont@debian.org>  Mon, 23 Jan 2006 16:50:56 -0700

postfix (2.2.8-6) unstable; urgency=low

  * postfix startup issues.  Closes: #348645
  * copy /dev/random and /dev/urandom into the chroot for ldaps.
    Closes: #348835.

 -- LaMont Jones <lamont@debian.org>  Thu, 19 Jan 2006 10:40:40 -0700

postfix (2.2.8-5) unstable; urgency=low

  * maildrop lives in /usr/bin, not /usr/local/bin.  Ubuntu Bug#25069
  * bump standards version.  Closes: #318913

 -- LaMont Jones <lamont@debian.org>  Mon, 16 Jan 2006 14:33:48 -0700

postfix (2.3-20060112-0) experimental; urgency=low

  * New upstream

 -- LaMont Jones <lamont@debian.org>  Thu, 12 Jan 2006 16:19:40 -0700

postfix (2.3-20060103-0.1) experimental; urgency=low

  * resync with 2.2

 -- LaMont Jones <lamont@debian.org>  Mon,  9 Jan 2006 18:12:21 -0700

postfix (2.2.8-4) unstable; urgency=low

  * Fix init.d cleanup patch

 -- LaMont Jones <lamont@debian.org>  Wed, 11 Jan 2006 14:59:00 -0700

postfix (2.2.8-3) unstable; urgency=low

  * Make init.d script closer to upstream.
  * French and swedish debconf translations.  Closes: #347609, #347619

 -- LaMont Jones <lamont@debian.org>  Wed, 11 Jan 2006 13:26:03 -0700

postfix (2.3-20060103-0) experimental; urgency=low

  * New upstream.

 -- LaMont Jones <lamont@debian.org>  Mon,  9 Jan 2006 18:12:21 -0700

postfix (2.2.8-2) unstable; urgency=low

  * Fix shlib symlink error.

 -- LaMont Jones <lamont@debian.org>  Thu,  5 Jan 2006 17:42:59 -0700

postfix (2.2.8-1) unstable; urgency=low

  * New upstream version
    - an EHLO I/O error after STARTTLS was reported as STARTTLS error
    - the *SQL, proxy and LDAP maps were not defined in user-land
      commands such as postqueue
    - regex maps didn't correctly convert $$ -> $ in some cases
    - Anvil server terminated after max_idle seconds
    - 2.2.6 server garbage response code caused delivery problems,
      turned off.

 -- LaMont Jones <lamont@debian.org>  Thu,  5 Jan 2006 00:07:53 -0700

postfix (2.2.7-2) unstable; urgency=low

  * Make mailman service run privileged.  sigh.  Closes: #315939
  * Add comment about myorigin=/etc/mailname being the default to main.cf
  * Document /usr/share/postfix/main.cf.dist in README.Debian.
  * Really listen on ipv6 ports in the default install.  Closes: #345961
    - config selects the default answer to the low priority question based
      on whether or not ipv6/ipv4 are installed at that time.
  * allow libmysqlclient14-dev to satisfy build-deps as well as 15.
  * Suggest: sasl2-bin, libsasl2-modules.  Closes: #345664, #265375
  * Run newaliases instead of postalias with hardcoded parameters, so that we
    use $alias_database like we should.

 -- LaMont Jones <lamont@debian.org>  Wed,  4 Jan 2006 11:26:11 -0700

postfix (2.2.7-1) unstable; urgency=low

  * New upstream:
    - LMTP client would reuse a session after a negative reply to the
      RSET command.
    - the best_mx_transport, mailbox_transport and fallback_transport
      features did not write a per-recipient defer logfile record when
      the target delivery agent was broken.
  * use libmysqlclient15-dev

 -- LaMont Jones <lamont@debian.org>  Fri, 23 Dec 2005 20:24:16 -0700

postfix (2.2.6-1) unstable; urgency=low

  * New upstream.
    - the *SQL clients did not uniformly choose the database host from
      the available pool
    - raise the "policy violation" flag when a client request exceeds
      a concurrency or rate limit.
    - don't do smtpd_end_of_data_restrictions after the transaction
      failed due to, e.g., a write error.
    - two messages could get the same message ID due to a race
      condition. This time window was increased when queue file creation
      was postponed from MAIL FROM until the first accepted RCPT TO.  The
      window is closed again.
    - the queue manager did not write a per-recipient defer logfile record
      when the delivery agent crashed after the initial handshake with the
      queue manager, and before reporting the delivery status to the queue
      manager.
    - moved code around from one place to another to make REDIRECT, FILTER,
      HOLD and DISCARD access(5) table actions work in
      smtpd_end_of_data_restrictions.  PREPEND will not be fixed; it must
      be specified before the message content is received.
  * Updated Italian translations.  Closes: #336925
  * Swedish translations.  Closes: #339746
  * Switch to libdb4.3.  Closes: #336488
  * Add Replaces: mail-transport-agent.  Closes: #325624
  * Merge changes from ubuntu.

 -- LaMont Jones <lamont@debian.org>  Wed,  7 Dec 2005 15:39:11 -0700

postfix (2.2.4-1) unstable; urgency=low

  * New upstream bug-fix version
  * postgresql fix from Martin Pitt (via Ubuntu):
    - transition to new PostgreSQL architecture.
    - debian/control: Changed build dependency postgresql-dev to libpq-dev.
    - debian/rules: Use pg_config to determine include directory.
  * New translations:
    * Italian from Cristian Rigamonti <cri@linux.it>.  Closes: #311411
    * Russian from Yuriy Talakan' <yt@amur.elektra.ru>.  Closes: #310055
  * Fix typo in if-down.d.  Closes: #313355
  * Vietnamese translations from Clytie Siddall.  Closes: #317118

 -- LaMont Jones <lamont@debian.org>  Wed,  6 Jul 2005 09:57:05 -0600

postfix (2.2.3-3) unstable; urgency=low

  * Shorter, more friendly patch to have mantools/postlink work.  Thanks
    to Brendan O'Dea.
  * Fix pgsql map initialization in the case of missing 'hosts' declaration.
    Closes: #307967
  * Remove extraneous -d option from bsmtp invocation.  Closes: #309114

 -- LaMont Jones <lamont@debian.org>  Wed, 18 May 2005 22:12:14 -0600

postfix (2.2.3-2) unstable; urgency=low

  * The 'hell with sdbm' release.
    * provide sdbm.[ch], and define HAS_SDBM, so things still work.

 -- LaMont Jones <lamont@debian.org>  Wed,  4 May 2005 14:23:03 -0600

postfix (2.2.3-1) unstable; urgency=low

  * New upstream version
  * really fix sdbm entry in dynamicmaps.cf.  Closes: #305586
  * provide/conflict: postfix-tls for easier upgrade.

 -- LaMont Jones <lamont@debian.org>  Mon,  2 May 2005 20:45:57 -0600

postfix (2.2.2-3) unstable; urgency=low

  * Updated czech translations.  Closes: #307168
  * Updated french translations.  Closes: #306083
  * Updated japanese translations.  Closes: #306942
  * Add RUNNING check to ip-down.d.  Might fix: #306851
  * Fix libdb symlink for building.  Closes: #305447
  * Missing sdbm entry in dynamicmaps.cf.  Closes: #305586
  * add mailman entry.  Closes: #297869

 -- LaMont Jones <lamont@debian.org>  Mon,  2 May 2005 10:13:22 -0600

postfix (2.2.2-2) unstable; urgency=low

  * Closes: #304559
    - fix shlib symlinks.
    - use upstream's default for inet_protocols.  Also Closes: #304753
  * Only start in postinst if the user has a main.cf.  Closes: #304871
  * Include 10tls in 00list.. :-(  Closes: #304920
  * At the end of postinst, warn if root has no alias.  Closes: #293889
  * Fix tlsmgr entry in master.cf if needed.

 -- LaMont Jones <lamont@debian.org>  Tue, 19 Apr 2005 10:00:57 -0600

postfix (2.2.2-1) unstable; urgency=low

  * New upstream version
  * Restore use of /etc/postfix/sasl2 for sasl config stuff.
    (/usr/lib/sasl2 is not a configuration directory, after all...)
    Reported by Iacopo Spalletti, Bernhard Schmidt <berni@birkenwald.de>
    Closes: #301423
  * Don't deliver /usr/share/doc/postfix-tls.  Reported by Iacopo Spalletti
  * cleanup README.Debian
  * Fix shlib deliveries.  Closes: #294207, #285111, #295789

 -- LaMont Jones <lamont@debian.org>  Tue, 12 Apr 2005 08:49:08 -0600

postfix (2.2.1-0) experimental; urgency=low

  * New upstream version

 -- LaMont Jones <lamont@ubuntu.com>  Thu, 17 Mar 2005 19:23:07 -0700

postfix (2.2-20050211-2) UNRELEASED; urgency=low

  * re-sync changes from 2.1 tree

 -- LaMont Jones <lamont@debian.org>  Mon,  7 Mar 2005 12:33:34 -0700

postfix (2.1.5-10) UNRELEASED; urgency=low

  * Create a root alias on initial install (unless ~root/.forward
    exists), even if /etc/aliases exists from some previous MTA.
    Closes: #293889
  * Get rid of failure messages during _shutdown_, too.

 -- LaMont Jones <lamont@debian.org>  Mon,  7 Mar 2005 12:33:34 -0700

postfix (2.1.5-9) unstable; urgency=low

  * more cleanup in if-up.d script.  Closes: #297127

 -- LaMont Jones <lamont@debian.org>  Sun, 27 Feb 2005 09:33:07 -0700

postfix (2.1.5-8) unstable; urgency=low

  * Only force queue run in if-up.d script if postfix is running.
    Closes: #296817

 -- LaMont Jones <lamont@debian.org>  Sat, 26 Feb 2005 22:03:17 -0700

postfix (2.1.5-7) unstable; urgency=low

  * Fix stupid typo: /etc/network/ip-* -> /etc/network/if-*.
    Thanks to Andrew Bennetts.  Closes: #296525

 -- LaMont Jones <lamont@debian.org>  Tue, 22 Feb 2005 20:10:19 -0700

postfix (2.2-20050211-1) experimental; urgency=low

  * New upstream version

 -- LaMont Jones <lamont@debian.org>  Sat, 12 Feb 2005 00:20:00 -0700

postfix (2.2-20050209-1) experimental; urgency=low

  * New upstream version.
  * Merge postfix-tls package into postfix package.

 -- LaMont Jones <lamont@debian.org>  Wed,  9 Feb 2005 16:57:00 -0700

postfix (2.2-20050206-1) experimental; urgency=low

  * New upstream version
    * output address rewriting
    * mx_session_limit fixes

 -- LaMont Jones <lamont@debian.org>  Mon,  7 Feb 2005 12:46:02 -0700

postfix (2.2-20050205-1) experimental; urgency=low

  * New upstream version
    -  Feature: REPLACE command in header/body_checks (implemented
       as a combination of PREPEND and IGNORE) by Bastiaan Bakker.
    -  Cleanup: linted the manual pages for consistency in the
       way manuals are referenced, and in the presentation of
       command examples.

 -- LaMont Jones <lamont@debian.org>  Sun,  6 Feb 2005 16:13:53 -0700

postfix (2.2-20050203-1) experimental; urgency=low

  * New upstream version, includes TLS and IPv6 support.
    - Postfix version 2.2 IP version 6 support is based on the Postfix/IPv6
      patch by Dean Strik, but differs in a few minor ways.
      - Network protocol support including DNS lookup is selected with
      the inet_protocols parameter instead of the inet_interfaces parameter.
      This is needed so that Postfix will not attempt to deliver mail
      via IPv6 when the system has no IPv6 connectivity.
      - The lmtp_bind_address6 feature was omitted. The Postfix LMTP
      client will be absorbed into the SMTP client, so there is no reason
      to keep adding features to the LMTP client.
      - The cidr-based address matching code was rewritten.  The new
      behavior is believed to be closer to expectation. The results may
      be incompatible with that of the Postfix/IPv6 patch.

 -- LaMont Jones <lamont@debian.org>  Sat,  5 Feb 2005 11:51:06 -0700

postfix (2.1.5-6) unstable; urgency=low

  * inet_interfaces=loopback-only from 2.2 snapshot.  Closes: #293250, #292086
  * Add relay entry to master.cf if missing.  Closes: #260593

 -- LaMont Jones <lamont@mmjgroup.com>  Thu,  3 Feb 2005 11:57:06 -0700

postfix (2.1.5-5) unstable; urgency=low

  * Actually stop postfix in preinst.  Closes: #290855

 -- LaMont Jones <lamont@debian.org>  Mon, 17 Jan 2005 20:24:49 -0700

postfix (2.1.5-4) unstable; urgency=low

  * cleanup 50tls.  Closes: #288557

 -- LaMont Jones <lamont@debian.org>  Tue,  4 Jan 2005 12:03:29 -0700

postfix (2.1.5-3) unstable; urgency=low

  * postmap and postalias would segv on map types that do not support
    creation.
  * restart when postfix-not-running needs to start
  * clone ppp ifup/down scripts into etc/network as well.
  * Switch to using dpatch to manage patches.

 -- LaMont Jones <lamont@debian.org>  Tue, 28 Dec 2004 08:37:23 -0700

postfix (2.1.5-2) unstable; urgency=low

  * Update pt_BR debconf template.  Closes: #281986
  * Update es debconf template.  Closes: #283165
  * Update ja debconf template.  Closes: #280114
  * Update fr debconf template.  Closes: #281214
  * Fix broken upgrade case in postfix-tls.
  * Drop duplicate debconf Depends.  Closes: #284003

 -- LaMont Jones <lamont@debian.org>  Sat, 11 Dec 2004 03:39:58 -0700

postfix (2.1.5-1) unstable; urgency=low

  * New upstream version
  * Drop 'HP' config option from the templates.
  * Build-Depend: groff-base
  * Deliver man pages for master.cf services in 8postfix section.
    Remove smtpd.8.gz diversion. Closes: #274777
  * Add a README.Debian.  Closes: #274323, #272087
  * Fix typo in postmap man page.  Closes: #271369
  * Add Czech translations.  Closes: #275338

 -- LaMont Jones <lamont@debian.org>  Sat, 30 Oct 2004 21:59:51 -0600

postfix (2.1.4-5) unstable; urgency=low

  * Only listen on loopback for local-only client.
  * updated Brazilian Portugese translations.  Closes: #263857
  * ipv6 patch version of own_inet_addr behaved incorrectly.
  * Deal with null domain names better.
  * Properly cleanup on purge.  Closes: #166913, #251668
  * Only listen on loopback for local-only and satellite config.
  * tls_random_exchange_name needs to default to /var/spool/postfix/prng_exch
    Closes: #270122

 -- LaMont Jones <lamont@mmjgroup.com>  Sun,  5 Sep 2004 19:33:39 -0600

postfix (2.1.4-4) unstable; urgency=low

  * New italian translations.  Closes: #262705
  * Use invoke-rc.d if present.  Closes: #262621

 -- LaMont Jones <lamont@debian.org>  Sun,  1 Aug 2004 10:47:00 -0600

postfix (2.1.4-3) unstable; urgency=low

  * Cleanup typos in postinst.  Closes: #262194,#262127
  * Fix typo in smtp/TLS.  Closes: #258775

 -- LaMont Jones <lamont@debian.org>  Fri, 30 Jul 2004 01:39:49 -0600

postfix (2.1.4-2) unstable; urgency=low

  * use start-stop-daemon to launch postfix.
  * Update japanese translations.  Closes: #260822
  * Update French translations.  Closes: #261124
  * Update Dutch translations.  Closes: #261336
  * Need to handle sdbm map creation.  Closes: #261842

 -- LaMont Jones <lamont@debian.org>  Wed, 28 Jul 2004 09:29:53 -0600

postfix (2.1.4-1) unstable; urgency=low

  * New upstream
  * Deal with being configured _really_ early.  Closes: #255884
  * Fix typo in spf.pl.  Closes: #256912
  * Clean up log message in smtp_connect.  Closes: #257052
  * Correct debconf template.  Closes: #258876
  * Better dynamicmaps.cf conversion.  Closes: #257326
  * Always ask about root email address, not just after preinst
    decides that we need to.  Closes: #256055

 -- LaMont Jones <lamont@debian.org>  Sun, 11 Jul 2004 18:25:31 -0600

postfix (2.1.3-1) unstable; urgency=medium

  * New upstream
  * New translations.  Closes: #254405, #255675
  * Deliver qshape.  Closes: #254414
  * remove (default) setgid_group decl from main.cf.
  * Add trace and verify to master.cf in postinst.  Closes: #255260

 -- LaMont Jones <lamont@debian.org>  Tue, 22 Jun 2004 13:39:08 -0600

postfix (2.1.1-8) unstable; urgency=low

  * dpkg-divert revisited.  Closes: #254211, #252162

 -- LaMont Jones <lamont@debian.org>  Sun, 13 Jun 2004 12:23:32 -0600

postfix (2.1.1-7) unstable; urgency=low

  * Missing html pages.  Closes: #254164
  * Really add back in gdbm support.  Sigh.

 -- LaMont Jones <lamont@debian.org>  Sun, 13 Jun 2004 11:49:52 -0600

postfix (2.1.1-6) unstable; urgency=low

  * Force rename of nqmgr->qmgr in master.cf if needed.  Closes: #254043

 -- LaMont Jones <lamont@debian.org>  Sat, 12 Jun 2004 19:41:21 -0600

postfix (2.1.1-5) unstable; urgency=low

  * Prototypes missing from pfixtls stuff cause broken sdbm maps on
    64-bit architectures.  Closes: #254025

 -- LaMont Jones <lamont@debian.org>  Sat, 12 Jun 2004 09:23:55 -0600

postfix (2.1.1-4) unstable; urgency=low

  * Can't drop gdbm completely until sarge actually ships. :-(
  * Deliver more examples. (greylisting, etc.)  Closes: #252838
  * Fix typo in postinst.  Closes: #250105
  * Don't ask procmail question if procmail is not installed. Closes: #229280
  * Italian templates.  Closes: #253501
  * Make postconf diversion from ancient postfix-tls go away.
    Closes: #253277, #252398, #250404
  * Don't complain when trying to bind ipv6 addresses on a machine without
    ipv6.  Closes: #253371
  * Remove all references to cyrus from master.cf, at the request of the
    Cyrus maintainer (hmh@debian.org).  See README.postfix in the cyrus
    packages.  Closes: #253952, #228721
  * Better master.cf handling.  Closes: #232715
  * Apply patch from Victor to fix va_arg usage (ppc broke.)  Closes: #253228

 -- LaMont Jones <lamont@debian.org>  Sat, 12 Jun 2004 07:46:39 -0600

postfix (2.1.1-3) unstable; urgency=low

  * add back postfix-files.  Closes: #252316
  * Remove unused variable from init.d script.  Closes: #252371

 -- LaMont Jones <lamont@debian.org>  Wed,  2 Jun 2004 21:35:29 -0600

postfix (2.1.1-2) unstable; urgency=low

  * Add IPv6 support.  This may change when upstream incorporates IPv6,
    but is based on the most likely configuration interface.
    Closes: #144840.
  * clean up config files that aren't needed under /etc/postfix

 -- LaMont Jones <lamont@debian.org>  Wed,  2 Jun 2004 06:44:15 -0600

postfix (2.1.1-1) unstable; urgency=low

  * New upstream.  Closes: #250507, #144128, #220674, #170691
    GDBM support is now turned off, results in a fatal error.
  * Add Russian debconf template.  Closes: #135847
  * Patch from upstream fixing get_hostname failures.

 -- LaMont Jones <lamont@debian.org>  Sun, 30 May 2004 17:07:10 -0600

postfix (2.0.19-1) unstable; urgency=low

  * New upstream version
  * Minor tweaks to main.cf.debian. (Shorten it some more.)
  * Have update-libc.d/postfix check to make sure postfix is installed.
    Closes: #230330
  * Cleanup resolvconf output.  Closes: #225797
  * Add abort option to /etc/init.d/postfix. Closes: #230573
  * Recommend: resolvconf.  Closes: #154669
  * Update Japanese translation.  Closes: #237787
  * Change the default smtp_line_length_limit to unlimited.
  * Add spanish debconf template.  Closes: #239096

 -- LaMont Jones <lamont@debian.org>  Sat, 20 Mar 2004 18:02:39 -0700

postfix (2.0.18-1) unstable; urgency=low

  * New upstream release.  Closes: #229045

 -- LaMont Jones <lamont@debian.org>  Thu, 22 Jan 2004 08:13:50 -0700

postfix (2.0.17-1) unstable; urgency=low

  * New upstream release
  * update Japanese debconf template.  Closes: #224139
  * Add some directory decls to default main.cf (match config.)  Closes: #226238
  * it's regex(7), not re_format(7).  Closes: #228773

 -- LaMont Jones <lamont@debian.org>  Tue, 20 Jan 2004 16:41:40 -0700

postfix (2.0.16-4) unstable; urgency=low

  * /etc/resolvconf/update-libc.d/postfix is a conffile.  Closes: #212552

 -- LaMont Jones <lamont@debian.org>  Mon,  8 Dec 2003 14:46:22 -0700

postfix (2.0.16-3) unstable; urgency=low

  * Fix NEED_CHROOT in init.d to handle 'y' as well as '-'.  Closes: #218512
  * Change cyrus invocation.  Closes: #222893, #174206
  * Stop delivering HISTORY in postfix-doc (it's in
    /usr/share/doc/postfix/changelog).  Closes: #146959
  * Make wildcard dynamicmaps.cf entry be a warning, not fatal.
    Closes: #159988
  * Add resolfconf support.  Closes: #212552

 -- LaMont Jones <lamont@debian.org>  Mon,  8 Dec 2003 10:02:34 -0700

postfix (2.0.16-2) unstable; urgency=low

  * Make some centarian happy with the debconf descriptions.  Closes: #215019
  * postfix-tls needs to conflict: postfix-snap-tls.  Closes: #215958
  * Clean up debconf template wrt root mail.  Closes: #215104

 -- LaMont Jones <lamont@debian.org>  Sun, 26 Oct 2003 18:48:55 -0700

postfix (2.0.16-1) unstable; urgency=low

  * New upstream release.

 -- LaMont Jones <lamont@debian.org>  Sat, 20 Sep 2003 13:14:50 -0600

postfix (2.0.14-3) unstable; urgency=low

  * Cleanup dependency screwup.

 -- LaMont Jones <lamont@debian.org>  Sun, 14 Sep 2003 09:08:34 -0600

postfix (2.0.14-2) unstable; urgency=low

  * New Brazilian Portuguese, Japanese, Dutch, and French translations.
    Closes: #207818, #206705, #208048, #210717
  * Don't set /etc/mailname if hostname has only one label.
  * Clean up descriptions.  Closes: #209874
  * Quit suggesting cyrus-common, Remove recommends for sasl2 modules,
    since "that is the sasl2 packages' responsibility."  Closes: #209266
  * Cleanup SASL_README.  Closes: #202815
  * Change the default location for prng_exch to /var/spool/postfix.
    Closes: #190285
  * No need for a separate postconf for tls now, get rid of it.

 -- LaMont Jones <lamont@debian.org>  Sat, 13 Sep 2003 17:47:38 -0600

postfix (2.0.14-1) unstable; urgency=low

  * New upstream version

 -- LaMont Jones <lamont@debian.org>  Tue, 12 Aug 2003 23:44:09 -0600

postfix (2.0.13-4) unstable; urgency=high

  * Ignore errors from chattr, patch based on Gerry Patterson's. Closes: #203279
  * High urgency because testing (1.1.11) is broken now that openldap 2.1
    is there.

 -- LaMont Jones <lamont@debian.org>  Mon, 28 Jul 2003 20:49:26 -0600

postfix (2.0.13-3) unstable; urgency=low

  * Default to non-synchronous mail queue metadata updates, new debconf
    question.  Closes: #202720

 -- LaMont Jones <lamont@debian.org>  Sun, 27 Jul 2003 20:05:21 -0600

postfix (2.0.13-2) unstable; urgency=low

  * Incorporate tls-0.8.15.  Closes: #200642

 -- LaMont Jones <lamont@debian.org>  Wed, 23 Jul 2003 09:36:34 -0600

postfix (2.0.13-1) unstable; urgency=low

  * New upstream version
  * Add --system to addgroup's in postinst.  Closes: #176905

 -- LaMont Jones <lamont@debian.org>  Mon, 30 Jun 2003 12:23:48 -0600

postfix (2.0.12-1) unstable; urgency=low

  * New upstream version.  2.0.11 broke sendmail -bs.  Closes: #197660

 -- LaMont Jones <lamont@debian.org>  Wed, 18 Jun 2003 20:33:01 -0600

postfix (2.0.11-2) unstable; urgency=low

  * Roll to new gdbm libs.
  * Fix postfix-tls recommends.  Closes: #195032, #191905, #145861, #144636
  * Deal with missing /etc/postfix/sasl better.  Closes: #155246
  * Don't use -a in [ or test calls.  Closes: #196549

 -- LaMont Jones <lamont@debian.org>  Wed, 11 Jun 2003 23:18:05 -0600

postfix (2.0.11-1) unstable; urgency=low

  * New upstream version

 -- LaMont Jones <lamont@debian.org>  Wed, 11 Jun 2003 10:02:22 -0600

postfix (2.0.10-2) unstable; urgency=low

  * Dynamicmap.cf cleanup needs to happen before db conversion.
  * Remove ldap cache support (no longer present in ldap 2.1
  * Add ldap limits.

 -- LaMont Jones <lamont@debian.org>  Sun, 25 May 2003 18:12:51 -0600

postfix (2.0.10-1) unstable; urgency=low

  * New upstream version
  * Include translations: Closes: #190707
  * restore copyright file for postfix-tls. oops.
  * Clean up chroot handling.  Closes: #193721

 -- LaMont Jones <lamont@debian.org>  Thu, 22 May 2003 17:07:11 -0600

postfix (2.0.9-3) unstable; urgency=low

  * Somehow dropped the upstream change in the version number.  Closes: #190112

 -- LaMont Jones <lamont@debian.org>  Tue, 22 Apr 2003 00:22:40 -0600

postfix (2.0.9-2) unstable; urgency=low

  * Rebuild against ldap 2.1 and sasl2.  Closes: #146627, #177153
  * Use --system in addgroup.  Closes: #189833

 -- LaMont Jones <lamont@debian.org>  Sun, 20 Apr 2003 20:08:19 -0600

postfix (2.0.9-1) unstable; urgency=low

  * New upstream release.
    - Refuses to run if netblocks have non-zero host parts, since too many
      people can't seem to get them right... (2.0.8)
    - The SMTP client did not deliver a partial last line when someone
      submitted 8BITMIME mail not ending in newline via /usr/sbin/sendmail
      while MIME input processing was turned off (not the default), and
      MIME 8bit->7bit conversion was requested upon delivery. (2.0.9)
  * Fix debconf dependency.  Closes: #188401
  * Switch to db4.1 - auto convert all databases: This is a low priority
    debconf question...
  * Incorporate upstream feedback in dict_pgsql.[ch] (Now part of the
    upstream snapshot releases.)
  * Fix hp-ux build again..

 -- LaMont Jones <lamont@debian.org>  Fri, 18 Apr 2003 23:58:30 -0600

postfix (2.0.7-3) unstable; urgency=low

  * Real upstream 2.0.7 release...
    - The SMTP server access map actions HOLD, DISCARD, FILTER (and
      REDIRECT in snapshots) dumped core with smtpd_delay_reject=no,
      and with ETRN.
    - The DISCARD action now works as expected and causes Postfix to
      skip other restrictions such as REJECT.
    - The postsuper manual page documented support for the -c command
      line option, but the feature was not implemented.
    - The VRFY command was broken as of Postfix 2.0, and would always
      reply with 252 (neutral) unless the service was disabled.
  * rename the french templates file.  Closes: #184314
  * Add german template translations.  Closes: #185626
  * Add a commented out delay_warning_time = 4h.  Closes: #171704
  * Allow empty mynetworks --> no mynetworks in the file.  Closes: #160493

 -- LaMont Jones <lamont@debian.org>  Thu, 20 Mar 2003 12:33:27 -0700

postfix (2.0.7-2) unstable; urgency=low

  * The "there is no 2.0.7 yet" relase.  Sigh.  This is 2.0.7-1 minus the
    upstream patch-that-isn't.  sigh.

 -- LaMont Jones <lamont@debian.org>  Mon, 17 Mar 2003 18:40:55 -0700

postfix (2.0.7-1) unstable; urgency=low

  * New upstream release, cosmetic fixes.
  * Add French templates.  Closes: #184314
  * have postfix-tls Recommend libsasl-modules-plain, libsasl-digestmd5-plain.
    Closes: #176048
  * Fix code for dealing with dynamicmaps.cf.  Closes: #184759
  * Make sure we ask about dynamicmaps upgrade when we should.  Closes: #184106

 -- LaMont Jones <lamont@debian.org>  Sun, 16 Mar 2003 22:19:04 -0700

postfix (2.0.6-1) unstable; urgency=low

  * New upstream release:
     Postfix truncates non-address information in message address headers
     (comments, etc.) to 250 characters per address, in order to protect
     vulnerable Sendmail systems against exploitation of a remote buffer
     overflow problem (CERT advisory CA-2003-07).

 -- LaMont Jones <lamont@debian.org>  Thu,  6 Mar 2003 22:25:25 -0700

postfix (2.0.5-1) unstable; urgency=low

  * New upstream release.
    The smtpd_hard_error_limit and smtpd_soft_error_limit values now
    behave as documented, that is, smtpd_hard_error_limit=1 causes
    Postfix to disconnect upon the first client error. Previously,
    there was an off-by-one error causing Postfix to change behavior
    after smtpd_hard/soft_error_limit+1 errors.
  * Switch to gettext based template translations.  Closes: #183455, #140699
  * Fix typo in postinst.  Closes: #156654

 -- LaMont Jones <lamont@debian.org>  Tue,  4 Mar 2003 22:06:34 -0700

postfix (2.0.4-1) unstable; urgency=low

  * New upstream release. Closes: #181831
  * more template cleanup.  Closes: #178523

 -- LaMont Jones <lamont@debian.org>  Sun, 23 Feb 2003 09:12:04 -0700

postfix (2.0.3-5) unstable; urgency=low

  * Add pgsql support (by Lenart Janos <ocsi@debian.org>), based on
    http://downloads.rhyme.com.au/postfix/postfix-1.1.11-20020613pg_020626.patch.gz
  * Explicitly link libraries.  Closes: #180678
  * Fix debconf prompts.  Closes: #179365

 -- LaMont Jones <lamont@debian.org>  Mon, 17 Feb 2003 20:27:54 -0700

postfix (2.0.3-4) unstable; urgency=low

  * Switch to -O1 for all archs, since it's not just sparc that has
    optimization issues with gcc 3.2.  Closes: #179246

 -- LaMont Jones <lamont@debian.org>  Sat,  1 Feb 2003 13:21:14 -0700

postfix (2.0.3-3) unstable; urgency=low

  * Use -O1 on sparc.  Closes: #179087

 -- LaMont Jones <lamont@debian.org>  Thu, 30 Jan 2003 14:17:27 -0700

postfix (2.0.3-2) unstable; urgency=low

  * Fix bashism in init.d script.  Closes: #178368, #178424
  * Cleanup the error message for missing maps.  Closes: #177774

 -- LaMont Jones <lamont@debian.org>  Sun, 26 Jan 2003 10:35:01 -0700

postfix (2.0.3-1) unstable; urgency=low

  * New upstream version.

 -- LaMont Jones <lamont@debian.org>  Fri, 24 Jan 2003 20:45:03 -0700

postfix (2.0.2-3) unstable; urgency=low

  * Handle dynamicmaps upgrade for 'No configuration' users.  Closes: #178037
  * Force proxymap service into master.cf.  Closes: #177914
  * Make chroot-syncing configurable.  Closes: #165326

 -- LaMont Jones <lamont@debian.org>  Thu, 23 Jan 2003 15:37:33 -0700

postfix (2.0.2-2) unstable; urgency=low

  * make sasl paths autoswitch for sasl1 vs sasl2.
  * deal with maps transition for sdbm and tcp maps.  Closes:#177592

 -- LaMont Jones <lamont@debian.org>  Mon, 20 Jan 2003 09:40:51 -0700

postfix (2.0.2-1) unstable; urgency=low

  * New upstream release
  * Fix postconf -m.  Closes: #150072

 -- LaMont Jones <lamont@debian.org>  Sat, 18 Jan 2003 22:10:01 -0700

postfix (2.0.1-3) unstable; urgency=low

  * Fix typo in preinst.  Closes: #176897

 -- LaMont Jones <lamont@debian.org>  Wed, 15 Jan 2003 12:51:31 -0700

postfix (2.0.1-2) unstable; urgency=low

  * Patch from upstream for sendmail -bs.  Closes: #176783
  * Clean up postfix-dev Depends.  Closes: #176851

 -- LaMont Jones <lamont@debian.org>  Wed, 15 Jan 2003 07:12:39 -0700

postfix (2.0.1-1) unstable; urgency=low

  * New upstream version.  Adds proxymap service.  Closes: #96157
  * Deal with multiple alias maps in preinst.  Closes: #175384, #156661

 -- LaMont Jones <lamont@debian.org>  Mon, 13 Jan 2003 22:43:22 -0700

postfix (2.0.0.1-1) unstable; urgency=low

  * New upstream version.  See /usr/share/doc/postfix/changelog.
  * Fix SASL v1 paths. This closes Bug#174191 (the opposite of
    Bug#159724).  Thanks to Jonas Smedegard (dr@jones.dk) for the patch.
  * Correct s/certficate/certificate/. Closes Bug#156345.  Ditto.

 -- LaMont Jones <lamont@debian.org>  Fri, 27 Dec 2002 01:02:55 -0700

postfix (1.1.12-1) unstable; urgency=low

  * New upstream relase.
  * Fix postfix-tls description.  Closes: #160697
  * New upstream TLS (0.8.11a).
  * Fix wildcard transport initialization.  Closes: #167093
  * Use libsasl-dev: libldap2-dev conflicts with it.  Closes: #160670

 -- LaMont Jones <lamont@debian.org>  Mon, 23 Dec 2002 10:34:17 -0700

postfix (1.1.11.0-3) unstable; urgency=low

  * setting wrong flags in config.  Closes: #159882
  * Enhancements to rbl support.
  * Make nqmgr the default.
  * One more tls screwup, it would appear.  Closes: #144968

 -- LaMont Jones <lamont@debian.org>  Thu, 12 Sep 2002 10:37:36 -0600

postfix (1.1.11.0-2) unstable; urgency=low

  * Fix sasl2 roll screwup.  Closes: #159724
  * Fix template typo.  Closes: #159734

 -- LaMont Jones <lamont@debian.org>  Thu,  5 Sep 2002 09:44:40 -0600

postfix (1.1.11.0-1) unstable; urgency=low

  * Merge in tls stuff from snapshots, using tls-0.8.7.  Requires a bump
    of the upstream version number because of the old postfix-tls version
    numbering.
  * Need to deliver /etc/postfix/sasl.
  * If we couldn't set the LDAP protocol version, we didn't remember that.
    Closes: #158730, #158288
  * Read system values for mynetworks and mydestination if main.cf exists.
    (Once mydestination is set, we'll always read it from main.cf if it
    exists...) Closes: #145072, #142726
  * Add flush to the list of directories that get created/chowned.
    Closes: #156791
  * Quit depending on postfix-pcre and postfix-ldap, just suggests.
    Closes: #144201
  * Handle == VERP as well as -= VERP.  Makes murphy happy.
  * Make /usr/lib/postfix the default daemon directory.  Closes: #155250.

 -- LaMont Jones <lamont@debian.org>  Tue,  3 Sep 2002 23:48:01 -0600

postfix (1.1.11-2) unstable; urgency=low

  * reincorporate lost fixes from upstream merge.

 -- LaMont Jones <lamont@debian.org>  Sun, 14 Jul 2002 10:11:31 -0600

postfix (1.1.11-1) unstable; urgency=low

  * New upstream version.

 -- LaMont Jones <lamont@debian.org>  Fri, 12 Jul 2002 21:32:06 -0600

postfix (1.1.11-0.woody1) testing; urgency=medium

  * New upstream version.  Closes: #150298, #146626

 -- LaMont Jones <lamont@debian.org>  Thu, 11 Jul 2002 12:03:14 -0600

postfix (1.1.7-7) unstable; urgency=low

  * Actually fix wildcard transports.  Was dying if transport map didn't
    hit, and there wasn't a wildcard.  Closes: #145884

 -- LaMont Jones <lamont@debian.org>  Sun,  5 May 2002 22:18:57 -0600

postfix (1.1.7-6) unstable; urgency=low

  * HP config, and root address setting in postinst were broken.
  * Fix wildcard transport change.  Closes: #145745, #145792
  * Turn off optimization on hppa for now.

 -- LaMont Jones <lamont@debian.org>  Sat,  4 May 2002 11:19:13 -0600

postfix (1.1.7-5) unstable; urgency=low

  * Changes to transport maps: add wildcard, and have ':' to tell
    postfix to pretend that there is no match for this entry, which
    allows a relayhost-for-all-but-these type config.
  * Patch from Victor.Duchovni@morganstanley.com to implement timeouts
    in LDAP bind.
  * Add 'HP' option to mailer type, does HP-esque config (transport map
    entries).
  * Only copy everything to the chroot if something is being run chrooted.
    Closes: #139782

 -- LaMont Jones <lamont@debian.org>  Thu,  2 May 2002 23:27:22 -0600

postfix (1.1.7-4) unstable; urgency=low

  * Can't touch files in directories that don't exist.

 -- LaMont Jones <lamont@debian.org>  Mon, 22 Apr 2002 23:30:28 -0600

postfix (1.1.7-3) unstable; urgency=medium

  * The keep-the-maintainer sane release, to keep postfix and postfix-tls
    source sane in the CVS tree.
  * Mention package names in the README files.
  * Make things happier for postfix-tls.

 -- LaMont Jones <lamont@debian.org>  Mon, 22 Apr 2002 21:57:58 -0600

postfix (1.1.7-2) unstable; urgency=medium

  * If $myorigin bears no resemblance to $myhostname, then include it in
    $mydestination by default.  Closes: #142296
  * Prompt for a root alias (and add it _iff_ creating /etc/aliases).

 -- LaMont Jones <lamont@debian.org>  Fri, 19 Apr 2002 12:50:08 -0600

postfix (1.1.7-1) unstable; urgency=low

  * New upstream patch-release.  Various minor bug fixes.
  * Cause a 'no' answer to append_dot_mydomain to re-prompt for destinations,
    since localhost needs to be added.  Closes: #141129, #123745.
  * Do a restart instead of start for dpkg-reconfigure.  Closes: #140163
  * Add support for ldap_version and ldap_chase_referrals, patch from
    Sami Haahtinen <ressu@debian.org>.  Closes: #139756
  * Deliver upstream changelog in postfix package (as well as postfix-doc)

 -- LaMont Jones <lamont@debian.org>  Sun,  7 Apr 2002 15:47:54 -0600

postfix (1.1.6-1) unstable; urgency=low

  * New upstream patch-release.
  * Add ldap_result_filter (from postfix-snap ldap map) into released bits.
  * Add a pointer to SASL being in postfix-tls.
  * Add debconf question about append_dot_mydomain.  Closes: #131167
  * Fix ldap map screwup in 1.1.4-3.  Closes: #139872

 -- LaMont Jones <lamont@debian.org>  Thu, 28 Mar 2002 12:26:40 -0700

postfix (1.1.4-3) unstable; urgency=low

  * Call ber_free in dict_ldap.c, get rid of memory leak.
  * Break %u %d (in dict_ldap) on rightmost @, not leftmost.
  * Unset TZ when launching postfix.  Closes: #125658.
  * Upstream dropped creation of flush service.  Closes: #136793

 -- LaMont Jones <lamont@debian.org>  Fri, 22 Mar 2002 22:53:00 -0700

postfix (1.1.4-2) unstable; urgency=low

  * Let the user say to not fix master.cf.  Closes: #136113.
  * Fix queue related perms.  Closes: #136118, #136296.
  * /usr/share/doc/postfix/changelog is (still) delivered by postfix-doc,
    not postfix.  Closes: #136133.
  * Templates now indicate just when relayhost's MX RR's are used.
    Closes: #103738

 -- LaMont Jones <lamont@debian.org>  Sat,  2 Mar 2002 01:54:49 -0700

postfix (1.1.4-1) unstable; urgency=low

  * New upstream version.  See /usr/share/doc/postfix/changelog.
    Corner case problem in qmgr with certain length addrs, resulting
    in SEGV.

 -- LaMont Jones <lamont@debian.org>  Tue, 26 Feb 2002 02:34:34 -0700

postfix (1.1.3-2) unstable; urgency=low

  * postfix-script link needs removed on install too.  Closes: #135051
  * Comment on ciriticality of directory settings in main.cf.debian.

 -- LaMont Jones <lamont@debian.org>  Thu, 21 Feb 2002 12:43:35 -0700

postfix (1.1.3-1) unstable; urgency=low

  * New upstream version.  See /usr/share/doc/postfix/changelog.

 -- LaMont Jones <lamont@debian.org>  Sun,  3 Feb 2002 21:40:49 -0700

postfix (1.1.1-3) unstable; urgency=low

  * If postfix-script is a link, then nuke it in preinst.  Closes: #130635

 -- LaMont Jones <lamont@debian.org>  Mon, 28 Jan 2002 08:59:38 -0700

postfix (1.1.1-2) unstable; urgency=low

  * Fix postfix-dev depends, so that postfix-tls and friends build from
    source.  Closes: #130743
  * Use LD_LIBRARY_PATH when building shlibdeps.
  * remove statoverrides on remoev, and postdrop group on purge.
    Closes: #130786

 -- LaMont Jones <lamont@debian.org>  Fri, 25 Jan 2002 11:52:09 -0700

postfix (1.1.1-1) unstable; urgency=high

  * New upstream version.
    When the postmap command creates a non-existent result file, the
    new file inherits the group/other read permissions of the source
    file.  Closes: #130315
  * Move dict_ldap.so build point to global, instead of util, to correct
    build order.  (hp-ux build now actually works.)

 -- LaMont Jones <lamont@debian.org>  Tue, 22 Jan 2002 12:38:45 -0700

postfix (1.1.0-1) unstable; urgency=low

  * New upstream version.  Closes: #129735
      pickup now unpriv, cleanup and flush public.
  * Add postfix-dev package to allow loadable modules to be built.
  * use $DAEMON in init.d script to facilitate passing it arguments.
    Closes: #126288
  * make default (on new install only) biff = no.  Closes: #105914
  * Allow (but warn about) permit_sasl_authenticated in main.cf, even with
    no SASL support.  (Helps out postfix-tls.)
  * Fix shlibs file.
  * Fix segv in postqueue -s.
  * Cleanup hpux diff

 -- LaMont Jones <lamont@debian.org>  Tue, 22 Jan 2002 10:44:20 -0700

postfix (0.0.20011217.SNAPSHOT-1) unstable; urgency=high

  * New upstream version.  Closes: #123734, #124149
      Postfix configuration file comments no longer continue on the next
      line when that next line starts with whitespace. This change avoids
      surprises, but it may cause unexpected behavior with existing,
      poorly formatted, configuration files. Caveat user.
  * Handle iPlanet 5.0 (and probably other SDK's) in dict_ldap.c, by defining
    LDAP_CONST and LDAP_OPT_SUCCESS if <ldap.h> doesn't.
  * Only enable lber logging when debuglevel>0.  Closes: #125919.

 -- LaMont Jones <lamont@debian.org>  Sat, 22 Dec 2001 21:54:33 -0700

postfix (0.0.20011210.SNAPSHOT-2) unstable; urgency=high
  * Various fixes in (hp-ux) build rules

 -- LaMont Jones <lamont@debian.org>  Wed, 12 Dec 2001 15:56:04 -0700

postfix (0.0.20011210.SNAPSHOT-1) unstable; urgency=high

  * New upstream version.
  * High urgency to get sendmail -bs fix into testing (0.0.20011125.SNAPSHOT-1
    should have been.)
  * Make lack of /etc/postfix/dynamicmaps.cf be a warning, instead of
    an obscure failure (SIGBUS).
  * Include LDAP patch from Will Day willday@rom.oit.gatech.edu (deal with
    timeouts from LDAP server by reconnecting, instead of saying '451',
    other cleanup.)
  * Upstream version of ia64 alignment fix added.
  * main.cf.dist is not gziped.  Closes: #122709.
  * add diversion of smtpd package's smtpd.8 (to smtpd.real.8).

 -- LaMont Jones <lamont@debian.org>  Tue, 11 Dec 2001 09:18:57 -0700

postfix (0.0.20011125.SNAPSHOT-1) unstable; urgency=low

  * New upstream version.  See /usr/share/doc/postfix/changelog.
  * Fix smtpd session-rest bug.  (patch from upstream.)
  * Move default config file to /usr/share/postfix, per policy.
  * Fix procmail invocation. (quotes around $EXTENSION).
  * Fix sendmail -bs, broken as of 20011115.SNAPSHOT-1.  Closes: #120375

 -- LaMont Jones <lamont@debian.org>  Sun, 25 Nov 2001 20:11:43 -0700

postfix (0.0.20011115.SNAPSHOT-1) unstable; urgency=low

  * New upstream version.  See /usr/share/doc/postfix/changelog.

 -- LaMont Jones <lamont@debian.org>  Fri, 16 Nov 2001 05:39:39 -0700

postfix (0.0.20011008.SNAPSHOT-2) unstable; urgency=low

  * Make the default mailbox_size_limit (in debconf) be unlimited.
    Closes: #117101.

 -- LaMont Jones <lamont@debian.org>  Thu, 25 Oct 2001 17:12:53 -0600

postfix (0.0.20011008.SNAPSHOT-1) unstable; urgency=low

  * New upstream version.  See /usr/share/doc/postfix/changelog.
  * Treat bogus DN's in _special_result_attributes the same as DN's that
    have no _result_attribute (that is, ignore them.)
  * Change default SMTP banner to include Debian/GNU.
  * Add a bit more descriptive text to postfix-* packages.  Closes: #110227
  * Fix how mailbox_command gets set (support extensions.)  Closes: #109867

 -- LaMont Jones <lamont@debian.org>  Tue, 16 Oct 2001 07:04:33 -0600

postfix (0.0.20010808.SNAPSHOT-1) unstable; urgency=low

  * New upstream version.
  * Include brazilian templates translation.  Closes: #105281.

 -- LaMont Jones <lamont@debian.org>  Mon, 13 Aug 2001 13:18:14 -0600

postfix (0.0.20010714.SNAPSHOT-3) unstable; urgency=low

  * Remove needless use File::Copy from config.  Closes: #107795
  * Don't run newaliases if there's no main.cf.
  * Restore nuked man pages.  Closes: #107632

 -- LaMont Jones <lamont@debian.org>  Wed,  8 Aug 2001 12:18:19 -0600

postfix (0.0.20010714.SNAPSHOT-2) unstable; urgency=low

  * Fix typo in debconf usage.  Closes: #107531.

 -- LaMont Jones <lamont@debian.org>  Thu,  2 Aug 2001 17:22:32 -0600

postfix (0.0.20010714.SNAPSHOT-1) unstable; urgency=low

  * New upstream version.
  * Dynamically load various maps at runtime.  This splits the package
    into the base postfix package, and various map-support packages.
  * Add mysql support (suggests libmysqlclient10)  Closes: #64923
  * Move shared libs to /usr/lib.  Closes: #101688.
  * use Debian::Debconf::Client::ConfModule, which works with all revs of
    debconf.  Closes: #103947.

 -- LaMont Jones <lamont@debian.org>  Wed,  1 Aug 2001 12:56:39 -0600

postfix (0.0.20010610.SNAPSHOT-1) unstable; urgency=high
  * New upstream version.  Includes RFC282[12] support, and other changes.
    See /usr/share/doc/postfix/changelog.

 -- LaMont Jones <lamont@debian.org>  Mon, 11 Jun 2001 08:54:52 -0600

postfix (0.0.20010502.SNAPSHOT-5) unstable; urgency=high
  * Fix corner case where newaliases did not get run.  Closes: #99165.
  * Don't purge /etc/postfix and /var/spool/postfix at purge.  Closes: #98987.

 -- LaMont Jones <lamont@debian.org>  Tue, 29 May 2001 23:30:15 -0600

postfix (0.0.20010502.SNAPSHOT-4) unstable; urgency=high
  * Reduce the disk/memory footprint of Postfix by using shlibs for util,
    global, dns, and master libraries.
  * Support 'debug' and 'nostrip' options in DEB_BUILD_OPTIONS
  * dpkg-statoverride exits (correctly) with non-zero status in places
    where it didn't before.

 -- LaMont Jones <lamont@debian.org>  Wed, 23 May 2001 22:13:25 -0600

postfix (0.0.20010502.SNAPSHOT-3) unstable; urgency=high
  * No-maps case wasn't handled well for upgrades.
    Closes: #98008, #97763, #98116.
  * Make no-config case more prominant in selections, partially addresses
    #97670.
  * Correct sample-ldap.cf to correctly specify timeout parm.  Closes: #93978.

 -- LaMont Jones <lamont@debian.org>  Sun, 20 May 2001 08:17:33 -0600

postfix (0.0.20010502.SNAPSHOT-2) unstable; urgency=low
  * Cleanup warning for db2->db3 upgrade, try to restart
    even if they say no to auto-conversion.  Closes: #97587.

 -- LaMont Jones <lamont@debian.org>  Tue, 15 May 2001 10:41:16 -0600

postfix (0.0.20010502.SNAPSHOT-1) unstable; urgency=low
  * New upstream version.  Includes all fixes through 20010228-pl02.
    See /usr/share/doc/postfix/changelog.
  * Add 'Conflicts: libnss-db (<<2.2-3)' to force db3 version of
    libnss-db, if libnss-db is on the machine.
  * Auto-convert postfix maps when upgrading to db3.  Closes: #94954, #95587.
  * Add || true on removing overrides.  Closes: #96820.
  * Add scalemail support into the default master.cf.

 -- LaMont Jones <lamont@debian.org>  Sun,  6 May 2001 08:53:21 -0600

postfix (0.0.20010329.SNAPSHOT-5) unstable; urgency=low
  * compromise with upstream on how to do the db3 changeover...
  * With libdb3 change, libdb2/3 interactions go away.  Closes: #94379.

 -- LaMont Jones <lamont@debian.org>  Fri, 20 Apr 2001 23:43:37 -0600

postfix (0.0.20010329.SNAPSHOT-4) unstable; urgency=low
  * Change to use libdb3 to avoid any libdb2/3 interactions in libc.

 -- LaMont Jones <lamont@debian.org>  Wed, 18 Apr 2001 07:56:37 -0600

postfix (0.0.20010329.SNAPSHOT-3) unstable; urgency=low
  * Eliminate useless notes from LDAP dictionaries.
  * If relayhost was manually set on an internet site, upgrades would
    clear the relayhost.  Closes: #93161.

 -- LaMont Jones <lamont@debian.org>  Sat,  7 Apr 2001 22:14:47 -0600

postfix (0.0.20010329.SNAPSHOT-2) unstable; urgency=low
  * Somehow lost dbm support.

 -- LaMont Jones <lamont@debian.org>  Wed,  4 Apr 2001 11:47:12 -0600

postfix (0.0.20010329.SNAPSHOT-1) unstable; urgency=low
  * New upstream version.
  * Add ia64 workaround in mymalloc.c (was causing SIGBUS).
  * Lintian (debconf config) fixes.

 -- LaMont Jones <lamont@debian.org>  Fri, 30 Mar 2001 22:39:24 -0700

postfix (0.0.20010228-2) unstable; urgency=low
  * No configuration on install failed.  Closes: #88085

 -- LaMont Jones <lamont@debian.org>  Thu,  1 Mar 2001 11:47:45 -0700

postfix (0.0.20010228-1) unstable; urgency=low
  * FIRST NON-BETA RELEASE!!!  Otherwise, no change from
    0.0.20010225.SNAPSHOT-1.  Differences from upstream are:
    - nqmgr and virtual delivery agents are included (these are
      still pretty fluid, and therefore not in the upstream
      release, although they remain in the upstream snapshots.)
    - rmail client from Sendmail is included.
    - minor bug fixes in LDAP maps (to be incorporated upstream
      very soon - they just didn't make the cut for first release.)

 -- LaMont Jones <lamont@debian.org>  Wed, 28 Feb 2001 16:03:40 -0700

postfix (0.0.20010225.SNAPSHOT-1) unstable; urgency=low
  * New upstream revision.
  * Introduces mynetworks_style config parameter, which affects how
    mynetworks is built by default.

 -- LaMont Jones <lamont@debian.org>  Mon, 26 Feb 2001 09:41:28 -0700

postfix (0.0.20010222.SNAPSHOT-1) unstable; urgency=low
  * New upstream revision, release candidtate.  See
    /usr/share/doc/postfix/changelog and .../RELEASE_NOTES for details.
    - Postfix no longer automatically delivers recipients one at a time
      when their domain is listed in $mydestination.  This change solves
      delivery performance problems with delivery via LMTP, and with
      firewall relays that forward all mail for $mydestination to an
      inside host.  See xxx_destination_recipient_limit.
    - Virtual mailbox delivery agent (actually introduced in 0.0.20010128)
    - Closes: #87255.
  * Fix core dump in closing ldap maps without _domain specified.
  * Always ask whether to use a world-writable maildrop (even for "No
    configuration" case.)  Closes: #86408.
  * Teach init.d script about force-reload.  Closes: #86399.

 -- LaMont Jones <lamont@debian.org>  Fri, 23 Feb 2001 08:03:53 -0700

postfix (0.0.20010204.SNAPSHOT-1) unstable; urgency=low
  * New upstream release.
  * Make 'No configuration' the default if main.cf exists.  Closes: #84335.
  * Make sure to handle maildrop perms even in 'No configuration' case.
    Reported by Branden Robinson on IRC.

 -- LaMont Jones <lamont@debian.org>  Sun,  4 Feb 2001 18:16:02 -0700

postfix (0.0.20010128.SNAPSHOT-1) unstable; urgency=low
  * New upstream release, near-to-release.
  * it's mydestination, not destinations.  Closes: #83606.

 -- LaMont Jones <lamont@debian.org>  Sun, 28 Jan 2001 21:15:18 -0700

postfix (0.0.20001217.SNAPSHOT-7) unstable; urgency=high
  * Fix stupid mistake with move of main.cf.dist to examples. (install fails)

 -- LaMont Jones <lamont@debian.org>  Tue, 23 Jan 2001 15:24:58 -0700

postfix (0.0.20001217.SNAPSHOT-6) unstable; urgency=low
  * When copying /etc/passwd into chroot (because of local_maps), strip
    passwords...
  * Leave the source-default for myorigin set to the upstream default.
    Move main.cf.{default,dist} to /usr/share/doc/postfix/examples.
    Reported by Marco d'Itri.  Closes: #82905.
  * Remove pointless README's from the binary.
  * /etc/postfix/{pcre_table,regexp_table} were not listed as config
    files.

 -- LaMont Jones <lamont@debian.org>  Sat, 20 Jan 2001 10:51:30 -0700

postfix (0.0.20001217.SNAPSHOT-5) unstable; urgency=low
  * If using local_recipient_maps = ... unix:passwd.byname, then copy
    /etc/passwd into the chroot jail so that local users get mail.
    Closes: #65473.
  * remove dpkg-statoverride workaround.
  * If 'No configuration' is specified, leave main.cf ALONE.

 -- LaMont Jones <lamont@debian.org>  Sat, 13 Jan 2001 21:02:25 -0700

postfix (0.0.20001217.SNAPSHOT-4) unstable; urgency=low
  * Fix ldap_domain.  Closes: #81558.
  * Fix version comparison in preinst.  Closes: #81044.
  * Give procmail question a default answer (on iff procmail exists).
  * Use dpkg-statoverride to deal with postdrop.  Closes: #65083, #65089
  * Remove contents of /var/spool/postfix/{lib,etc} in prerm.

 -- LaMont Jones <lamont@debian.org>  Thu, 11 Jan 2001 18:43:37 -0700

postfix (0.0.20001217.SNAPSHOT-2) unstable; urgency=low
  * maildrop was created in /etc/postfix.  Closes: #80117.

 -- LaMont Jones <lamont@debian.org>  Wed, 20 Dec 2000 07:50:35 -0700

postfix (0.0.20001217.SNAPSHOT-1) unstable; urgency=low
  * New upstream version.  See /usr/share/doc/postfix/RELEASE_NOTES.
    - All time-related config parameters (except for LDAP and MYSQL)
      now take a 1 letter suffix to indicate units: (s)econd, (m)inute,
      (h)our, (d)ay, (w)eek.
    - Partial rewrite of MYSQL client around memory problems - needs
      more work and a production test.  Please report any problems.
    - local_transport and default_transport now accept transport:destination
      notation.  The :destination is optional.
    - Fix for postconf -m defect.
    - Starting with snapshot-20000531, mail submitted via the sendmail
      interface (SMTP was OK) had unterminated text records, and parts of
      lines longer than 2048 bytes deleted from message content.
    - Failure to connect to an LDAP server could result in coredumps
      due to a dangling pointer.
  * Don't set myhostname in postinst if main.cf exists.  Closes: #79390.
  * Allow myorigin=/etc/mailname, which will help eliminate stomping on
    main.cf.  Setting the mailname with debconf will result in /etc/mailname
    having the new mailname, and myorigin=/etc/mailname.

 -- LaMont Jones <lamont@debian.org>  Sun, 17 Dec 2000 21:31:04 -0700

postfix (0.0.20001210.SNAPSHOT-1) unstable; urgency=low
  * New upstream version.  See /usr/share/doc/postfix/RELEASE_NOTES.
    - local delivery agent now logs warning when unable to create
      /file/name.lock (on /file/name deliveries).  Delivery continues
      as before.
    - The queue manager could deadlock for 10 seconds when bouncing
      mail under extreme load from one-to-one mass mailings.
    - Local delivery performance was substandard, because the per-user
      concurrency limit accidentally applied to the entire local
      domain.
    - smtp client skips "CODE TEXT" (instead of treating it as "CODE
      SPACE TEXT".
    - Changes in libutil and libglobal routines, may affect third party
      code.
    - mailbox locking now fully run-time configurable.
    - "import_environment" and "export_environment" parameters now
      provide explicit control over the environment of postfix daemons.
    - "mailbox_transport" and "fallback_transport" parameters now
      understand the form "transport:nexthop", with suitable defaults.

 -- LaMont Jones <lamont@debian.org>  Sun, 10 Dec 2000 22:56:06 -0700

postfix (0.0.20001121.SNAPSHOT-1) unstable; urgency=low
  * New upstream version, support for sendmail style virtual domains.
    Upstream fix for #76760.  (sendmail now supports -G option.)
  * Defaults were handled poorly in config code.  Closes: #77444.
  * More debconf cleanup.  Closes: #77094.
  * Only set myorigin in /etc/init.d/postfix if /etc/mailname is newer
    than /etc/postfix/main.cf (was unconditional).  Closes: #77789.
  * Prior rev had problems if upgrading a non-world-writable mailspool
    from -3.  Closes: #78222.

 -- LaMont Jones <lamont@debian.org>  Mon, 27 Nov 2000 20:34:27 -0700

postfix (0.0.20001030.SNAPSHOT-4) unstable; urgency=low
  * Remove -G option from rmail's invocation of sendmail.  Closes: #76760.
  * Cleanup debconf config file.  Closes: #76759, #76770.

 -- LaMont Jones <lamont@debian.org>  Wed, 11 Nov 2000 19:16:40 -0600

postfix (0.0.20001030.SNAPSHOT-3) unstable; urgency=low
  * If /etc/mailname doesn't exist, don't set myorigin at startup.
    Closes: #76546, #76584.
  * LDAP queries were broken if _domain was not specified.
  * Integrated debconf support, based on patches by Colin Walters
    <walters@cis.ohio-state.edu> and John Goerzen <jgoerzen@progenylinux.com>,
    and some Perl help from Tommi Virtanen on IRC.
  * Change default 'mynetworks' to just 127.0.0.0/8.  If the machine
    is supposed to relay mail for other hosts, main.cf needs to be
    edited.  Closes: #72744, #56287, #74288.
  * Upgrade rmail to the copy from sendmail 8.11.1.

 -- LaMont Jones <lamont@debian.org>  Wed, 10 Nov 2000 08:11:46 -0600

postfix (0.0.20001030.SNAPSHOT-2) unstable; urgency=low
  * Remove bash-ism in /etc/init.d/postfix.  Closes: #76292.

 -- LaMont Jones <lamont@debian.org>  Sun,  5 Nov 2000 12:35:04 -0600

postfix (0.0.20001030.SNAPSHOT-1) unstable; urgency=low

  * New upstream version: DSN-style bounce messages, better LDAP support
    Closes: #72659, #75017, #75962.
  * Fix bsmtp line.  Closes: #72504
  * Fix build-depends line.  Closes: #73678
  * Copy resolv.conf at ppp startup.  Closes: #74497
  * Remove SASL support (introduced in prior NMU).  Waiting for
    the upstream author to support SASL.
  * Add quotes in postinst.  Closes: #68351

 -- LaMont Jones <lamont@debian.org>  Tue, 31 Oct 2000 16:09:40 -0600

postfix (0.0.20000531.SNAPSHOT-1.1) unstable; urgency=low

  * NMU for libdb2/glibc upgrade
  * Move build-deps to general control section
  * Add version to libdb2 build-dep, also changed libopenldap-dev to
    libldap2-dev and libpcre2-dev to libpcre3-dev.
  * Fixed some minor compilation problems with dict_ldap.c for libldap2
  * debian/rules: modify AUXLIBS to include libgdbm, libsasl and libdb2,
    and add -ldl to LIBS.

 -- Ben Collins <bcollins@debian.org>  Wed, 27 Sep 2000 16:22:15 -0400

postfix (0.0.20000531.SNAPSHOT-1) unstable; urgency=low
  * New upstream SNAPSHOT.  FEATURES IN SNAPSHOTS ARE SUBJECT TO CHANGE
    WITHOUT WARNING.  Future uploads to unstable may or may not roll
    such changes into your configuration.  You have been warned...
    See /usr/share/doc/postfix/RELEASE_NOTES.

    Note that queue files from this version and later will not be accepted
    by earlier versions of Postfix, so downgrading would be a challenge...
    (Old queue files work just fine with this version.)

  * Content filtering support.  See /usr/share/doc/postfix/FILTER_README.
  * LMTP support.  See /usr/share/doc/postfix/LMTP_README.
  * nroff commands are gone from the config files.  Closes: #49674.

 -- LaMont Jones <lamont@debian.org>  Wed, 31 May 2000 22:39:40 -0600

postfix (0.0.19991231pl08-1) unstable; urgency=low
  * New upstream version:  adds body_checks for content filter looking
    at non-header lines one at a time (including MIME headers in the
    message body.)

 -- LaMont Jones <lamont@debian.org>  Sun, 28 May 2000 21:29:16 -0600

postfix (0.0.19991231pl07-1) unstable; urgency=low
  * New upstream version, see RELEASE_NOTES for changes.
  * Makefile cleanup, switch to using doc-base.  Closes: #64086.
    Also gets rid of /usr/share/doc/postfix/index.html.

 -- LaMont Jones <lamont@debian.org>  Wed, 24 May 2000 10:24:17 -0600

postfix (0.0.19991231pl05-2) frozen unstable; urgency=low
  * Provide /usr/share/doc/postfix/index.html.  Closes: #60801.
  * Change cyrus delivery agent in master.cf.  Closes: #62512.
  * Handle case where admin created postfix user, but not group before
    installing.  Closes: #61049.
  * Add -e to startup script, avoiding nuking libnss_*so*.  Closes: #62330.
  * Quit creating /usr/man/man[158].  Closes: #61430.
  * lintian fixes.
  * Suggest procmail, rather than recommend.

 -- LaMont Jones <lamont@debian.org>  Wed, 24 May 2000 07:21:27 -0600

postfix (0.0.19991231pl05-1) frozen unstable; urgency=low
  * New upstream patch rev.
  * Postdrop should be owned by root.  Closes: #59058
  * Better detection of when postfix user already exists.  Closes: #59417
  * If hostname is not set, figure it out at runtime.  Closes: #58199
  # Upload to unstable and frozen.  Closes: #60343

 -- LaMont Jones <lamont@debian.org>  Wed, 15 Mar 2000 09:41:54 -0600

postfix (0.0.19991231pl04-1) frozen; urgency=low
  * New upstream version.
  * Make postfix run chrooted, like it's supposed to.
  * Eliminate complaints about different libnss* versions in chroot. Closes
    #58364, #58181.

 -- LaMont Jones <lamont@debian.org>  Sun, 20 Feb 2000 10:57:28 -0600

postfix (0.0.19991231pl02-1) unstable; urgency=low
  * New upstream version, with incompatible changes in transport map
    processing.  Many other enhancements, see the upstream changelog
    for more detail.
  * RELEASE_NOTES didn't make it into the package before, because it
    was overwritten by HISTORY (as changelog).

 -- LaMont Jones <lamont@debian.org>  Mon, 10 Jan 1999 22:22:53 -0600

postfix (0.0.19990906pl07-1) unstable; urgency=low
  * New upstream patch.
  * Make console messages match standard.  Closes #44677,45209
  * Rename HISTORY to changelog, per policy.  Closes #46034
  * Move docs to /usr/share/doc/postfix, per current policy.  Closes #47279
  * Only automatically start Postfix on an upgrade.  Close #48855

 -- LaMont Jones <lamont@debian.org>  Sun, 14 Nov 1999 11:06:56 -0600

postfix (0.0.19990906pl02-1) unstable; urgency=low
  * New upstream patch.
  * Add in the rest of the README files, and BEWARE file.

 -- LaMont Jones <lamont@debian.org>  Tue,  7 Sep 1999 12:49:06 -0600

postfix (0.0.19990906pl01-1) unstable; urgency=low
  * New upstream version.
  * process check_sender_access (without a warning) when no sender has
    been specified.

 -- LaMont Jones <lamont@debian.org>  Tue,  7 Sep 1999 09:39:02 -0600

postfix (0.0.19990627-6) unstable; urgency=low
  * Missing several files from /usr/doc/postfix/html. Closes Bug#43407
  * Upstream patch: possible core dump from VRFY with check_relay_domains
  * Copy files into the chroot at startup time, add comment to the same
    effect in ip-up.d/postfix.
  * Rebuild with gcc 2.95-1.1, Closes Bug#43676
  * New dict_ldap.c from upstream (and sideways).  I understand that this
    should be in the next beta.  Add LDAP support (static built with
    libopenldap1 1.2.6-1)  Closes Bug#43609
  * Upstream patch: lock around DB open to avoid race with DB rebuilds.

 -- LaMont Jones <lamont@debian.org>  Tue, 31 Aug 1999 20:13:23 -0600

postfix (0.0.19990627-5) unstable; urgency=low
  * Bad port number in error message from smtp_connect (Bug#43178)
  * Better fix for always_bcc problem (Bug#43235)

 -- LaMont Jones <lamont@debian.org>  Thu, 19 Aug 1999 20:52:11 -0600

postfix (0.0.19990627-4) unstable; urgency=low
  * Fix postinstall script's check for NIS. (Bug #43036)

 -- LaMont Jones <lamont@debian.org>  Mon, 16 Aug 1999 07:05:23 -0600

postfix (0.0.19990627-3) unstable; urgency=low
  * Various upstream fixes:
  * Fix to build with libpcre2 2.07 (don't try to build with < 2.06) Bug #43004
  * Fix sendmail exit status.
  * Add $SENDER to supported mailbox_command arguments.
  * always_bcc and sendmail -t didn't mix well (sendmail only sent to the
    always_bcc recipient.)

 -- LaMont Jones <lamont@debian.org>  Sat, 14 Aug 1999 19:00:14 -0600

postfix (0.0.19990627-2) unstable; urgency=low
  * Postinst failed copying stuff into the chroot if the file did not exist
    on the system. (Bug #41013)

 -- LaMont Jones <lamont@debian.org>  Thu,  8 Jul 1999 17:29:34 -0600

postfix (0.0.19990627-0) unstable; urgency=low
  * New upstream SNAPSHOT (pre-beta).
  * DFSG compatible license!!!!
  * Cleanup init.d to just let postfix-script say it's piece. (Bug #39822)
  * Don't deliver /etc/postfix files that aren't conffiles... (Bug #40313)

 -- LaMont Jones <lamont@debian.org>  Sun, 27 Jun 1999 23:15:57 -0600

postfix (0.0.19990601-3) unstable; urgency=low
  * /usr/include/paths.h has a bad value for _PATH_MAILDIR.  Fixed by getting
    a good copy of libc6-dev (2.1.1-10, not -5...)

 -- LaMont Jones <lamont@debian.org>  Sun,  6 Jun 1999 23:23:21 -0600

postfix (0.0.19990601-2) unstable; urgency=low
  * Have postinst take care of installing postfix-script,
    instead of defaulting it in the package. (Bug #39009)

 -- LaMont Jones <lamont@debian.org>  Sat,  5 Jun 1999 22:13:41 -0600

postfix (0.0.19990601-1) unstable; urgency=low
  * New upstream version
  * Fix handling of mailname (Bug #37593)
  * Remove prompt in preinst (Bug #35413)
  * Only prompt when absolutely necessary during install/upgrade.
  * Add PCRE support, using libpcre.a (Bug #36780)
  * See /usr/doc/postfix/changelog for incompatible changes from
    prior version.
  * The supported map types in this build are: environ, unix, hash,
    btree, nis, pcre, and regexp.

 -- LaMont Jones <lamont@debian.org>  Tue,  1 Jun 1999 22:27:21 -0600

postfix (0.0.19990317pl01-2) unstable; urgency=low
  * add dhelp support

 -- LaMont Jones <lamont@debian.org>  Wed, 12 May 1999 17:25:00 -0600

postfix (0.0.19990317pl01-1) unstable; urgency=low
  * New upstream release
  * If suidmanager is being used, unregister /usr/sbin/sendmail (Bug #33995).
    This works around a sendmail defect (#33656), fixed in sendmail 8.9.3-2.
  * Don't override CC setting in debian/rules (Bug #34720).
  * Add rmail: actually, copy the source over from sendmail 8.9.3-2, and
    wrap a Postfix-style makefile around it. (Bug #31814)
  * Actually list the dependency on adduser. (Bug #34979)

 -- LaMont Jones <lamont@debian.org>  Wed, 24 Mar 1999 01:00:15 -0700

postfix (0.0.19990122pl01-1) unstable; urgency=low
  * Upstream patch release, see /usr/doc/postfix/changelog.
  * Fix upload to include orig and .diff.  Sigh.
  * Add /usr/lib/sendmail symlink (bug 30940)

 -- LaMont Jones <lamont@debian.org>  Mon,  1 Feb 1999 20:10:59 -0600

postfix (0.0.19990122-1) unstable; urgency=low
  * New upstream version.  See /usr/doc/postfix/changelog.
  * Use dot locks, in conformance with Debian standards. (bug 32683)

 -- LaMont Jones <lamont@debian.org>  Wed, 22 Jan 1999 23:30:14 -0600

postfix (0.0.19981230pl01-1) unstable; urgency=low
  * Upstream patch for > 50 recipients per delivery.  Refused recipients
    (with transient errors) would not be retried.

 -- LaMont Jones <lamont@debian.org>  Wed, 13 Jan 1999 20:31:10 -0600

postfix (0.0.19981230-3) unstable; urgency=low
  * Make sure that postdrop and maildrop have the right permissions
    in all of the permutations of writable/non world-writable
    maildrop.

 -- LaMont Jones <lamont@debian.org>  Sat,  9 Jan 1999 18:31:10 -0600

postfix (0.0.19981230-2) unstable; urgency=low
  * Fix erroneous symlink /usr/lib/zoneinfo - should be in
    /var/spool/postfix/usr/lib, not the system root...
  * Fix sed screwup in post-inst alias_maps expansion.

 -- LaMont Jones <lamont@debian.org>  Fri,  8 Jan 1999 23:10:20 -0600

postfix (0.0.19981230-1) unstable; urgency=low
  * New upstream version.  See /usr/doc/postfix/HISTORY for changes.
    Still suffers from the same not-quite-DFSG license.
  * This version allows you to have a non-world-writable maildrop,
    if you desire.  The (additional) group used for this purpose is
    'postdrop', as is the setgid program in /usr/sbin.
  * Split daemon and user commands.  post* now live in /usr/sbin,
    and the daemon programs live in /usr/lib/postfix.
  * Check if NIS is installed, and do (or do not) include nis:mail.aliases
    accordingly.
  * Make /etc/aliases not be a conffile, and don't delete it during
    dpkg --purge.  The correct answer here is probably to have all of
    the MTA's that use /etc/aliases depend on a package that provides
    just that, and that way switching MTA's won't nuke the alias
    file...

 -- LaMont Jones <lamont@debian.org>  Sun,  3 Jan 1999 19:40:30 -0600

postfix (0.0.19981211-1) unstable; urgency=low

  * Fix lintian errors, other minor cleanup.

 -- LaMont Jones <lamont@debian.org>  Mon, 14 Dec 1998 11:22:32 -0600

postfix (0.0.19981211-0) unstable; urgency=low

  * Initial beta release, contains IBM code and contrib diretcory.
    Claims to be Beta-19981211 internally...

 -- LaMont Jones <lamont@debian.org>  Fri, 11 Dec 1998 22:31:37 -0600