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
|
mew-beta (7.0.50~6.9+0.20230214-1) experimental; urgency=medium
* Ready for Mew 6.9+
* Drop 900_changes.patch
* Drop debian/mew.texi.old
* Adjust renamed files for Mew 6.9
* Adjust patches for GnuTLS and XOAUTH2
* Update debian/copyright
* Exclude *.info files from tarball to prevent binary without source
* New upstream version 7.0.50~6.9+0.20230214
-- Tatsuya Kinoshita <tats@debian.org> Tue, 14 Feb 2023 22:39:06 +0900
mew-beta (7.0.50~6.8+0.20221129-4) unstable; urgency=medium
* Update GnuTLS documents in README.Debian
* Do not set mew-ssl-min-prime-bits in emacsen-startup
* Update debian/watch to use mode=git
* Use shell functions for PACKAGE and CHG_SUFFIX
* Add get-orig-source to fetch upstream snapshot tarball
-- Tatsuya Kinoshita <tats@debian.org> Mon, 23 Jan 2023 22:34:19 +0900
mew-beta (7.0.50~6.8+0.20221129-3) unstable; urgency=medium
* Enable inhibit-automatic-native-compilation when byte-compiling
* Enable byte-compile-warnings when byte-compiling
* Update debian/copyright
-- Tatsuya Kinoshita <tats@debian.org> Sun, 08 Jan 2023 22:59:44 +0900
mew-beta (7.0.50~6.8+0.20221129-2) unstable; urgency=medium
* Prevent native compilation when byte-compiling
* Update debian/copyright to integrate contrib into debian/patches
* Relax dependencies on emacs flavors
* Update Standards-Version to 4.6.2
-- Tatsuya Kinoshita <tats@debian.org> Sat, 17 Dec 2022 14:49:37 +0900
mew-beta (7.0.50~6.8+0.20221129-1) unstable; urgency=medium
[ Debian Janitor ]
* Use secure URI in Homepage field.
* Update renamed lintian tag names in lintian overrides.
* Update standards version to 4.6.0, no changes needed.
* Remove empty maintainer scripts
* Remove constraints unnecessary since buster (closes: #1013835)
[ Tatsuya Kinoshita ]
* New upstream version 7.0.50~6.8+0.20221129
* Update 900_changes.patch
* Rebase 500_gnutls.patch
* Update 510_xoauth2.patch to disable XOAUTH2 by default
* Don't set mew-*-auth-list variables in emacsen-startup
* Avoid egrep in maintainer scripts
* Update Standards-Version to 4.6.1
* Update debian/copyright
* Update lintian override info format
* Leave a compilation log
* Don't set no-native-compile to native compile with Emacs 28
-- Tatsuya Kinoshita <tats@debian.org> Sat, 10 Dec 2022 01:17:18 +0900
mew-beta (7.0.50~6.8+0.20210625-2) unstable; urgency=medium
* Use command -v instead of which in mewstunnel
-- Tatsuya Kinoshita <tats@debian.org> Sat, 21 Aug 2021 17:58:37 +0900
mew-beta (7.0.50~6.8+0.20210625-1) unstable; urgency=medium
* New upstream version 7.0.50~6.8+0.20210625
* Update 900_changes.patch
* Drop 150_cache-save.patch
* Drop 140_imap-fetch.patch
* Update 510_xoauth2.patch to 2021-03-30
* Update no-native-compile handling
-- Tatsuya Kinoshita <tats@debian.org> Tue, 17 Aug 2021 19:30:04 +0900
mew-beta (7.0.50~6.8+0.20210131-5) experimental; urgency=medium
* New patch 150_cache-save.patch to fix misuse of decode-syntax
-- Tatsuya Kinoshita <tats@debian.org> Sat, 22 May 2021 08:56:43 +0900
mew-beta (7.0.50~6.8+0.20210131-4) experimental; urgency=medium
* Update no-native-compile handling
* Set mew-field-comment to empty as workaround for Gmail
* Update documents for SSL/TLS
-- Tatsuya Kinoshita <tats@debian.org> Wed, 05 May 2021 21:23:55 +0900
mew-beta (7.0.50~6.8+0.20210131-3) experimental; urgency=medium
* New patch 140_imap-fetch.patch to prevent redundant blank line
* Set no-native-compile to t in *.el files for Emacs 28
-- Tatsuya Kinoshita <tats@debian.org> Sat, 01 May 2021 11:55:54 +0900
mew-beta (7.0.50~6.8+0.20210131-2) unstable; urgency=medium
* New patch 020_locale-utf8.patch to use the C.UTF-8 locale
* Update dot.mew-theme-subdued.el
* Update debian/copyright
* Update Info handling to use makeinfo
-- Tatsuya Kinoshita <tats@debian.org> Sat, 06 Feb 2021 16:22:42 +0900
mew-beta (7.0.50~6.8+0.20210131-1) unstable; urgency=medium
* New upstream version 7.0.50~6.8+0.20210131
* Update 900_changes.patch
* Rebase 500_gnutls.patch
* Add dot.mew-theme-subdued.el to examples
* Update debian/copyright
-- Tatsuya Kinoshita <tats@debian.org> Sun, 31 Jan 2021 21:01:26 +0900
mew-beta (7.0.50~6.8+0.20210113-1) unstable; urgency=medium
* New upstream version 7.0.50~6.8+0.20210113
* Update 900_changes.patch
* Drop 090_x-mailer.patch
* Drop 030_cache-long-scans.patch
* Drop emacs25 and emacs24
* Update README.Debian for TLS/SSL and OpenSSL ciphers
* Add sample configuration for OpenSSL ciphers to emacsen-startup
* Rebase 500_gnutls.patch
-- Tatsuya Kinoshita <tats@debian.org> Sun, 24 Jan 2021 09:23:10 +0900
mew-beta (7.0.50~6.8+0.20201202-3) unstable; urgency=medium
* Don't install XEmacs specific contrib/mew-toolbar-frame.el
* Set mew-ssl-min-prime-bits to nil to use Emacs default value
* Typo fix in README.Debian
* Update debian/copyright
-- Tatsuya Kinoshita <tats@debian.org> Sat, 09 Jan 2021 08:57:48 +0900
mew-beta (7.0.50~6.8+0.20201202-2) unstable; urgency=medium
* New patch 500_gnutls.patch to experimental support GnuTLS
cf. https://groups.google.com/g/mew-ja/c/sSfEPKD_CSM
https://github.com/hrs-allbsd/Mew
* New patch 510_xoauth2.patch to experimental support XOAUTH2
cf. https://groups.google.com/g/mew-ja/c/Hn9L27ll-eY
https://github.com/yoshinari-nomura/Mew/tree/mew-support-xoauth2
* Set mew-image-alist for Netpbm 10.0 in emacsen-startup
* Drop 020_netpbm.patch
* New patch 090_x-mailer.patch for Emacs micro version
* Update debian/copyright
* Update README.Debian to mention experimental features
* Update debian/watch to version 4
* Set auth list variables to avoid experimental XOAUTH2
* Add comments for mew-ssl-default to emacsen-startup
-- Tatsuya Kinoshita <tats@debian.org> Sun, 03 Jan 2021 21:51:34 +0900
mew-beta (7.0.50~6.8+0.20201202-1) unstable; urgency=medium
* New upstream version 7.0.50~6.8+0.20201202
* Update 900_changes.patch
* Drop 080_coding-priority.patch
* Update Standards-Version to 4.5.1
-- Tatsuya Kinoshita <tats@debian.org> Sun, 27 Dec 2020 12:42:53 +0900
mew-beta (7.0.50~6.8+0.20200130-2) unstable; urgency=medium
* New patch 080_coding-priority.patch for Emacs 28
* Add debian/upstream/metadata
* Update debhelper-compat to 13
* No longer recompile mhc
-- Tatsuya Kinoshita <tats@debian.org> Sat, 05 Sep 2020 10:20:12 +0900
mew-beta (7.0.50~6.8+0.20200130-1) unstable; urgency=medium
* New upstream version 7.0.50~6.8+0.20200130
* Update 900_changes.patch
* Update Standards-Version to 4.5.0
-- Tatsuya Kinoshita <tats@debian.org> Thu, 30 Jan 2020 21:41:35 +0900
mew-beta (7.0.50~6.8+0.20200106-1) unstable; urgency=medium
* New upstream version 7.0.50~6.8+0.20200106
* Update 900_changes.patch
* Prefer gpg over gpg2
* Add Rules-Requires-Root: binary-targets
* Update Standards-Version to 4.4.1
* Update debian/copyright
* Include old mew.texi as a source of upstream mew.*info*
-- Tatsuya Kinoshita <tats@debian.org> Mon, 06 Jan 2020 21:43:41 +0900
mew-beta (7.0.50~6.8+0.20190826-1) unstable; urgency=medium
* New upstream version 7.0.50~6.8+0.20190826
* Update 900_changes.patch
-- Tatsuya Kinoshita <tats@debian.org> Tue, 27 Aug 2019 23:43:59 +0900
mew-beta (7.0.50~6.8+0.20190415-2) unstable; urgency=medium
* Update debhelper-compat to 12
* Skip old flavors emacs23 and emacs22
-- Tatsuya Kinoshita <tats@debian.org> Tue, 16 Jul 2019 23:09:18 +0900
mew-beta (7.0.50~6.8+0.20190415-1) unstable; urgency=medium
* New upstream version 7.0.50~6.8+0.20190415
* Update 900_changes.patch
* Drop 040_incm-lock.patch
* Update debian/copyright
* Update Standards-Version to 4.4.0
-- Tatsuya Kinoshita <tats@debian.org> Sat, 13 Jul 2019 15:15:42 +0900
mew-beta (7.0.50~6.8+0.20190228-1) unstable; urgency=medium
* New upstream version 7.0.50~6.8+0.20190228
* Update 900_changes.patch
* Add lintian-overrides for usr/bin/incm
-- Tatsuya Kinoshita <tats@debian.org> Thu, 28 Feb 2019 20:45:20 +0900
mew-beta (7.0.50~6.8+0.20180710-3) unstable; urgency=medium
[ YAMANAKA Hitoshi ]
* debian/rules: chgrp mail + chmod g+s to /usr/bin/incm
[ Tatsuya Kinoshita ]
* New patch 040_incm-lock.patch to not unlock when incm can't get lock
* Use debhelper-compat 11
* Update debian/copyright
* Update Standards-Version to 4.3.0
-- Tatsuya Kinoshita <tats@debian.org> Sun, 06 Jan 2019 00:30:43 +0900
mew-beta (7.0.50~6.8+0.20180710-2) unstable; urgency=medium
[ Ondřej Nový ]
* d/changelog: Remove trailing whitespaces
* d/rules: Remove trailing whitespaces
[ Tatsuya Kinoshita ]
* Update debian/watch to https
* Update Standards-Version to 4.2.1
* Set mew-delete-temp-file to nil in emacsen-startup
-- Tatsuya Kinoshita <tats@debian.org> Tue, 27 Nov 2018 00:25:14 +0900
mew-beta (7.0.50~6.8+0.20180710-1) unstable; urgency=medium
* New upstream version 7.0.50~6.8+0.20180710
* Update 900_changes.patch
* Check stamp file so that source file isn't newer
* Add sensible-utils to Suggests
* Update Standards-Version to 4.2.0
-- Tatsuya Kinoshita <tats@debian.org> Wed, 22 Aug 2018 21:53:16 +0900
mew-beta (7.0.50~6.8+0.20180607-2) unstable; urgency=medium
[ Helmut Grohne ]
* Fix FTCBFS: Pass --host to ./configure
-- Tatsuya Kinoshita <tats@debian.org> Fri, 22 Jun 2018 21:20:01 +0900
mew-beta (7.0.50~6.8+0.20180607-1) unstable; urgency=medium
* New upstream version 7.0.50~6.8+0.20180607
* Update 900_changes.patch
* Handle symlinks for emacsen-startup
* Drop unneeded mew.texi.old
* Update debian/copyright
-- Tatsuya Kinoshita <tats@debian.org> Thu, 07 Jun 2018 20:24:07 +0900
mew-beta (7.0.50~6.7+0.20180528-2) unstable; urgency=medium
* Accept unversioned emacs flavor for emacsen-common 3.0.0
* Drop workaround for emacsen-common 1.x
-- Tatsuya Kinoshita <tats@debian.org> Sun, 03 Jun 2018 19:34:52 +0900
mew-beta (7.0.50~6.7+0.20180528-1) unstable; urgency=medium
* New upstream version 7.0.50~6.7+0.20180528
- Support stunnel 5.45
* Update 900_changes.patch
* Don't recommend hyperestraier (closes: #895070)
* Update debhelper compat version to 11
* Drop emacs21
* Migrate from anonscm.debian.org to salsa.debian.org
* Update Standards-Version to 4.1.4
-- Tatsuya Kinoshita <tats@debian.org> Mon, 28 May 2018 23:01:39 +0900
mew-beta (7.0.50~6.7+0.20170719-1) unstable; urgency=medium
* New upstream version 7.0.50~6.7+0.20170719
* Update 900_changes.patch
* Update debhelper compat version to 10
* Update Priority to optional
* Update Vcs-Git to https
* Update debian/copyright
* Update Standards-Version to 4.1.3
-- Tatsuya Kinoshita <tats@debian.org> Sat, 06 Jan 2018 14:18:25 +0900
mew-beta (7.0.50~6.7+0.20161225-1) unstable; urgency=medium
* New upstream version 7.0.50~6.7+0.20161225
* Update 900_changes.patch
* Prefer emacs-nox over emacs
* Update debhelper compat version to 9
* Update debian/copyright
-- Tatsuya Kinoshita <tats@debian.org> Sun, 08 Jan 2017 11:28:25 +0900
mew-beta (7.0.50~6.7+0.20161012-1) unstable; urgency=medium
* Imported Upstream version 7.0.50~6.7+0.20161012
* Update 900_changes.patch
* Suggest gnupg | gnupg2 | gnupg1
* Explicitly prefer gpg2 in emacsen-startup
-- Tatsuya Kinoshita <tats@debian.org> Sat, 15 Oct 2016 17:22:26 +0900
mew-beta (7.0.50~6.7+0.20160905-1) unstable; urgency=medium
* Imported Upstream version 7.0.50~6.7+0.20160905
* Update 900_changes.patch
* Update debian/copyright
* Update Standards-Version to 3.9.8
* Accept emacs25
-- Tatsuya Kinoshita <tats@debian.org> Sun, 09 Oct 2016 11:49:40 +0900
mew-beta (7.0.50~6.7+0.20150818-1) unstable; urgency=medium
* Imported Upstream version 7.0.50~6.7+0.20150818
* Update 900_changes.patch
* Update Vcs-Browser to https
* Typo fix in Description
* Generate mew.*info* from mew.texi
* Include old mew.texi as a source of upstream mew.*info*
-- Tatsuya Kinoshita <tats@debian.org> Sat, 28 Nov 2015 00:19:42 +0900
mew-beta (7.0.50~6.7~rc2+0.20150703-1) unstable; urgency=medium
* Imported Upstream version 7.0.50~6.7~rc2+0.20150703
* Update 900_changes.patch
-- Tatsuya Kinoshita <tats@debian.org> Fri, 03 Jul 2015 21:00:51 +0900
mew-beta (7.0.50~6.7~rc1+0.20150513-1) unstable; urgency=medium
* Imported Upstream version 7.0.50~6.7~rc1+0.20150513
* Update debian/copyright
* Update 900_changes.patch
-- Tatsuya Kinoshita <tats@debian.org> Wed, 13 May 2015 23:37:21 +0900
mew-beta (7.0.50~6.6+0.20150508-1) unstable; urgency=medium
* Imported Upstream version 7.0.50~6.6+0.20150508
- Fix incorrect keys in encryption
- Fix bashism in mewest (closes: #772311)
* Update 900_changes.patch
* Update debian/copyright
* Update Vcs-Browser
* Update Standards-Version to 3.9.6
-- Tatsuya Kinoshita <tats@debian.org> Fri, 08 May 2015 10:05:40 +0900
mew-beta (7.0.50~6.6+0.20140902-1) unstable; urgency=medium
* Imported Upstream version 7.0.50~6.6+0.20140902
* Update 900_changes.patch
* Update mewstunnel to mention stunnel 5.x is provided by stunnel4
* Update debian/copyright
-- Tatsuya Kinoshita <tats@debian.org> Wed, 03 Sep 2014 21:32:18 +0900
mew-beta (7.0.50~6.6+0.20140604-1) unstable; urgency=medium
* Imported Upstream version 7.0.50~6.6+0.20140604
* Update 900_changes.patch
* Depend on emacsen-common 2.0.8
-- Tatsuya Kinoshita <tats@debian.org> Thu, 05 Jun 2014 00:01:50 +0900
mew-beta (7.0.50~6.6+0.20140508-1) unstable; urgency=medium
* Imported Upstream version 7.0.50~6.6+0.20140508
* Update 900_changes.patch
-- Tatsuya Kinoshita <tats@debian.org> Mon, 19 May 2014 21:33:45 +0900
mew-beta (7.0.50~6.6~rc3+0.20140425-1) unstable; urgency=medium
* Imported Upstream version 7.0.50~6.6~rc3+0.20140425
* Temporarily drop 900_changes.patch
* Do not fail when 00changes is not found
-- Tatsuya Kinoshita <tats@debian.org> Sat, 26 Apr 2014 00:23:08 +0900
mew-beta (7.0.50~6.6~rc2+0.20140424-1) unstable; urgency=medium
* Imported Upstream version 7.0.50~6.6~rc2+0.20140424
* Update 900_changes.patch
-- Tatsuya Kinoshita <tats@debian.org> Thu, 24 Apr 2014 23:19:08 +0900
mew-beta (7.0.50~6.6~rc1+0.20140416-1) unstable; urgency=medium
* Imported Upstream version 7.0.50~6.6~rc1+0.20140416
* Update 900_changes.patch
* Update debian/copyright
-- Tatsuya Kinoshita <tats@debian.org> Wed, 16 Apr 2014 18:55:55 +0900
mew-beta (7.0.50~6.5+0.20140411-1) unstable; urgency=medium
* Imported Upstream version 7.0.50~6.5+0.20140411
- Support stunnel 5.x
* Drop ruby-interpreter from ruby | ruby-interpreter
* Update 020_netpbm.patch to follow mew-prog-pamscale
* Update 900_changes.patch
-- Tatsuya Kinoshita <tats@debian.org> Fri, 11 Apr 2014 23:44:50 +0900
mew-beta (7.0.50~6.5+0.20140128-1) unstable; urgency=medium
* Imported Upstream version 7.0.50~6.5+0.20140128
* Update 900_changes.patch
* Install a compat file with emacsen-compat
-- Tatsuya Kinoshita <tats@debian.org> Sun, 02 Feb 2014 22:10:01 +0900
mew-beta (7.0.50~6.5+0.20140119-1) unstable; urgency=medium
* Imported Upstream version 7.0.50~6.5+0.20140119
* Update 900_changes.patch
* Update debian/copyright
* Install a compat file for emacsen-common 2.0.0
* Handle an installed file to follow emacsen-common 2.0.7
* Add emacsen-common (<< 2.0.0) to Conflicts
-- Tatsuya Kinoshita <tats@debian.org> Sun, 19 Jan 2014 23:59:46 +0900
mew-beta (7.0.50~6.5+0.20131120-4) unstable; urgency=low
* Workaround for emacsen-common <2 and debhelper <9.20131104
-- Tatsuya Kinoshita <tats@debian.org> Thu, 26 Dec 2013 23:16:43 +0900
mew-beta (7.0.50~6.5+0.20131120-3) unstable; urgency=low
* Add workaround to compatible with emacsen-common <2.0.0
-- Tatsuya Kinoshita <tats@debian.org> Sun, 08 Dec 2013 16:05:32 +0900
mew-beta (7.0.50~6.5+0.20131120-2) unstable; urgency=low
* New patch 030_cache-long-scans.patch due to emacs-snapshot crash
-- Tatsuya Kinoshita <tats@debian.org> Mon, 02 Dec 2013 23:48:50 +0900
mew-beta (7.0.50~6.5+0.20131120-1) unstable; urgency=low
* Imported Upstream version 7.0.50~6.5+0.20131120
* Update 020_netpbm.patch
* Update 900_changes.patch
* Update Standards-Version to 3.9.5
-- Tatsuya Kinoshita <tats@debian.org> Sun, 01 Dec 2013 23:10:53 +0900
mew-beta (7.0.50~6.5+0.20131020-1) unstable; urgency=low
* Imported Upstream version 7.0.50~6.5+0.20131020
* Replace libsqlite3-ruby by ruby-sqlite3 (closes: #726747)
* New patch 020_netpbm.patch, because Debian netpbm is too old
* Update 900_changes.patch
-- Tatsuya Kinoshita <tats@debian.org> Sun, 20 Oct 2013 14:41:17 +0900
mew-beta (7.0.50~6.5+0.20130814-1) unstable; urgency=low
* Imported Upstream version 7.0.50~6.5+0.20130814
* New patch 900_changes.patch to update 00changes
* Update debian/copyright
-- Tatsuya Kinoshita <tats@debian.org> Thu, 15 Aug 2013 00:44:07 +0900
mew-beta (7.0.50~6.5+0.20130705-1) unstable; urgency=low
* Imported Upstream version 7.0.50~6.5+0.20130705
-- Tatsuya Kinoshita <tats@debian.org> Fri, 05 Jul 2013 18:42:19 +0900
mew-beta (7.0.50~6.5+0.20130622-1) unstable; urgency=low
* Imported Upstream version 7.0.50~6.5+0.20130622
* Set Homepage to http://www.mew.org/
-- Tatsuya Kinoshita <tats@debian.org> Sat, 22 Jun 2013 14:27:18 +0900
mew-beta (7.0.50~6.5+0.20130421-1) unstable; urgency=low
* Imported Upstream version 7.0.50~6.5+0.20130421
* debian/copyright: Updated
* Add Vcs-Git and Vcs-Browser
* Update Standards-Version to 3.9.4
-- Tatsuya Kinoshita <tats@debian.org> Tue, 07 May 2013 23:46:40 +0900
mew-beta (7.0.50~6.5~rc2+0.20120405-2) unstable; urgency=low
* debian/rules: Use dpkg-buildflags to support hardening flags
* debian/control: Add emacs24 to Depends
-- Tatsuya Kinoshita <tats@debian.org> Sat, 07 Jul 2012 00:05:19 +0900
mew-beta (7.0.50~6.5~rc2+0.20120405-1) unstable; urgency=low
* New upstream release. (development snapshot on 2012-04-05,
kazu-yamamoto-Mew-a2f0b51, same as version 6.5rc2)
* debian/patches/020_cmew-blob.patch: Removed. (merged upstream)
* debian/patches/030_stunnel453.patch: Removed. (merged upstream)
-- Tatsuya Kinoshita <tats@debian.org> Fri, 06 Apr 2012 23:55:43 +0900
mew-beta (7.0.50~6.4.50+0.20120307-2) unstable; urgency=low
* debian/patches/020_cmew-blob.patch: New patch from upstream to prevent
that Ruby 1.9 stores blob data into id.db.
* debian/patches/030_stunnel453.patch: New patch to support stunnel 4.53
from [mew-dist 29486] on 2012-03-28, provided by TAKANO Yuji.
-- Tatsuya Kinoshita <tats@debian.org> Sat, 31 Mar 2012 00:16:40 +0900
mew-beta (7.0.50~6.4.50+0.20120307-1) unstable; urgency=low
* New upstream release. (development snapshot on 2012-03-07,
kazu-yamamoto-Mew-093cd3a, same as version 6.4.50)
- Supporting stunnel 4.51.
* debian/copyright: Update copyright-format version to 1.0.
* debian/control: Update Standards-Version to 3.9.3.
-- Tatsuya Kinoshita <tats@debian.org> Wed, 07 Mar 2012 22:36:18 +0900
mew-beta (7.0.50~6.4+0.20111019-2) unstable; urgency=low
* debian/control (mew-beta-bin): Recommends `ruby | ruby-interpreter'.
-- Tatsuya Kinoshita <tats@debian.org> Mon, 14 Nov 2011 00:19:54 +0900
mew-beta (7.0.50~6.4+0.20111019-1) unstable; urgency=low
* New upstream release. (development snapshot on 2011-10-19,
kazu-yamamoto-Mew-67b209a, same as version 6.4)
- Supporting Ruby 1.9.
* debian/control (mew-beta-bin): Recommends ruby | ruby1.8 | ruby1.9.1.
* debian/patches/020_ruby1.8.patch: Removed.
* debian/mewstunnel: Fallback to /usr/local/sbin/stunnel.
* debian/copyright:
- Fix missing-license-paragraph-in-dep5-copyright.
- Updated for mewstunnel.
-- Tatsuya Kinoshita <tats@debian.org> Wed, 19 Oct 2011 22:41:13 +0900
mew-beta (7.0.50~6.3.51+0.20110819-1) unstable; urgency=low
* New upstream release. (development snapshot on 2011-08-19,
kazu-yamamoto-Mew-f6a4ae4)
- Catching up to stunnel 4.39. (closes: #639295)
-- Tatsuya Kinoshita <tats@debian.org> Wed, 31 Aug 2011 22:55:37 +0900
mew-beta (7.0.50~6.3.51+0.20110629-1) unstable; urgency=low
* New upstream release. (development snapshot on 2011-06-29,
kazu-yamamoto-Mew-0f89b77)
* debian/patches/010_contrib.patch: Sync with the upstream on 2011-06-21,
kazu-yamamoto-mew-contrib-d7373af.
- Integrate mew-nmz into contrib.
- Add mew-absfilter.el to contrib from <https://github.com/tabmore/mew>.
* debian/patches/*: Renumbered.
* debian/copyright: Updated.
-- Tatsuya Kinoshita <tats@debian.org> Wed, 29 Jun 2011 20:58:20 +0900
mew-beta (7.0.50~6.3.50+0.20110325-1) unstable; urgency=low
* New upstream release. (development snapshot on 2011-03-25,
kazu-yamamoto-Mew-6c59817)
* debian/copyright: Switch to the DEP-5 format.
* debian/control: Update Standards-Version to 3.9.2.
-- Tatsuya Kinoshita <tats@debian.org> Wed, 04 May 2011 17:50:09 +0900
mew-beta (7.0.50~6.3.50+0.20110131-1) unstable; urgency=low
* New upstream release. (development snapshot on 2011-01-31,
kazu-yamamoto-Mew-b4d2ded)
* debian/copyright: Updated.
-- Tatsuya Kinoshita <tats@debian.org> Sun, 06 Feb 2011 17:20:30 +0900
mew-beta (7.0.50~6.3.50+0.20100901-1) unstable; urgency=low
* New upstream release. (development snapshot on 2010-09-01,
kazu-yamamoto-Mew-c4e435b, version down to 6.x)
* debian/patches/10_mew-nmz.patch: Update to version 2010-06-08,
downloaded from <http://www.meadowy.org/~shirai/elips/mew-nmz.el.gz>.
* debian/patches/30_ruby1.8.patch: Patch to use ruby1.8 instead of ruby.
* debian/control:
- Recommends ruby1.8 instead of ruby.
- Update Standards-Version to 3.9.1.
-- Tatsuya Kinoshita <tats@debian.org> Sat, 16 Oct 2010 01:58:45 +0900
mew-beta (7.0.50~0.20100430-1) unstable; urgency=low
* New upstream release. (development snapshot on 2010-04-30,
kazu-yamamoto-Mew-01eac29)
-- Tatsuya Kinoshita <tats@debian.org> Fri, 30 Apr 2010 22:58:18 +0900
mew-beta (7.0.50~0.20100414-1) unstable; urgency=low
* New upstream release. (development snapshot on 2010-04-14,
kazu-yamamoto-Mew-1be95ff)
* debian/patches/20_mew-contrib.patch: New file, contribution files to
Mew. (downloaded from http://github.com/kazu-yamamoto/mew-contrib on
2010-04-13, kazu-yamamoto-mew-contrib-c0f1554)
* debian/rules:
- Don't install contrib/00*.
- Don't handle CVS stuff.
* debian/control: Update Standards-Version to 3.8.4.
* Switch to dpkg-source 3.0 (quilt) format.
* debian/copyright: Updated.
-- Tatsuya Kinoshita <tats@debian.org> Sun, 18 Apr 2010 17:41:29 +0900
mew-beta (7.0.50~0.20100105-1) unstable; urgency=low
* New upstream release. (development snapshot on 2010-01-05)
* debian/control:
- Add `emacs-snapshot' to Depends. (closes: #559114)
- Add `dpkg (>= 1.15.4) | install-info' to Depends.
- Add `${misc:Depends}' to Depends.
- Update Standards-Version to 3.8.3.
* debian/dirs.in, debian/emacsen-install.in, debian/rules: Don't install
contrib/*.el if not found.
* debian/rules: Install *dot.* instead of mew.dot.*.
* debian/copyright: Updated.
-- Tatsuya Kinoshita <tats@debian.org> Thu, 07 Jan 2010 00:58:26 +0900
mew-beta (6.2.52-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2009-08-12)
* debian/control:
- Add emacs23 to Depends.
- Set Section of mew-beta to lisp.
- Update Standards-Version to 3.8.2.
-- Tatsuya Kinoshita <tats@debian.org> Wed, 12 Aug 2009 21:59:06 +0900
mew-beta (6.2.51-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2009-02-16)
- Guarding broken UTF-7. (closes: #500442)
- Implementing encoding of format=flowed.
* debian/mew-nmz.el: Version 2009-01-30, downloaded from
`http://www.meadowy.org/~shirai/elips/mew-nmz.el.gz'.
* debian/emacsen-*: Rewritten.
- Set mew-unix-browser to "/usr/bin/sensible-browser" in the startup.
* debian/rules:
- Add $PKGSNAME and remove $VERSION.
- Use dh_prep instead of `dh_clean -k'.
* debian/compat, debian/control: Update debhelper version to 7.
* debian/control: Update Standards-Version to 3.8.0.
* debian/copyright: Updated.
-- Tatsuya Kinoshita <tats@debian.org> Mon, 16 Feb 2009 21:30:50 +0900
mew-beta (6.0.51-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2008-05-13)
-- Tatsuya Kinoshita <tats@debian.org> Tue, 20 May 2008 22:30:31 +0900
mew-beta (6.0.51~0.20080505-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2008-05-05)
* debian/mew-nmz.el: Version 2008-04-06, downloaded from
`http://www.meadowy.org/~shirai/elips/mew-nmz.el.gz'.
-- Tatsuya Kinoshita <tats@debian.org> Tue, 06 May 2008 21:19:02 +0900
mew-beta (6.0.51~0.20080421-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2008-04-21)
-- Tatsuya Kinoshita <tats@debian.org> Thu, 24 Apr 2008 00:28:17 +0900
mew-beta (6.0.51~0.20080415-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2008-04-15)
-- Tatsuya Kinoshita <tats@debian.org> Tue, 15 Apr 2008 20:02:20 +0900
mew-beta (6.0.50~0.20080411-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2008-04-11)
-- Tatsuya Kinoshita <tats@debian.org> Sat, 12 Apr 2008 14:20:05 +0900
mew-beta (5.2.54-2) unstable; urgency=low
* debian/control: Build-Depends: debhelper (>= 6).
-- Tatsuya Kinoshita <tats@debian.org> Fri, 21 Mar 2008 22:43:10 +0900
mew-beta (5.2.54-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2008-03-18)
* debian/compat: 5 -> 6.
* debian/emacsen-install.in: Load `cl' when byte-compiling.
-- Tatsuya Kinoshita <tats@debian.org> Tue, 18 Mar 2008 21:58:43 +0900
mew-beta (5.2.53+0.20080226-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2008-02-26)
* debian/mew-nmz.el: Version 2008-02-28, downloaded from
`http://www.meadowy.org/~shirai/elisp/mew-nmz.el.gz'.
* debian/emacsen-*: Remove XEmacs stuff.
* debian/control: Depend on mew-beta-bin (>= 5.2.53).
-- Tatsuya Kinoshita <tats@debian.org> Fri, 29 Feb 2008 23:53:47 +0900
mew-beta (5.2.53+0.20080220-1) experimental; urgency=low
* New upstream release. (CVS trunk on 2008-02-20)
* debian/cmew.1, debian/smew.1: Removed. (Merged upstream)
* debian/rules:
- Don't install debian/cmew.1 and debian/smew.1.
- Don't handle *.rb.
* debian/emacsen-startup.in: Don't set mew-prog-smew.
-- Tatsuya Kinoshita <tats@debian.org> Wed, 20 Feb 2008 23:49:57 +0900
mew-beta (5.2.53-2) experimental; urgency=low
* debian/copyright: Updated.
* debian/cmew.1, debian/smew.1: Revised SYNOPSIS.
-- Tatsuya Kinoshita <tats@debian.org> Sun, 17 Feb 2008 20:04:00 +0900
mew-beta (5.2.53-1) experimental; urgency=low
* New upstream release. (CVS trunk on 2008-02-13)
- XEmacs is no longer supported. Use Mew 5.2 for XEmacs.
* debian/mew-nmz.el: Version 2007-12-24, downloaded from
`http://www.meadowy.org/~shirai/elisp/mew-nmz.el.gz'.
* debian/control:
- Depend on `emacs | emacs22 | emacs21' instead of `emacs | emacsen'
to not support XEmacs.
- Add cmew and smew to -bin Description.
- Add `ruby, libsqlite3-ruby' to -bin Recommends.
- Move `Homepage:' from Description to the header.
* debian/rules:
- Don't use .rb extension for cmew and smew.
- Don't use the rubygems feature.
- Install debian/cmew.1 and debian/smew.1.
- Install debian/mew-nmz.el.
* debian/emacsen-startup.in: Set mew-prog-smew.
* debian/emacsen-install.in: Don't byte-compile with XEmacs.
-- Tatsuya Kinoshita <tats@debian.org> Sun, 17 Feb 2008 17:00:15 +0900
mew-beta (5.2.52-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2007-12-03)
* debian/control:
- Add mew and mew-bin to Provides.
- Set Standards-Version to 3.7.3.
-- Tatsuya Kinoshita <tats@debian.org> Tue, 04 Dec 2007 22:11:18 +0900
mew-beta (5.2.51+0.20071129-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2007-11-29)
-- Tatsuya Kinoshita <tats@debian.org> Thu, 29 Nov 2007 22:05:35 +0900
mew-beta (5.2.51+0.20071122-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2007-11-22)
* debian/README.Debian.in: Clarify the default configuration for mew-ssl.
* debian/control: Revise Description.
-- Tatsuya Kinoshita <tats@debian.org> Wed, 28 Nov 2007 22:37:18 +0900
mew-beta (5.2.51~0.20070817-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2007-08-17)
-- Tatsuya Kinoshita <tats@debian.org> Sat, 18 Aug 2007 19:09:07 +0900
mew-beta (5.2.50-1) unstable; urgency=low
* New upstream release.
-- Tatsuya Kinoshita <tats@debian.org> Sat, 28 Jul 2007 01:01:54 +0900
mew-beta (5.2.50~0.20070626-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2007-06-26)
-- Tatsuya Kinoshita <tats@debian.org> Sun, 15 Jul 2007 00:18:22 +0900
mew-beta (5.2.50~0.20070620-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2007-06-20)
* debian/control: Prefer emacs to emacs21.
* debian/rules (clean): Check whether Makefile exists.
-- Tatsuya Kinoshita <tats@debian.org> Sat, 23 Jun 2007 22:12:48 +0900
mew-beta (5.2.50~0.20070423-1) unstable; urgency=medium
* New upstream release. (CVS trunk on 2007-04-23)
- Preventing APOP attack. [CVE-2007-1558]
* debian/emacsen-install.in: Rename path.el to __path.el.
-- Tatsuya Kinoshita <tats@debian.org> Mon, 23 Apr 2007 20:51:39 +0900
mew-beta (5.2.50~0.20070405-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2007-04-05)
* debian/watch: Detect "rc" and "pre".
* debian/copyright: Updated.
-- Tatsuya Kinoshita <tats@debian.org> Sun, 08 Apr 2007 19:55:48 +0900
mew-beta (5.1.52~0.20061031-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2006-10-31)
-- Tatsuya Kinoshita <tats@debian.org> Tue, 31 Oct 2006 22:07:48 +0900
mew-beta (5.1.52~0.20061027-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2006-10-27)
* debian/mew-pinentry.1: Removed. (merged upstream)
* debian/emacsen-install.in: Set mew-compiling to t when byte-compiling.
* debian/emacsen-install.in: Don't fail with xemacs21-nomule even if
auxiliary.el exists in the site-lisp directory.
* debian/emacsen-install.in: Make symlink for `etc' directory.
* debian/rules: Make symlink for `etc' directory.
* debian/rules: Install mew-pinentry by `make install-bin'.
* debian/rules: New targets build-arch and build-indep.
* debian/rules: Use DESTDIR for make.
-- Tatsuya Kinoshita <tats@debian.org> Sun, 29 Oct 2006 01:55:11 +0900
mew-beta (5.1.50+0.20061017-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2006-10-17)
* debian/rules: Replace `stty -f ' with `stty -F ' for mew-pinentry.
* debian/copyright: Mention Debian packaging conditions.
-- Tatsuya Kinoshita <tats@debian.org> Wed, 18 Oct 2006 00:46:16 +0900
mew-beta (5.1.50+0.20060919-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2006-09-19)
* debian/control (Description): Use `Homepage:'.
-- Tatsuya Kinoshita <tats@debian.org> Thu, 28 Sep 2006 20:47:34 +0900
mew-beta (5.1.50-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2006-08-16)
* debian/control (Suggests): Add `namazu2'.
* debian/control (Description): Revised.
-- Tatsuya Kinoshita <tats@debian.org> Wed, 16 Aug 2006 19:29:27 +0900
mew-beta (5.1+0.20060802-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2006-08-02)
* `mew-pinentry' provides `pinentry'.
* debian/control: Add `Recommends:' and `Enhances:' to *-bin.
-- Tatsuya Kinoshita <tats@debian.org> Sun, 6 Aug 2006 07:27:21 +0900
mew-beta (5.1+0.20060728-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2006-07-28)
* debian/control: Add `mewest' and `mew-pinentry' to the description.
* debian/rules: Install mew-pinentry.
* debian/mew-pinentry.1: New file.
* debian/control: Suggests `gpgsm, gnupg-agent'.
-- Tatsuya Kinoshita <tats@debian.org> Sat, 29 Jul 2006 06:57:45 +0900
mew-beta (5.1+0.20060715-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2006-07-15)
* debian/control: Suggests `hyperestraier'.
-- Tatsuya Kinoshita <tats@debian.org> Tue, 18 Jul 2006 00:02:34 +0900
mew-beta (5.0.53+5.1rc3-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2006-07-12)
-- Tatsuya Kinoshita <tats@debian.org> Wed, 12 Jul 2006 21:31:19 +0900
mew-beta (5.0.53+5.1rc2-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2006-07-05)
* debian/control (Build-Depends): Don't depend on `emacs21 | emacsen'.
* Don't depend on `dpatch' at build time.
-- Tatsuya Kinoshita <tats@debian.org> Wed, 5 Jul 2006 19:05:44 +0900
mew-beta (5.0.53+5.1rc1-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2006-06-19)
* debian/emacsen-startup.in: Load `timer' on XEmacs to use `cancel-timer'.
* debian/control (Build-Depends): Depend on `emacs21 | emacsen'.
-- Tatsuya Kinoshita <tats@debian.org> Tue, 20 Jun 2006 22:41:47 +0900
mew-beta (5.0.53-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2006-06-06, closes: #348817)
* debian/control: mew-beta depends on mew-beta-bin (>= 5).
* debian/watch: Update URL.
* debian/control: Suggests ca-certificates.
* debian/copyright: Updated.
* debian/control (Build-Depends): Depend on debhelper version 5 and emacs21.
* debian/compat: 3 -> 5.
* debian/control (Standards-Version): 3.6.1 -> 3.7.2.
* debian/control (Maintainer): tats@vega.ocn.ne.jp -> tats@debian.org.
* debian/copyright: Ditto.
-- Tatsuya Kinoshita <tats@debian.org> Wed, 7 Jun 2006 21:38:26 +0900
mew-beta (4.2.52-1) unstable; urgency=low
* New upstream release. (CVS trunk on 2005-06-03, closes: #270829)
* debian/control: Update dependency.
* debian/control: Suggests namazu2-index-tools.
* debian/README.Debian.in: Modify sample of mew-mbox-command-arg.
* debian/emacsen-install.in: mew-nmz depends on w3m-namazu.
* debian/emacsen-install.in: Ready for emacsen flavors sxemacs*.
* debian/rules: Generate debian/docs, debian/examples and debian/info at
build time.
* debian/rules: Use the configure script.
* debian/rules: Don't install contrib/*.texi.
* debian/rules: Don't install `CVS' directories.
* debian/watch: New file.
* Ready for dpatch.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Sat, 4 Jun 2005 14:40:08 +0900
mew-beta (4.0.65-7) unstable; urgency=medium
* debian/mewstunnel: New file, wrapper script for using stunnel4 or stunnel.
* debian/mewstunnel.1: New file, manpage for mewstunnel.
* debian/rules: Install mewstunnel and mewstunnel.1.
* debian/emacsen-startup.in: Set the mew-prog-ssl variable to "mewstunnel",
set the mew-ssl-cert-directory variable to "/etc/ssl/certs", and set
the mew-ssl-verify-level variable to 2.
* debian/README.Debian.in: Revise for "mew-ssl".
* debian/emacsen-install.in: Recompile w3m-el for mew-w3m.
* debian/control: Revise description.
* debian/copyright: Updated.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Sat, 23 Apr 2005 23:53:59 +0900
mew-beta (4.0.65-6) unstable; urgency=medium
* bin/incm.c: Fix a format string bug which causes crashes from environment
variable. (refer to Bug#278883)
* mew-ssl.el: Removing mew-timing() from the SSL code.
(patch from Mew 4.1.50)
* contrib/mew-browse.el: UTF-8 support. (patch from Mew 4.1.50)
* debian/emacsen-startup.in: Set the mew-prog-ssl variable to
"/usr/sbin/stunnel4" if it is executable. (closes: #278733)
* debian/README.Debian.in: Add information for mew-prog-ssl.
* debian/control: Suggests `stunnel4'.
* debian/control: Suggests `bsfilter'.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Sat, 30 Oct 2004 17:49:56 +0900
mew-beta (4.0.65-5) unstable; urgency=high
* Fix race condition problem of +queue again.
- mew-net.el: An error is signaled if rename-file fails in +queue.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Mon, 23 Aug 2004 20:40:10 +0900
mew-beta (4.0.65-4) unstable; urgency=high
* Fix that mails in +queue are lost by accident. (patch from pre 4.0.66)
- Defining mew-queue-check-new-message to avoid race condition of +queue.
* mew-edit.el: Fix that mew-queue-backup doesn't work in
mew-summary-reedit-for-queue.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Sun, 22 Aug 2004 17:02:46 +0900
mew-beta (4.0.65-3) unstable; urgency=low
* Apply patches from pre 4.0.66.
- PGP 6 key handling.
- Supporting "-ERR [IN-USE]" (RFC2449).
- Patches for mew-ssh and mew-ssl.
* debian/control: Suggests `mu-cite'.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Wed, 11 Aug 2004 20:41:51 +0900
mew-beta (4.0.65-2) unstable; urgency=low
* Apply patches from pre 4.0.66.
- Making message search faster.
- Checking windows-1251 instead of windows-1252.
- Sort now uses a right range.
- A bug fix for mew-summary-kill-subprocess.
- A patch for contrib/mew-refile-view.el.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Thu, 15 Jul 2004 17:48:57 +0900
mew-beta (4.0.65-1) unstable; urgency=low
* New upstream release.
- Composition of old fashioned PGP messages
- New address completion
- Prevention of HTML parsing
- `Received:' visualizer
- Updated the Info documents
* Apply patches from pre 4.0.66.
- mew-thread.el: A bug fix for "tg" on XEmacs.
- mew-refile.el: A bug fix for mew-refile-guess-by-alist2.
- info/*: Typo fix.
* debian/emacsen-startup.in: Set the mew-prog-ssl variable to
"/usr/sbin/stunnel".
* debian/emacsen-install.in: Create *.el symlinks.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Sun, 13 Jun 2004 01:11:33 +0900
mew-beta (4.0.64-1) unstable; urgency=low
* New upstream release.
- "?" for pick, "'" for grep, '"' for a specified command.
- Fcc: %backup is now cached.
- `mew-msg-rm-policy' and `mew-msg-rm-folder-list' are obsoleted, use
`mew-trash-folder' and `mew-trash-folder-list' for local folders, use
`mew-imap-trash-folder' and `mew-imap-trash-folder-list' for IMAP
folders.
- 'mew-pick-default-field' is obsoleted, use 'mew-pick-pattern-list'
instead.
- New option `mew-visit-inbox-after-setting-case'.
- New option `mew-visit-queue-after-sending'.
- mew-imap-trash-folder is now default to "%trash".
- The patch version of Emacs is removed for X-Mailer:.
* debian/control (Depends): Remove `emacs20'. (closes: #232771)
* debian/control (Depends): mew-beta-bin (>= 4.0.64).
* debian/control (Suggests): `bogofilter | spamassassin'.
* debian/copyright: Revised.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Mon, 8 Mar 2004 19:28:02 +0900
mew-beta (4.0.63-1) unstable; urgency=low
* New upstream release.
- Bug fixes for `mew-refile-view', `mew-nmz', `mew-scan-header'.
- Removing mew-timing from mew-local-filter for Emacs.
- contrib/mew-smime-ja.texi: Apply free software license.
- IMAP spam filter. When scanning %inbox, spam messages are
automatically deleted/refiled inside the IMAP server.
See mew-imap-spam-field for more information.
- "Rd" deletes the local folder or the IMAP folder.
- "Rr" renames the local folder or the IMAP folder.
- "tr" make a thread for messages matched to a regular expression.
- New option `mew-use-retrieve'.
- Supporting IMAP servers which do not support NAMESPACE.
- Supporting other's folders on IMAP.
- Fix a bug of IMAP's # character.
* debian/control (Suggests): Add `bogofilter'.
* debian/copyright: Further clarification.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Thu, 15 Jan 2004 20:58:56 +0900
mew-beta (4.0.60-1) unstable; urgency=low
* New upstream release.
- "ls" for learning as spam, "lh" for learning as ham.
- Allowing mew-folder-case handle multiple cases.
- Fix header-veil problem on XEmacs.
- Fix that `X' mark is not highlighted.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Thu, 30 Oct 2003 00:03:47 +0900
mew-beta (4.0.59-1) unstable; urgency=low
* New upstream release.
- Fix mew-region-bytes problem.
- Fix x-face-mule problem.
- Replace ":" with "_" in boundary strings.
- New option mew-use-header-veil.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Mon, 6 Oct 2003 23:46:34 +0900
mew-beta (4.0.58-1) unstable; urgency=low
* New upstream release.
* debian/rules: Install mew*.el instead of *.el.
* debian/control (Build-Depends): debhelper (>= 3.4.4).
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Mon, 29 Sep 2003 21:19:14 +0900
mew-beta (4.0.57+0.20030827-1) unstable; urgency=low
* Initial release of the mew-beta package. (CVS snapshot on 2003-08-27,
downloaded by `cvs -d :pserver:anoncvs@anoncvs.mew.org:/cvsmew co mew',
closes: #203991)
- debian/*: Based on the mew package.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Wed, 27 Aug 2003 22:34:53 +0900
mew (1:3.3-2) unstable; urgency=low
* debian/control (Suggests): Add `x-face-el, mule-ucs, mhc'.
* debian/control (Description): Revised.
* debian/rules: Don't use dh_undocumented.
* debian/*: Ready for mew-beta.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Sun, 10 Aug 2003 07:33:42 +0900
mew (1:3.3-1) unstable; urgency=high
* New upstream release (closes: #190843)
- Fix that recipients are dropped from .mqi file in +queue.
(closes: #194290)
- mew-ssl.el: Fix that stunnel allows access from remote host.
* debian/rules: Revise 00changes.* installation.
* debian/*: Apply unofficial patches.
- debian/control: Remove dependency on emacs20-dl. (it was orphaned and
removed, closes: #190829)
- Install contrib files. (closes: #195457)
- debian/control: Fix XEmacs dependency problem.
- Cleanup installation scripts.
* debian/copyright: Revised.
* New maintainer. (with previous maintainer's consent)
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Thu, 24 Jul 2003 22:47:51 +0900
mew (1:3.2+3.3rc4-0.0.2) unstable; urgency=low
* debian/emacsen-install.in: Revised messages for XEmacs mule/nomule.
* debian/control (Standards-Version): 3.5.10 -> 3.6.0.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Sun, 20 Jul 2003 07:35:35 +0900
mew (1:3.2+3.3rc4-0.0.1) unstable; urgency=high
* New upstream release
- Security fix: stunnel now allows access from localhost only.
* Cleanup installation scripts.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Wed, 16 Jul 2003 21:58:16 +0900
mew (1:3.2+3.3rc3-0.0.2) unstable; urgency=medium
* debian/rules: Fix bashism.
* debian/emacsen-startup: Don't add xemacs mule/nomule directory if it
doesn't exist.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Tue, 1 Jul 2003 22:19:15 +0900
mew (1:3.2+3.3rc3-0.0.1) unstable; urgency=low
* New upstream release
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Mon, 23 Jun 2003 22:10:41 +0900
mew (1:3.2+3.3rc1-0.0.6) unstable; urgency=low
* debian/emacsen-install: Fix failing XEmacs byte-compilation.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Tue, 17 Jun 2003 00:24:26 +0900
mew (1:3.2+3.3rc1-0.0.5) unstable; urgency=low
* debian/emacsen-install: Add symlinks from mule/nomule directory
for compatibility.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Sat, 14 Jun 2003 00:33:45 +0900
mew (1:3.2+3.3rc1-0.0.4) unstable; urgency=low
* debian/emacsen-install: Byte-compilation for xemacs*-nomule*.
* debian/emacsen-startup: Set load-path to use *.elc for xemacs*-nomule*.
* debian/emacsen-startup: Use debian-pkg-add-load-path-item.
* debian/control: Add `xemacs21-gnome-nomule' to `Depends'.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Thu, 12 Jun 2003 21:22:34 +0900
mew (1:3.2+3.3rc1-0.0.3) unstable; urgency=low
* debian/emacsen-install: Fix warning error in awk script.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Sat, 7 Jun 2003 16:33:47 +0900
mew (1:3.2+3.3rc1-0.0.2) unstable; urgency=low
* debian/README.Debian: Revised.
* debian/rules: Install contrib/*.el files in the site-lisp directory.
* debian/emacsen-install: Byte-compile contrib/*.el files.
* debian/emacsen-startup: Add the contrib directory to the load-path
variable for xemacs*-nomule.
* debian/dirs: Add `usr/share/doc/mew/contrib' and
`usr/share/emacs/site-lisp/mew/contrib'.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Sat, 31 May 2003 00:47:37 +0900
mew (1:3.2+3.3rc1-0.0.1) unstable; urgency=high
* New upstream release
- Fix that recipients are dropped from .mqi file in +queue.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Thu, 22 May 2003 19:14:49 +0900
mew (1:3.2-1.0.2) unstable; urgency=low
* A bug fix for handling Message-Id: in citation. (from stable-3-2 of
cvsmew on 2003-05-16)
* debian/control: Standards-Version: 3.5.10
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Fri, 16 May 2003 22:29:11 +0900
mew (1:3.2-1.0.1) unstable; urgency=low
* Bug fixes from stable-3-2 of cvsmew on 2003-04-26.
* debian/control: Remove dependency on emacs20-dl. (it was orphaned and
removed)
* debian/control: Favor emacs21 over emacs20.
* debian/control: Fix XEmacs version, (>= 21.1.11) -> (>= 21.1.14).
* debian/control: Standards-Version: 3.5.9
* debian/copyright: Revised.
* Use debian/compat instead of DH_COMPAT.
- debian/compat: New file.
- debian/rules: Remove `export DH_COMPAT=3'.
- debian/control: Build-Depends: debhelper (>> 3.4.4)
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Sat, 26 Apr 2003 19:06:57 +0900
mew (1:3.2-1) unstable; urgency=low
* New upstream Official release.
-- NOSHIRO Shigeo <noshiro@debian.org> Tue, 25 Feb 2003 19:42:32 +0900
mew (1:3.1.999rc1-0.0.1) unstable; urgency=low
* New upstream release (3.2rc1)
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Wed, 19 Feb 2003 01:08:41 +0900
mew (1:3.1.51-999.0.1) unstable; urgency=low
* New upstream release.
* Add `stunnel, compface, netpbm' to `Suggests:'.
* Delete `fetchmail, procmail, openssl' from `Suggests:'.
* emacsen-startup: Delete setting of mew-prog-uncompface and
mew-x-face-filter.
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Mon, 20 Jan 2003 20:54:44 +0900
mew (1:3.1.50-999.1tats) unstable; urgency=low
* New upstream release.
* debian/dirs: usr/share/doc -> usr/share/doc/mew.
* debian/rules: Install old changelog files.
* debian/rules: Delete redundant operations.
* Add ssh and openssl to `Suggests'.
* Standards-Version: 3.5.8
-- Tatsuya Kinoshita <tats@vega.ocn.ne.jp> Wed, 25 Dec 2002 00:05:27 +0900
mew (1:3.1-1) unstable; urgency=low
* New upstream Official release, closes: Bug#164100, Bug#165288
-- NOSHIRO Shigeo <noshiro@debian.org> Tue, 3 Dec 2002 13:51:02 +0900
mew (1:3.0.73+3.1rc2-1) unstable; urgency=low
* New upstream release
* adopt policy 3.5.7
-- NOSHIRO Shigeo <noshiro@debian.org> Tue, 26 Nov 2002 01:24:44 +0900
mew (1:3.0.73+3.1rc1-1) unstable; urgency=low
* New upstream release
-- NOSHIRO Shigeo <noshiro@debian.org> Sun, 3 Nov 2002 03:30:58 +0900
mew (1:3.0.73-1) unstable; urgency=low
* New upstream release
-- NOSHIRO Shigeo <noshiro@debian.org> Fri, 1 Nov 2002 03:51:53 +0900
mew (1:3.0.72-1) unstable; urgency=low
* New upstream release
-- NOSHIRO Shigeo <noshiro@debian.org> Tue, 29 Oct 2002 12:41:03 +0900
mew (1:3.0.71-1) unstable; urgency=low
* New upstream release
-- NOSHIRO Shigeo <noshiro@debian.org> Thu, 24 Oct 2002 19:07:43 +0900
mew (1:3.0.70-1) unstable; urgency=low
* New upstream release
-- NOSHIRO Shigeo <noshiro@debian.org> Sat, 19 Oct 2002 22:57:16 +0900
mew (1:3.0.68-1) unstable; urgency=low
* New upstream release
-- NOSHIRO Shigeo <noshiro@debian.org> Wed, 9 Oct 2002 14:22:51 +0900
mew (1:3.0.67-1) unstable; urgency=low
* New upstream release
-- NOSHIRO Shigeo <noshiro@debian.org> Tue, 1 Oct 2002 16:57:46 +0900
mew (1:3.0.65-1) unstable; urgency=low
* New upstream release
* debian/emacsen-startup: Add (setq mew-prog-uncompface "uncompface")
-- NOSHIRO Shigeo <noshiro@debian.org> Thu, 29 Aug 2002 15:06:22 +0900
mew (1:3.0.63-1) unstable; urgency=low
* New upstream release. This is one of beta releases of Mew 3.1.
* debian/control: mew: Update Description.
* debian/control: mew: Add imap-client and news-reader to Provides.
* debian/control: mew: Depends: mew-bin (>= 1:3.0.61).
* debian/control: mew-bin: Conflicts: mew (<< 1:3.0.61).
* debian/info: Add `mew.info-4'.
* debian/examples: Add `mew.dot.mew'.
* debian/emacsen-startup: Add the mew-x-face-filter configuration
and remove unnecessary lines.
* debian/rules: Prevent an error of the `clean' target.
-- NOSHIRO Shigeo <noshiro@debian.org> Wed, 21 Aug 2002 00:03:57 +0900
mew (1:2.2-7) unstable; urgency=low
* FIX policy violation of changelog, typos in copyright, etc.
Thanks for Tatsuya Kinoshita. closes: Bug#154697
-- NOSHIRO Shigeo <noshiro@debian.org> Thu, 15 Aug 2002 17:20:14 +0900
mew (1:2.2-6) unstable; urgency=low
* reopen FIX mew does not remove cleanly, closes: Bug#152028
-- NOSHIRO Shigeo <noshiro@debian.org> Sat, 6 Jul 2002 13:02:07 +0900
mew (1:2.2-5) unstable; urgency=low
* FIX mew does not remove cleanly and Add to Suggests,
Thanks for Tatsuya Kinoshita. closes: Bug#152028, Bug#150432
-- NOSHIRO Shigeo <noshiro@debian.org> Sat, 6 Jul 2002 03:05:32 +0900
mew (1:2.2-4) unstable; urgency=low
* Add to Depends (xemacs21-gnome-mule-canna-wnn | xemacs21-gnome-mule)
-- NOSHIRO Shigeo <noshiro@debian.org> Thu, 9 May 2002 14:12:51 +0900
mew (1:2.2-3) unstable; urgency=low
* FIX debian/emacs-startup (setq mew-icon-directory), closes: Bug#142302
-- NOSHIRO Shigeo <noshiro@debian.org> Thu, 11 Apr 2002 17:52:53 +0900
mew (1:2.2-2) unstable; urgency=low
* FIX rules file contains bashism, closes: Bug#138235
-- NOSHIRO Shigeo <noshiro@debian.org> Sun, 24 Mar 2002 13:13:38 +0900
mew (1:2.2-1) unstable; urgency=low
* New upstream release. (Official Release version)
* Corrected emacs-install,emacs-remove,emacs-startup.
-- NOSHIRO Shigeo <noshiro@debian.org> Tue, 26 Feb 2002 09:28:49 +0900
mew (1:2.1.52+2.2rc4-1) unstable; urgency=low
* New upstream release
-- NOSHIRO Shigeo <noshiro@debian.org> Thu, 21 Feb 2002 16:19:36 +0900
mew (1:2.1.52+2.2rc3-2) unstable; urgency=low
* FIX wrong Conflicts in control, closes: Bug#124078
-- NOSHIRO Shigeo <noshiro@debian.org> Thu, 14 Feb 2002 14:50:21 +0900
mew (1:2.1.52+2.2rc3-1) unstable; urgency=low
* New upstream release
* FIX hangs when viewing PGP message, closes: Bug#106188
* A patch for README.Debian, closes: Bug#106638, Bug#125129
* pixmaps move from /usr/X11R6/include/X11/pixmaps to
/usr/share/pixmaps/mew, closes: Bug#126060
-- NOSHIRO Shigeo <noshiro@debian.org> Wed, 13 Feb 2002 19:22:52 +0900
mew (1:2.1.52+2.2rc2-2) unstable; urgency=low
* New upstream release
-- Akira TAGOH <tagoh@debian.org> Sat, 19 Jan 2002 18:12:50 +0900
mew (1:2.1.52-2) unstable; urgency=low
* FIX Oops typo in emacs-install.
-- NOSHIRO Shigeo <noshiro@debian.org> Fri, 14 Dec 2001 08:57:16 +0900
mew (1:2.1.52-1) unstable; urgency=low
* New upstream Version.
* Typo FIX Description.
* FIX Installation fails xemacs21-nomule, closes: Bug#119049
-- NOSHIRO Shigeo <noshiro@debian.org> Wed, 12 Dec 2001 09:50:38 +0900
mew (1:2.1.0-1) unstable; urgency=low
* New upstream Version. (Official Release version) , closes: Bug#116325
-- NOSHIRO Shigeo <noshiro@debian.org> Fri, 2 Nov 2001 14:42:56 +0900
mew (1:2.0.60-2) unstable; urgency=low
* Add Depends: emacs21, closes: Bug#116725
-- NOSHIRO Shigeo <noshiro@debian.org> Mon, 29 Oct 2001 14:30:01 +0900
mew (1:2.0.60-1) unstable; urgency=low
* New upstream Version.
* Use the "--decrypt" option instead of "--verify" for GnuPG.
closes: Bug#106188, Bug#106502
-- NOSHIRO Shigeo <noshiro@debian.org> Tue, 16 Oct 2001 11:05:35 +0900
mew (1:2.0.56-1) unstable; urgency=low
* New upstream Version.
* FIX Build-Depends: debhelper (>> 3.0.0), closes: Bug#113247
* FIX Support UIDL pop3 server, closes: Bug#114272, Bug#114273
-- NOSHIRO Shigeo <noshiro@debian.org> Thu, 4 Oct 2001 09:40:47 +0900
mew (1:2.0.55-1) unstable; urgency=low
* New upstream Version.
-- NOSHIRO Shigeo <noshiro@debian.org> Mon, 1 Oct 2001 17:13:28 +0900
mew (1:2.0.54-1) unstable; urgency=low
* New upstream Version (Please read 00changes)
* FIX featurep 'emacs21, closes: Bug#106664
-- NOSHIRO Shigeo <noshiro@debian.org> Sun, 23 Sep 2001 19:01:52 +0900
mew (1:2.0.50-1) unstable; urgency=low
* New upstream Version
* FIX featurep 'emacs21, closes: Bug#106564
* reopen fix. FIX mew in postinst is too noisy, closes: Bug#106569
* change mew-x-face-prog (xv -> see), closes: Bug#107570
* add Suggests: fetchmail, procmail
-- NOSHIRO Shigeo <noshiro@debian.org> Fri, 17 Aug 2001 17:54:02 +0900
mew (1:2.0-1) unstable; urgency=low
* New upstream Version
* FIX mew in postinst is too noisy, closes: Bug#106569
* remove featurep 'emacs21, closes: Bug#106664
-- NOSHIRO Shigeo <noshiro@debian.org> Sun, 29 Jul 2001 19:37:53 +0900
mew (1:2+0pre4-1) unstable; urgency=low
* New Pre-Release version.
-- NOSHIRO Shigeo <noshiro@debian.org> Mon, 23 Jul 2001 20:48:22 +0900
mew (1:2+0pre1-1) unstable; urgency=low
* New Maintainer
* New Pre-Release version.
* This bug is fixed in mew1.95beta,
closes: #103570
-- NOSHIRO Shigeo <noshiro@debian.org> Thu, 12 Jul 2001 10:53:21 +0900
mew (1:1.94.2-7) unstable; urgency=low
* fix eeyes execution problem, closes: Bug#100479
-- ISHIKAWA Mutsumi <ishikawa@linux.or.jp> Fri, 15 Jun 2001 16:29:45 +0900
mew (1:1.94.2-6) unstable; urgency=low
* typo fix in control, closes: #91876
-- ISHIKAWA Mutsumi <ishikawa@linux.or.jp> Tue, 27 Mar 2001 21:16:37 +0900
mew (1:1.94.2-5) unstable; urgency=low
* pixmaps move from /usr/X11R6/include/X11/pixmaps to /usr/share/pixmaps
-- ISHIKAWA Mutsumi <ishikawa@linux.or.jp> Thu, 15 Feb 2001 10:40:53 +0900
mew (1:1.94.2-4) unstable; urgency=low
* change default values of external viewers not to user non-free
programs (xv -> eeys, mpeg_play -> xmps, acroread -> ghostview),
and add Suggests: these programs, closes: #66370
* add Build-Depends: debhelper.
-- ISHIKAWA Mutsumi <ishikawa@linux.or.jp> Mon, 23 Oct 2000 06:04:49 +0900
mew (1:1.94.2-3) unstable; urgency=low
* rebuild with glibc 2.1.94
-- ISHIKAWA Mutsumi <ishikawa@linux.or.jp> Fri, 29 Sep 2000 08:45:30 +0900
mew (1:1.94.2-2) stable unstable; urgency=low
* fix the problem if set langage environment is non English (e.g LANG=ja_JP.eucJP),
Mew freeze with gpg. Backport patches from Mew-1.95beta closes: Bug#71804
-- ISHIKAWA Mutsumi <ishikawa@linux.or.jp> Mon, 18 Sep 2000 18:09:51 +0900
mew (1:1.94.2-1) unstable; urgency=low
* New upstream Version
-- ISHIKAWA Mutsumi <ishikawa@linux.or.jp> Tue, 29 Feb 2000 13:26:29 +0900
mew (1:1.94.1-2) unstable; urgency=low
* delete README.debian, closes: Bug#51481
* adopt policy 3.1.1.1
-- ISHIKAWA Mutsumi <ishikawa@linux.or.jp> Mon, 3 Jan 2000 19:17:28 +0900
mew (1:1.94.1-1) unstable; urgency=low
* New Upstream version
-- ISHIKAWA Mutsumi <ishikawa@linux.or.jp> Mon, 25 Oct 1999 13:40:52 +0900
mew (1:1.94-7) unstable; urgency=low
* add setq mew-mail-domain-list as mail-host-address.
* remove info files for XEmacs.
-- ISHIKAWA Mutsumi <ishikawa@linux.or.jp> Fri, 15 Oct 1999 11:18:09 +0900
mew (1:1.94-6) unstable; urgency=low
* change from (eq debian-emacs-flavor 'xemacs20) to (featurep 'xemacs)
to decide XEmacs or not in mew-init.el. (for XEmacs21)
-- ISHIKAWA Mutsumi <ishikawa@linux.or.jp> Sun, 10 Oct 1999 03:35:17 +0900
mew (1:1.94-5) unstable; urgency=low
* add EUC-JP info files for info command, closes: Bug#46226
* Ooops info files for XEmacs has not been included in previous
version. Add it.
* postinst and prerm install-info change to point from /usr/info to
/usr/share/info
-- ISHIKAWA Mutsumi <ishikawa@linux.or.jp> Thu, 7 Oct 1999 20:57:44 +0900
mew (1:1.94-4) unstable; urgency=low
* add some elisp lines in /etc/emacs/site-start.d/50mew.el from
00readme, Thanks for Ryuichi Arafune. closes: Bug#44722
-- ISHIKAWA Mutsumi <ishikawa@linux.or.jp> Sat, 11 Sep 1999 21:59:13 +0900
mew (1:1.94-3) unstable; urgency=low
* Oops typo in emacsen.install of 1.94-2, so can't install...
fixed.
-- ISHIKAWA Mutsumi <ishikawa@linux.or.jp> Thu, 9 Sep 1999 04:48:53 +0000
mew (1:1.94-2) unstable; urgency=low
* add mew-addrbook.el to byte compile in emacsen.install,
closes: Bug#44637
-- ISHIKAWA Mutsumi <ishikawa@linux.or.jp> Thu, 9 Sep 1999 04:40:17 +0000
mew (1:1.94-1) unstable; urgency=low
* New upstream version, closes: Bug#44567
-- ISHIKAWA Mutsumi <ishikawa@linux.or.jp> Wed, 8 Sep 1999 17:16:08 +0900
mew (1:1.93-4) unstable; urgency=low
* adopt new perl policy
-- ISHIKAWA Mutsumi <ishikawa@linux.or.jp> Tue, 6 Jul 1999 00:23:38 +0900
mew (1:1.93-3) unstable; urgency=low
* New Maintainer
* add "install-info --quiet --remove /usr/info/mew.jisx.info" in prerm
script and other "install-info --remove"s move from postrm to prerm
(Bug#33554,Bugs#JP/904)
-- ISHIKAWA Mutsumi <ishikawa@linux.or.jp> Sat, 29 May 1999 11:39:42 +0900
mew (1:1.93-2) frozen unstable; urgency=low
* Can't display Japanese Info file on XEmacs.
Added new japanese info file for XEmacs. (#JP/703)
* Output compile log to logfile. (#28157)
* Checked with lintian 0.9.4
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Fri, 25 Dec 1998 20:08:27 +0900
mew (1:1.93-1) unstable; urgency=low
* New upstream version (Official Release version)
* Checked with lintian v0.8.1
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Mon, 7 Sep 1998 11:18:50 +0900
mew (1.93pre3-1) unstable; urgency=low
* New Pre-Release version.
* Checked with lintian v0.8.1
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Thu, 3 Sep 1998 09:35:27 +0900
mew (1.93pre2-1) unstable; urgency=low
* New Pre-Release version.
* Checked with lintian v0.8.1
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Tue, 1 Sep 1998 10:45:51 +0900
mew (1.93pre1-1) unstable; urgency=low
* New Pre-Release version.
* Changed COPYRIGHT.
* Added to remove japanese info files in postrm.
* Checked with lintian v0.7.5.
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Tue, 25 Aug 1998 11:22:52 +0900
mew (1.93b56-1) unstable; urgency=low
* New Beta Release version.
* Checked with lintian v0.7.5.
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Tue, 25 Aug 1998 10:02:52 +0900
mew (1.93b55-1) unstable; urgency=low
* New Beta Release version.
* Checked with lintian v0.7.5.
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Thu, 20 Aug 1998 09:51:00 +0900
mew (1.93b54-1) unstable; urgency=low
* New Beta Release version.
* Checked with lintian v0.7.4.
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Mon, 17 Aug 1998 14:44:34 +0900
mew (1.93b53-1) unstable; urgency=low
* New Beta Release version.
* Update Standard-Version 2.4.1.3.
* Added perl to dependency package.
* Passwd lintian check.
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Thu, 13 Aug 1998 13:25:01 +0900
mew (1.93b52-1) unstable; urgency=low
* New Beta Release version.
* Passwd lintian check.
* Change from 1.93b50 to 1.93b52:
1.93b52 (98/08/04)
- Bug fix for mew-summary-convert-local-cs.
- mew-mark-clean-up before mew-buffers-clean-up.
- Bug fix for mew-summary-scroll-{up,down}
- Small patch to mew-env.el.
- Patch to mew-os2.el to get along with Mule 3.
- Clean up mew-header.el.
- Bug fix for mew-string<.
- mew-config-clean-up was added to mew-summary-quit.
1.93b51 (98/08/01)
- CDP: is used for the temporary file to pass an external program.
- Ensuring overlay-arrow-{string,position} is buffer-local.
- mew-local-variable-p again.
- Defined mew-use-cursor-mark.
- Deleted mew-folder-alist-reverse. Sort mew-folder-alist with
mew-string< instead.
- Define mew-lc-kana for non-Mule.
- Tiny fix for mew-refile-guess-by-newsgroups.
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Mon, 10 Aug 1998 15:27:32 +0900
mew (1.93b50-1) unstable; urgency=low
* New Beta Release version.
* Passwd lintian check.
* Change from 1.93b49 to 1.93b50:
- mew-prog-audio2 for Win.
- Even unless MIME analysis, RFC 2047 header decoding is applied.
- Cleaning up setup, clean-up, clear, and init functions.
- Let "ma" not to mark multipart.
- One more Bug fix for toolbar.
- One more bug fix for mew-attach-audio.
- Bug fix for join.
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Thu, 30 Jul 1998 20:49:09 +0900
mew (1.93b49-1) unstable; urgency=low
* New Beta Release version.
* Passwd lintian check.
* Change from 1.93b48 to 1.93b49:
- Get along with XEmacs compiled with --without-toolbars.
- If attachments are not valid, make single.
- Yet another bug fix for mew-draft-header-keymap.
- mew-summary-ls preserves preview marks if range is "all".
Is this desired?
- mew-summary-folder-cache-save deletes mew-decode-syntax if printed.
- Clear decode-syntax markers if nothing is printed.
- Bug fix for attach-audio.
- Fix for message search for pick.
- The scroll-up problem of forward is fixed.
- The cursor position problem of forward is fixed.
- The boundary problem of overlay is fixed.
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Mon, 27 Jul 1998 10:43:33 +0900
mew (1.93b48-1) unstable; urgency=low
* New Beta Release version.
* Passwd lintian check.
* Change from 1.93b46 to 1.93b48:
1.93b48 (98/07/18)
- widen for mew-summary-folder-cache-save.
- Set inhibit-read-only to t in draft-undo.
- Bug fix for CD: encoding.
- Specify cs-draft for make-backup and undo.
- Typo fix for mew-addrstr-parse-address.
- rear-nonsticky for header separator.
- Bug fix for read-only header separator when undo.
- Only parameter value can be quoted.
- Define mew-header-sanity-check.
- Header encoding now gets along with Emacs 20.2.
- Add mew-mule.el to Makefile.
1.93b47 (98/07/16)
- Define mew-aref and mew-charlen to support all Mule versions.
- s/redist/resend/g.
- mew-addrstr-parse-syntax-list checks mew-header-max-depth.
- Tiny fix for mew-summary-redist.
- Make attachments read-only.
- mew-summary-save sets file to nil if the charset of filename
is unknown.
- mew-charset-sanity-check is defined.
- New RFC 2047 header encoding.
- Make mew-gnus.el synchronized with mew-header.el.
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Wed, 22 Jul 1998 09:54:43 +0900
mew (1.93b46-1) unstable; urgency=low
* New Beta Release version.
* Passwd lintian check.
* Fixed "Provides" spell in debian/control.
* Change from 1.93b45 to 1.93b46:
- Fixes of draft toolbar.
- mew-syntax-number bug fix for XEmacs.
- mew-draft-mode-map inherits mew-draft-body-map if
mew-use-overlay-keymap is t.
- Corporate with Emacs which returns mule-version of 4.
- mew-attach-undo clears decrypters.
- Defined mew-summary-clear-end-of.
- Bug fix of mew-end-of-* for mew-summary-insert.
- mew-header.el is drastically modified.
- Integrated mew-split, mew-header-split, mew-split-number.
- s/equal/mew-case-equal/g if necessary.
- s/string-equal/string=/g.
- Added missing options for search-forward.
- Make (setq mew-use-overlay-keymap nil) work on Emacs 19.34.
- Mark patch for mew-gnus.el.
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Tue, 14 Jul 1998 09:17:52 +0900
mew (1.93b45-1) unstable; urgency=low
* New Beta Release version.
* Passwd lintian check.
* Change from 1.93b44 to 1.93b45:
- Two bug fixes for mew-ext.el.
- mew-draft-keyswitch is back.
- mew-draft-show-attach deletes only glyph extents.
- mew-pgp-verify-check checks if the signature is supported or not.
- mew-pgp-verify-check bug fix.
- Don't assign mew-attach-dummy for C-u.
- Keymap of attachments also uses overlay.
- Bug fix for mew-highlight-body.
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Mon, 6 Jul 1998 19:19:52 +0900
mew (1.93b44-1) unstable; urgency=low
* New Beta Release version.
* Change from 1.93b38 to 1.93b44:
o 1.93b44 (98/07/02)
- Obsolete mew-header-insert-value. Use mew-complete-insert instead to
use right colors.
- mew-message-set-end-of now sees if extents exist.
- Separated mew-summary-display-part to mew-mime-part so that
mew-end-of-* are displayed correctly.
- Obsoleted mew-message-citation. Use marker instead.
- Changed convention of marker naming.
- s/jepg/jpeg/g.
- Replaced defun with defmacro in mew-mule*.el.
- Make mew-cs-post-conv safer.
o 1.93b43 (98/07/01)
- Mew now takes care of composite character set like tis620!!
- Define mew-header-insert-value.
- mew-refile-guess-by-folder is now customizable by
mew-refile-guess-key-list.
- Check if mew-buffer-hello exists when kills it.
- widen when replys.
- widen when inserts end-of-*.
o 1.93b42 (98/06/30)
- Bug fix for local-map of draft header.
- Bug fix for end-of-*.
- Define mew-frame-id to make unique string independent on
frame-title-format.
- Add an optional argment to mew-draft-{yank,cite} to cooperate with
xcite.el.
- Syntax fixes for mew-mule0.el.
- A patch for mew-summary-virtual.
o 1.93b41 (98/06/26)
- Use overlay-arrow-string for mew-end-of-message-string and
mew-end-of-part-string.
- mew-draft-keyswitch is now obsoleted.
Use the 'local-key property instead.
- Use set-window-start to the header and attachments visible.
- Bug fixes for the header separator.
- Marker bug fixes.
- Bug fix for header separator of reedit.
- Deleting the variables to prevent warning due to many
side effects, sigh.
o 1.93b40 (98/06/24)
- Use PNG for opening instead of XPM.
- Use valid-image-instantiator-format-p instead of featurep.
- Defined mew-summary-reply-position and
mew-summary-reply-with-citation-position.
- Marker stuff was brushed up.
- mew-summary-reply-with-citation sets disp-msg on anyway.
- mew-draft-cite and mew-summary-reply select a buffer from where
header info is retrieved in the following order:
(1) Message buffer if header exists
(2) Cache buffer if exists.
Typing "a" on a part (not on a message) means replying to the
part(e.g. message/rfc822). So, prefix argument of mew-summary-reply
was removed.
- mew-current-{get,set} is now frame-local.
- Bug fix for insert.
- mew-summary-goto-folder takes care of virtual folders.
- TIS(Thai) 620 support.
- mew-summary-join was back.
o 1.93b39 (98/06/11)
- Commands for Summary and Virtual mode were drastically re-written with
new macros.
* Passwd lintian check.
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Fri, 3 Jul 1998 13:53:43 +0900
mew (1.93b38-1) unstable; urgency=low
* New Beta Release version.
* Change from 1.93b37 to 1.93b38:
- Obsoleted mew-use-pgp5. PGP version is automatically detected.
- mew-summary-save use the filename parameter of CDP: even if "inline".
- Defined mew-end-of-message-string and mew-end-of-part-string. Obsoleted
mew-eof-string.
- Key assignment of mew-summary-exchange-point was changed from "C-xC-x"
to "C-cC-b".
- New mew-win32.el.
- Bug fix of "n" when the cursor locates in the middle of a line.
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Tue, 9 Jun 1998 10:29:32 +0900
mew (1.93b37-1) unstable; urgency=low
* New Beta Release version.
* Changes mew 1.93b33 to 1.93b37:
o 1.93b37
- Defined mew-pick-canonicalize-pattern.
- Refine unfolding of mew-header-decode-region.
- Bug fix of mew-update-range.
- Patches for X-Face: and mew-os2.el.
- C-uC-cC-l asks coding-system.
- Old replace-match doesn't support string, sigh.
- A patch to mew-xface-mule.el
- mew-header-decode-region unfolds folded lines.
o 1.93b36
- Remove all illegal characters in decoded string if exist.
- PGP key server is changed from ICAT to JPNIC.
- Bug fix for other fields.
- Default value of mew-folder-list-skip-pattern is changed.
o 1.93b35
- An error message is displayed unless mew-prog decode exists.
- Regexs in mew-field-spec were fixed.
- mew-highlight-header-region bug fix.
- When the file which Mew believe doesn't exit unfortunately exists
(probably because of NFS bugs), Mew asks you to input a message number
instead of causing an error.
- Some of mew-input-* calls mew-decode-syntax-delete after its retern
value is fixed.
- mew-summary-display-message deletes extents as
mew-summary-display-part does.
- mew-prog-xxx is dynamically evaluated to get along with window-system
which has different value for each frame.
- mew-header-decode-address and mew-header-decode-text were integrated
into mew-header-decode-region.
- A patch for mew-input-sort-key.
o 1.93b34
- Removed mew-rfc822-field. See mew-address-fields.
- visible/invisible and header-highlight is integrated.
See mew-field-spec.
This makes mew-header-arrange much faster.
- mew-ask-subject works when C-cC-m is typed.
- Required faces.el only if window-system. This pacifies
the "void: frame-face-alist" error.
- Fixed "mo".
- Use mew-make-directory instead of make-directory to prevent an error
if Mail doesn't exist.
- Deleted mew-folder-list-use-file-attributes. If
mew-folder-list-skip-pattern is nil. use link count. The default
value mew-folder-list-skip-pattern is nil. For Win95, "^[0-9]+" is
set.
- Made messages in Massage more safer.
- Header arrange.
- Deleted mew-member-del.
- Input functions were integrated. Completion functions were also
integrated:: pick pattern, folder, folders, address, address2,
rfile, sort.
- Specify Content-ID: instead of Message-ID: for external-body.
- Ignore quoted-strings during MIME header decoding.
- The value of mew-keyval was changed to prevent mismatching errors.
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Wed, 3 Jun 1998 20:29:47 +0900
mew (1.93b33-1) frozen unstable; urgency=low
* New Beta Release version.
* Changes mew 1.93b32 to 1.93b33:
- C-cC-f tries fetching a public key with the From: field unless the X-Mew:
field exists.
- Logic change for CD: and CDP:
The default value is decided as follows:
(1) If its value exists, use it.
(2) If not exist, use its file name.
(3) If its file name does not exist, use "".
- Some fixes for mew-draft-prepare-attachments.
- Specified "=" in addition to "+" for folder completion.
- Updated menubars and mode descriptions.
- Brushed up PGP key fetch.
- Fixed range of sort-region.
- Brush up the message when attachments were deleted.
- The window of completion candidates scrolls up when TAB is typed
repeatedly.
- Small fixes for Makefile.
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Thu, 14 May 1998 10:44:55 +0900
mew (1.93b32-1) frozen unstable; urgency=low
* New Beta Release version.
* Changes mew 1.93b31 to 1.93b32:
- mew-draft-make-mime -> mew-draft-make-message.
- The old IM Config variables were cleaned up. The new variables are:
mew-config-guess-alist
mew-config-insert-when-prepared
mew-config-insert-when-composed
If you want the old feature of mew-config, set
(setq mew-config-guess-alist '((nil . value))).
- Set mark the original position when Config: is inserted.
- C-uC-cC-c preserves a multi-part draft and doesn't remove the files
under +draft/mime for undo.
- Added "install-info" to Makefile
- Ah-hoc Emacs 20.2.9x support.
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Tue, 12 May 1998 10:38:01 +0900
mew (1.93b31-1) frozen unstable; urgency=low
* New Beta Release version.
* Changes mew 1.93b30 to 1.93b31:
- Refine Makefile.
- Delete files when error occurs in Multipart/Encrypted and
Multipart/Signed.
- More ad-hoc support for PGP 5.
- file-writable-p returns t even if the file doesn't exist. Ugh!
Added file-exists-p.
- mew-summary-scan-filter bug fix.
- Defined mew-ask-pack.
- mew-auto-add-content-type -> mew-ack-send (negated)
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Mon, 11 May 1998 10:14:55 +0900
mew (1.93b30-1) frozen unstable; urgency=low
* mew 1.93 is Beta released now.
* New upstream source version (Mew 1.93 Beta30).
- mew-message-goto-summary displays the "No Summary mode" message
if the corresponding Summary mode doesn't exist.
- All functions for circular completion now have the prefix
mew-circular-complete.
- If mew-summary-buffer-disp-msg is nil, "A" displays the "Type v first"
message.
- If MIME decoding is quitted by C-g, its cache is removed.
- Made mew-summary-scroll-{up,down} symmetric.
- New mew-ext-url.
- Defined mew-pick-default-field.
- Got rid of insert-before-markers from the scan filter so that
the side-effect to mew-summary-buffer-end is resolved. Now
mew-decode-syntax-delete is safe even if the final message is
multipart.
- Defined error messages in mew-vars.el.
- Mew now incorporates with XEmacs without the --with-mule option.
- PNG support.
- bug fix for PGP error report.
- CDP: patch for "F" in attachments.
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Thu, 7 May 1998 09:46:53 +0900
mew (1.93b29-1) frozen unstable; urgency=low
* mew 1.93 is Beta released now.
* New upstream source version (Mew 1.93 Beta29).
- Made mew-complete-window-config buffer-local to make completion
safer against multiple draft buffer.
- Explicitly notify unknown PGP micalg.
- Made mew-summary-prog-exec safer for OS/2.
- mew-save-dir for uudecode and unshar.
- Clear jam-zcat-filename-list and jka-compr-compression-info-list
in mew-flet and mew-frwlet.
- CDP: is displayed as it is. Filename is displayed with "*" appended.
- mew-encode-syntax-single fix.
- Avoid inserting CDP: for signature.
- Bug fix for missing subject when forwarding a forwarded message.
- Bug fix for "A" in attachment.
- mew-summary-toggle-analysis stays on the current message always.
- Ignore charsets other than US-ASCII and ISO-8859-1 on bilingual Emacs.
- Use substring if mew-substring is not bound.
* Update standard-version to 2.4.1.0.
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Wed, 6 May 1998 11:57:37 +0900
mew (1.93b28-1) frozen unstable; urgency=low
* mew 1.93 is released for Beta-Test.
* New upstream source version (Mew 1.93 Beta 28).
- When compsing, CDP: is automatically set unless it matches
mew-mime-content-type-ignore-cdp. Type just RET for 'N' to clear
CDP:.
- Set inhibit-quit to t in functions to enter Draft mode.
- Pack now preserves the * mark.
- Defined mew-pop-to-buffer to fix all bugs on XEmacs.
- Integrated config valuables and functions.
- Use copy instead link for signature attachment to protect the original
signature file anyway.
- gzip hack for OS/2.
- mew-summary-toggle-disp-msg stays on the current message always.
- Defined mew-string-width because string-width is not available on some
Emacses.
- save-excursion for mew-summary-mark-refile.
- PGP fetch patch.
- Info on sort.
- XPM support.
- Eliminated the "no messages" message when scan.
- Made mew-input-{folder,folders} symmetric.
- Made mew-summary-{next,prev}-page symmetric.
- Call mew-highlight-{url,body} only in text/plain.
- Set modes of Mail and News to mew-folder-mode when init.
- Defined mew-folder-mode and mew-file-mode for privacy reasons.
- Made folder operations safer.
- mew-config-imget is displayed when incing if not default.
* Add japanese info data.
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Thu, 23 Apr 1998 10:08:58 +0900
mew (1.93b27-1) frozen unstable; urgency=low
* mew 1.93 is released for Beta-Test.
* New upstream source version (Mew 1.93 Beta 27).
- mew-summary-config-imget. ("C" in Summary mode, anyway.)
- Set mark the point in inbox before get so that we can get back to
that position with C-xC-x.
- mew-save-dir.
- Set mew-use-highlight-x-face when refiling.
- imget.sh and imls.sh.
- imput.sh.
- IMAP regex fix.
- New mew-caesar.el
* Installed contribute tools and files under /usr/doc/mew/examples.
* Check with lintian.
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Thu, 9 Apr 1998 16:01:52 +0900
mew (1.93b26-1) frozen unstable; urgency=low
* I upload for Hamm because mew 1.93 is released for Beta-Test now.
* New upstream source version (Mew 1.93 Beta 26).
- MIME decoder and decode-syntax displayer was elegantly re-written.
- guess" -> "us-ascii" when decoding.
- Openp, again.
- Defined mew-folder-list-function.
* Check with lintian.
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Tue, 31 Mar 1998 11:11:08 +0900
mew (1.93b25-2) frozen unstable; urgency=low
* (control): Add one space for Item list of description. (Bug#20074)
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Wed, 25 Mar 1998 11:45:00 +0900
mew (1.93b25-1) unstable; urgency=low
* Frist Public Release.
* New upstream source version (Mew 1.93 Beta 25).
- Displaying filename when executing a program.
- Bug fix for cursor position when "x".
- An ad-hoc hack for left click on Draft mode.
- A patch to support Mew.img and to make it safer.
- Several patches for elisp impath.
* Check with lintian.
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Mon, 16 Mar 1998 01:07:48 +0900
mew (1.93b24-3) unstable; urgency=low
* New files: Added icon files for xemacs.
* (mew-init.el): Delete comment out of load-path.
* (mew-init.el): Added elisp code to set mew-icon-directory.
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Fri, 13 Mar 1998 19:38:34 +0900
mew (1.93b24-2) unstable; urgency=low
* Standrard: debian-emacs-policy
* New file: emacsen.install
* New file: emacsen.remove
* New file: prerm.
* (dirs):
added usr/lib/emacsen-common/packages/install
added usr/lib/emacsen-common/packages/remove
Changed usr/lib/emacs/site-lisp/mew to usr/share/emacs/site-lisp/mew
* (control): Changed "Dependency": "mule|emacs" -> "emacsen".
Now support emacs19 and emacs20, not Xemacs.
* (control): provided "mail-reader" and "imap-client" (Bug#JP/220).
* (mew-init.el): comment out load-path.
* (mew-init.el): change installed filename 50mew-init.el to 50mew.el.
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Thu, 12 Mar 1998 15:30:36 +0900
mew (1.93b24-1) unstable; urgency=low
* New upstream source version (Mew 1.93 Beta 24).
* Changes Beta23 to Beta24.
- Elisp version of impath to list up folders.
- Bug fix for mew-attach-duplicate.
- Several patches including x-face, mew-os2.el, etc.
- The first part is displayed with its header in Summary mode if it is
text/plain.
- A tiny patch for imjoin.
* Check with lintian.
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Wed, 11 Mar 1998 11:30:55 +0900
mew (1.93b23-1) hamm-jp; urgency=low
* New upstream source version (Mew 1.93 Beta 23).
* Changes Beta22 to Beta23
- IMAP is back.
- set-buffer in addition to select-window.
* Check with lintian.
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Tue, 3 Mar 1998 13:27:42 +0900
mew (1.93b22-1) hamm-jp; urgency=low
* New upstream source version (Mew 1.93 Beta 22).
* Changes Beta21 to Beta22
- mew-{symbolic-,}link checks if the target file is a regular file.
- Another terrible multipart bug of "f" was fixed.
- Multiple frame problem on XEmacs was fixed.
- Stupid completion bug fix.
- Fixed icon problems in Draft mode on XEmacs.
* Check with lintian.
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Mon, 2 Mar 1998 10:53:40 +0900
mew (1.93b21-1) unstable; urgency=low
* New upstream source version (Mew 1.93 Beta 21).
* Change file mode of 50mew-init.el to 644.
* Added undocumented manpage:
mewcat.1 mewencode.1 mewdecode.1 uumerge.1
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Fri, 27 Feb 1998 09:56:55 +0900
mew (1.93b20-1) hamm-jp; urgency=low
* New upstream source version (Mew 1.93 Beta 20).
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Thu, 26 Feb 1998 19:13:16 +0900
mew (1.93b13-2) hamm-jp; urgency=low
* Fixed Bug: Can't look info files.
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Mon, 16 Feb 1998 18:18:05 +0900
mew (1.93b13-1) hamm-jp; urgency=low
* New upstream source version (Mew 1.93 Beta 13).
* Build with debhelper.
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Thu, 12 Feb 1998 16:01:05 +0900
mew (1.93b11-1) hamm-jp; urgency=low
* Mew 1.93 Beta Release Version.
* Change maintainer e-mail address.
* Build with debhelper.
-- Yoshiaki Yanagihara <yochi@debian.or.jp> Fri, 30 Jan 1998 12:51:32 +0900
mew (1.92-6) hamm-jp; urgency=low
* Mew BugFixed Release.
* Mew version is 1.92.4.
* Applied the mew-1.92.3-1.92.4.patch.gz patch file.
-- Yoshiaki Yanagihara <yochi@linux.or.jp> Wed, 19 Nov 1997 09:56:39 +0900
mew (1.92-5) hamm-jp; urgency=low
* Mew version is 1.92.3.
* Applied the mew-1.92.2-1.92.3.patch.gz patch file.
* mew-gnus.elc is being supported in this package.
But, it will be removed when mew program support USENET news
in the future.
-- Yoshiaki Yanagihara <yochi@linux.or.jp> Tue, 11 Nov 1997 12:54:04 +0900
mew (1.92-4) hamm-jp; urgency=low
* Added mew-gnus.elc.
-- Yoshiaki Yanagihara <yochi@linux.or.jp> Mon, 10 Nov 1997 22:09:29 +0900
mew (1.92-3) hamm-jp; urgency=low
* Mew version is 1.92.2.
* Applied the mew-1.92.1-1.92.2.patch.gz patch file.
-- Yoshiaki Yanagihara <yochi@linux.or.jp> Mon, 10 Nov 1997 12:43:42 +0900
mew (1.92-2) hamm-jp; urgency=low
* Mew version is 1.92.1.
* Applied the mew-1.92-1.92.1.patch.gz patch file.
-- Yoshiaki Yanagihara <yochi@linux.or.jp> Wed, 29 Oct 1997 10:39:06 +0900
mew (1.92-1) hamm-jp; urgency=low
* New upstream version.
* Compiled with libc6.
-- Yoshiaki Yanagihara <yochi@linux.or.jp> Tue, 28 Oct 1997 12:50:16 +0900
mew (1.91-1) hamm-jp; urgency=low
* New upstream version.
* Libc5 version.
-- Yoshiaki Yanagihara <yochi@linux.or.jp> Thu, 25 Sep 1997 13:07:27 +0900
mew (1.90-1) hamm-jp; urgency=low
* New upstream version.
-- Yoshiaki Yanagihara <yochi@linux.or.jp> Fri, 5 Sep 1997 15:01:54 +0900
mew (1.70-2) bo-jp hamm-jp; urgency=low
* Added contributed .el files.
* Added /etc/site-start.d/50mew.el file.
-- Yoshiaki Yanagihara <yochi@linux.or.jp> Sat, 16 Aug 1997 00:48:28 +0900
mew (1.70-1) unstable; urgency=low
* New source version.
* Changes:
- Retrieve the body of Message/External-Body only if typing C-cC-e.
- Many syntaxes are uniformed.
- Pretty good regular expressions.
- Summary mode now reports the reason when an error occurs.
- Yet another bug fix for mew-attach-undo.
- Catch up to XEmacs 20.1 b15.
- Defined mew-subsequence.
- mew-draft-keyswitch bug fix.
SAKAI Kiyotaka <ksakai@netwk.ntt-at.co.jp>.
-- Yoshiaki Yanagihara <yochi@linux.or.jp> Thu, 24 Apr 1997 19:52:10 +0900
mew (1.69-1) unstable; urgency=low
* New source version.
* Changes:
- Add many explanations to variables and functions.
- mew-mark-process-all-folders is set to kill-emacs-hook by default.
REMOVE THIS CONFIGURATION FROM YOUR .EMACS.
- Yet another mew-draft-keyswitch bug fix from
SAKAI Kiyotaka <ksakai@netwk.ntt-at.co.jp>.
But his patch couldn't handle vector sequence. So I modified.
- mew-attach-line bug fix.
SAKAI Kiyotaka <ksakai@netwk.ntt-at.co.jp>
- A fix for mew-attach-undo fatal bug. It calls mew-syntax-clear-marks now.
- "'" -> "function".
-- Yoshiaki Yanagihara <yochi@linux.or.jp> Thu, 3 Apr 1997 17:37:29 +0900
mew (1.68-1) unstable; urgency=low
* New source version.
-- Yoshiaki Yanagihara <yoxhi@linux.or.jp> Mon, 31 Mar 1997 18:36:12 +0900
mew (1.67-1) unstable; urgency=low
* New source version.
-- Yoshiaki Yanagihara <yochi@linux.or.jp> Thu, 27 Mar 1997 11:46:18 +0900
mew (1.55-3) unstable; urgency=low
* Fixed Description Field in control file.
-- Yoshiaki Yanagihara <yochi@linux.or.jp> Thu, 13 Mar 1997 14:23:32 +0900
mew (1.55-2) unstable; urgency=low
* Added mew.dot.emacs sample file.
* Added patch files on /usr/doc/mew.
* Change install directory: ..site-lisp/Mew -> ..site-lisp/mew
-- Yoshiaki Yanagihara <yochi@linux.or.jp> Thu, 13 Mar 1997 13:15:58 +0900
mew (1.55-1) unstable; urgency=low
* New source version.
-- Yoshiaki Yanagihara <yochi@linux.or.jp> Tue, 11 Mar 1997 14:17:32 +0900
mew (1.54-1) unstable; urgency=low
* Initial Release (for Debian-JP project member).
* Applied first patch.
-- Yoshiaki Yanagihara <yochi@linux.or.jp> Tue, 3 Dec 1996 00:55:53 +0900
|