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
|
dovecot (1:2.3.13+dfsg1-2+deb11u1) bullseye; urgency=medium
* [4b5dac8] d/patches: cherry-pick fix for CVE-2022-30550 (Closes: #1016351)
* [597ba7f] salsa-ci: build with bullseye
-- Noah Meyerhans <noahm@debian.org> Sun, 31 Jul 2022 17:47:06 -0700
dovecot (1:2.3.13+dfsg1-2) unstable; urgency=high
* Import upstream fixes for security issues (Closes: #990566):
- CVE-2021-29157: Path traversal issue allowing an attacker with
access to the local filesystem can trick OAuth2 authentication into
using an HS256 validation key from an attacker-controlled location
- CVE-2021-33515: Sensitive information could be redirected to an
attacker-controlled address because of a STARTTLS command injection
bug in the submission service
-- Noah Meyerhans <noahm@debian.org> Tue, 20 Jul 2021 08:05:19 -0700
dovecot (1:2.3.13+dfsg1-1) unstable; urgency=medium
[ Christian Göttsche ]
* [6829237] New upstream version 2.3.13 (Closes: #979363)
- CVE-2020-24386: IMAP hibernation allows accessing other peoples mail
- CVE-2020-25275: MIME parsing crashes with particular messages
* [6d25736] Add libzstd-dev to build-dependencies (Closes: #969165)
* [5956798] Rebase patches
* [2cb63c3] Bump to standards version 4.5.1 (no further changes)
* [548bac5] Drop unmatched copyright src/lib-ntlm/* wildcard
* [6f33f3f] Ignore package-contains-documentation-outside-usr-share-doc
false-positives
* [dde9c94] Handle removed configuration file in postinst
[ Pino Toscano ]
* [04a60e3] d/{control,rules}: disable apparmor support on !linux archs
(Closes: #951869)
[ Helmut Grohne ]
* [e5f9fcb] d/patches: improve cross-compile support (Closes: #979370)
-- Noah Meyerhans <noahm@debian.org> Mon, 25 Jan 2021 15:38:17 -0800
dovecot (1:2.3.11.3+dfsg1-2) unstable; urgency=medium
[ Christian Göttsche ]
* [44770f6] Add patch for 32bit compiler warnings
* [053865a] Lintian: remove unused override
* [4ece2e1] Lintian: add forwarded header to Debian specific patches
* [67872b7] Lintian: ignore Debian only man page
* [d30bd7e] Lintian: tag manpage-without-executable got renamed to
spare-manual-page
* [3bdf952] Limit libcap-dev build-dependency to linux-any
* [28f6425] Drop acute accent in man page
* [8c15850] Add patch allowing GSSAPI containing NULL
-- Noah Meyerhans <noahm@debian.org> Wed, 19 Aug 2020 12:06:07 -0700
dovecot (1:2.3.11.3+dfsg1-1) unstable; urgency=high
* New upstream release fixes security issues (Closes: #968302)
- CVE-2020-12100 - Receiving mail with deeply nested MIME parts leads to
resource exhaustion as Dovecot attempts to parse it.
- CVE-2020-12673 - Dovecot's NTLM implementation does not correctly check
message buffer size, which leads to reading past allocation which can
lead to crash.
- CVE-2020-12674 - Dovecot's RPA mechanism implementation accepts
zero-length message, which leads to assert-crash later on.
* Add libcap-dev to build-dependencies to support dropping linux
capabilities.
-- Noah Meyerhans <noahm@debian.org> Thu, 13 Aug 2020 16:21:24 -0700
dovecot (1:2.3.10.1+dfsg1-2) unstable; urgency=medium
* Support sd_notify with systemd (Closes: #951722)
* Add necessary CFLAGS and LDFLAGS settings to ensure functional backtrace
generation. (Closes: #962630)
* Suppress additional library-not-linked-against-libc lintian warnings some
plugins as false-positives, observed on armel systems
[ Andreas Hasenack ]
* d/t/control, d/t/testmails: cherry-pick updated autopkgtests from
Ubuntu's 1:2.2.35-2ubuntu1:
- d/t/testmails: dropped the hardcoded "Ubuntu" name from the banner
text and made it distribution agnostic
- d/t/control: added lsb-release to test dependencies, used to get the
distribution name
-- Noah Meyerhans <noahm@debian.org> Tue, 16 Jun 2020 08:29:02 -0700
dovecot (1:2.3.10.1+dfsg1-1) unstable; urgency=medium
* New upstream release addresses multiple security issues
- CVE-2020-10957
- CVE-2020-10958
- CVE-2020-10967
(Closes: #960963, #930919, #928492)
* Refresh patches
* Strip non-DFSG-compliant docs from .orig archives
* Incorporate a number of improvements to debian/ metadata contributed by
Christian Göttsche <cgzones@googlemail.com>
* Move pid file to /run (Closes: #925443)
* Add noahm@debian.org to Uploaders
* Work around flakiness in autopkgtest suite
* Suppress library-not-linked-against-libc lintian warnings some plugins as
false-positives
-- Noah Meyerhans <noahm@debian.org> Wed, 10 Jun 2020 10:41:37 -0700
dovecot (1:2.3.7.2-1) unstable; urgency=medium
* [dcaf24e] New upstream version 2.3.7.2
- Fixes CVE-2019-11500 for dovecot-core
* [111beef] Update pigeonhole to 0.5.7.2
- Fixes CVE-2019-11500 for pigeonhole/managesieve
* [a422c4c] Bump Standards-Version to 4.4.0; no changes needed
* [56e37ed] Bump dh compat to 12; no changes needed.
- Drop d/compat in favor debhelper-compat B-D.
* [476edbd] Refresh dovecot_name.patch and ssl-cert-location.patch
* [9dc7904] Drop patches included in 2.3.7.2.
- CVE-2019-10691
- CVE-2019-11494
- CVE-2019-11499
- CVE-2019-7524
- avoid-double-closing-mysql.patch
- lib-master-test-event-stats-Use-PRIu64-format.patch
-- Apollon Oikonomopoulos <apoikos@debian.org> Thu, 29 Aug 2019 11:55:51 +0300
dovecot (1:2.3.4.1-5) unstable; urgency=medium
* [bd00402] Fix CVE-2019-11494 and CVE-2019-11499 (Closes: #928235)
- submission-login: fix null pointer dereference when client
disconnects during authentication (CVE-2019-11494)
- submission-login: fix assert-crash when receiving an invalid
authentication message over TLS (CVE-2019-11499)
-- Apollon Oikonomopoulos <apoikos@debian.org> Mon, 29 Apr 2019 23:35:05 +0300
dovecot (1:2.3.4.1-4) unstable; urgency=high
* [d04d4ba] Fix assert-crash in JSON encoder (CVE-2019-10691)
-- Apollon Oikonomopoulos <apoikos@debian.org> Thu, 18 Apr 2019 10:21:19 +0300
dovecot (1:2.3.4.1-3) unstable; urgency=high
* [07c9212] Fix two buffer overflows when reading oversized FTS headers
and/or oversized POP3-UIDL headers (CVE-2019-7524).
-- Apollon Oikonomopoulos <apoikos@debian.org> Mon, 25 Mar 2019 23:06:01 +0200
dovecot (1:2.3.4.1-2) unstable; urgency=medium
[ Laurent Bigonville ]
* [ac99918] Fix double-free crash in mysql driver
Fix double closing of the connection in the mysql driver, this should
fix the crash in the dovecot auth process, taken from upstream.
(Closes: #918339)
[ Apollon Oikonomopoulos ]
* [8a30446] Bump Standards-Version to 4.3.0; no changes needed
-- Apollon Oikonomopoulos <apoikos@debian.org> Thu, 14 Mar 2019 11:02:39 +0200
dovecot (1:2.3.4.1-1) unstable; urgency=high
* [bebf0b4] New upstream version 2.3.4.1
+ Fixes CVE-2019-3814: TLS client auth username handling
-- Apollon Oikonomopoulos <apoikos@debian.org> Tue, 05 Feb 2019 16:19:12 +0200
dovecot (1:2.3.4-2) unstable; urgency=medium
* [51d1317] Fix FTBFS on 32-bit platforms.
Cherry-pick upstream commit de42b54, fixing the event-stats test on
32-bit platforms.
-- Apollon Oikonomopoulos <apoikos@debian.org> Sat, 24 Nov 2018 02:02:17 +0200
dovecot (1:2.3.4-1) unstable; urgency=medium
* [14c247f] New upstream version 2.3.4
* [7fed004] Update pigeonhole to 0.5.4
-- Apollon Oikonomopoulos <apoikos@debian.org> Fri, 23 Nov 2018 22:00:06 +0200
dovecot (1:2.3.3-1) unstable; urgency=medium
[ Jelmer Vernooij ]
* Trim trailing whitespace.
[ Apollon Oikonomopoulos ]
* [6591a99] New upstream version 2.3.3
* [3d718ec] Bump Standards-Version to 4.2.1; no changes needed
* [123bd32] Update pigeonhole to 0.5.3
-- Apollon Oikonomopoulos <apoikos@debian.org> Thu, 04 Oct 2018 17:29:40 +0300
dovecot (1:2.3.2.1-1) unstable; urgency=medium
* [40ba9f0] New upstream bugfix release 2.3.2.1
* [87045ac] Drop fix-ftbfs-on-32bit.patch; merged upstream
* [5bb22a4] Bump Standards-Version to 4.1.5; no changes needed
-- Apollon Oikonomopoulos <apoikos@debian.org> Tue, 10 Jul 2018 17:51:43 +0300
dovecot (1:2.3.2-2) unstable; urgency=medium
* [48067de] Fix FTBFS on 32-bit platforms by cherry-picking upstream commit
1e23986f.
-- Apollon Oikonomopoulos <apoikos@debian.org> Wed, 04 Jul 2018 12:43:14 +0300
dovecot (1:2.3.2-1) unstable; urgency=medium
* [bb03669] New upstream version 2.3.2
+ Upload to unstable
* [d29da3a] Merge 2.3 package changes from experimental. Important changes:
+ [b3d1e17] Enable AppArmor support, see
https://wiki2.dovecot.org/Plugins/Apparmor
• B-D on libapparmor-dev
+ [c0c55bd] Enable Lua scripting support for authdb/passdb.
• B-D on liblua5.3-dev
• New binary package, dovecot-auth-lua
+ [4f6792e] Build with sodium support, enabling the ARGON2I and ARGON2ID
password schemes.
• B-D on libsodium-dev
+ [54347e7] Build with ICU support enabling FTS unicode normalization
• B-D on libicu-dev
+ New dovecot-submissiond binary package for the dovecot submission agent;
see https://wiki2.dovecot.org/Submission.
* [4db4813] Change maintainer address to dovecot@packages.d.o
* [5118354] Update pigeonhole to 0.5.2
* [52a7af4] Drop murmur3-big-endian.patch; merged upstream
* [22a6eee] Refresh dovecot_name.patch
* [3af7568] dovecot_name.patch: apply to submissiond as well
-- Apollon Oikonomopoulos <apoikos@debian.org> Wed, 04 Jul 2018 08:57:45 +0300
dovecot (1:2.2.36-1) unstable; urgency=medium
* [19f2274] d/gbp.conf: set merge-mode to "merge" to preserve pigeonhole/
when importing new dovecot sources
* [6b9bf0d] New upstream version 2.2.36
* [be12f22] Bump pigeonhole version to 0.4.24
+ Remove new file under doc/rfc
+ Ship the new imap_filter_sieve module in dovecot-sieve
* [b77be59] Bump Standards-Version to 4.1.4; no changes needed
-- Apollon Oikonomopoulos <apoikos@debian.org> Wed, 06 Jun 2018 09:31:49 +0300
dovecot (1:2.2.35-2) unstable; urgency=medium
* [7665652] Use git-subtree to generate pigeonhole patch from git; add
single-debian-patch to d/source/local-options
* [bfa0f10] d/rules: specify libdir manually; previous upload moved modules
under /usr/lib/<triplet>, which was bound to break existing setups
* [982e826] d/copyright: adjust pigeonhole path and bump years
-- Apollon Oikonomopoulos <apoikos@debian.org> Thu, 22 Mar 2018 16:56:40 +0200
dovecot (1:2.2.35-1) unstable; urgency=medium
* [8108cba] New upstream version 2.2.35
* [6cbbaa1] Update pigeonhole to 0.4.23 (Closes: #892137)
* [9ace5f2] Switch Vcs-* URLs to salsa.d.o
* [ef40625] d/rules: call configure via dh_auto_configure.
Thanks to Helmut Grohne (Closes: #885854)
* [a459455] Drop B-D on libcurl4-gnutls-dev; removed upstream since 2.2
* [235af9d] Update upstream signing key
-- Apollon Oikonomopoulos <apoikos@debian.org> Tue, 20 Mar 2018 11:15:42 +0200
dovecot (1:2.2.34-2) unstable; urgency=high
* [868dc65] Update pigeonhole to 0.4.22
* Set urgency to high due to the security fixes in 2.2.34-1
-- Apollon Oikonomopoulos <apoikos@debian.org> Fri, 02 Mar 2018 18:36:23 +0200
dovecot (1:2.2.34-1) unstable; urgency=medium
* [f53dc9a] New upstream version 2.2.34 (Closes: #921529)
Fixes the following security issues:
+ CVE-2017-15130: TLS SNI config lookups may lead to excessive memory
usage (Closes: #891820)
+ CVE-2017-14461: rfc822_parse_domain information leak vulnerability
(Closes: #891819)
+ CVE-2017-15132: auth client leaks memory if SASL authentication is
aborted (Closes: #888432)
* [0dc98c6] Do not patch all-settings.c; regenerate it at build time
instead. Thanks to Aki Tuomi!
* [e678e3b] Bump dh compat to 11
+ B-D on debhelper (>= 11~)
+ Use dh_installsystemd instead of dh_systemd_enable
* [271b290] Bump Standards-Version to 4.1.3; no changes needed
* [3cd6715] d/copyright: bump upstream and debian years
* [380d1ac] Drop the ENABLED flag from /etc/default/dovecot (but let the
initscript handle it if it exists)
* [97d6fae] d/watch: switch upstream URL to https://
-- Apollon Oikonomopoulos <apoikos@debian.org> Thu, 01 Mar 2018 10:55:49 +0200
dovecot (1:2.2.33.2-1) unstable; urgency=medium
* [8216f38] New upstream version 2.2.33.2
-- Apollon Oikonomopoulos <apoikos@debian.org> Sat, 11 Nov 2017 20:59:43 +0200
dovecot (1:2.2.33.1-1) unstable; urgency=medium
* [dbd1132] New upstream version 2.2.33.1
+ [b3d1f2d] Refresh split-protocols.patch
+ [e0de123] Update pigeonhole to 0.4.21
* [ef6a1eb] Set mail_privileged_group to 'mail' by default (Closes: #711856)
* [aeb6cf3] d/copyright: convert to Format 1.0
* [5961f9d] Use dh-autoreconf for both, dovecot and pigeonhole.
* [85f1f0f] Bump Standards to 4.1.1; no changes needed
-- Apollon Oikonomopoulos <apoikos@debian.org> Fri, 13 Oct 2017 16:28:14 +0300
dovecot (1:2.2.32-2) unstable; urgency=medium
* [fa71c69] dovecot-core.postinst: remove dovecot-common's postrm
(Closes: #696382)
* [e835c67] Ship decode2text.sh as an example (Closes: #767313)
* [63fb486] Deprecate dovecot-dbg in favor of auto dbgsyms
* [36b44b9] Handle unsupported SSLv2/SSLv3 in the ssl_protocols setting
gracefully (Closes: #866752)
-- Apollon Oikonomopoulos <apoikos@debian.org> Tue, 19 Sep 2017 16:59:38 +0300
dovecot (1:2.2.32-1) unstable; urgency=medium
* [6652d9c] New upstream version 2.2.32.
* [c9cb096] Update pigeonhole to 0.4.20.
* [b499950] dovecot-core: remove SSL key/cert symlinks on purge
(Closes: #867157)
* [dbdcc66] dovecot-core.postinst: ignore adduser errors (Closes: #867849)
* [476c950] Bump Standards to 4.1.0; no changes needed.
* [2914efa] Drop B-D on autotools-dev, it is depended on by debhelper 10.
* [305d022] Remove Fabio, Joel and Marco from Uploaders. Thanks for your work!
-- Apollon Oikonomopoulos <apoikos@debian.org> Tue, 12 Sep 2017 16:15:52 +0300
dovecot (1:2.2.31-1) unstable; urgency=medium
* [9b058f3] New upstream version 2.2.31
+ [2b577c1] Bump pigeonhole version to 0.4.19
* Enable TLS by default:
+ [7ca4b1c] Update SSL cert location patch; cert/key should reside under
/etc/dovecot/private by default.
+ [05d3d0f] Use ssl-cert-snakeoil certificates to setup SSL by default
(Closes: #376146, #786570)
+ [862901f] dovecot-core.postinst: manage 10-ssl.conf using ucf
(Closes: #850538)
+ [418df05] README.Debian: document the new TLS setup
+ [47bade9] dovecot-core.NEWS: document TLS support
* [8356bc0] Handle /etc/dovecot/private mode using dpkg-statoverride
* dovecot-core.postinst: cleanup
+ [afbd33f] dovecot-core.postinst: always call adduser
+ [ee22dc5] dovecot-core.postinst: remove obsolete conffile handling
+ [7bb298b] dovecot-core.postinst: do not remove the imapd user/group
* [815a2d1] README.Debian: cleanup
* [91115a3] Use noawait dpkg triggers (lintian warning)
* [e845cec] Add basic usage DEP-8 test, doing end-to-end tests involving
LDA, IMAP and POP3.
* [71c73ef] systemd: convert service to Type=simple and start after
network-online.target (Closes: #865546, #825562)
* [1534fac] dovecot.service: enable ProtectSystem=full
* [d276c69] B-D only on default-libmysqlclient-dev
-- Apollon Oikonomopoulos <apoikos@debian.org> Tue, 27 Jun 2017 18:18:12 +0300
dovecot (1:2.2.30.2-1) unstable; urgency=medium
* [401e83d] New upstream version 2.2.30.2
* [1ea8321] Bump pigeonhole version to 0.4.18
* [97bf8ec] Drop CVE-2017-2669 patch
* [9c1bbe2] Drop fix-sha3-on-big-endian.patch
* [d3c607b] Refresh dovecot_name.patch
* [5c64268] Bump Standards to 4.0.0; no changes needed
* [0b884fc] Bump compat to 10
+ B-D on debhelper (>= 10)
+ Drop B-D on dh-systemd, now provided by debhelper
+ Run dh --without=autoreconf, since we use autotools-dev
-- Apollon Oikonomopoulos <apoikos@debian.org> Thu, 22 Jun 2017 22:22:59 +0300
dovecot (1:2.2.27-3) unstable; urgency=high
* [117285a] Remove /etc/dovecot/README (Closes: #849290)
* [04e8ce3] auth: Do not double-expand key in passdb dict when
authenticating (CVE-2017-2669) (Closes: #860049)
-- Apollon Oikonomopoulos <apoikos@debian.org> Tue, 11 Apr 2017 00:46:54 +0300
dovecot (1:2.2.27-2) unstable; urgency=medium
* [30586e3] Fix SHA3 on big-endian architectures.
-- Apollon Oikonomopoulos <apoikos@debian.org> Thu, 15 Dec 2016 22:24:56 +0200
dovecot (1:2.2.27-1) unstable; urgency=medium
[ Jaldhar H. Vyas ]
* [b1e4693] Imported Upstream version 2.2.27
+ Includes fix for CVE-2016-8652 (Closes: #846605)
[ Apollon Oikonomopoulos ]
* [b25993a] Drop patches merged upstream:
+ call_openssl_cleanup_at_deinit.patch
+ disable_sslv23.patch
-- Apollon Oikonomopoulos <apoikos@debian.org> Wed, 14 Dec 2016 21:48:46 +0200
dovecot (1:2.2.26.0-4) unstable; urgency=medium
* [3015f35] Drop references to SSLv2 in the default SSL protocols (Closes: #844271)
-- Apollon Oikonomopoulos <apoikos@debian.org> Mon, 14 Nov 2016 17:55:26 +0200
dovecot (1:2.2.26.0-3) unstable; urgency=medium
* [b03027b] Call OPENSSL_cleanup() on dcrypt_openssl unload. Fixes FTBFS
with OpenSSL 1.1.0c.
-- Apollon Oikonomopoulos <apoikos@debian.org> Sun, 13 Nov 2016 10:56:30 +0200
dovecot (1:2.2.26.0-2) unstable; urgency=medium
* [9db7d1b] Fix upgrades from 2.2.25 (Closes: #843028)
-- Apollon Oikonomopoulos <apoikos@debian.org> Tue, 08 Nov 2016 15:06:16 +0200
dovecot (1:2.2.26.0-1) unstable; urgency=medium
[ Apollon Oikonomopoulos ]
* [18fc181] New upstream version 2.2.26.0 (Closes: #828286, #834837)
* [3ecfd3c] Update pigeonhole to 0.4.16
* [61ff825] Move libdovecot-ldap and libdict_ldap to dovecot-ldap (Closes:
#830135).
* [b3a1650] Ubuntu: disable -Bsymbolic-functions ld flag.
Thanks to Christian Ehrhardt <christian.ehrhardt@canonical.com>
(Closes: #842151) (LP: #1636781)
* [5828ab1] B-D on default-libmysqlclient-dev (but keep plain
libmysqlclient-dev as an alternative to ease backports).
* [0086110] Drop DRAC plugin.
Thanks to Christian Ehrhardt <christian.ehrhardt@canonical.com>
(Closes: #842153)
[ Jaldhar H. Vyas ]
* [60808eb] Move aclocal *.m4 files into -dev package.
* [52fd869] Move lib95_imap_sieve_plugin.so into dovecot-sieve (Closes:
#832046).
-- Apollon Oikonomopoulos <apoikos@debian.org> Thu, 07 Jul 2016 10:17:58 +0200
dovecot (1:2.2.25-1) unstable; urgency=medium
* [cc29a81] Imported Upstream version 2.2.25
* [d19bcca] Updated pigeonhole patch to 0.4.14
* [16db179] Merged in some features of the Ubuntu dovecot package.
+ dovecot-core: added lsb-base dependency.
+ dovecot-core: Added apport hook.
+ dovecot-imapd,dovecot-pop3d: Added ufw profiles.
Thanks to Christian Erhardt <christian.ehrhardt@canonical.com>
(Closes: #828864)
-- Jaldhar H. Vyas <jaldhar@debian.org> Fri, 01 Jul 2016 17:07:03 -0400
dovecot (1:2.2.24-1) unstable; urgency=medium
* [26020b6] Imported Upstream version 2.2.24 (Closes: #818652)
-- Apollon Oikonomopoulos <apoikos@debian.org> Mon, 09 May 2016 10:42:08 +0300
dovecot (1:2.2.23-1) unstable; urgency=medium
[ Jaldhar H. Vyas ]
* Drop missing-expunges.patch, merged upstream
[ Apollon Oikonomopoulos ]
* [8a01915] Imported Upstream version 2.2.23
-- Apollon Oikonomopoulos <apoikos@debian.org> Tue, 12 Apr 2016 17:30:03 +0300
dovecot (1:2.2.22-1) unstable; urgency=medium
[ Jaldhar H. Vyas ]
* [2321581] Imported Upstream version 2.2.22
* [3fa8a62] Updated pigeonhole patch to 0.4.13
-- Jaldhar H. Vyas <jaldhar@debian.org> Fri, 18 Mar 2016 19:18:34 -0400
dovecot (1:2.2.21-1) unstable; urgency=medium
[ Jaldhar H. Vyas ]
* [d9c0630] Imported Upstream version 2.2.21 (Closes: #809666, #708539,
#801346, 803223)
* [5360548] Updated pigeonhole patch to 0.4.12
* [5e6783f] Fixed typo in dovecot-core.README.Debian.
Thanks to Ingo Wichmann <iw-debian@linuxhotel.de> (Closes: #809717)
* [d00d0c7] Create /var/lib/dovecot in the package. (Closes: #801752)
* [6510373] Upstream patch for sync problem which could cause expunged
messages to keep reappearing. (Closes: #684499)
* [040f7fa] dovecot-core: dovecot.socket not enabled on installation
(Closes: #814999)
* [fc29003] /etc/dovecot/10-ssl.conf no longer managed by ucf or modified by
postinst. Thanks to Santiago Vila <sanvila@unex.es> (Closes: #773237)
* [0d16e16] Fixed some lintian warnings.
* [801ba7e] Added Apollon to uploaders
[ Apollon Oikonomopoulos ]
* [99ef3d8] Build with lz4 support (Closes: #784321)
* [92f68aa] Fix nss userdb (Closes: #712764)
* [41b9bde] Disable dovecot.socket in existing installations.
* [49c5b97] d/rules: specify systemd unit dir manually (Closes: #720854)
* [a377ccb] Convert to dh sequencer
* [48af954] B-D on debhelper >= 9
* [591c315] Bump standards to 3.9.7; no changes needed
* [ceb629e] Use dh_installinit --name
* [ef8d8ac] d/rules: refactor file installation
* [a899bcc] dovecot-core: use dh_installman
* [6159e00] d/rules: build in parallel if requested
* [51014e6] d/control: use HTTPS Vcs-* URLs
* [b385cf5] dovecot-sieve: replace Conflicts with Breaks
* [b4a9e68] Add basic DEP-8 tests
* [7452649] Add DEP-8 tests for systemd support
* [e5101aa] Re-enable PIE and bindnow
* [5717808] Fix invoke-rc.d calls and never call init.d directly
* [3504241] Drop debconf remains
-- Jaldhar H. Vyas <jaldhar@debian.org> Tue, 01 Mar 2016 19:31:42 -0500
dovecot (1:2.2.20-1) UNRELEASED; urgency=medium
* [68d5038] Imported Upstream version 2.2.20
-- Jaldhar H. Vyas <jaldhar@debian.org> Sun, 13 Dec 2015 10:21:21 -0500
dovecot (1:2.2.19-1) UNRELEASED; urgency=medium
* [146ef57] Imported Upstream version 2.2.19
* [3af7cad] Updated pigeonhole patch to 0.4.9
-- Jaldhar H. Vyas <jaldhar@debian.org> Sun, 13 Dec 2015 09:41:56 -0500
dovecot (1:2.2.18-2) unstable; urgency=high
* [3f3bf71] Updated pigeonhole patch to 0.4.8 (Closes: #792669)
-- Jaldhar H. Vyas <jaldhar@debian.org> Sun, 23 Aug 2015 23:16:28 -0400
dovecot (1:2.2.18-1) unstable; urgency=medium
* [cce20a5] Imported Upstream version 2.2.18. Closes: #786760
* [36d2ec1] Refresh patch dovecot_name.patch.
* [109e6f8] Drop patch cve-2015-3420.patch: applied upstream.
* [6c59f09] Depend on krb5-multidev rather than libkrb5-dev.
-- Jelmer Vernooij <jelmer@debian.org> Sun, 24 May 2015 15:01:19 +0000
dovecot (1:2.2.16-1) unstable; urgency=medium
* [e9d9193] Imported Upstream version 2.2.16
* [976c256] Remove gbp- prefix from section names in debian/gbp.conf.
* [762b9a6] Add Dutch translation. Thanks, Frans Spiesschaert. Closes: #766203
* [dea3dd6] Drop bye_logout_not_sent.patch: already included upstream.
-- Jelmer Vernooij <jelmer@debian.org> Mon, 04 May 2015 12:23:05 +0000
dovecot (1:2.2.13-12) unstable; urgency=high
* [48f6fe4] Add patch cve-2015-3420.patch: Fix SSL/TLS handshake failures
leading to a crash of the login process with newer versions of OpenSSL.
Closes: #783649 (CVE-2015-3420)
-- Jelmer Vernooij <jelmer@debian.org> Mon, 04 May 2015 11:38:30 +0000
dovecot (1:2.2.13-11) unstable; urgency=high
* [ebc0377] Don't allow install of dovecot-sieve without a new enough
dovecot-core. (Closes: #772885)
-- Jaldhar H. Vyas <jaldhar@debian.org> Sun, 14 Dec 2014 12:27:50 -0500
dovecot (1:2.2.13-10) unstable; urgency=high
[ Jelmer Vernooij ]
* [93db7f0] Fix path to 90-sieve-extprograms.conf in dovecot-sieve.postinst.
Closes: #772703, #772711
[ Jaldhar H. Vyas ]
* [8c627a4] Add another db_stop this time for triggers. Die #770695 die!
-- Jaldhar H. Vyas <jaldhar@debian.org> Wed, 10 Dec 2014 19:56:20 -0500
dovecot (1:2.2.13-9) unstable; urgency=high
* [5b689f6] Made some overlooked configuration files into conffiles;
deleted excess files from /usr/share/doc/dovecot-core.
* [83f2fc4] Explicitly stop debconf in dovecot-core postinst which hopefully
fixes the last of the install hangs.
Thanks to Chris Gilbert <zeke.gilbert@gmail.com> (Closes: #770695)
-- Jaldhar H. Vyas <jaldhar@debian.org> Tue, 09 Dec 2014 06:17:23 -0500
dovecot (1:2.2.13-8) unstable; urgency=medium
* [b2f652f] Turn off SSL by default and leave SSL cert locations commented
out. Hopefully this will be a satisfactory lowest common denominator for
new installs without messing with upgrades.
(Closes: #771334, #771407)
-- Jaldhar H. Vyas <jaldhar@debian.org> Tue, 02 Dec 2014 00:21:30 -0500
dovecot (1:2.2.13-7) unstable; urgency=high
* [daea09a] Commented out cert locations so install doesn't bomb if the
certs haven't been created yet.
(Closes: #706216, #732263, #767154, #768253, #769461, #770697)
-- Jaldhar H. Vyas <jaldhar@debian.org> Fri, 28 Nov 2014 00:27:03 -0500
dovecot (1:2.2.13-6) unstable; urgency=medium
* [f7205c0] dovecot-dev: removed dependency on dovecot-core
* [e393868] Removed SSL certificate generation from postinst. From now on
you have to do this yourself. See dovecot-core's README.debian for
instructions. (Closes: #730828)
-- Jaldhar H. Vyas <jaldhar@debian.org> Sat, 25 Oct 2014 23:31:42 -0400
dovecot (1:2.2.13-5) unstable; urgency=medium
* Fix name of organizationName field in SSL configuration for self-
signed certs. Closes: #760653
-- Jelmer Vernooij <jelmer@debian.org> Sat, 06 Sep 2014 23:19:51 +0200
dovecot (1:2.2.13-4) unstable; urgency=medium
* Add Provides with dovecot ABI version, for plugins to depend on.
Closes: #456021
-- Jelmer Vernooij <jelmer@debian.org> Sun, 20 Jul 2014 19:31:09 +0200
dovecot (1:2.2.13-3) unstable; urgency=medium
* Build-depend on clucene 2.3 or later, which upstream lists as the
minimum version. Closes: #754141
* Use configuration file for openssl certificate configuration.
* Use canonical address for Vcs-Browser header.
* Remove unnecessary asterisk from NEWS entry; fixes lintian warning.
* Remove unused lintian override for usr/lib/dovecot/imap.
* dovecot-core: Ignore lintian warnings for empty directories.
-- Jelmer Vernooij <jelmer@debian.org> Tue, 08 Jul 2014 01:48:08 +0200
dovecot (1:2.2.13-2) unstable; urgency=medium
* [bd5e34b] Patches from upstreams' hg repo to fix BYE and LOGOUT not being
sent. (Closes: #751682)
* [452e336] Czech translation for debconf.
Thanks to Michal Šimůnek (Closes: #751389)
-- Jaldhar H. Vyas <jaldhar@debian.org> Wed, 25 Jun 2014 01:38:59 -0400
dovecot (1:2.2.13-1) unstable; urgency=medium
* [0680040] Imported Upstream version 2.2.13
-- Jelmer Vernooij <jelmer@debian.org> Sun, 25 May 2014 18:45:38 +0200
dovecot (1:2.2.13~rc1-1) unstable; urgency=medium
* [7751508] Imported Upstream version 2.2.13~rc1
+ Fixes denial of service vulnerability (CVE-2014-3430). Closes: #747549
-- Jelmer Vernooij <jelmer@debian.org> Sat, 10 May 2014 14:34:14 +0200
dovecot (1:2.2.12-3) unstable; urgency=medium
* [0383db0] Break long line.
* [c961b6a] Fix installation of sieve plugins. Closes: #742770, #684271
* [388d2bf] Strip body.rfc5173.txt from the pigeonhole patch, as it is
non-free. Closes: #745398
-- Jelmer Vernooij <jelmer@debian.org> Wed, 23 Apr 2014 02:56:56 +0200
dovecot (1:2.2.12-2) unstable; urgency=medium
* [c882a38] Add build dependencies libstemmer-dev and libexttextcat-dev,
used by dovecot-lucene.
* [67762d4] Use autotools-dev to update config.guess and config.sub.
* [33e79b7] Update Japenese po file. Thanks, victory. Closes: #730171
* [cbf213b] Add non-standard-dir-perm override for /etc/dovecot/private.
-- Jelmer Vernooij <jelmer@debian.org> Sun, 23 Mar 2014 17:57:04 +0000
dovecot (1:2.2.12-1) experimental; urgency=medium
* [52b67de] Update watch file for 2.2 series.
* [c4eac1f] Verify upstream tarball signature in watch file.
* [3a81ff9] Imported Upstream version 2.2.12
* [8950a86] Bump standards version to 3.9.5 (no changes).
* [cd82417] Add myself to uploaders.
-- Jelmer Vernooij <jelmer@debian.org> Thu, 06 Mar 2014 22:45:19 +0000
dovecot (1:2.2.10-1) unstable; urgency=low
* [0496c52] Imported Upstream version 2.2.10
* [515dd61] Added new package for Lucene full text search support.
Thanks to Jelmer Vernooij <jelmer@debian.org> for the patch.
(Closes: #685979)
* [718a68e] Fix old private key location in README.Debian.
Thanks to Jelmer Vernooij <jelmer@debian.org> for the patch.
(Closes: #702385)
* [42da568] dovecot-solr: Make sure solr-schema.xml gets installed.
(In /usr/share/dovecot)
(Closes: #695185)
* [77acbf7] Added /usr/share/dovecot/dovecot-abi file in dovecot-dev to
document -- you guessed it! -- the dovecot ABI version.
* [feb597a] Added support for xz compression.
-- Jaldhar H. Vyas <jaldhar@debian.org> Thu, 06 Mar 2014 02:51:34 -0500
dovecot (1:2.2.9-1) unstable; urgency=low
[ Jaldhar H. Vyas ]
* [77468cf] Imported Upstream version 2.2.9
* [43e08f3] Place dovenull user in its own group. (Closes: #725164)
* [e1a3e9c] Handled the fact that dovecot-db.conf.ext is no longer used.
(Closes: #728107, #730403)
[Debconf translation updates]
* Russian (Yuri Kozlov). (Closes: #729106)
* German (Chris Leick). (Closes: #729358)
* Danish (Joe Hansen). (Closes: #729425)
* French (Julien Patriarca). (Closes: #729966)
* Portuguese (Américo Monteiro). (Closes: #730006)
* Polish (Michał Kułach). (Closes: #730061)
* Italian (Beatrice Torracca). (Closes: #730136)
* Japanese (victory). (Closes: #73017)
* Swedish (Martin Bagge / brother). (Closes: #730188)
* Spanish; (Camaleón). (Closes: #730354)
-- Jaldhar H. Vyas <jaldhar@debian.org> Thu, 16 Jan 2014 15:42:13 -0500
dovecot (1:2.2.8-1) UNRELEASED; urgency=low
* [6157a2b] New upstream version 2.2.8
-- Jaldhar H. Vyas <jaldhar@debian.org> Thu, 21 Nov 2013 16:54:46 -0500
dovecot (1:2.2.5-1) experimental; urgency=low
[ Micah Anderson ]
* [a0035bf] New upstream version 2.2.5
* [a053c49] Update pigeonhole patch to 0.4.1
* [689cd67] refreshed patches
[ Jaldhar H. Vyas ]
* Caused bugs and then fixed them again.
-- Jaldhar H. Vyas <jaldhar@debian.org> Mon, 09 Sep 2013 00:57:32 -0400
dovecot (1:2.1.17-2) unstable; urgency=low
* [e8286e0] New version of drac patch taken from Ubuntu which works better
with 2.x (Closes: #716764)
* [23acb40] Add a patch from Ubuntu to report the distro name in the login
banner why not.
* [f8d566e] Don't need dovecot-common package anymore; get rid of it.
-- Jaldhar H. Vyas <jaldhar@debian.org> Sat, 07 Sep 2013 14:58:05 -0400
dovecot (1:2.1.17-1) experimental; urgency=low
[ Jaldhar H. Vyas ]
* [fa0d6aa] Re-enable mbox write locking patch to comply with policy 11.6
(Closes: #720502)
* [38691fb] New upstream version (Closes: #719021)
* [1361144] prompts in dovecot-core postinst debconfiscated.
* IN MEMORIAM: Goldy the Goldfish (2000-2013) You were a prince (or
perhaps princess?) among fish and we shall all miss you dearly.
May your karmas merit much punya in future lives.
-- Jaldhar H. Vyas <jaldhar@debian.org> Fri, 23 Aug 2013 01:46:20 -0400
dovecot (1:2.1.16-1) experimental; urgency=low
* [9741bd8] New Upstream version
* [3476489] Updated pigeonhole patch to 0.3.5
* [d4f236f] Removed some patches which are no longer required.
-- Jaldhar H. Vyas <jaldhar@debian.org> Fri, 14 Jun 2013 16:25:19 -0400
dovecot (1:2.1.7-8) experimental; urgency=low
* This version is not actually intended for upload. It merely undoes
some changes made for the the wheezy release. Namely, the following
features are back:
- TCP Wrappers support
- Hurd compatibility support
- Triggers.
-- Jaldhar H. Vyas <jaldhar@debian.org> Thu, 13 Jun 2013 16:14:21 -0400
dovecot (1:2.1.7-7) unstable; urgency=high
* If you are upgrading from stable or earlier versions of this package
from testing/unstable please carefully read
/usr/share/doc/dovecot-core/README.Debian.gz for important information
about changes.
* [0d74b31] Move Breaks/Replaces mailavenger from dovecot-common to
dovecot-core (Closes: #694376)
* [a8030a1] Revamped dovecot-cores README.Debian by adding any info I could
think of in order to ease upgrade problems. (Closes: #696820)
* [04798d3] Don't touch 10-ssl.conf at all. Eventually I will DTRT with
regards to the default generated ssl certificates but in the mean time
this will do the least mischief. (Closes: #696817)
* [fde17d1] Patch to make /etc/dovecot/readme point to the right place for
the example configuration. (Closes: #698941)
-- Jaldhar H. Vyas <jaldhar@debian.org> Mon, 04 Feb 2013 16:27:17 -0500
dovecot (1:2.1.7-6) unstable; urgency=high
* WARNING: in order to get this package into wheezy some functionality
from the previous release had to be removed. Namely:
- TCP Wrappers support
- Hurd compatibility support
- Triggers
All this will be coming back in the next version but for now, if you need
any of it, stick with -5.
* [1f869e0] NEWS.Debian was not getting added to the package (Closes: #693621)
* [564c5e2] Add breaks and replaces mailavenger for debian-common
(Closes: #694376)
-- Jaldhar H. Vyas <jaldhar@debian.org> Fri, 14 Dec 2012 17:01:33 -0500
dovecot (1:2.1.7-5) unstable; urgency=high
* [132bc3b] Remove call to ntp-wait in init script. Dovecot handles a
skewed clock much better now. (Closes: #693225)
-- Jaldhar H. Vyas <jaldhar@debian.org> Wed, 14 Nov 2012 14:45:29 -0500
dovecot (1:2.1.7-4) unstable; urgency=high
* [68ef7ad] piuparts complained /etc/dovecot/private was left unowned on
purge which is against policy (Closes: #692944)
-- Jaldhar H. Vyas <jaldhar@debian.org> Sun, 11 Nov 2012 23:45:07 -0500
dovecot (1:2.1.7-3) unstable; urgency=high
[ Jaldhar H. Vyas ]
* [03d5499] Do not generate new dovecot cert if key or cert is already
present (Closes: #685896,#631257) Thanks to Alexander Ufimtsev
<alexu@ucd.ie> and Jörg-Volker Peetz <jvpeetz@web.de> for patches.
* [5be6c2a] You should be able to upgrade and remove dovecot-managesieved
without errors (Closes: #665487)
* [1a9ad5c] Fixes instances where UTF-8 was misused instead of mUTF-7
(Closes: #680035)
* [c0ac3ba] Backport of fix for failure to autocreate mailboxes
(Closes: #623440) This also requires setting the default mail_location.
* [ba1d3f5] Fix FTBS on Hurd (Closes: #686931) via upstream patch backported
from mercurial.
* [cfa92b5] Upgrade pigeonhole page to 0.3.1 (Closes: #688407)
* [58f01c2] Generated certificates will now be created in /etc/dovecot
(Closes: #608719)
* [8e40ea5] Patch to build with PIE and bindnow
by intrigeri@debian.org (Closes: #679017)
* [87d982b] Use libwrap (Closes: #685850)
* [ebb5421] Start after nslcd (Closes: #692632)
* [2db5c1a] Add support for dpkg triggers. This means dovecot will not be
repeatedly restarted when installing or removing lots of plugins
(Closes: #601744)
* [bc66629] Patch to document -k in dsync.1
by Luca Capello <luca@pca.it> (Closes: #680992)
* [ba67766] Add lintian overrides.
[ Marco Nenciarini ]
* [ffba408] Updated watch file
* [9777434] Install missing default configuration files from upstream
* [9496828] Backport fix for segfault in managesieve triggered by
CHECKSCRIPT command. (Closes: #688197)
-- Jaldhar H. Vyas <jaldhar@debian.org> Sat, 10 Nov 2012 03:50:30 -0500
dovecot (1:2.1.7-2) unstable; urgency=low
* [e23a136] Just a quick upload to make dovecot buildable on non-linux
platforms again. (Closes: #676817) I did it by removing the systemd
build-dep altogether. sd-daemon.[ch] is included in the source so if
systemd is installed on a system, it should be detected and socket
activation should happen. That is, assuming I've got everything right
(and documented) which is something I'll be looking into for the next
version.
-- Jaldhar H. Vyas <jaldhar@debian.org> Thu, 21 Jun 2012 23:54:47 -0400
dovecot (1:2.1.7-1) unstable; urgency=low
* [7668742] Imported upstream 2.1.7 (Closes: #663243)
+ doveadm.1 documents the move command. (Closes: #641750)
* [4db927a] Patch to enable systemd support. (Closes: #672266)
Thanks Riku Voipio.
* [e17ac86] Previous attempt at setting hardening flags did not include the
drac plugin. Simon Ruderich provided an extra patch.
(Closes: #653530)
-- Jaldhar H. Vyas <jaldhar@debian.org> Wed, 30 May 2012 16:27:21 -0400
dovecot (1:2.1.4-1) experimental; urgency=low
* [6cc1e7d] Imported upstream 2.1.4
-- Micah Anderson <micah@debian.org> Tue, 10 Apr 2012 11:33:05 -0400
dovecot (1:2.1.3-1) experimental; urgency=low
* [49ecc33] Imported upstream 2.1.3
-- Micah Anderson <micah@debian.org> Fri, 16 Mar 2012 22:04:46 -0400
dovecot (1:2.1.2-1) experimental; urgency=low
* [70c3f6e] Imported upstream 2.1.2
* Add missing dependency on dpkg-dev 1.16.1
-- Micah Anderson <micah@debian.org> Thu, 15 Mar 2012 20:26:35 -0400
dovecot (1:2.1.1-1) experimental; urgency=low
* [e113636] Imported upstream 2.1.1
* Updated pigeonhole patch to 0.3.0, supporting 2.1
-- Micah Anderson <micah@debian.org> Tue, 13 Mar 2012 23:08:06 -0400
dovecot (1:2.0.18-1) unstable; urgency=low
* [85ae320] Imported Upstream version 2.0.18
* [9cfd1da] Upped standards version to 3.9.3
* [afb4164] Patch to dovecot-core/postinst so that permissions of symlinked
certificates aren't modified. (Closes: #646508)
Thanks Michael Kuhn.
* [bf642ee] Patch to enable hardened build flags. (Closes: #653530)
Thanks Moritz Muehlenhoff.
* [00b0d0c] Updated pigeonhole to 0.2.6
-- Jaldhar H. Vyas <jaldhar@debian.org> Fri, 09 Mar 2012 00:55:13 -0500
dovecot (1:2.0.15-1) unstable; urgency=low
* [a22575a] New upstream version 2.0.15: (Closes: #642045)
+ doveadm altmove: Added -r parameter to move mails back to primary
storage.
- v2.0.14: Index reading could have eaten a lot of memory in some
situations
- doveadm index no longer affects future caching decisions
- mbox: Fixed crash during mail delivery when mailbox didn't yet have
GUID assigned to it.
- zlib+mbox: Fetching last message from compressed mailboxes crashed.
- lib-sql: Fixed load balancing and error
* [8ce5abc] Update pigeonhole to release 0.2.4
* [87658d2] Add dovecot-solr to dovecot-core's Suggests line.
-- Marco Nenciarini <mnencia@debian.org> Mon, 19 Sep 2011 19:26:48 +0200
dovecot (1:2.0.14-3) unstable; urgency=low
* [f37a9ec] Enable solr full text search plugin. (LP: #620959)
* [cdd8b84] Build dovecot-common as architecture-all package.
* [af90444] Fix mail_plugin_dir default value in conf.d/10-mail.conf
(Closes: #624294)
* [61347cb] Bump debhelper build-depends to (>= 7.2.3~) because we use
dh_bugfiles.
* [4b757b6] Fix wrong configuration files path in sieve manpages.
-- Marco Nenciarini <mnencia@debian.org> Fri, 16 Sep 2011 02:26:21 +0200
dovecot (1:2.0.14-2) unstable; urgency=low
[ Marco Nenciarini ]
* [a6896d6] Rename dovecot-common to dovecot-core. (Closes: #624835)
* [c36ca96] Manage protocols during package configuration and
deconfiguration phases.
* [599b55b] Update pigeonhole to release 0.2.3.
* [c654db0] Add a bug-script which will append doveconf -n output to bug
reports.
* [5270323] Add notes about upgrading from 1.2 to README.Debian.
(Closes: #635351)
* [5cd77a3] Add build-arch and build-indep target to debian/rules as
required by lintian.
* [be05d2a] Avoid ucf question when upgrading from squeeze and the only
difference in dovecot.conf is at the "protocols" line.
* [3c73782] Remove ucf backups during purge.
* [3ccf508] Make /etc/dovecot/*.ext readable by dovecot group members.
(Closes: #639005)
* [665bcc5] Use -c ${CONF} when calling doveconf to determine PIDBASE.
Thanks to Jonathan Hall (Closes: #627794)
* [325042c] Purge obsolete unmodified config files from /etc.
(Closes: #629397)
* [a9b9afb] Modified init script to report failures. (Closes: #629654)
* [d4622fd] Make dovecot-core suggesting all other packages containing
additional features.
-- Marco Nenciarini <mnencia@debian.org> Thu, 15 Sep 2011 19:43:55 +0200
dovecot (1:2.0.14-1) unstable; urgency=low
* [50a947e] New upstream version 2.0.14: (Closes: #640143)
+ doveadm: Added support for running mail commands by proxying to
another doveadm server.
+ Added "doveadm proxy list" and "doveadm proxy kick" commands to
list/kick proxy connections (via a new "ipc" service).
+ Added "doveadm director move" to assign user from one server to
another, killing any existing connections.
+ Added "doveadm director ring status" command.
+ userdb extra fields can now return name+=value to append to an
existing name, e.g. "mail_plugins+= quota".
- script-login attempted an unnecessary config lookup, which usually
failed with "Permission denied".
- lmtp: Fixed parsing quoted strings with spaces as local-part for
MAIL FROM and RCPT TO.
- imap: FETCH BODY[HEADER.FIELDS (..)] may have crashed or not
returned all data sometimes.
- ldap: Fixed random assert-crashing with with sasl_bind=yes.
- Fixes to handling mail chroots
- Fixed renaming mailboxes under different parent with FS layout when
using separate ALT, INDEX or CONTROL paths.
- zlib: Fixed reading concatenated .gz files.
* [0297425] Use xz compression for dbg packages.
* [4464ccf] Support parallel builds in debian/rules
* [19667f0] Acknowledge NMU 1:2.0.13-1.1.
Thanks to Luk Claes
-- Marco Nenciarini <mnencia@debian.org> Tue, 06 Sep 2011 23:18:46 +0200
dovecot (1:2.0.13-1.1) unstable; urgency=low
* Non-maintainer upload.
* Don't ship .la files (Closes: #621297).
-- Luk Claes <luk@debian.org> Sat, 18 Jun 2011 12:31:28 +0200
dovecot (1:2.0.13-1) unstable; urgency=high
[ Marco Nenciarini ]
* [8af9e4d] New upstream version 2.0.13:
+ Added "doveadm index" command to add unindexed messages into
index/cache. If full text search is enabled, it also adds unindexed
messages to the fts database.
+ added "doveadm director dump" command.
+ pop3: Added support for showing messages in "POP3 order", which can
be different from IMAP message order. This can be useful for
migrations from other servers. Implemented it for Maildir as 'O'
field in dovecot-uidlist.
- doveconf: Fixed a wrong "subsection has ssl=yes" warning.
- mdbox purge: Fixed wrong warning about corrupted extrefs.
- sdbox: INBOX GUID changed when INBOX was autocreated, leading to
trouble with dsync.
- script-login binary wasn't actually dropping privileges to the
user/group/chroot specified by its service settings.
- Fixed potential crashes and other problems when parsing header names
that contained NUL characters. (CVE-2011-1929)
(Closes: #627443)
-- Marco Nenciarini <mnencia@debian.org> Sat, 21 May 2011 23:58:06 +0200
dovecot (1:2.0.12-1) unstable; urgency=low
[ Jaldhar H. Vyas ]
* [66cbb94] New upstream major release. Imported Upstream version 2.0.12
* [a48c7fd] Updated standards version
[ Marco Nenciarini ]
* [5c6b334] Updated watch file
* [0ba683e] Updated init script to new configuration scheme. (Closes: #593527)
* [8370be4] Fix upgrading from rename-it.nl packages
* [ae804e3] Update changelog
-- Jaldhar H. Vyas <jaldhar@debian.org> Mon, 25 Apr 2011 17:03:26 -0400
dovecot (1:2.0.11-1) experimental; urgency=low
* [a4764a4] New upstream major release (Closes: #573889, #580929,
#597476, #603951, #606089, #606646, #606649, #608075, #612369, #610919)
* [461f667] Updated copyright and package descriptions. Thanks Stephan
Bosch.
* [7fbd92a] Drop all patches but drac support. Update pigeonhole to
release 0.2.1
* [05a5a1e] Update debian/rules to work with dovecot 2.0. Thanks
Stephan Bosch.
* [a36193e] Update debian/dovecot-common.{postinst,postrm} to handle
the new config file layout. Thanks Stephan Bosch.
* [3589afd] Remove debian/dovecot.1 manpage because is provided by
upstream.
* [f1703e1] Remove debian/dovecotpw.1 manpage as there is no dovecotpw
executable in dovecot 2.0. Same feature is provided through 'doveadm
pw' command.
* [e30283d] Remove expire-tool.sh wrapper as there is no expire-tool
in dovecot 2.0. Same feature is provided through 'doveadm expunge'
command.
* [3385061] Remove daily cron script and the related configuration
from the default file.
* [bec19a0] Update debian/dovecot-common.NEWS.Debian with upgrading
instructions
* [1e56f1c] Call dh_makeshlibs with --no-script option to avoid
{postinst,postrm}-has-useless-call-to-ldconfig lintian errors.
* [325f055] Disable numbers in patches (requires git-buildpackage >=0.5.13)
* [74d6ebe] Added debian/source/local-options with "unapply-patches".
* [0edef17] Set default protocols value as empty and enable each
protocol in its own configuration file in
/usr/share/dovecot/protocols.d (LP: #661453)
* [e88860c] Removed code about upgrading from pre-etch packages.
* [95c5d47] Removed obsolete Build-Conflict (Closes: #614053)
* [41dddf4] Move configurations for imapd and pop3d to the appropriate
packages. (Closes: #606648)
* [b8b66dc] Removed obsolete README.Debian and NEWS.Debian from
dovecot-pop3d and dovecot-imapd packages
* [0bda8ac] Added packages dovecot-lmtpd and dovecot-managesieved.
* [9a954f1] Build databases, ldap and gssapi support as plugins
* [1a3f323] Deregister obsolete configuration files from ucf in
dovecot-common postinst on upgrades.
* [fae4b76] Added packages dovecot-pgsql, dovecot-mysql, dovecot-sqlite,
dovecot-ldap, dovecot-gssapi and dovecot-sieve (Closes: #251433)
* [aa8983d] Imported Upstream version 2.0.11
-- Marco Nenciarini <mnencia@debian.org> Mon, 07 Mar 2011 18:23:59 +0100
dovecot (1:1.2.15-3) unstable; urgency=low
* [096c373] Fix file overwrite error when upgrading from lenny
(Closes: #601980)
* [37b3220] Add --no-create-home to adduser invocation in dovecot-
common.postinst script (Closes: #601767)
* [b00b527] Fall back to `hostname` if `hostname -f` invocation fails
(Closes: #562780)
* [9102fec] Make self-generated certificates key length 2048 bits.
-- Marco Nenciarini <mnencia@debian.org> Tue, 02 Nov 2010 11:12:53 +0100
dovecot (1:1.2.15-2) unstable; urgency=low
* [a0744a5] Switch vcs fields to git
* [d8a1bd4] Add debian/gbp.conf to make easy the usage of git-
buildpackage
* [c0dc21f] Warn that the generated SSL certificate will expire in 10
years instead of 365 days, as it's the lifetime of of self-generated
certificates since 1:1.2.13-1
* [6472d63] Switch to gbp-pq patch management.
* [bf2fc17] Upgraded sieve plugin to version 0.1.18
* [6b9809d] Upgraded managesieve plugin to version 0.11.12
* [d67cd17] Upgraded dovecot-managesieve.patch to version 0.11.12
-- Marco Nenciarini <mnencia@debian.org> Thu, 28 Oct 2010 22:50:19 +0200
dovecot (1:1.2.15-1) unstable; urgency=high
[ Marco Nenciarini ]
* New upstream release (Closes: #587036,#597529)
* Updated policy version to 3.9.1.0 (no changes needed)
[ Jaldhar H. Vyas ]
* [SECURITY] Fixes two bugs with acls which could have allowed a user to
gain improper access or admin rights to shared mailboxes.
(Closes: #599521)
* Warn that the generated SSL certificate will expire in 365 days. Thanks
Phillip Weis. (Closes: #576455)
* Wherever the path to sendmail is given as /usr/lib/sendmail, change to
/usr/sbin/sendmail. (Closes: #570814,#595671)
-- Jaldhar H. Vyas <jaldhar@debian.org> Fri, 08 Oct 2010 17:34:19 -0400
dovecot (1:1.2.13-1) unstable; urgency=low
[ Jaldhar H. Vyas ]
* dovecot-common: Upped expiration date of self-generated certificates to
10 years from 1 year. (Closes: #587371)
[ Marco Nenciarini ]
* New upstream release:
- Fixed iconv() crash when it was processing several kilobytes of
broken continuous input. This mainly could have caused a problem
with IMAP SEARCH. Possibly also with some Sieve checks.
- If MIME encoded-words contained line feeds, Dovecot logged
cache corruption errors.
- mbox: Renaming mailbox under newly created dir didn't move index
directory.
- mbox: When generating envelope to From_-line, don't append a second
@owndomain if username already has one.
* Updated policy version to 3.9.0.0 (no changes needed)
-- Marco Nenciarini <mnencia@debian.org> Mon, 26 Jul 2010 17:03:38 +0200
dovecot (1:1.2.12-1) unstable; urgency=low
* New upstream release
* Upgraded sieve plugin to version 0.1.17
* Refreshed dovecot-managesieve.patch
* debian/patches/sieve-fix-imapflags.patch: Removed. Fixed upstream.
-- Marco Nenciarini <mnencia@debian.org> Sat, 26 Jun 2010 18:14:15 +0200
dovecot (1:1.2.11-1) unstable; urgency=high
* New upstream release
* urgency set to high, because under particular circumstances you could
cause a DoS by sending a message with a huge header.
* sieve: Fix addflags command in deprecated imapflags extension
(Closes: #570058)
* Include a daily expire script with a setting in /etc/default/dovecot
to enable it. The new script is disabled by default as it requires
some configurations by the system administrator. Thanks to Hans Spaans
* Mark expire-tool.sh as a bash script
* Bump Standards-Version to 3.8.4, no changes needed
-- Marco Nenciarini <mnencia@debian.org> Mon, 08 Mar 2010 22:25:46 +0100
dovecot (1:1.2.10-1) unstable; urgency=low
* New upstream release (Closes: #566796)
* Upgraded sieve plugin to version 0.1.15
* Upgraded managesieve plugin to version 0.11.11
* Upgraded dovecot-managesieve.patch to version 0.11.11
-- Marco Nenciarini <mnencia@debian.org> Mon, 25 Jan 2010 17:21:09 +0100
dovecot (1:1.2.9-2) unstable; urgency=low
* Upgraded sieve plugin to version 0.1.14
* Upgraded managesieve plugin to version 0.11.10
* Upgraded dovecot-managesieve.patch to version 0.11.10
* debian/patches/dovecot-example.patch: Refreshed.
* Added expire-tool wrapper script (Closes: #565538)
* Added ${misc:Depends} to the dependencies of each binary package,
to make lintian happy (debhelper-but-no-misc-depends)
-- Marco Nenciarini <mnencia@debian.org> Sun, 17 Jan 2010 09:39:42 +0100
dovecot (1:1.2.9-1) unstable; urgency=low
* New upstream release.
* debian/patches/gold-fix.patch: Removed. Fixed upstream.
-- Marco Nenciarini <mnencia@debian.org> Thu, 17 Dec 2009 10:52:53 +0100
dovecot (1:1.2.8-2) unstable; urgency=low
* Moved libexec to lib corrections in dovecot-managesieve.patch and
dovecot-managesieve-dist.patch to dovecot-example.patch
* debian/patches/dovecot-mboxlocking.patch: Regenerated to avoid FTBFS
when quilt isn't installed.
* debian/patches/quota-mountpoint.patch: Removed. Not needed anymore.
* debian/patches/dovecot-quota.patch: Removed. Quotas aren't properly
enabled unless mail_plugins = quota imap_quota.
* debian/patches/gold-fix.patch: Fixed configure script to build even
with binutils-gold or --no-add-needed linker flag (Closes: #554306)
* debian/dovecot-common.init: fixed LSB headers. Thanks to Pascal Volk.
(Closes: #558040)
* debian/changelog: added CVE references to previous changelog entry.
* debian/rules: checked up the build system. It's not fragile anymore.
(Closes: 493803)
* debian/dovecot-common.postinst: Now invoking dpkg-reconfigure
on dovecot-common is enough to generate new certificates
if the previous ones were removed. (Closes: #545582)
* debian/rules: No longer install convert-tool in /usr/bin.
It isn't an user utility and it should stay in /usr/lib/dovecot
like all other similar tool.
-- Marco Nenciarini <mnencia@debian.org> Tue, 08 Dec 2009 12:24:04 +0100
dovecot (1:1.2.8-1) unstable; urgency=high
[ Marco Nenciarini ]
* New upstream release. (Closes: #557601)
* [SECURITY] Fixes local information disclosure and denial of service.
(see: http://www.dovecot.org/list/dovecot-news/2009-November/000143.html
and CVE-2009-3897)
* Added myself to uploaders.
* Switched to the new source format "3.0 (quilt)":
- removed dpatch from build-depends
- removed debian/README.source because now we use only standard
dpkg features
- regenerated all patches
* Prepared to switch to multi-origin source:
- recreated dovecot-libsieve.patch and dovecot-managesieve-dist.patch
starting from the upstream tarball
- removed all autotools related build-depends and build-conflict
- renamed dovecot-libsieve and dovecot-managesieve directories
to libsieve and managesieve.
* debian/rules: Moved the configuration of libsieve and managesieve from
the build phase to the configuration phase
[ Jaldhar H. Vyas ]
* Added dovecot-dbg package with debugging symbols. Thanks Stephan Bosch.
(Closes: #554710)
* Fixed some stray libexec'isms in the default configuration.
-- Jaldhar H. Vyas <jaldhar@debian.org> Mon, 23 Nov 2009 17:04:14 -0500
dovecot (1:1.2.7-1) unstable; urgency=low
* New upstream release.
* debian/dovecot-common.init:
- use $CONF when starting the daemon. (Closes: #549944)
- always output start/stop messages. (Closes: #523810)
-- Fabio Tranchitella <kobold@debian.org> Sat, 14 Nov 2009 11:28:33 +0100
dovecot (1:1.2.6-1) unstable; urgency=low
* New upstream release.
* debian/patches/v1.2.5-exec-mail_fix.dpatch: removed, merged upstream.
-- Fabio Tranchitella <kobold@debian.org> Mon, 12 Oct 2009 06:56:55 +0000
dovecot (1:1.2.5-2) unstable; urgency=low
* debian/dpatches/v1.2.5-exec-mail_fix.dpatch: added.
(Closes: #546694, #546695)
* debian/dovecot-common.dirs: removed /etc, /etc/ssl/{private,certs}, they
are handled by openssl; this should fix the piuparts test.
-- Fabio Tranchitella <kobold@debian.org> Sun, 27 Sep 2009 20:53:52 +0200
dovecot (1:1.2.5-1) unstable; urgency=low
* New upstream release.
-- Fabio Tranchitella <kobold@debian.org> Mon, 14 Sep 2009 14:34:06 +0200
dovecot (1:1.2.4-2) unstable; urgency=low
* debian/patches/dovecot-libsieve.dpatch: updated to 0.1.12.
(Closes: #539527)
-- Fabio Tranchitella <kobold@debian.org> Wed, 02 Sep 2009 07:28:23 +0200
dovecot (1:1.2.4-1) unstable; urgency=low
* New upstream release. (Closes: #537186, #540058)
* Bumped Standards-Version to 3.8.3, no changes needed.
* debian/control: only suggests ntp. (Closes: #542152)
* debian/patches/dovecot-managesieve-dist.dpatch: updated to the 0.11.9
release. (Closes: #539527)
* debian/rules: dovecot should be started with sequence number 20.
(Closes: #543473)
-- Fabio Tranchitella <kobold@debian.org> Sat, 29 Aug 2009 17:27:59 +0200
dovecot (1:1.2.2-2) unstable; urgency=high
* Er that should be fcntl not fnctl. (Closes: #539474, #539486)
* For the sake of completeness, fixed some errors in the example config file.
(They are in the !include statements which are commented out by default
so it is unlikely that most users will actually be affected.)
(Closes: #539391)
-- Jaldhar H. Vyas <jaldhar@debian.org> Sat, 01 Aug 2009 11:38:03 -0400
dovecot (1:1.2.2-1) unstable; urgency=low
[Joel Johnson]
* New upstream version, updated ManageSieve patch
- fixes index corruption condition (Closes: #537388)
* Set default for mbox_write_locks to "fnctl dotlock" according to
Debian Policy (Closes: #537326)
* Set MySQL build dependency to use version-agnostic -dev package
* Drop postgres-configure patch, functionality included upstream
* Updated dovecot-libsieve to version 0.1.9
- fixes subaddress matching (Closes: #537386)
- check additional address-list headers (Closes: #537379)
[Jaldhar H. Vyas]
* Remove unneeded build-dependencies on byacc and flex now that we no longer
use cmusieve.
-- Joel Johnson <mrjoel@lixil.net> Tue, 28 Jul 2009 20:35:57 -0600
dovecot (1:1.2.1-2) unstable; urgency=low
* Update to use default automake (Closes: #536880) now that current upstream
successfully builds with 1.10 (was previously a problem in bug 473754.
* Updated Standards-Verson to 3.8.2 (no action required)
* Remove ./var/run directories to fix lintian warnings.
* Updated dovecot-libsieve patch to version 0.1.8, removed autogen.sh,
tests, and doc/rfc
* Updated dovecot-managesieve patch to version 0.11.7
* Updated dovecot-managesieve-dist patch to Mercurial revision 12b9733ee8b0
(0.11.7+), removed lib-cmusieve, doc/rfs, autogen.sh
* Add additional upgrading note to README.Debian to clarify the ManageSieve
configuration changes needed - existing configurations break if not
updated! (Closes: #537158)
* Include the ChangeLog and README for sieve and ManageSieve
-- Joel Johnson <mrjoel@lixil.net> Wed, 15 Jul 2009 20:29:33 -0600
dovecot (1:1.2.1-1) unstable; urgency=low
[ Joel Johnson ]
* New upstream release
* Update packaging for 1.2 release
- update SIEVE patch to use Dovecot rewrite (version 0.1.7,
removed RFCs and tests for a DFSG patch)
- update ManageSieve patch and software to hg revision 2c9b4b4ab6a8
(0.11.6+) for 1.2.1 support
+ removed lib-cmusieve since building against newer sieve
+ removed doc/rfc for DFSG compliance
+ removed autogen.sh since we run autotools during the build
- updated other misc patches
-- Joel Johnson <mrjoel@lixil.net> Sun, 12 Jul 2009 11:15:01 -0600
dovecot (1:1.1.16-1) unstable; urgency=low
* New upstream release. (Closes: #531599)
-- Fabio Tranchitella <kobold@debian.org> Thu, 04 Jun 2009 12:38:59 +0200
dovecot (1:1.1.15-1) unstable; urgency=low
* New upstream release; sorry, no time to include extra upstream patches
which are not released, feel free to submit them as dpatch files and I will
add them to the package. (Closes: #529923)
* debian/control: updated Standards-Version, no changes needed.
* debian/dovecot-common.init: patched to support ENABLED=0 in
/etc/default/dovecot, useful if dovecot is used as local-only IMAP server
through PREAUTH interface. (Closes: #524302)
* debian/dovecot-common.README.Debian: simplyfied, we only point the user to
wiki.dovecot.org; added a note about how to regenerate the SSL certificate.
(Closes: #528934)
* debian/dovecot-common.postrm: do not break if /etc/ssl/certs does not
exist. (Closes: #524865)
* debian/patches/dovecot-managesieve-dist: updated to 0.10.6.
-- Fabio Tranchitella <kobold@debian.org> Sun, 31 May 2009 20:13:26 +0200
dovecot (1:1.1.13-2) unstable; urgency=high
* New upload, urgency set to high: the package in testing is broken.
* debian/dovecot-common.init: fixed a typo.
* debian/patches/dovecot-example.dpatch: fixed a few paths.
(Closes: #521544)
-- Fabio Tranchitella <kobold@debian.org> Sun, 29 Mar 2009 21:16:02 +0200
dovecot (1:1.1.13-1) unstable; urgency=low
* New upstream release.
* This version fixes problems accessing mailboxes in some setups.
(Closes: #520310)
-- Fabio Tranchitella <kobold@debian.org> Thu, 19 Mar 2009 17:31:56 +0100
dovecot (1:1.1.12-1) unstable; urgency=low
* New upstream release, it fixes some wrong defaults in the configuration
file. (Closes: #518631)
* debian/rules: add support for libdb. (Closes: #518630)
* debian/dovecot-common.postinst: create the dovecot certificate only at
install time. (Closes: #518738, #518598)
-- Fabio Tranchitella <kobold@debian.org> Mon, 16 Mar 2009 14:26:32 +0100
dovecot (1:1.1.11-4) unstable; urgency=low
* debian/dovecot-common.init: fixed a typo from the last upload.
(Closes: #518504)
-- Fabio Tranchitella <kobold@debian.org> Fri, 06 Mar 2009 18:39:09 +0100
dovecot (1:1.1.11-3) unstable; urgency=low
* debian/dovecot-common.init: applied patch from Håkon Stordahl to call
ntp-wait if available. (Closes: #517808)
-- Fabio Tranchitella <kobold@debian.org> Wed, 04 Mar 2009 17:38:59 +0100
dovecot (1:1.1.11-2) unstable; urgency=low
* debian/dovecot-common.init: fixed a bug in the init script, adding a
missing slash in the PIDFILE path. (Closes: #516845)
* debian/dovecot-common.init: fixed a bug in the init script, sending the HUP
signal for reloading the configuration. (Closes: #512197)
* debian/dovecot-common.init: check if /etc/inetd.conf exists.
(Closes: #509259, #497148)
* debian/control: dovecot-common suggests ntp and ntpdate. (Closes: #511060)
* debian/dovecot-common.postinst: migration hook for default_mail_env =>
mail_location. (Closes: #517073)
* debian/dovecot.1: fixed the path of the configuration file.
(Closes: #501493)
-- Fabio Tranchitella <kobold@debian.org> Fri, 27 Feb 2009 17:24:09 +0100
dovecot (1:1.1.11-1) unstable; urgency=low
* New upstream release, upload to unstable. (Closes: #507122)
* debian/patches/dovecot-quota.dpatch: fixed a bug in the imap quota plugin.
(Closes: #484677)
* debian/dovecot-common.init: added the status action, thanks Fladischer
Michael for the patch. (Closes: #509694)
* debian/dovecotpw.1: added manpage for dovecotpw, thanks Xavier Luthi for
the patch. (Closes: #504712)
-- Fabio Tranchitella <kobold@debian.org> Fri, 20 Feb 2009 20:39:38 +0100
dovecot (1:1.1.9-1) experimental; urgency=low
[ Fabio Tranchitella ]
* debian/control: dovecot-common suggests ntp.
[ Joel Johnson ]
* New upstream release
* updated managesieve patch to apply against new version
-- Joel Johnson <mrjoel@lixil.net> Sat, 24 Jan 2009 04:12:42 +0000
dovecot (1:1.1.8-1) experimental; urgency=low
* New upstream release.
* debian/control: added LDA to the description of dovecot-common.
-- Fabio Tranchitella <kobold@debian.org> Wed, 07 Jan 2009 23:14:29 +0100
dovecot (1:1.1.7-1) experimental; urgency=low
* New upstream release
* Updated dovecot-ssh.patch for new release
* Updated MANAGESIEVE to 0.10.4
* Fix package to support double compilation
- Properly clean dovecot-managesieve as pointed out by Stephan Bosch
- Add --copy directive to automake invocation
-- Joel Johnson <mrjoel@lixil.net> Thu, 04 Dec 2008 20:52:11 -0700
dovecot (1:1.1.2-3) experimental; urgency=low
* debian/control: added libbz2-dev to the Build-Depends to enable the bzip2
support. (Closes: #495129)
-- Fabio Tranchitella <kobold@debian.org> Thu, 14 Aug 2008 20:45:41 +0200
dovecot (1:1.1.2-2) experimental; urgency=low
* Merged changes in the unstable package.
* debian/control: added replaces for the imap and pop modules from the
-common to the the -imap and -pop packages. (Closes: #493798)
* debian/rules: applied some of the suggestions from Matthias Kloses,
thanks! (Refs: #493803)
-- Fabio Tranchitella <kobold@debian.org> Tue, 05 Aug 2008 21:20:33 +0200
dovecot (1:1.1.2-1) experimental; urgency=low
* New upstream release
* Trivial update to autocreate patch
-- Joel Johnson <mrjoel@lixil.net> Sat, 26 Jul 2008 08:18:39 -0600
dovecot (1:1.1.1-1) experimental; urgency=low
[ Joel Johnson ]
* New upstream release (Closes: #487989)
* Updated policy version to 3.8.0.1 (no changes needed)
* Updated watch file to watch new release directory
* Actually install dovecot.8 since we have it
* Removed quota_v2 patch (was unreachable code): upstream now defaults
to quota v1 if _LINUX_QUOTA_VERSION is not defined
* Removed pam-error-information patch: included upstream
* Removed mbox_snarf patch: included upstream
* Removed full MANAGESIEVE patch (replaced with new 1.1 approach)
* Merged protocols_none_by_default patch into dovecot-example patch
* Updated drac patch to build against 1.1
* Updated autocreate patch with 1.1 version
* Updated dovecot-sieve to 1.1.5
* Added dovecot-managesieve patch against dovecot tree
* Added dovecot-managesieve source for building module
[ Fabio Tranchitella ]
* Added Joel Johnson to the uploaders; thanks for your work!
-- Fabio Tranchitella <kobold@debian.org> Sun, 20 Jul 2008 19:09:23 +0200
dovecot (1:1.0.15-2) unstable; urgency=low
* debian/dovecot.1: added "This includes doing a syntax check" to the -a
option.
* debian/rules: now the package builds two times in a row without problems.
(Closes: #490201)
-- Fabio Tranchitella <kobold@debian.org> Sun, 27 Jul 2008 19:56:18 +0200
dovecot (1:1.0.15-1) unstable; urgency=low
* New upstream release.
* debian/rules: clean the package before unpatching. (Closes: #490201)
-- Fabio Tranchitella <kobold@debian.org> Sun, 22 Jun 2008 09:06:01 +0200
dovecot (1:1.0.14-1) unstable; urgency=low
* New upstream release.
* debian/patches/inbox_creation.dpatch: removed, merged upstream.
* debian/patches/allow_nets.dpatch: removed, merged upstream.
-- Fabio Tranchitella <kobold@debian.org> Tue, 03 Jun 2008 10:07:13 +0200
dovecot (1:1.0.13-6) unstable; urgency=low
* debian/patches/inbox_creation.dpatch: added, use mail_privileged_group's
group when creating inboxes if the unprivileged user fails; upstream:
http://hg.dovecot.org/dovecot-1.0/rev/932768a879c6 (Closes: #471716)
-- Fabio Tranchitella <kobold@debian.org> Wed, 28 May 2008 12:58:17 +0200
dovecot (1:1.0.13-5) unstable; urgency=low
* debian/patches/allow_nets.dpatch: added, allow_nets didn't work correctly
with big endian machines; patch from upstream, thanks Timo:
http://hg.dovecot.org/dovecot-1.0/rev/71c02fdf1b59
-- Fabio Tranchitella <kobold@debian.org> Thu, 15 May 2008 14:48:14 +0200
dovecot (1:1.0.13-4) unstable; urgency=low
* debian/patches/dovecot-MANAGESIEVE-9.3.dpatch: updated managesieve to
version 9.3.
* debian/dovecot-common.README.Debian: added a note about how to configure
dovecot to log to file instead of using syslog.
* debian/dovecot.1: added a SIGNALS section. (Closes: #479059)
* dovecot-sieve: updated to the last hg release (5c3ba11994cb).
(Closes: #479104)
-- Fabio Tranchitella <kobold@debian.org> Mon, 05 May 2008 17:28:21 +0200
dovecot (1:1.0.13-3) unstable; urgency=low
* debian/rules: do not install anymore the ldap and sql example
configuration files under /etc. (Closes: #472674)
* debian/dovecot-common.postinst: really chmod
/etc/dovecot/dovecot-{ldap,sql}.conf files to 0600.
* debian/devecot-common.init: do not start the service if dovecot.conf
doesn't exist. (Closes: #475888)
-- Fabio Tranchitella <kobold@debian.org> Sun, 27 Apr 2008 22:42:37 +0200
dovecot (1:1.0.13-2) unstable; urgency=low
* debian/rules: use aclocal-1.9 instead of aclocal. (Closes: #473754)
-- Fabio Tranchitella <kobold@debian.org> Tue, 01 Apr 2008 15:30:32 +0200
dovecot (1:1.0.13-1) unstable; urgency=high
* New upstream release, fixes a security issue:
http://www.dovecot.org/list/dovecot-news/2008-March/000064.html
-- Fabio Tranchitella <kobold@debian.org> Sun, 09 Mar 2008 19:22:20 +0100
dovecot (1:1.0.12-1) unstable; urgency=high
* New upstream release. (Closes: #469457)
* debian/patches/dovecot-MANAGESIEVE-9.2.dpatch: updated, thanks to Marco
Nenciarini for the patch.
-- Fabio Tranchitella <kobold@debian.org> Thu, 06 Mar 2008 15:53:07 +0100
dovecot (1:1.0.10-4) unstable; urgency=low
* debian/patches/autocreate.dpatch: added, thanks to Walter Reiner.
* debian/rules: use --with-ioloop=best instead of --with-ioloop=epoll, as
suggested by Timo. (Closes: #466296)
-- Fabio Tranchitella <kobold@debian.org> Mon, 18 Feb 2008 09:29:39 +0100
dovecot (1:1.0.10-3) unstable; urgency=low
* debian/patches/dovecot-MANAGESIEVE-9.1.dpatch: added, thanks to Aleksey
Midenkov for providing a patch. (Closes: #416166)
* debian/dovecot-common.init: added $time to Should-Start. (Closes: #461543)
* debian/dovecot-common.postinst: do not add the dovecot user to the mail
group, it is not required by upstream. (Closes: #457123)
* debian/control: updated Standards-Version to 3.7.3, no changes required.
-- Fabio Tranchitella <kobold@debian.org> Sun, 10 Feb 2008 18:37:55 +0100
dovecot (1:1.0.10-2) unstable; urgency=low
* debian/patches/mbox_snarf.dpatch: added, thanks to Bernd Kuhls.
(Closes: #462319)
-- Fabio Tranchitella <kobold@debian.org> Thu, 24 Jan 2008 10:12:02 +0100
dovecot (1:1.0.10-1) unstable; urgency=high
* New upstream release, fixes a security bug.
* debian/patches/exec_check_for_none.dpatch: updated.
-- Fabio Tranchitella <kobold@debian.org> Sun, 30 Dec 2007 10:29:26 +0100
dovecot (1:1.0.9-1) unstable; urgency=low
* New upstream release.
* debian/control: added the Vcs-Svn and Vcs-Browser fields.
-- Fabio Tranchitella <kobold@debian.org> Wed, 12 Dec 2007 08:10:11 +0100
dovecot (1:1.0.8-2) unstable; urgency=low
* Provides a dovecot-dev package, thanks to Josh Triplett for providing a
patch. (Closes: #444812)
-- Fabio Tranchitella <kobold@debian.org> Tue, 04 Dec 2007 09:22:59 +0100
dovecot (1:1.0.8-1) unstable; urgency=low
* New upstream release.
* debian/patches/unsupported-sasl-mech.dpatch: merged with upstream.
-- Fabio Tranchitella <kobold@debian.org> Thu, 29 Nov 2007 13:36:39 +0100
dovecot (1:1.0.7-3) unstable; urgency=low
* debian/patches/dovecot-ssl.dpatch: provide mechanism to discover if ssl
client certificate is verified, patch from Stephen Gran. (Closes: #446555)
* debian/patches/pam-error-information.dpatch: fill auth information in pam
error, patch backported from upstream RCS. (Closes: #439246)
* debian/patches/unsupported-sasl-mech.dpatch: should use NO (not BAD) for
unsupported SASL mech, patch backported from upstream RCS. (Closes: #449324)
-- Fabio Tranchitella <kobold@debian.org> Wed, 14 Nov 2007 21:33:55 +0100
dovecot (1:1.0.7-2) unstable; urgency=low
* debian/dovecot-common.postinst:
+ don't fail if dovecot-ldap.conf or dovecot-sql.conf are removed; thanks
to Mathias Gug. (Closes: #448401)
+ fix permissions of /var/run/dovecot and /var/run/dovecot/login.
(Closes: #446051)
-- Fabio Tranchitella <kobold@debian.org> Sun, 04 Nov 2007 10:06:06 +0100
dovecot (1:1.0.7-1) unstable; urgency=low
* New upstream release.
* debian/rules: remove drac.so in the clean target. (Closes: #442548)
* debian/dovecot-common.init: implemented the reload action.
(Closes: #441032)
* Update protocoles option in configuration when installing/removing
-imapd/-pop3d packages. Thanks to Soren Hansen and Mathias Gug from
Ubuntu for providing a patch. (Closes: #447201)
-- Fabio Tranchitella <kobold@debian.org> Fri, 02 Nov 2007 23:06:17 +0100
dovecot (1:1.0.5-1) unstable; urgency=low
* New upstream release.
-- Fabio Tranchitella <kobold@debian.org> Mon, 10 Sep 2007 09:25:59 +0200
dovecot (1:1.0.3-3) unstable; urgency=low
* debian/dovecot-common.init: don't use the init script name to locate the
configuration file because it is not reliable. If you really want to start
multiple servers, just copy the init script and use the optional default
file to override the variables. (Closes: #437228)
-- Fabio Tranchitella <kobold@debian.org> Thu, 16 Aug 2007 09:17:01 +0200
dovecot (1:1.0.3-2) unstable; urgency=low
* debian/rules: removed the --with-notify=inotify switch, it should be
detected automatically.
-- Fabio Tranchitella <kobold@debian.org> Thu, 09 Aug 2007 09:39:50 +0200
dovecot (1:1.0.3-1) unstable; urgency=low
* New upstream release. (Closes: #434038, #432601)
* This release doesn't build dbox support out-of-the-box. (Closes: #431615)
* dovecot-sieve: updated to the last hg's tip. (Closes: #434079)
* debian/dovecot-*.README.Debian: don't call /etc/init.d scripts directly.
(Closes: #431991)
* debian/dovecot-common.init: updated with patches from Tom Metro, thanks!
(Closes: #426480, #422674)
* debian/dovecot-common.postinst: fixed a missing variable DOMAINNAME.
(Closes: #425917)
* debian/rules: moved the init script to the level 24, after the ntpdate
one. (Closes: #432723)
* debian/patches/00list: added dovecot-drac, again. (Closes: #353039)
* debian/rules: build with inotify and epoll support. (Closes: #419281)
* debian/dovecot.1: added a simple manpage for dovecot. (Closes: #426702)
* debian/copyright: added copyright exceptions as suggested by Timo.
-- Fabio Tranchitella <kobold@debian.org> Sat, 04 Aug 2007 20:11:36 +0200
dovecot (1:1.0.0-1) unstable; urgency=low
* New upstream release, the final 1.0.0. Bumped epoch, because we used the
wrong version scheming in the past and I think it is worth to do so now
that 1.0.0 has been released.
* debian/watch: updated.
* Rebuilt with a new glibc in unstable, now we have inotify support.
(Closes: #395306)
-- Fabio Tranchitella <kobold@debian.org> Mon, 16 Apr 2007 08:42:32 +0200
dovecot (1.0.rc31-1) unstable; urgency=low
* New upstream release.
-- Fabio Tranchitella <kobold@debian.org> Mon, 09 Apr 2007 11:55:45 +0200
dovecot (1.0.rc30-2) unstable; urgency=low
* debian/dovecot-common.init: check if /etc/inetd.conf exists before
calling sed on it. (Closes: #417299)
-- Fabio Tranchitella <kobold@debian.org> Sun, 08 Apr 2007 16:58:30 +0200
dovecot (1.0.rc30-1) unstable; urgency=low
* New upstream release.
*
-- Fabio Tranchitella <kobold@debian.org> Sat, 07 Apr 2007 11:17:45 +0200
dovecot (1.0.rc29-1) unstable; urgency=low
* New upstream release.
* debian/rules: ship convert-tool in dovecot-common. (Closes: #416909)
-- Fabio Tranchitella <kobold@debian.org> Sat, 31 Mar 2007 14:15:39 +0200
dovecot (1.0.rc28-1) unstable; urgency=low
* New upstream release.
-- Fabio Tranchitella <kobold@debian.org> Sun, 25 Mar 2007 14:02:28 +0200
dovecot (1.0.rc27-1) unstable; urgency=low
* New upstream release.
-- Fabio Tranchitella <kobold@debian.org> Wed, 14 Mar 2007 14:39:04 +0100
dovecot (1.0.rc26-4) unstable; urgency=low
* debian/dovecot-common.postinst: fixed a typo. (Closes: #414672)
-- Fabio Tranchitella <kobold@debian.org> Tue, 13 Mar 2007 08:45:47 +0100
dovecot (1.0.rc26-3) unstable; urgency=low
* debian/control: depends on ucf (>= 2.0020). (Closes: #414032)
* debian/dovecot-common.postinst: handles better chmod/chown on package
upgrade. (Closes: #414257)
-- Fabio Tranchitella <kobold@debian.org> Mon, 12 Mar 2007 10:03:34 +0100
dovecot (1.0.rc26-2) unstable; urgency=low
* debian/control:
+ dovecot-{imapd,pop3d}: depends on the same-source dovecot-common.
(Closes: #414032)
* debian/rules: fixed permission for dovecot.conf. (Closes: #413995)
-- Fabio Tranchitella <kobold@debian.org> Fri, 9 Mar 2007 12:57:50 +0100
dovecot (1.0.rc26-1) unstable; urgency=low
* New upstream release.
* Add support for ucf, thanks to Vincent Danjean for providing a full patch.
(Closes: #413081)
* debian/dovecot-common.init: create /var/run directories at start-up time.
(Closes: #376143)
-- Fabio Tranchitella <kobold@debian.org> Wed, 7 Mar 2007 11:26:56 +0100
dovecot (1.0.rc25-1) unstable; urgency=low
* New upstream release.
-- Fabio Tranchitella <kobold@debian.org> Fri, 2 Mar 2007 13:44:44 +0100
dovecot (1.0.rc24-1) unstable; urgency=low
* New upstream release.
-- Fabio Tranchitella <kobold@debian.org> Fri, 23 Feb 2007 15:47:30 +0100
dovecot (1.0.rc23-1) unstable; urgency=low
* New upstream release.
* debian/patches/documentation.dpatch, debian/patches/xfs_quotas.dpatch:
removed, applied upstream.
-- Fabio Tranchitella <kobold@debian.org> Wed, 21 Feb 2007 09:34:44 +0100
dovecot (1.0.rc22-2) UNRELEASED; urgency=low
* debian/watch: added.
-- Fabio Tranchitella <kobold@debian.org> Fri, 9 Feb 2007 12:15:34 +0100
dovecot (1.0.rc22-1) unstable; urgency=low
* New upstream release.
-- Fabio Tranchitella <kobold@debian.org> Wed, 7 Feb 2007 09:38:34 +0100
dovecot (1.0.rc21-1) unstable; urgency=low
* New upstream release.
-- Fabio Tranchitella <kobold@debian.org> Mon, 5 Feb 2007 16:23:33 +0100
dovecot (1.0.rc19-1) unstable; urgency=low
* New upstream release.
-- Fabio Tranchitella <kobold@debian.org> Wed, 24 Jan 2007 00:03:38 +0100
dovecot (1.0.rc18-2) unstable; urgency=low
* dovecot-sieve: updated to cvs version 1.0.1.
* debian/README.Debian: updated for the new setting mail_location, which
substitutes the old default_mail_env. (Closes: #408025)
-- Fabio Tranchitella <kobold@debian.org> Tue, 23 Jan 2007 10:15:36 +0100
dovecot (1.0.rc18-1) unstable; urgency=low
* New upstream release.
-- Fabio Tranchitella <kobold@debian.org> Mon, 22 Jan 2007 18:15:02 +0100
dovecot (1.0.rc17-1) unstable; urgency=low
* New upstream release.
* Updated dovecot-sieve from CVS.
-- Fabio Tranchitella <kobold@debian.org> Fri, 12 Jan 2007 09:42:47 +0100
dovecot (1.0.rc15-2) unstable; urgency=medium
* debian/dovecot-common.README.Debian: updated details about raw logging;
thanks Chris Moore for providing a patch. (Closes: #400689)
* debian/patches/dovecot-example.dpatch: added a missing slash for an
absolute path. (Closes: #400830)
* debian/patches/dovecotpw.dpatch: applied patched to fix argument parsing
on some architectures. (Closes: #402075)
-- Fabio Tranchitella <kobold@debian.org> Mon, 18 Dec 2006 18:34:31 +0100
dovecot (1.0.rc15-1) unstable; urgency=medium
* New upstream release.
* Fixes a security bug: Off-by-one buffer overflow with mmap_disable=yes.
(See: http://www.dovecot.org/list/dovecot-news/2006-November/000023.html)
-- Fabio Tranchitella <kobold@debian.org> Mon, 20 Nov 2006 12:47:39 +0100
dovecot (1.0.rc14-1) unstable; urgency=medium
* New upstream release.
-- Fabio Tranchitella <kobold@debian.org> Thu, 16 Nov 2006 09:37:38 +0100
dovecot (1.0.rc13-1) unstable; urgency=medium
* New upstream release.
* debian/rules:
+ preserve upstream config.guess and config.sub. (Closes: #397404)
+ really clean dovecot-sieve/src on clean target. (Closes: #397407)
* debian/control: added build-conflict with automake1.4. (Closes: #397409)
* dovecot-sieve/src/Makefile.am: move sieve plug-ins under
usr/lib/dovecot/lda/modules; thanks to Chris Vanden Berghe for pointing
this out.
-- Fabio Tranchitella <kobold@debian.org> Tue, 7 Nov 2006 09:26:56 +0100
dovecot (1.0.rc12-1) unstable; urgency=low
* New upstream release.
-- Fabio Tranchitella <kobold@debian.org> Sun, 5 Nov 2006 16:52:52 +0100
dovecot (1.0.rc10-3) unstable; urgency=medium
* debian/rules: fixed two typos in the configure call. (Closes: #395016)
* Included dovecot-sieve plug-in from CVS. (Closes: #394885)
* Urgency medium: we are near the freeze, and this release must be part
of etch.
-- Fabio Tranchitella <kobold@debian.org> Tue, 31 Oct 2006 06:30:45 +0000
dovecot (1.0.rc10-2) unstable; urgency=low
* debian/patches/dovecot-example.dpatch: commented out a close brace.
(Closes: #394785)
-- Fabio Tranchitella <kobold@debian.org> Mon, 23 Oct 2006 08:17:13 +0000
dovecot (1.0.rc10-1) unstable; urgency=low
* New upstream release. (Closes: #393004)
* debian/patches/dovecot-example.dpatch:
+ added specific comments to the mail_extra_groups option.
(Closes: #383453)
+ removed duplicated LDA section. (Closes: #391632)
* debian/dovecot.8: fixed a layout error. (Closes: #393080)
* debian/dovecot-common.init: added LSB headers.
* Switched to the upstream dovecot deliver (LDA).
* debian/patches/quota_v2.dpatch: added, thanks to Jonas Smedegaard.
(Closes: #377563)
-- Fabio Tranchitella <kobold@debian.org> Sun, 22 Oct 2006 08:55:16 +0000
dovecot (1.0.rc7-1) unstable; urgency=low
* New upstream release. (Closes: #377840, #385101)
* debian/patches/dovecot-example.dpatch: set a default value for
pop3_uidl_format. (Closes: #383883)
-- Fabio Tranchitella <kobold@debian.org> Tue, 29 Aug 2006 10:38:17 +0200
dovecot (1.0.rc6-1) unstable; urgency=low
* New upstream release:
+ Fixed imap segfaults on small mbox files (2 bytes). (Closes: #377840)
+ Fixed a known bug in dovecot's IDLE handler. (Closes: #351828)
+ Added support for quota2. (Closes: #377563)
* debian/control: converted build-depends on linux-kernel-headers to
build-conflicts to help the GNU/kFreeBSD port. (Closes: #377479)
* debian/control: changed maintainer to "Dovecot Maintainers"; no changes
to the email addresses.
-- Fabio Tranchitella <kobold@debian.org> Tue, 15 Aug 2006 10:58:57 +0200
dovecot (1.0.rc2-2) unstable; urgency=low
* patched the quota plugin to fix a missing symbol (Closes: #377018)
-- Jaldhar H. Vyas <jaldhar@debian.org> Fri, 7 Jul 2006 10:50:04 -0400
dovecot (1.0.rc2-1) unstable; urgency=high
* New upstream release
* Update dovecot-lda to the latest version (05132006)
* IPv6 with SSL/TLS should work now. (Closes: #374783)
* go back to using poll instead of epoll. (Closes: #376222)
-- Jaldhar H. Vyas <jaldhar@debian.org> Thu, 6 Jul 2006 00:47:56 -0400
dovecot (1.0.rc1-1) unstable; urgency=low
* New upstream release.
* Add a build-dependency on linux-kernel-headers for the xfs quotas
stuff. Make it higher than the version in sarge because sarges xfs
includes are too old. If any knowledgeable person would like to
give me a patch for this, please do. (Closes: #374793)
-- Jaldhar H. Vyas <jaldhar@debian.org> Wed, 28 Jun 2006 11:42:07 -0400
dovecot (1.0.beta9-1) unstable; urgency=low
* New upstream release
* Added XFS quota support. Thanks Pawel Jarosz <pj@rsi.pl>
(Closes: #373936)
-- Jaldhar H. Vyas <jaldhar@debian.org> Mon, 19 Jun 2006 16:55:20 -0400
dovecot (1.0.beta8-4) unstable; urgency=high
* Unfortunately, the patch in the last version broke the mysql module.
Fixed thanks to Martin Pitt. (Closes: #369359, #373227)
-- Jaldhar H. Vyas <jaldhar@debian.org> Sun, 11 Jun 2006 16:27:43 -0400
dovecot (1.0.beta8-3) unstable; urgency=high
* [SECURITY] SQL injection could occur in the postgresql module with
certain client character encodings. (See CVE-2006-2314)
Used the patch from upstream and Martin Pitt <martin.pitt@ubuntu.com>.
Thanks Martin. (Closes: #369359)
-- Jaldhar H. Vyas <jaldhar@debian.org> Sun, 11 Jun 2006 15:33:55 -0400
dovecot (1.0.beta8-2) unstable; urgency=high
* Don't chown/chmod ssl certificate unless we created it.
(Closes: #364766)
* Upstream fixed the crash if passwd-file had entries without passwords.
(Closes: #361536)
* fixed up the last versions changelog to better describe the security
problem which was fixed there.
-- Jaldhar H. Vyas <jaldhar@debian.org> Sun, 21 May 2006 13:16:17 -0400
dovecot (1.0.beta8-1) unstable; urgency=high
* New upstream release.
* [SECURITY] Fixes a directory traversal vulnerability.
(see: http://www.dovecot.org/list/dovecot-news/2006-May/000006.html
and CVE-2006-2414)
* Set urgency to high: this version fixes a security bug
* Standards-Version: 3.7.2, no changes needed.
-- Fabio Tranchitella <kobold@debian.org> Sat, 13 May 2006 22:46:16 +0200
dovecot (1.0.beta7-1) unstable; urgency=low
* New upstream version.
* Added sqlite support.
-- Jaldhar H. Vyas <jaldhar@debian.org> Wed, 12 Apr 2006 23:25:41 -0400
dovecot (1.0.beta5-1) unstable; urgency=low
* New upstream version. Also updated dovecot-lda from CVS.
* debian/control. Added build-depends on flex to prevent FTBS.
-- Jaldhar H. Vyas <jaldhar@debian.org> Thu, 6 Apr 2006 16:22:46 -0400
dovecot (1.0.beta3-3) unstable; urgency=low
* Compile against the newer mysql library. (Closes: #356729)
-- Fabio Tranchitella <kobold@debian.org> Wed, 22 Mar 2006 13:43:04 +0000
dovecot (1.0.beta3-2) unstable; urgency=low
[Fabio Tranchitella]
* debian/control: added build-depends on byacc.
* debian/rules: removed --with-vpopmail option, because libvpopmail-dev
is in contrib and we don't wanto to have dovecot build-depends on it.
* debian/patches/dovecot-example.dpatch: added two small commented
block of configuration for dovecot-lda.
-- Fabio Tranchitella <kobold@debian.org> Sun, 26 Feb 2006 20:59:06 +0000
dovecot (1.0.beta3-1) unstable; urgency=high
[Fabio Tranchitella]
* New upstream release, which fixes two security related bugs.
CVE-2006-0730 (Closes: #353341)
* Included dovecot-lda (ver. 20060209). (Closes: #353307, #347348, #333962)
[ Jaldhar H. Vyas ]
* Removed the code for upgrading impad.pem. This might bite if you if
you try and upgrade a woody version of dovecot to this one. So
don't do that. (Closes: #337715)
* dovecot-imapd,dovecot-pop3d: depend on dovecot-common >= 1.0beta3-1
as the way SSL parameters are generated has changed. (Closes: #353404)
-- Jaldhar H. Vyas <jaldhar@debian.org> Fri, 17 Feb 2006 22:06:21 -0500
dovecot (1.0.beta2-1) unstable; urgency=low
[Fabio Tranchitella]
* New upstream release.
* debian/rules: compile with vpopmail support. (Closes: #347838)
* debian/patches: removed zlib patch (merged with upstream).
-- Fabio Tranchitella <kobold@debian.org> Thu, 2 Feb 2006 21:38:32 +0000
dovecot (1.0.alpha5-1) unstable; urgency=low
[Fabio Tranchitella]
* New upstream release.
* Compile dovecot with Kerberos support. (Closes: #338384)
* Fixed a small typo in mbox specification. (Closes: #339789)
* Added man page for maildirmake.dovecot, thanks to Henry Precheur.
(Closes: #340498)
* Use /usr/lib/dovecot/modules as basedir for dynamic modules.
Upstream suggests /usr/lib/dovecot, but we already use it as
libexec directory.
-- Fabio Tranchitella <kobold@debian.org> Wed, 21 Dec 2005 13:44:38 +0000
dovecot (1.0.alpha4-1) unstable; urgency=low
[Jaldhar H. Vyas]
* New upstream version.
* Made sure the default dovecot.conf includes mail_extra_groups=mail
(Closes: #336476) somehow this edit got lost at some point.
* use ISO8601 date format as default value for log_timestamp in
/etc/dovecot/dovecot.conf (Closes: #333059)
* stop shipping {arch} directories in source (Closes: #334646)
* Include plugin for compressed mboxen (Closes: #332384)
* updated NEWS.Debian to warn users that the dovecot.conf syntax has
changed (Closes: #334209)
* Remember, remember, the 5th of November.
-- Jaldhar H. Vyas <jaldhar@debian.org> Sat, 5 Nov 2005 23:19:19 -0500
dovecot (1.0.alpha3-2) unstable; urgency=low
[Jaldhar H. Vyas]
* dovecot-common: When creating the dovecot user in the postinst,
the --ingroup option to adduser to add dovecot to group
mail isn't used anymore.
(Closes: #330960, #331106)
* commented out userdb passdb from default configuration. Most
people won't need that. (Closes: #330978)
-- Jaldhar H. Vyas <jaldhar@debian.org> Thu, 6 Oct 2005 14:25:33 -0400
dovecot (1.0.alpha3-1) unstable; urgency=low
[ Fabio Tranchitella ]
* New upstream release (dovecot-1.0.alpha.3)
* debian/patches/ipv6_v6only.dpatch: removed, upstream accepted it.
* debian/dovecot-common.postinst: removed bashisms.
* debian/dovecot-common.postinst: add dovecot user to group mail.
(Closes: #323921)
* debian/control: removed conflicts with imap-server and pop3-server,
added replaces instead. (Closes: #324480)
[ Jaldhar H. Vyas ]
* No longer crashes when using LDAP as userdb/passdb (Closes: #320388)
-- Jaldhar H. Vyas <jaldhar@debian.org> Mon, 26 Sep 2005 01:42:09 -0400
dovecot (0.99.20050712-2) unstable; urgency=low
* Fabio Tranchitella <kobold@debian.org>
+ debian/control: dovecot-common has to depend on adduser.
+ debian/patches/documentation.dpatch: some cosmetic fixes about mysql
backend.
* Jaldhar H. Vyas <jaldhar@debian.org>
+ debian/control: tighten dovecot-imapd and dovecot-pop3d's dependency on
dovecot-common (Closes: #319465)
+ debian/patches/dovecot-example.dpatch: some more fixes to default
configuration. (Closes: #319413, #319941)
-- Jaldhar H. Vyas <jaldhar@debian.org> Fri, 29 Jul 2005 15:37:52 -0400
dovecot (0.99.20050712-1) unstable; urgency=low
* Fabio Tranchitella <kobold@debian.org>
+ New upstream version (dovecot-stable, last update 20050712).
(Closes: #312893)
+ debian/control: Standards-Version: 3.6.2 (no changes needed).
+ debian/patches/dovecot-sql.dpatch: use the right path for mysql socket.
(Closes: #298874)
* Jaldhar H. Vyas <jaldhar@debian.org>
+ Removed dovecot package as it was just a woody->sarge transitional
pseudo-package.
+ Apply patch to debian/dovecot-common.init to help when manually
starting dovecot. Thanks Roland Stigge. (Closes: #309679)
+ Apply patch to src/lib/network.c to support IPV6_V6ONLY. Thanks
Marco D'Itri. (Closes: #308652)
+ depend on the latest postgresql library.
-- Jaldhar H. Vyas <jaldhar@debian.org> Wed, 20 Jul 2005 06:30:37 -0400
dovecot (0.99.14-1) unstable; urgency=low
* New upstream version.
* dovecot-common: another postinst regexp fix for SSL cert/key files.
(Closes: #294989)
-- Jaldhar H. Vyas <jaldhar@debian.org> Sat, 12 Feb 2005 21:34:33 -0500
dovecot (0.99.13-6) unstable; urgency=high
* dovecot-common: *sigh* another init script fix. Hopefully we now
fully deal with dovecot being run from inetd. Thanks again to Magnus
Holmgren. (Closes: #293348)
* High again so -5 doesn't get into sarge.
-- Jaldhar H. Vyas <jaldhar@debian.org> Mon, 7 Feb 2005 02:58:30 -0500
dovecot (0.99.13-5) unstable; urgency=high
* dovecot-common: typo in postinst resulted in incorrect generation of
keys for first-time installers. Hence urgency high.
* dovecot-common: In init script, make extra check to make sure an
IMAP or POP3 server called from inetd is dovecot and not some other
random inferior product. (Closes: #293348)
-- Jaldhar H. Vyas <jaldhar@debian.org> Sat, 5 Feb 2005 13:56:31 -0500
dovecot (0.99.13-4) unstable; urgency=low
* build depend on libmysqlclient12
* dovecot-common: Allow STARTTLS to work when dovecot is run from inetd
Thanks Magnus Holmgren (Closes: #290985)
* dovecot-common: let init script exit if dovecot is being run from inetd
Thanks Magnus Holmgren (Closes: #292195)
* dovecot-common: fix a number of problems in postinst
+ fails if /etc/ssl/certs or /etc/ssl/private doesn't exist
+ certs cannot be generated and upgrade fails if openssl is not
configured. Fail more gracefully if this is the case.
+ read the name and path for the cert from dovecot.conf instead of
hardcoding it.
Thanks Frederic Pauget (Closes: #292344)
-- Jaldhar H. Vyas <jaldhar@debian.org> Sun, 30 Jan 2005 15:20:03 -0500
dovecot (0.99.13-3) unstable; urgency=high
* Oops -2 had to be urgency=high so -1 doesn't get into sarge.
-- Jaldhar H. Vyas <jaldhar@debian.org> Sat, 8 Jan 2005 12:11:38 -0500
dovecot (0.99.13-2) unstable; urgency=low
* dovecot-imapd, dovecot-pop3d: It occurred to me that the effects of
fixing #288391 will cause confusion in the minds of new installers so I
should add a warning in README.Debian and NEWS.Debian in a vain
effort to stave off swarms of bug reports. (Vain, because no one
actually reads documentation anyway.)
-- Jaldhar H. Vyas <jaldhar@debian.org> Sat, 8 Jan 2005 11:29:59 -0500
dovecot (0.99.13-1) unstable; urgency=high
* New upstream version.
* dovecot-imapd, dovecot-pop3d: No longer mess with dovecot.conf in postinst
(Closes: #288391)
* urgency high due to #288391 being a release-critical bug.
-- Jaldhar H. Vyas <jaldhar@debian.org> Fri, 7 Jan 2005 17:37:08 -0500
dovecot (0.99.12-1) unstable; urgency=low
* New upstream version. (Yes I know 0.99.13 is just around the corner.)
* SASL is re-enabled so this bug ("Dovecot seems not to require SASL")
is no longer valid (Closes: #272093)
* Configuration files moved to /etc/dovecot (Closes: #276183)
* Permissions on /var/run/dovecot and /var/run/dovecot/login no longer
give warnings. (Closes: #283996)
* SSL certificate is world readable (Closes: #277114).
* Thanks to Jan Buren, much extra documentation has been added to
/usr/share/doc/dovecot-common/README.Debian
* Lintian overrides added.
* Happy new year to all you Gregorians
-- Jaldhar H. Vyas <jaldhar@debian.org> Fri, 31 Dec 2004 15:55:07 -0500
dovecot (0.99.11-3) unstable; urgency=medium
* applied dovecot-large-header-fix patch to prevent 100% CPU
utilization when dealing with really large headers.
(Closes: #271458)
-- Jaldhar H. Vyas <jaldhar@debian.org> Mon, 13 Sep 2004 20:20:23 -0400
dovecot (0.99.11-2) unstable; urgency=low
* Eliminated duplicate stanza in dovecot.conf (Closes: #270181)
* Reapplied CRAM-MD5 patch.
-- Jaldhar H. Vyas <jaldhar@debian.org> Mon, 6 Sep 2004 01:24:53 -0400
dovecot (0.99.11-1) unstable; urgency=low
* New upstream release.
* patch to give bug reporting address in configure.ac.
Thanks Matthias Andree.
-- Jaldhar H. Vyas <jaldhar@debian.org> Sat, 4 Sep 2004 14:24:57 -0400
dovecot (0.99.10.9-2) unstable; urgency=low
* screw mipsel.
* Added PAM_RHOST patch. Thanks Dean Gaudet. (Closes: #264712)
* Added CRAM-MD5 patch. Thanks Joshua Goodall.
* Added unexpected EOF patch from Timo.
-- Jaldhar H. Vyas <jaldhar@debian.org> Tue, 17 Aug 2004 01:13:20 -0400
dovecot (0.99.10.9-1) unstable; urgency=low
* New upstream release.
-- Jaldhar H. Vyas <jaldhar@debian.org> Mon, 2 Aug 2004 18:56:02 -0400
dovecot (0.99.10.8-1) unstable; urgency=low
* New upstream release.
-- Jaldhar H. Vyas <jaldhar@debian.org> Fri, 30 Jul 2004 08:17:51 -0400
dovecot (0.99.10.7-1) unstable; urgency=low
* New upstream release.
-- Jaldhar H. Vyas <jaldhar@debian.org> Wed, 14 Jul 2004 07:29:49 -0400
dovecot (0.99.10.6-3) unstable; urgency=low
* Patched so dovecot follows symlinks to directories again.
(Closes: #256061)
* Changed the priority of init script so it is run after postgresql
(Closes: #256068)
-- Jaldhar H. Vyas <jaldhar@debian.org> Thu, 24 Jun 2004 23:57:50 -0400
dovecot (0.99.10.6-2) unstable; urgency=high
* I needed to enable one more parameter in the configuration in order
to get dot-locking working. Hence this should still be high urgency.
(Really Closes: #185335)
-- Jaldhar H. Vyas <jaldhar@debian.org> Mon, 21 Jun 2004 20:02:29 -0400
dovecot (0.99.10.6-1) unstable; urgency=high
* New upstream version.
+ finally fixes dot-locking so I think it deserves high priority for
sarge. (Closes: #185335)
* dovecot: fixed a typo in description (Closes: #254415)
* dovecot-common: man page for dovecot added. Thanks Kai Hendry.
(Closes: #253482)
-- Jaldhar H. Vyas <jaldhar@debian.org> Sat, 19 Jun 2004 23:18:39 -0400
dovecot (0.99.10.5-4) unstable; urgency=high
* Crap, typo in dovecot-common.postinst sorry. This should only
affect new installs though.
-- Jaldhar H. Vyas <jaldhar@debian.org> Fri, 11 Jun 2004 22:30:41 -0400
dovecot (0.99.10.5-3) unstable; urgency=high
* SECURITY: set permissions on config files to 0600 to prevent
disclosure of sensitive information to local users. (Closes: #253760)
* SECURITY: Tightened permissions on generated SSL certificate.
(Closes: #253833)
* Made a note that dovecot-openssl.conf is not needed on Debian
because we generate a certificate in dovecot-commons' postinst.
(Closes: #253774)
* Added maildir-autocreate patch.
-- Jaldhar H. Vyas <jaldhar@debian.org> Fri, 11 Jun 2004 09:12:07 -0400
dovecot (0.99.10.5-2) unstable; urgency=low
* Added maildir-stat patch.
-- Jaldhar H. Vyas <jaldhar@debian.org> Thu, 10 Jun 2004 14:39:28 -0400
dovecot (0.99.10.5-1) unstable; urgency=low
* New upstream version.
* Enabled mysql support.
-- Jaldhar H. Vyas <jaldhar@debian.org> Thu, 27 May 2004 13:21:42 -0400
dovecot (0.99.10.4-5) unstable; urgency=high
* Switched to using openssl as dovecot segfaults with gnutls7 and is
not compatible with gnutls10 (Closes: #244570)
-- Jaldhar H. Vyas <jaldhar@debian.org> Mon, 19 Apr 2004 22:45:21 -0400
dovecot (0.99.10.4-4) unstable; urgency=low
* Added a patch to src/auth/db-pgsql.c from Zsolt VARGA.
-- Jaldhar H. Vyas <jaldhar@debian.org> Tue, 30 Mar 2004 12:49:31 -0500
dovecot (0.99.10.4-3) unstable; urgency=high
* dovecot-common: Fix postinst to no longer delete /etc/pam.d/imap
(Closes: #232832)
-- Jaldhar H. Vyas <jaldhar@debian.org> Mon, 15 Mar 2004 10:27:52 -0500
dovecot (0.99.10.4-2) unstable; urgency=low
* dovecot-common: now replaces: dovecot for smoother upgrades.
(Closes: #223666)
-- Jaldhar H. Vyas <jaldhar@debian.org> Thu, 11 Dec 2003 09:18:12 -0500
dovecot (0.99.10.4-1) unstable; urgency=low
* New upstream version
+ This fixes the corruption of .subscriptions files with folders in
maildir format. (Closes: #222272)
* Some extra information included in dovecot-common.README.Debian.
(Closes: #221106) There should probably be more so if you have ideas
let me know.
-- Jaldhar H. Vyas <jaldhar@debian.org> Mon, 1 Dec 2003 23:41:00 -0500
dovecot (0.99.10.2-1) unstable; urgency=low
* New upstream version.
-- Jaldhar H. Vyas <jaldhar@debian.org> Tue, 11 Nov 2003 17:21:45 -0500
dovecot (0.99.10-11) unstable; urgency=low
* Build depend on gnutls 7 instead of 5 (Closes: #219523)
-- Jaldhar H. Vyas <jaldhar@debian.org> Thu, 6 Nov 2003 22:25:00 -0500
dovecot (0.99.10-10) unstable; urgency=low
* maildirmake.dovecot will now let you create maildirs whose names
have spaces in them and chown them to a specified user. Thanks Paul
Slootman (Closes: #219168)
-- Jaldhar H. Vyas <jaldhar@debian.org> Tue, 4 Nov 2003 20:00:25 +0000
dovecot (0.99.10-9) unstable; urgency=low
* Don't use SASL2 as upstream says the support is broken.
-- Jaldhar H. Vyas <jaldhar@debian.org> Tue, 23 Sep 2003 16:27:11 +0000
dovecot (0.99.10-8) unstable; urgency=low
* Patched so suid works on 2.6 kernels. Thanks Peter Gervai.
(Closes: #211420)
-- Jaldhar H. Vyas <jaldhar@debian.org> Wed, 17 Sep 2003 17:59:10 +0000
dovecot (0.99.10-7) unstable; urgency=low
* Yet another init script fix. It should be ok now. Thanks once again
to Alexis Iglauer.
-- Jaldhar H. Vyas <jaldhar@debian.org> Wed, 27 Aug 2003 10:56:04 -0400
dovecot (0.99.10-6) unstable; urgency=low
* fix some errors in init script (closes: #207464)
Thanks to Adam Lackorzynski and Alexis Iglauer.
-- Jaldhar H. Vyas <jaldhar@debian.org> Wed, 27 Aug 2003 09:02:23 -0400
dovecot (0.99.10-5) unstable; urgency=high
* dovecot-pop3d, dovecot-imapd: make sure init script doesn't
attempt to start the daemons if unconfigured thus preventing
segfault on startup. (Closes: #206992, #207140)
-- Jaldhar H. Vyas <jaldhar@debian.org> Mon, 25 Aug 2003 16:40:53 -0400
dovecot (0.99.10-4) unstable; urgency=low
* Updated PAM configuration to the new scheme and added appropriate
dependency.
-- Jaldhar H. Vyas <jaldhar@debian.org> Fri, 22 Aug 2003 12:54:54 -0400
dovecot (0.99.10-3) unstable; urgency=low
* dovecot-pop3d: Patch for proper PAM service name.
* dovecot-imapd, dovecot-pop3d: Make sure there is an appropriate
entry in the protocol = line in /etc/dovecot.conf so the service
will start up without errors. (Closes: #204213)
-- Jaldhar H. Vyas <jaldhar@debian.org> Thu, 21 Aug 2003 13:47:00 -0400
dovecot (0.99.10-2.1) unstable; urgency=low
* Non-maintainer upload at request of maintainer.
* Fix segfault on alpha caused by time_t size. Closes: #203892.
* Fix segfault when user's home directory is left empty.
-- Scott James Remnant <scott@netsplit.com> Wed, 6 Aug 2003 01:47:16 +0100
dovecot (0.99.10-2) unstable; urgency=low
* corrected paths to example and configuration files in sample config
(Closes: #199740)
* Added postgresql support.
-- Jaldhar H. Vyas <jaldhar@debian.org> Thu, 3 Jul 2003 16:45:49 -0400
dovecot (0.99.10-1) unstable; urgency=low
* New upstream release.
* PAM service name has changed to dovecot (for IMAP and POP3.) I've included
code to move /etc/pam.d/imap to /etc/pam.d/dovecot but if things suddenly
stop working, this is the first thing to check.
-- Jaldhar H. Vyas <jaldhar@debian.org> Thu, 26 Jun 2003 22:31:07 -0400
dovecot (0.99.10-0.rc2) unstable; urgency=low
* New upstream release. Fixes broken imaps support.
* Typo in configure options that broke LDAP support on woody corrected.
* Only start /usr/sbin/dovecot if either the IMAP or POP3 servers are
installed. (Closes: #192066)
-- Jaldhar H. Vyas <jaldhar@debian.org> Mon, 23 Jun 2003 23:26:04 -0400
dovecot (0.99.9.1-1) unstable; urgency=low
* New upstream release.
-- Jaldhar H. Vyas <jaldhar@debian.org> Sun, 4 May 2003 21:49:55 -0400
dovecot (0.99.9-1) unstable; urgency=low
* New upstream release.
* The IMAP and POP3 servers have been split into separate package so you
don't have to install both. There is also a dovecot-common package
for the parts they share. The dovecot package is now a dummy just for
transitioning to this new scheme. (Closes: #187826)
* Allow chmod in maildirmake.dovecot to fail gracefully (Closes: #191244)
-- Jaldhar H. Vyas <jaldhar@debian.org> Wed, 30 Apr 2003 08:53:46 -0400
dovecot (0.99.8.1-4) unstable; urgency=low
* Added a build-depends on libsasl-dev (Closes: #187516)
* Enabled pop3 service. However it is still turned off in the config file by
default so as to not surprise anyone who thought they only had an IMAP
server.
* Consequently, changed "IMAP server" in descriptions etc. to "mail server".
* only skip key generation if both /etc/ssl/certs/dovecot.pem and
/etc/ssl/private/dovecot.pem exist. (Closes: #187638)
* post-0.99.8.1 patch: Fix renaming subfolders with maildir.
* post-0.99.8.1 patch: Fix other maildir subfolder problems.
* post-0.99.8.1 patch: Fix partial body fetches.
* post-0.99.8.1 patch: Fix using LITERAL+APPEND.
-- Jaldhar H. Vyas <jaldhar@debian.org> Sat, 5 Apr 2003 14:13:52 -0500
dovecot (0.99.8.1-3) unstable; urgency=low
* Fixed bashism and perlism(!) in maildirmake.dovecot. Thanks Clint
Adams. (Closes: #185768)
* Enabled LDAP support. The configuration is in /etc/dovecot-ldap.conf
but is commented out.
* Happy new year to all Debian users still on the Julian calendar.
-- Jaldhar H. Vyas <jaldhar@debian.org> Tue, 25 Mar 2003 09:25:37 -0500
dovecot (0.99.8.1-2) unstable; urgency=low
* Make a separate check for /etc/ssl/private/imapd.pem in case we don't
have it. (Closes: #185334)
* Move check for dovecot user and creation code to postinsts' configure
phase. (Closes: #185333)
-- Jaldhar H. Vyas <jaldhar@debian.org> Wed, 19 Mar 2003 01:50:10 -0500
dovecot (0.99.8.1-1) unstable; urgency=low
* new upstream release. (Closes: #184131) Does not include the POP3
server or LDAP and SASL support for now so we can get into the archive
quickly. Fixes segfaults in imap-master (Closes: #184231) Fixes
faulty mail autodetection presets (Closes: #179625)
-- Jaldhar H. Vyas <jaldhar@debian.org> Sun, 16 Mar 2003 15:47:54 -0500
dovecot (0.99.7-4) unstable; urgency=low
* Fixed location of handlers. (Closes: #179273)
-- Jaldhar H. Vyas <jaldhar@debian.org> Fri, 31 Jan 2003 18:37:23 -0500
dovecot (0.99.7-3) unstable; urgency=low
* doh pam file should be called imap not dovecot (Closes: #179180)
-- Jaldhar H. Vyas <jaldhar@debian.org> Fri, 31 Jan 2003 14:12:29 -0500
dovecot (0.99.7-2) unstable; urgency=low
* Added two upstream patches to fix broken plain authentication and
building with vpopmail support (which is not enabled in the Debian
package yet.)
-- Jaldhar H. Vyas <jaldhar@debian.org> Fri, 17 Jan 2003 14:24:22 -0500
dovecot (0.99.7-1) unstable; urgency=low
* New upstream release.
* Syslog no longer fills up with entries when dovecot is misconfigured.
(Closes: #175507)
* startup is logged now. shutdowns were already logged. (Closes: #175509)
* dovecot will not remove your SSL certificates now. (Closes: #175282)
-- Jaldhar H. Vyas <jaldhar@debian.org> Wed, 15 Jan 2003 00:58:23 -0500
dovecot (0.99.6rc2-1) unstable; urgency=low
* New upstream release.
* Includes patch which stops dovecot from dying on alpha (Closes: #175577)
-- Jaldhar H. Vyas <jaldhar@debian.org> Wed, 8 Jan 2003 14:22:09 -0500
dovecot (0.99.5-1) unstable; urgency=low
* New upstream release with many fixes and improvements.
-- Jaldhar H. Vyas <jaldhar@debian.org> Fri, 3 Jan 2003 00:53:26 -0500
dovecot (0.99.4-1) unstable; urgency=low
* Initial Release.
-- Jaldhar H. Vyas <jaldhar@debian.org> Wed, 18 Dec 2002 09:44:39 -0500
|