1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111
|
2007-12-31 Peter Bloomfield
* src/mailbox-node.c: (mark_local_path): change from void to
gboolean, with FALSE indicating that node->scanned is already
set.
* libbalsa/folder-scanners.c: (libbalsa_scanner_mdir,
libbalsa_scanner_local_dir_helper): use return value.
* libbalsa/folder-scanners.h: new definition of LocalMark.
2007-12-30 Pawel Salek
* libbalsa/mailbox.h: add ability to add multiple messages at
once: replace add_message with add_messages.
* libbalsa/mailbox.c: libbalsa_mailbox_add_message uses
add_messages handler now.
* libbalsa/mailbox_{mh,maildir,mbox}.c: simple implementations.
* libbalsa/mailbox_imap.c: MULTIAPPEND-aware add_messages.
* libbalsa/imap/imap_tst.c: add anonymous authentication support.
* libbalsa/imap/imap-commands.c: add handle locking around
imap_mbox_append_multi() and transaction size limits.
2007-12-27 Pawel Salek
* libbalsa/mailbox_imap.c: buflen is of size_t type.
* libbalsa/imap/imap-handle.[hc]: register MULTIAPPEND extension
* libbalsa/imap/imap-commands.[hc]: add MULTIAPPEND aware interface.
* libbalsa/imap/imap_tst.c: test it.
2007-12-25 Pawel Salek
* NEWS, configure.in: release balsa-2.3.22.
2007-12-24 Peter Bloomfield
* libbalsa/address-view.c: (lbav_selection_changed_cb): compile
with gtk pre-2.12.
2007-12-23 Peter Bloomfield
* libbalsa/address-view.c: (lbav_selection_changed_cb,
libbalsa_address_view_new): connect to selection's changed
signal, to implement one-click close.
* libbalsa/address-view.h: add members needed for one-click
actions; remove deadwood.
2007-12-23 Albrecht Dreß
* src/main-window.c: show tray icon on mail arrival.
2007-12-22 Peter Bloomfield
* src/sendmsg-window.c: (create_lang_menu): build without
GtkSpell.
2007-12-21 Peter Bloomfield
* src/sendmsg-window.c: (set_locale): restart spell checker when
language is changed.
2007-12-21 Pawel Salek
* src/main-window.c: remove duplicate shortcut.
* src/sendmsg-window.c: Fix language switching (Peter B).
* libbalsa/imap/imap-commands.c: Add a handle lock.
2007-12-18 Peter Bloomfield
* libbalsa/filter.c: (libbalsa_condition_matches): new
content2reply api.
* libbalsa/mailbox_local.c: (message_match_real): ditto.
* libbalsa/mime.c: (process_mime_part, process_mime_multipart,
content2reply): remove charset callback.
* libbalsa/mime.h: ditto.
* src/balsa-app.c: (balsa_app_init): new member
BalsaApp::spell_check_active; make spell modules conditional.
* src/balsa-app.h:
* src/save-restore.c: (config_global_load, config_save): manage
BalsaApp::spell_check_active.
* src/sendmsg-window.c: simplify charset and spell-checker
handling.
* src/sendmsg-window.h: remove newly redundant members in
BalsaSendmsg.
2007-12-16 Pawel Salek
* src/balsa-index.c: check in idle functions whether the model
still exists.
* src/sendmsg-window.c: do not go beyond the end of the string.
2007-12-16 Peter Bloomfield
* src/main-window.c: (bw_notebook_label_new): use
gtk_widget_set_size_request for the button instead of a signal
callback.
2007-12-14 Peter Bloomfield
* src/main-window.c: (bw_notebook_label_new): drop redundant
event box.
* libbalsa/imap/imap-handle.c: (imap_get_address): unfold
address string.
* libbalsa/mailbox_imap.c: (get_struct_from_cache): crlf-filter
the message.
2007-12-13 Peter Bloomfield
* libbalsa/mailbox_imap.c:
(internet_address_new_from_imap_address,
internet_address_new_list_from_imap_address_list): handle RFC
2822 groups.
2007-12-13 Albrecht Dreß
* libbalsa/imap/imap-handle.c: (imap_envelope_from_stringi):
compile fix.
2007-12-13 Peter Bloomfield
* images/16x16/balsa-drop-down.png: new icon, used to signify that
the list of recipient types in address-view is a drop-down list.
* libbalsa/address-view.c: (libbalsa_address_view_finalize,
lbav_ensure_blank_line, lbav_add_from_list,
lbav_button_activated_cb, libbalsa_address_view_new,
libbalsa_address_view_set_book_icon,
libbalsa_address_view_set_close_icon,
libbalsa_address_view_set_drop_down_icon): use pixbuf instead of
stock-id; use the new icon.
* libbalsa/address-view.h: change to pixbuf instead of stock-id.
* libbalsa/cell-renderer-button.c: fix documentation.
* src/balsa-icons.c: (register_balsa_pixmaps,
register_balsa_pixbufs): define and register new icon.
* src/balsa-icons.h: ditto.
* src/sendmsg-window.c: (create_email_entry): new api for
address-view.
2007-12-11 Peter Bloomfield
* src/sendmsg-window.c: (sendmsg_window_compose,
sw_grab_focus_to_text, sendmsg_window_reply,
sendmsg_window_reply_embedded, sendmsg_window_forward,
sendmsg_window_continue): grab focus to the message body when
replying.
2007-12-11 Jens Granseuer
* libbalsa/identity.c: (add_show_menu, ident_dialog_free_values,
ident_dialog_get_value): build without ESMTP and GPG/SMIME.
2007-12-10 Peter Bloomfield
merge balsa-address-view branch
* libbalsa/Makefile.am:
* libbalsa/address-entry.c:
* libbalsa/address-entry.h:
* src/ab-window.c:
* src/main.c:
* src/save-restore.c:
* src/sendmsg-window.c:
* src/sendmsg-window.h:
2007-12-08 Peter Bloomfield
* libbalsa/libbalsa.c: add pointer
libbalsa_progress_set_activity so that libbalsa functions can
show activity in the progress bar (currently unused, but it's
there when we need it!).
* libbalsa/libbalsa.h: ditto; use separate constants for minimum
fraction and minimum elapsed time when updating progress bar
(Albrecht Dreß).
* libbalsa/mailbox.c: (libbalsa_mailbox_msgno_find,
lbm_set_threading): check that msg_tree exists.
* src/balsa-index.c: (balsa_index_ensure_visible): check that
tree_view is realized.
* src/balsa-mblist.c: (bmbl_mailbox_changed_cb): no need to grab
GDK lock.
* src/main-window.c: make sure that increment mode takes
precedence over activity mode; use new members in BalsaWindow
to avoid using g_object_{set,get}_data.
* src/main-window.h: add members to BalsaWindow to avoid using
g_object_{set,get}_data; export
balsa_window_{increase,decrease}_activity.
* src/main.c: (balsa_progress_set_text,
balsa_progress_set_fraction, balsa_progress_set_activity, main):
use separate constants for minimum fraction and minimum elapsed
time when updating progress bar (Albrecht Dreß); initialize
libbalsa_progress_set_activity.
2007-12-08 Pawel Salek
* balsa.desktop.in: fix bug 414361 in bugzilla.redhat.com.
* NEWS, configure.in: release 2.3.21.
2007-12-08 Pawel Salek
* src/{main,sendmsg}-window.c...: format string bug fixes
(bug 488432, Evil Ninja Squirrel).
2007-12-05 Peter Bloomfield
* libbalsa/mailbox.c: (libbalsa_mailbox_changed): hold gdk lock
while emitting "changed" signal;
(libbalsa_mailbox_msgno_changed, libbalsa_mailbox_msgno_filt_in,
libbalsa_mailbox_msgno_removed,
libbalsa_mailbox_msgno_filt_out): eliminate obsolete
lbm_threads_{enter,leave}.
2007-11-27 Peter Bloomfield
Thanks to Nuno Monteiro
<http://mail.gnome.org/archives/balsa-list/2007-November/msg00016.html>
* src/sendmsg-window.c: (toolbar_send_message_cb): new action
for toolbar send/queue button.
* src/toolbar-factory.c: correct toolbar button labels.
2007-11-26 Albrecht Dreß
* libbalsa/address-view.c: (lbav_focus_out_cb,
lbav_row_editing_cb): on focus-out, accept a unique match.
2007-11-17 Peter Bloomfield
* src/save-restore.c:
* src/balsa-app.c:
* src/balsa-app.h: add fields to save/restore maximized state of
windows.
* src/main-window.c:
* src/message-window.c:
* src/sendmsg-window.c: use them.
2007-11-16 Peter Bloomfield
* libbalsa/address-view.c: (lbav_clean_text): new helper to
remove control characters from text.
(lbav_add_from_list, lbav_set_text_at_path): use it.
2007-11-13 Peter Bloomfield
Bug #496316: Send/Queue button has inconsistent labeling.
* src/toolbar-factory.h: new function balsa_toolbar_button_text.
* src/toolbar-factory.c: (balsa_toolbar_button_text,
tm_has_second_line, tm_set_tool_item_label): implement and use it.
* src/toolbar-prefs.c: (tp_store_set): use it.
2007-11-10 Peter Bloomfield
* src/balsa-message.c: (balsa_get_parent_window): use
gtk_widget_get_toplevel.
2007-11-07 Peter Bloomfield
* src/balsa-app.c:
* src/balsa-app.h:
* src/main-window.c:
* src/message-window.c:
* src/save-restore.c:
* src/sendmsg-window.c: revert previous unintentional commit of
changes in src/.
2007-11-07 Peter Bloomfield
* libbalsa/address-view.c: (lbav_set_text_at_path),
(lbav_combo_edited_cb), (lbav_row_editing_cb),
(lbav_button_activated_cb), (libbalsa_address_view_add_to_row):
check validity of iter.
2007-11-03 Peter Bloomfield
* libbalsa/address-view.c:
* libbalsa/address-view.h: do not copy strings.
* src/sendmsg-window.c: mark strings for translation.
2007-11-03 Peter Bloomfield
* libbalsa/address-view.c:
* src/sendmsg-window.c: simplify LibBalsaAddressView api.
* src/main.c: (main): libbalsa_address_book_list has gone away.
2007-11-03 Peter Bloomfield
* libbalsa/address-view.c: (libbalsa_address_view_finalize):
do not leak GtkTreeRowReference;
(lbav_append_addresses), (lbav_ensure_blank_line_idle_cb),
(lbav_ensure_blank_line), (lbav_row_editing_cb),
(libbalsa_address_view_new): remove debugging output.
2007-10-31 Peter Bloomfield
* src/main-window.c: connect to "activate" signal instead of
"changed", to see every click on threading options.
2007-10-30 Peter Bloomfield
* libbalsa/address-view.c:
* libbalsa/address-view.h:
* src/save-restore.c:
* src/sendmsg-window.c:
* src/sendmsg-window.h: use a separate widget for Reply-To.
2007-10-27 Peter Bloomfield
* libbalsa/address-view.c: localize address types; check address
types.
2007-10-26 Peter Bloomfield
* libbalsa/address-view.c: (lbav_sort_func): make sort-func
reflexive;
(libbalsa_address_view_new): more debug info.
2007-10-26 Peter Bloomfield
* libbalsa/address-view.c: make blank line sort below addresses
of the same type; try to have only one blank line.
2007-10-25 Peter Bloomfield
* libbalsa/cell-renderer-button.c:
* libbalsa/cell-renderer-button.h: forgot to add these for
initial commit.
2007-10-25 Peter Bloomfield
* libbalsa/Makefile.am:
* libbalsa/address-entry.c:
* libbalsa/address-entry.h:
* libbalsa/address-view.c:
* libbalsa/address-view.h:
* src/ab-window.c:
* src/main.c:
* src/save-restore.c:
* src/sendmsg-window.c:
* src/sendmsg-window.h: initial commit on address-view branch.
2007-10-24 Albrecht Dreß
* src/balsa-icons.c:
* src/balsa-message.c:
* src/balsa-print-object-text.c: More balsa Tangofication.
2007-10-23 Albrecht Dreß
* configure.in:
* libbalsa/Makefile.am:
* libbalsa/address-book-rubrica.c:
* libbalsa/address-book-rubrica.h:
* libbalsa/libbalsa.c:
* libbalsa/libbalsa.h:
* src/ab-main.c:
* src/ab-window.c:
* src/address-book-config.c:
* src/main.c:
* src/pref-manager.c: add support for Rubrica address book.
2007-10-17 Peter Bloomfield
* libbalsa/mailbox_maildir.c: skip check only if mtime matches
exactly.
* src/balsa-index.c: revert to scrolling in an idle callback,
but now at low priority.
2007-10-15 Peter Bloomfield
* libbalsa/mailbox_local.c: clarify simple and flat threading.
2007-10-14 Peter Bloomfield
* libbalsa/mailbox.c: (lbm_get_view): do not assert url is not
in hash table;
(lbm_sort): set msg-tree-changed;
(libbalsa_mailbox_unlink_and_prepend): set msg-tree-changed only
if we are sure it was.
* libbalsa/mailbox_local.c: (lbm_local_update_view_filter): set
msg-tree-changed only if it is a flags-only filter; fix bug
saving and restoring simple threading.
* src/main-window.c: avoid critical warning if Balsa is closed
during a threading.
2007-10-10 Peter Bloomfield
* libbalsa/Makefile.am:
* libbalsa/address-book-extern.c:
* libbalsa/address-book-ldap.c:
* libbalsa/address-book-ldif.c:
* libbalsa/address-book-text.c:
* libbalsa/address-book-vcard.c:
* libbalsa/address-book.c:
* libbalsa/address.c:
* libbalsa/body.c:
* libbalsa/files.c:
* libbalsa/filter-error.c:
* libbalsa/filter-file.c:
* libbalsa/filter.c:
* libbalsa/gmime-application-pkcs7.c:
* libbalsa/gmime-gpgme-context.c:
* libbalsa/i18n.h:
* libbalsa/identity.c:
* libbalsa/imap-server.c:
* libbalsa/libbalsa-conf.c:
* libbalsa/libbalsa.c:
* libbalsa/mailbox-filter.c:
* libbalsa/mailbox.c:
* libbalsa/mailbox_imap.c:
* libbalsa/mailbox_local.c:
* libbalsa/mailbox_maildir.c:
* libbalsa/mailbox_mbox.c:
* libbalsa/mailbox_mh.c:
* libbalsa/mailbox_pop3.c:
* libbalsa/message.c:
* libbalsa/mime.c:
* libbalsa/misc.c:
* libbalsa/rfc3156.c:
* libbalsa/send.c:
* libbalsa/server.c:
* libbalsa/smtp-server.c:
* libbalsa/source-viewer.c:
* libinit_balsa/assistant_helper.c:
* libinit_balsa/assistant_init.c:
* libinit_balsa/assistant_page_defclient.c:
* libinit_balsa/assistant_page_directory.c:
* libinit_balsa/assistant_page_finish.c:
* libinit_balsa/assistant_page_user.c:
* libinit_balsa/assistant_page_welcome.c:
* libinit_balsa/balsa-druid-page-defclient.c:
* libinit_balsa/balsa-druid-page-directory.c:
* libinit_balsa/balsa-druid-page-finish.c:
* libinit_balsa/balsa-druid-page-user.c:
* libinit_balsa/balsa-druid-page-welcome.c:
* libinit_balsa/balsa-initdruid.c:
* libinit_balsa/helper.c:
* libinit_balsa/init_balsa.c:
* src/ab-main.c:
* src/ab-window.c:
* src/address-book-config.c:
* src/balsa-app.c:
* src/balsa-index.c:
* src/balsa-mblist.c:
* src/balsa-message.c:
* src/balsa-mime-widget-callbacks.c:
* src/balsa-mime-widget-crypto.c:
* src/balsa-mime-widget-image.c:
* src/balsa-mime-widget-message.c:
* src/balsa-mime-widget-multipart.c:
* src/balsa-mime-widget-text.c:
* src/balsa-mime-widget.c:
* src/balsa-print-object-default.c:
* src/balsa-print-object-header.c:
* src/balsa-print-object-text.c:
* src/filter-edit-callbacks.c:
* src/filter-edit-dialog.c:
* src/filter-export-callbacks.c:
* src/filter-export-dialog.c:
* src/filter-run-callbacks.c:
* src/filter-run-dialog.c:
* src/folder-conf.c:
* src/information-dialog.c:
* src/mailbox-conf.c:
* src/mailbox-node.c:
* src/main-window.c:
* src/main.c:
* src/message-window.c:
* src/pref-manager.c:
* src/print-gtk.c:
* src/print.c:
* src/save-restore.c:
* src/sendmsg-window.c:
* src/spell-check.c:
* src/store-address.c:
* src/toolbar-factory.c:
* src/toolbar-prefs.c: include <glib/gi18n.h> instead of
"libbalsa/i18n.h".
2007-10-10 Peter Bloomfield
* libbalsa/server.h: include libbalsa.h (bug 477580, Jens
Granseuer).
2007-10-10 Peter Bloomfield
* src/main-window.c: hide resize grip when window is maximized.
* src/sendmsg-window.c: (calculate_expander_toggles): drop
unused variable (Albrecht Dreß);
(tree_find_single_part), (collect_for_quote): search deeper for
a single text part (Albrecht Dreß).
2007-10-09 Peter Bloomfield
* src/balsa-index.c: restore 'N' and 'P' actions.
* src/main-window.c: use consistent "bw_" prefix on local
functions to aid debugging.
2007-10-09 Peter Bloomfield
* libbalsa/mailbox.c: (mbox_model_iter_n_children): return 0 if
iter is NULL and mailbox has no msg_tree.
* src/balsa-index.c: (bndx_scroll_to_row),
(balsa_index_scroll_on_open): do not use idle callback;
(balsa_index_ensure_visible): typo?
2007-10-09 Peter Bloomfield
* src/balsa-index.c: (bndx_selection_changed_real),
(bndx_mailbox_changed_func), (bndx_mailbox_changed_cb): when a
message is deleted, select next message to be displayed in the
signal handler instead of the idle callback.
2007-10-07 Peter Bloomfield
* libbalsa/send.c: (msg_queue_item_new), (add_recipients),
(lbs_list_has_one_address), (lbs_process_queue),
(handle_successful_send): create separate bcc-message only if it
has exactly one recipient; really leave message in outbox if any
address, including bcc addresses, has an error.
2007-10-05 Peter Bloomfield
* src/balsa-index.c: (bndx_selection_changed_real): do not show
next message if msgno is no longer in the tree.
2007-10-04 Peter Bloomfield
* src/main-window.c: restore enable_mailbox_menus() to
index_changed_cb()--removed by mistake a few commits ago.
2007-10-03 Peter Bloomfield
* src/main-window.c: use an enum instead of a string to
distinguish toolbar types.
* src/message-window.c: (mw_get_toolbar_model): ditto.
* src/sendmsg-window.c: (sw_get_toolbar_model): ditto.
* src/toolbar-factory.c: (tm_load_model), (tm_save_model),
(balsa_toolbar_model_new), (tm_do_popup_menu): ditto.
* src/toolbar-factory.h: ditto.
* src/toolbar-prefs.c: (customize_dialog_cb): ditto.
* src/toolbar-prefs.h: ditto.
2007-10-02 Pawel Salek
* src/mailbox-node.c, libbalsa/{mailbox_imap,server}.c:
remove debug output.
* libbalsa/mailbox.c: compile against older glib.
* src/sendmsg-window.c: fix bug 481842 (Stephane Raimbault).
2007-10-02 Peter Bloomfield
* src/toolbar-factory.c: (tm_do_popup_menu): show the
appropriate page of the toolbar editor.
* src/toolbar-prefs.c: (customize_dialog_cb): ditto.
* src/toolbar-prefs.h: ditto.
2007-10-01 Peter Bloomfield
* libbalsa/message.c: (libbalsa_message_header_get_helper),
(lb_message_set_headers_from_string): match headers exactly.
* src/balsa-message.c: (balsa_message_set_displayed_headers):
check whether this is an actual change.
* src/main-window.c: connect to "activate" signal instead of
"changed", to see every click.
* src/message-window.c: (mw_get_ui_manager), (message_window_new),
(mw_header_activate_cb), (reset_show_all_headers): ditto.
2007-09-30 Peter Bloomfield
* src/main-window.c: clean up.
2007-09-30 Peter Bloomfield
* src/main-window.c: block only some actions.
* src/message-window.c: (mw_set_active), (message_window_new),
(reset_show_all_headers): ditto.
* src/sendmsg-window.c: block no actions--just document it.
2007-09-30 Peter Bloomfield
* libbalsa/mailbox.c: (lbm_get_index_entry): check for NULL
message returned by libbalsa_mailbox_get_message().
* libbalsa/mailbox_local.c: (message_match_real): ditto.
* libbalsa/send.c: (lbs_process_queue),
(libbalsa_process_queue): ditto.
* src/balsa-index.c: (bndx_view_source),
(balsa_index_selected_list_func): ditto.
* src/balsa-message.c: (balsa_message_set): ditto.
* src/main-window.c: ditto.
* src/message-window.c: (mw_set_selected): ditto;
(shown_hdrs_radio_cb): fix typo.
* src/sendmsg-window.c: (attachments_add), (drag_data_quote),
(sendmsg_window_new_from_list): ditto.
2007-09-29 Peter Bloomfield
* src/main-window.c: block actions while we set active.
2007-09-29 Peter Bloomfield
* src/balsa-index.c: (balsa_index_load_mailbox_node): set
threading in main-window instead of balsa-index.
* src/main-window.c: ditto.
2007-09-29 Peter Bloomfield
* src/balsa-index.c: (balsa_index_load_mailbox_node):
balsa_window_get_view_filter is no longer exported;
(bndx_do_popup): BalsaIndex::window no longer exists.
* src/balsa-index.h: remove BalsaIndex::window.
* src/main-window.c: do not export balsa_window_get_view_filter.
* src/main-window.h: ditto.
2007-09-27 Peter Bloomfield
* src/main-window.c: do not export enable_mailbox_menus.
* src/main-window.h: ditto.
* src/balsa-index.c: (balsa_index_load_mailbox_node):
enable_mailbox_menus is no longer exported.
2007-09-27 Peter Bloomfield
* doc/C/balsa.xml: fix identity-dialog and toolbar-editor
documentation.
* libbalsa/identity.c: (append_ident_notebook_page),
(setup_ident_frame), (display_frame_set_gpg_mode): show Security
page even when GnuPG isn't supported, but grayed out and with an
explanatory label.
* libbalsa/libbalsa.h: update progress bar after a set time, not
a set fraction of the work.
* src/main.c: (balsa_progress_set_text),
(balsa_progress_set_fraction): ditto.
2007-09-25 Peter Bloomfield
* src/toolbar-factory.c: (menu_item_toggled_cb),
(tm_popup_idle_cb), (tm_popup_deactivated_cb),
(tm_remove_underscore), (tm_popup_position_func),
(tm_do_popup_menu), (tm_button_press_cb), (tm_popup_menu_cb),
(balsa_toolbar_new): add a popup-position func; clean up.
2007-09-25 Peter Bloomfield
* src/toolbar-factory.c: (tm_load_model), (tm_save_model),
(tm_gconf_notify), (balsa_toolbar_model_new), (tm_default_style),
(tm_set_style), (tm_changed_cb), (do_popup_menu),
(balsa_toolbar_new): catch changes in desktop toolbar style.
2007-09-24 Peter Bloomfield
* src/toolbar-factory.c: (tm_default_toolbar_style),
(tm_load_model), (tm_save_model), (do_popup_menu),
(tm_popup_menu_cb), (balsa_toolbar_new): use desktop toolbar
style as default.
2007-09-24 Peter Bloomfield
* src/toolbar-factory.c: (remove_underscore), (do_popup_menu):
respect desktop toolbar style.
2007-09-24 Peter Bloomfield
* libbalsa/mailbox_mbox.c:
(libbalsa_mailbox_mbox_close_mailbox): keep stream open longer.
* src/toolbar-prefs.c: (style_button_cb): emit signal correctly.
2007-09-23 Peter Bloomfield
* src/toolbar-factory.c: (tm_save_model): remove old toolbar
config before saving new one.
2007-09-23 Peter Bloomfield
* libbalsa/identity.c: use GTK_RESPONSE_HELP, so that the "Help"
button is created correctly.
2007-09-23 Peter Bloomfield
* src/main-window.c: add tooltip for "Quit".
* src/toolbar-factory.c: (do_popup_menu): allow "Quit" to be a
toolbar button; use gtk_menu_attach_to_widget only if it allows
a NULL detacher; add "Customize Toolbars..." item.
2007-09-22 Peter Bloomfield
* src/main-window.c: make a stack of "opening mailbox..."
messages; new toolbar api.
* src/message-window.c: (mw_get_toolbar_model): new toolbar api.
* src/save-restore.c: (save_toolbars), (load_toolbars): move
toolbar save and load to toolbar-factory.c.
* src/sendmsg-window.c: (sw_get_toolbar_model): new toolbar api.
* src/toolbar-factory.c: create a popup menu for toolbar.
* src/toolbar-factory.h: new toolbar api.
* src/toolbar-prefs.c: (style_button_cb), (create_toolbar_page):
add a button to popup toolbar style menu.
2007-09-21 Peter Bloomfield
* src/ab-main.c: (bab_window_new): migrate from GnomeApp.
* src/balsa-app.h: ditto.
* src/balsa-index.c: (balsa_index_load_mailbox_node): handle
status messages in main-window.
* src/balsa-mblist.c: (balsa_mblist_set_status_bar): migrate
from GnomeApp.
* src/balsa-mime-widget-text.c: (statusbar_pop), (handle_url),
(balsa_gtk_html_on_url): ditto.
* src/information-dialog.c: (balsa_information_list),
(status_bar_refresh), (balsa_information_bar): ditto.
* src/mailbox-node.c: (imap_dir_cb): ditto.
* src/main-window.c: ditto.
* src/main-window.h: ditto.
* src/main.c: (threads_init): pass balsa_app.main_window as
user data.
* src/message-window.c: (message_window_new): migrate from
GnomeApp.
* src/pref-manager.c: (open_preferences_manager), (set_prefs):
ditto.
* src/sendmsg-window.c: (sendmsg_window_new): ditto.
* src/toolbar-prefs.c: (customize_dialog_cb): ditto.
2007-09-18 Peter Bloomfield
* src/balsa-index.c: (bndx_view_source), (bndx_store_address),
(bi_toggle_deleted_cb), (bi_toggle_flagged_cb), (bi_toggle_new_cb),
(bndx_popup_menu_create), (create_stock_menu_item): connect
signals swapped, to match new handler api.
2007-09-18 Peter Bloomfield
* libbalsa/mailbox.c: scrap libbalsa_mailbox_register_msgno.
* libbalsa/mailbox.h: ditto.
* src/balsa-index.c: (bndx_mailbox_message_expunged_cb),
(balsa_index_load_mailbox_node): change
BalsaIndex::{current,next}_msgno if necessary when a message
is expunged.
2007-09-16 Peter Bloomfield
* src/sendmsg-window.c: allow the letter 'q' in messages, by
restoring ctrl+Q accelerator for "Queue" (thank you, Jean-Luc);
restore Sign and Encrypt toolbar buttons (thank you, Albrecht).
2007-09-15 Peter Bloomfield
* libbalsa/source-viewer.c: mark more strings for translation.
* src/ab-main.c: ditto.
* src/toolbar-factory.c: (tm_add_action),
(balsa_toolbar_model_add_actions),
(balsa_toolbar_model_add_toggle_actions), (tm_populate):
tooltips are set by the ui-manager.
2007-09-15 Peter Bloomfield
* libbalsa/source-viewer.c: (lbsv_app_set_menus): set
translation domain to NULL to enable translation.
* src/ab-main.c: (get_main_menu): ditto
* src/main-window.c: ditto.
* src/message-window.c: (mw_get_ui_manager): ditto.
* src/sendmsg-window.c: (sw_get_ui_manager): ditto.
2007-09-15 Peter Bloomfield
* src/main-window.c: two more missed translations.
2007-09-15 Peter Bloomfield
* src/main-window.c: translate main menu.
* src/message-window.c: ditto.
* src/sendmsg-window.c: ditto.
2007-09-15 Peter Bloomfield
* src/main-window.c:
* src/main-window.h:
* src/message-window.c: (message_window_new): build
--without-gtkhtml.
* src/sendmsg-window.c: (sendmsg_window_new):
* src/toolbar-factory.c: (tm_changed_cb), (tm_toolbar_weak_notify),
(balsa_toolbar_new):
* src/toolbar-prefs.c: (customize_dialog_cb): clean up ui-manager
object-ref management.
2007-09-14 Peter Bloomfield
* src/main-window.c:
* src/message-window.c:
* src/sendmsg-window.c:
* src/toolbar-factory.c:
* src/toolbar-factory.h:
* src/toolbar-prefs.c: move toolbar-model's "changed" signal
handling to toolbar-factory.c.
2007-09-14 Peter Bloomfield
* doc/C/balsa.xml: toolbar editing is now really instant-apply.
* libbalsa/rfc3156.c: build (--without-ssl ?).
* src/ab-window.c:
* src/balsa-app.c:
* src/balsa-bonobo.c:
* src/balsa-index.c:
* src/balsa-index.h:
* src/balsa-mime-widget-message.c:
* src/balsa-mime-widget-text.c: drop GtkWidget from argument list.
* src/main.c: GtkAccelMap is now in ~/.balsa/accelmap.
* src/pref-manager.c: (apply_prefs): new toolbar api.
* src/save-restore.c: (config_global_load): notify user about changes.
* src/main-window.c:
* src/main-window.h:
* src/message-window.c:
* src/message-window.h:
* src/sendmsg-window.c:
* src/sendmsg-window.h:
* src/toolbar-factory.c:
* src/toolbar-factory.h:
* src/toolbar-prefs.c: migrate from GnomeUI to GtkUIManager.
2007-09-08 Albrecht Dreß
* src/sendmsg-window.c: allow the user to select message parts to
be quoted in the response.
2007-09-07 Pawel Salek
* libbalsa/imap/imap-handle.c: fix buffer overflow (#474366,
credit goes to Evil Ninja Squirrel).
* NEWS, configure.in: release 2.3.20.
2007-09-06 Pawel Salek
* libbalsa/mailbox_imap.c: handle expunge race.
2007-09-04 Peter Bloomfield
* src/main-window.c: (balsa_window_enable_mailbox_menus),
(balsa_window_update_book_menus), (enable_message_menus): manage
sensitivity of store-address menu item in touch-pad version.
2007-09-03 Peter Bloomfield
* libinit_balsa/assistant_helper.c:
(balsa_init_add_table_entry): build with --enable-touch-ui.
* libinit_balsa/assistant_helper.h: ditto.
* src/main-window.c: (bw_enable_next_unread), (balsa_window_new),
(enable_expand_collapse), (balsa_window_enable_mailbox_menus),
(balsa_window_update_book_menus), (enable_message_menus),
(balsa_window_set_threading_menu), (show_about_box),
(show_all_headers_cb), (threading_change_cb), (zoom_cb): remove
GtkAction code for now.
* src/main-window.h: ditto.
* src/sendmsg-window.c: (sendmsg_window_new): build with
--enable-touch-ui.
* src/spell-check.c: (balsa_spell_check_init): deprecation
cleanup.
2007-08-31 Peter Bloomfield
* src/main-window.c: (bw_enable_next_unread), (balsa_window_new),
(enable_expand_collapse), (balsa_window_enable_mailbox_menus),
(balsa_window_set_threading_menu), (contents_cb), (show_about_box),
(shown_hdrs_radio_cb), (threading_radio_cb), (zoom_in_cb),
(zoom_out_cb), (zoom_100_cb): incomplete port to GtkAction and
friends (define USE_GNOMEUIINFO to TRUE in src/main-window.h to
see how much work remains :()
* src/main-window.h: ditto.
2007-08-27 Peter Bloomfield
* libbalsa/send.c: (lbs_process_queue): skip message if it is
either flagged or deleted--see
http://mail.gnome.org/archives/balsa-list/2007-August/msg00018.html
2007-08-26 Albrecht Dreß
* configure.in: s/mime is mature for gpg >= 2.0.4.
* src/balsa-mblist.c: (bmbl_store_redraw_mbnode): newer icon
sets distinguish between the "delete" (action) and the "trash
can" (location) icons.
2007-08-25 Pawel Salek
* libbalsa/imap/Makefile.am: disable building imap_tst.
* src/balsa-message.[ch]: choose dialog's parent better.
* NEWS, configure.in: release 2.3.19.
2007-08-23 Peter Bloomfield
* src/toolbar-factory.c: gtk_tool_item_set_tooltip_text is since
(2, 11, 6).
2007-08-23 Peter Bloomfield
* src/balsa-app.c: (balsa_app_init): deprecation cleanup.
* src/balsa-app.h: ditto.
* src/balsa-index.c: (balsa_index_ensure_visible): ditto.
* src/balsa-message.c: (bm_header_tl_buttons): ditto.
* src/main-window.c: (balsa_notebook_label_new),
(balsa_change_window_layout): ditto.
* src/toolbar-factory.c: ditto.
2007-08-22 Pawel Salek
* src/sendmsg-window.c: when (auto-)saving a message, do not
bother the user asing questions about charsets.
* src/balsa-mime-widget-callbacks.[hc]: parent properly "save part"
dialog windows.
* src/balsa-message.c: pass the parent.
* libbalsa/libbalsa.c,libbalsa/{imap-,}server.c: timeout improvements.
2007-08-20 Pawel Salek
* src/save-restore.c: show just one column for mailboxes by default.
* src/balsa-app.c: squash a warning.
* libinit_balsa/balsa-druid-page-directory.[ch]: finish the port
to GtkAssistant.
* libbalsa/imap/imap-commands.c: really add headers when BINARY
extension is used.
2007-08-19 Pawel Salek
* libinit_balsa/balsa-druid-page-{welcome,defclient,directory}.[hc]:
* libinit_balsa/balsa-druid-page-{user,finish}.[hc]:
* libinit_balsa/init_balsa.c: replace GnomeDruid with GtkAssistant.
* libinit_balsa/{balsa-initdruid,helper}.{c,h}: ditto.
2007-08-10 Pawel Salek
* libbalsa/mailbox_imap.c: encode cache file names more robustly.
* libbalsa/imap/imap-search.c: disable UID ESEARCH for now since
some interpretations make it useless.
2007-08-08 Pawel Salek
* src/mailbox-conf.h: needs server.h
* src/{save-restore,balsa-app}.c: ditto.
* libinit_balsa/balsa-druid-page-{directory,user}.c: ditto.
* libbalsa/send.c: do not disclose auth data. (PB)
* libbalsa/imap-server.c: ditto.
* libbalsa/{smtp-,}server.c: needs server.h
* libbalsa/mailbox_imap.c: rework persistent caching.
* libbalsa/libbalsa.c: disable IMAP timeouts for now - there is
some deadlock condition.
* libbalsa/mailbox_pop3.c: needs server.h
* libbalsa/imap/imap-handle.c: serialize ImapBody, too.
* libbalsa/imap/imap-commands.[ch]: imap_mbox_handle_fetch_rfc822()
can fetch many messages at once now.
2007-08-06 Albrecht Dreß
* libbalsa/mime.c: reflow improvements.
* src/balsa-mime-widget-callbacks.c: programs require uris, not
filenames.
2007-07-18 Albrecht Dreß
* configure.in: safe gpg2 version detection.
* src/main.c: ditto; initialize threads before using any glib
functions (pb).
2007-07-15 Albrecht Dreß
* src/balsa-print-object.c: (cairo_print_pixbuf): print icon
colors correctly regardless of endianness.
2007-07-04 Pawel Salek
* NEWS, configure.in: release 2.3.17.
2007-07-01 Pawel Salek
* libbalsa/imap/pop3.c: validate APOP server stamp.
* libbalsa/imap/imap-search.c: split long SEARCH commands into
several ones.
* libbalsa/mailbox_imap.c: return correct bool code on flag store.
2007-06-21 Peter Bloomfield
* src/main-window.c: (display_new_mail_notification): respect
balsa_app.notify_new_mail_dialog.
* libbalsa/address.c: (vcard_qp_decode): build with GMime >=
2.5.5
2007-06-19 Albrecht Dress
* libbalsa/address.[hc]: make VCARD support more RFC-compatible.
* src/balsa-mime-widget-text.c: improve displaying.
* balsa-print-object-text.[hc]: add printing.
2007-06-17 Pawel Salek
* libbalsa/imap/imap-handle.c: handle ESEARCH response.
* libbalsa/imap/imap-handle.h: recognize ESEARCH extension.
* libbalsa/imap/imap-commands.c: use it to optimize searches.
* libbalsa/imap/imap-search.c: ditto.
2007-06-15 Pawel Salek
Commit Peter's patches for broader testing...
* libbalsa/imap/imap-handle.c: detect disconnection.
* libbalsa/imap/imap-commands.c: check for header existence in client
side sorting.
2007-06-10 Peter Bloomfield
* src/balsa-index.c: (bndx_expand_to_row): avoid critical
warnings from GtkTreeView.
2007-06-07 Pawel Salek
* src/store-address.[ch]: add ability to create addresses from
VCARD strings.
* src/balsa-index.c: use new store_address() function names.
* src/main-window.c: ditto.
* src/balsa-mime-widget-text.c: add ability to store attached
e-mail addresses.
* libbalsa/address-book-vcard.c: use common VCARD functions.
* libbalsa/address.[ch]: move common VCARD functions here.
2007-06-05 Peter Bloomfield
* libbalsa/mime.c: (unwrap_rfc2646): inline check for "-- \n".
* libbalsa/mailbox.c: (lbm_try_reassemble): do not get message
just to test flags.
* libbalsa/send.c: (lbs_process_queue),
(libbalsa_process_queue): ditto.
* src/balsa-index.c: (bndx_mailbox_row_inserted_cb): ditto.
2007-06-05 Peter Bloomfield
* libbalsa/mailbox.[ch]: new convenience methods
libbalsa_mailbox_msgno_change_flags and
libbalsa_mailbox_register_msgno.
* libbalsa/message.[ch]: new convenience method
libbalsa_message_change_flags.
* libbalsa/send.c: use libbalsa_message_change_flags.
* src/balsa-index.[ch]: replace BalsaIndex::current_message with
BalsaIndex::current_msgno; new members
BalsaIndex::has_selection_changed_idle and
BalsaIndex::has_mailbox_changed_idle to avoid setting GObject
data; new api balsa_index_selected_msgnos_{new,free}.
* src/balsa-mblist.c: (bmbl_drag_cb): use new
balsa_index_selected_msgnos_{new,free} api.
* src/balsa-message.[ch]: use mailbox and msgno instead of
message.
* src/main-window.[ch]: ditto; use new
balsa_index_selected_msgnos_{new,free} api.
* src/message-window.[ch]: use mailbox and msgno instead of
message.
* src/sendmsg-window.[ch]: ditto.
2007-06-03 Peter Bloomfield
* libbalsa/mime.c: (unwrap_rfc2646): detect CRLF-terminated
signature separator line.
2007-05-28 Peter Bloomfield
* libbalsa/imap/pop3.c: (pop_get_uid): check for disconnection
to avoid a failed assertion.
2007-05-27 Pawel Salek
* src/sendmsg-window.c: Do not wrap for view, if flowed format is
selected (Albrecht Dreß).
* src/balsa-index.c: extend msgno and size columns.
* libbalsa/mailbox_imap.c: silence few devel warnings.
* NEWS, configure.in: release 2.3.16.
2007-05-21 Peter Bloomfield
* libbalsa/mailbox.c: (lbm_get_index_entry_expunged_cb),
(lbm_get_index_entry): catch expunged and renumbered messages.
* src/message-window.c: (message_window_move_message),
(mw_set_selected): check BalsaIndex::current_msgno instead of
BalsaIndex::current_message.
2007-05-11 Peter Bloomfield
* libbalsa/html.c: (libbalsa_html_print),
(libbalsa_html_print_get_pages_num): build on fc6, and on f7test
--without-gtkprint.
* libbalsa/html.h: ditto.
2007-05-10 Peter Bloomfield
* libbalsa/mailbox_mh.c: (libbalsa_mailbox_mh_sync): rename
message files correctly.
* libbalsa/mailbox_local.c: (lbm_local_save_tree),
(libbalsa_mailbox_local_close_mailbox): really check for empty
tree; always save tree on closing.
2007-05-09 Albrecht Dreß
* libbalsa/identity.h: add request_mdn field (request MDN by
default).
* libbalsa/identity.c: (libbalsa_identity_init),
(setup_ident_frame), (ident_dialog_update), (display_frame_update),
(libbalsa_identity_new_config), (libbalsa_identity_save): manage
it.
* src/sendmsg-window.c: (update_bsmsg_identity): use it.
2007-05-07 Peter Bloomfield
* libbalsa/misc.c: (libbalsa_set_fallback_codeset): allocate the
charset strings.
* libbalsa/mailbox_local.c: (libbalsa_mailbox_local_get_message):
check msgno.
* src/balsa-index.c: (bndx_change_flags), (bndx_tree_expand_cb):
ditto.
* libbalsa/misc.c: (libbalsa_set_fallback_codeset): include
UTF-8 as a charset.
* src/balsa-message.c: (mdn_dialog_response): do not clear NULL
error.
2007-05-06 Albrecht Dreß
* configure.in: add HTML flags and libs.
2007-05-06 Peter Bloomfield
* libbalsa/html.h: compile with GtkHtml3 and GtkPrint.
* libbalsa/mailbox.c: (libbalsa_mailbox_get_message): compile
with threads disabled.
* libbalsa/mailbox.h: remove LB_MAILBOX_STATE_TREECLEANING from
LibBalsaMailboxState enum.
* libbalsa/mailbox.c: (libbalsa_mailbox_msgno_filt_out),
(lbm_set_threading): remove LB_MAILBOX_STATE_TREECLEANING code;
(lbm_get_index_entry_real): check that mailbox is still open;
(libbalsa_mailbox_get_message): lock mailbox before checking
args.
* src/balsa-index.h: add current_msgno to BalsaIndex structure,
and remove selected and selection_changed_id; new public method
balsa_index_selected_msgnos.
* src/balsa-index.c: provide GArray of selected messages only
when needed.
* src/balsa-mblist.c: (bmbl_drag_cb): use
balsa_index_selected_msgnos.
* src/main-window.c: (notebook_drag_received_cb): ditto.
* src/sendmsg-window.c: ditto.
* libbalsa/mailbox_local.h: new LibBalsaMailboxLocalMessageInfo
structure and LibBalsaMailboxLocalClass method get_info; remove
load_message class method; do not export
libbalsa_mailbox_local_queue_sync--it's now static.
* libbalsa/mailbox_local.c: implement LibBalsaMailboxClass methods
get_message, messages_change_flags, and msgno_has_flags here
instead of in back-ends; keep a pool of object-reffed messages.
* libbalsa/mailbox_maildir.c: remove LibBalsaMailboxClass methods
get_message, messages_change_flags, and msgno_has_flags.
* libbalsa/mailbox_mbox.c: ditto
* libbalsa/mailbox_mh.c: ditto.
* src/balsa-message.c: (display_part): ensure UTF-8;
(libbalsa_msg_try_mp_signed), (message_recheck_crypto_cb):
notify user only once.
* src/balsa-mime-widget-text.c: (balsa_mime_widget_new_text):
ditto.
* configure.in: detect GMime version 2.2.7
* libbalsa/misc.c: (libbalsa_set_fallback_codeset): use
g_mime_set_user_charsets when it's available.
2007-05-05 Pawel Salek
* libbalsa/identity.[hc]: signature processing belongs here.
* src/sendmsg-window.c: use it.
* libbalsa/html.h: fix bug 435594.
2007-05-04 Peter Bloomfield
* src/balsa-mime-widget-image.c: (img_check_size): use GDK lock
in idle callback.
2007-05-03 Peter Bloomfield
* src/balsa-message.c: (balsa_message_has_next_part),
(balsa_message_has_previous_part): return FALSE unless we have
a part.
* src/main-window.c: (enable_part_menu_items),
(notebook_switch_page_cb): improve message menu item sensitivity.
2007-05-01 Peter Bloomfield
* libbalsa/information.c: (libbalsa_information_varg): escape
more HTML special characters.
* src/main-window.c: (bw_create_index_widget): sensitize button
when type of search is changed.
* src/balsa-index.c: (bndx_selection_changed): clear preview
more reliably.
* src/balsa-index.c: (balsa_index_set_threading_type): fix typo.
2007-05-01 Pawel Salek
* src/mailbox-node.c: do not print null strings.
* src/toolbar-factory.c: apply patch from bug 410095 ,extended.
* configure.in, NEWS: release 2.3.15.
2007-04-29 Peter Bloomfield
* src/information-dialog.c: (balsa_information_real): do not try
to pop up dialog if main-window is NULL.
2007-04-29 Peter Bloomfield
* libbalsa/libbalsa.h: add error code for get-duplicates.
* libbalsa/mailbox.c: (libbalsa_mailbox_move_duplicates): use
it.
* libbalsa/mailbox_local.c: check error return from
prepare-threading.
* src/balsa-index.c: (balsa_index_set_threading_type): ditto.
* src/main-window.c: (remove_duplicates_cb): ensure-visible only
if no error.
* src/main.c: (balsa_progress_set_text),
(balsa_progress_set_fraction): check for NULL main-window.
2007-04-29 Peter Bloomfield
* src/balsa-mime-widget-text.c: (bm_widget_new_html): fix popup
menu for HTML part.
2007-04-28 Peter Bloomfield
* libbalsa/information.c: (libbalsa_information_varg): simplify
conditional code.
2007-04-27 Peter Bloomfield
* libbalsa/information.c: (libbalsa_information_varg): replace
'<' with "<" entity in message string.
2007-04-26 Pawel Salek
* src/balsa-message.c: do not crash on empty address groups.
* libbalsa/imap/imap-commands.c: make GPGME and BINARY work together.
2007-04-25 Christophe Merlet <redfox@redfoxcenter.org>
* configure.in: added "oc" (Occitan) to ALL_LINGUAS.
2007-04-24 Pawel Salek
* src/balsa-message.c: stop encryption processing if mailbox
access fails.
* libbalsa/mailbox_imap.c: attempt to handle fetch errors better.
* libbalsa/imap/imap-commands.c: BINARY falls back to traditional
method encountering UNKNOWN-CTE.
2007-04-23 Pawel Salek
* libbalsa/information.c: build on 64-bit architecture.
2007-04-22 Albrecht Dreß
* src/balsa-mime-widget-message.c: pass the reported sending code
to the user.
* src/{sendmsg-window,balsa-message}.c: ditto.
* libbalsa/gmime-gpgme-context.c: Work around gpgme "pecularities"
- fix bug 419903.
* libbalsa/{rfc3156,send}.{c,h}: ditto.
* libbalsa/mailbox_imap.c: do not get fooled by shorter binary
attachments.(PS)
2007-04-21 Pawel Salek
* libbalsa/mailbox_imap.c: plug memory leaks.
* libbalsa/imap-server.c: enable binary extension.
* libbalsa/imap/imap-handle.c: process BINARY output.
* libbalsa/imap/imap-handle.h: add BINARY to the known capability list.
* libbalsa/imap/imap-commands.c: issue BINARY commands.
* libbalsa/information.c: fix memory leak in notify code.
2007-04-21 Peter Bloomfield
* src/main-window.c: (balsa_window_new),
(display_new_mail_notification), (cancel_new_mail_notification):
pop up new-mail notification only if main-window is not active, and
cancel it when main-window becomes active.
2007-04-20 Albrecht Dreß
* libbalsa/address-book-ldap.c: support LDAP referrals.
2007-04-20 Peter Bloomfield
* src/main-window.c: (display_new_mail_notification): use no
more than one NotifyNotification for new mail.
2007-04-16 Pawel Salek
* src/balsa-index.c: keep current message visible in the index on
filter changes.
2007-04-15 Pawel Salek
* src/main-window.c: use libnotify only if the initialization was
successful.
* libbalsa/information.c: ditto.
2007-04-11 Pawel Salek
* libbalsa/imap/siobuf.c: rename external symbols to avoid
conflicts with libesmtp.
2007-04-10 Johan Brannlund
* configure.in: detect libnotify.
* libbalsa/information.c: use it.
* libbalsa/libbalsa.c: init it.
* libbalsa/{send,server}.c: downgrade some messages to debug.
* src/main-window.c: use libnotify for new mail notification.
* src/balsa-mblist.c: prefer trailing spaces instead of leading ones.
* libbalsa/imap/imap-handle.c: really disconnect (PS).
* libbalsa/libbalsa-conf.c: correct CHECK_VERSION (PB).
2007-04-09 Pawel Salek
* libbalsa/mailbox_imap.c: do not re-try user-aborted actions.
* libbalsa/libbalsa.[ch]: generalize libbalsa_ask() to implement
libalsa_abort_on_timeout().
* libbalsa/imap/imap-handle.c: support for distinguising aborted
operations from those that timed out.
* libbalsa/imap/libimap.h: add IME_TIMEOUT event type.
* libbalsa/imap/imap-handle.h: add imap_handle_op_cancelled().
* libbalsa/imap/imap_private.h: add op_cancelled field.
* libbalsa/imap/siobuf.[ch]: core of timeout handling.
* libbalsa/server.c: ask user what to do on timeout.
2007-04-05 Peter Bloomfield
* configure.in: detect gtkhtml-3.14; detect GtkPrint support in
gtkhtml3; detect GMime version 2.2.5 or later.
* libbalsa/body.c:
(libbalsa_message_body_extract_embedded_headers): new GMime api.
* libbalsa/html.c: don't use Gnome printing api if GtkPrint is
supported.
* libbalsa/mailbox_imap.c: new GMime api.
(internet_address_new_from_imap_address), (lb_set_headers),
(lbm_imap_construct_body): ditto.
* libbalsa/message.c: (libbalsa_message_user_hdrs_from_gmime),
(lbmsg_set_header), (libbalsa_message_set_subject_from_header):
ditto.
* src/sendmsg-window.c: ditto.
2007-03-13 Pawel Salek
* libbalsa/address-entry.c: fix crash reported on balsa-list.
2007-02-26 Pawel Salek
* libbalsa/mailbox_imap.c: fetch small messages in one shot to get
rid of one RTT.
2007-02-20 Albrecht Dreß
* src/Makefile.am: add balsa-cite-bar.[ch] to
balsa_BASE_SRCLIST.
* src/balsa-cite-bar.c: (balsa_cite_bar_get_type),
(balsa_cite_bar_class_init), (balsa_cite_bar_init),
(balsa_cite_bar_new), (balsa_cite_bar_resize),
(balsa_cite_bar_destroy), (balsa_cite_bar_realise),
(balsa_cite_bar_size_request), (balsa_cite_bar_size_allocate),
(balsa_cite_bar_expose): initial commit.
* src/balsa-cite-bar.h: initial commit.
* src/balsa-mime-widget-text.c: (balsa_mime_widget_new_text),
(quote_tag), (fix_text_widget), (destroy_cite_bars),
(draw_cite_bar_real), (draw_cite_bars): use cite-bars with
quoted text.
* src/balsa-print-object-text.c: (balsa_print_object_text_plain),
(balsa_print_object_text): use cite-bars only with text/plain
message part.
* src/balsa-print-object-text.h: new method
balsa_print_object_text_plain.
* src/balsa-print-object.c:
(balsa_print_objects_append_from_body): use
balsa_print_object_text_plain.
2007-02-18 Peter Bloomfield
* libbalsa/mailbox.c: (libbalsa_mailbox_prepare_threading),
(mbox_set_sort_column_id):
use success indicator from prepare-threading to avoid crash when
mailbox is closed during prepare-threading.
* libbalsa/mailbox.h: new declaration for prepare-threading.
* libbalsa/mailbox_imap.c:
(libbalsa_mailbox_imap_prepare_threading): ditto.
* libbalsa/mailbox_local.c:
(libbalsa_mailbox_local_prepare_threading): return FALSE if
mailbox is closed when updating UI.
2007-02-17 Pawel Salek
* src/mailbox-node.c: save cache only for the top-level nodes.
* src/main-window.c: remove shortcut conflict.
* src/address-book-config.c: add ldap:// prefix (Albrecht Dress).
* libbalsa/address-book-ldap.c: AD compatiblity (Albrecht Dress).
2007-02-09 Pema Geyleg <pema.geyleg@gmail.com>
* configure.in: added dz to ALL_LINGUAS.
2007-01-23 Peter Bloomfield
* src/main-window.c: (balsa_window_new): make balsa_app.appbar a
weak pointer.
2007-01-20 Peter Bloomfield
* doc/C/balsa.xml: fix typos.
2007-01-20 Peter Bloomfield
* libbalsa/body.c: (libbalsa_message_body_get_parameter): check
for NULL content-type.
2007-01-20 Peter Bloomfield, Albrecht Dreß
* configure.in: check for Subversion instead of CVS; check for
langinfo.h.
* src/balsa-app.h: GtkPrint fixes and extensions.
* src/balsa-print-object-header.c:
(balsa_print_object_header_destroy),
(balsa_print_object_header_new_real),
(balsa_print_object_header_crypto),
(balsa_print_object_header_draw): ditto.
* src/balsa-print-object-header.h: ditto.
* src/balsa-print-object-text.c: (balsa_print_object_text):
ditto.
* src/balsa-print-object.c: (split_for_layout): ditto.
* src/balsa-print-object.h: ditto.
* src/print-gtk.c: (begin_print), (draw_page),
(get_default_user_units), (add_font_button), (add_margin_spinbtn),
(check_margins), (message_prefs_widget), (message_prefs_apply):
ditto.
* src/save-restore.c: (restore_gtk_page_setup),
(config_global_load), (config_save): ditto.
2007-01-15 Peter Bloomfield
* libbalsa/mailbox.c: (lbm_msgno_changed),
(lbm_get_index_entry_real): less noise.
2007-01-14 Pawel Salek
* configure.in: actually use gnome_print_extras.
* libbalsa/libbalsa-conf.c: glib-2.6.8 has no g_key_file_[sg]et_double().
2007-01-14 Albrecht Dreß
* configure.in: support GtkPrint.
* libbalsa/libbalsa-conf.c: (libbalsa_conf_foreach_keys),
(libbalsa_conf_get_double_with_default_),
(libbalsa_conf_set_double_): add some missing capability.
* libbalsa/libbalsa-conf.h: ditto.
* src/Makefile.am: support GtkPrint.
* src/balsa-app.c: (balsa_app_init): ditto.
* src/balsa-app.h: ditto.
* src/main-window.c: (page_setup_cb): ditto.
* src/message-window.c: (page_setup_cb): ditto.
* src/print.h: ditto.
* src/save-restore.c: (load_gtk_print_setting),
(restore_gtk_page_setup), (config_global_load),
(save_gtk_print_setting), (save_gtk_page_setup), (config_save): ditto.
* src/sendmsg-window.c: ditto.
2007-01-07 Pawel Salek
* src/mailbox-node.c: g_strconcat() needs trailing NULL.
2007-01-06 Pawel Salek
* src/mailbox-node.[hc]: cache IMAP mailbox lists.
* libbalsa/filter-funcs.c: init *entire* date struct.
2006-12-28 Pawel Salek
* doc/C/balsa.xml: document more advanced IMAP options.
* libbalsa/imap-server.[ch]: add ability to disable IDLE.
* libbalsa/mailbox_imap.c: fix locking in imap_exists_cb.
* libbalsa/imap/imap-handle.[ch]: add ability to disable IDLE.
* libbalsa/imap/imap_private.h: ditto.
* src/folder-conf.c: UI for IDLE disabling.
* src/mailbox-node.c: place mailboxes in scanned locations.
2006-12-12 Pawel Salek
* src/sendmsg-window.c: set subject for forwarded messages.
* src/store-address.c: set default address book for gtk-2.10.
* configure.in, NEWS: release 2.3.14.
2006-12-03 Pawel Salek
* libbalsa/mailbox.c: libbalsa_mailbox_get_message() may fail.
* libbalsa/mailbox_imap.c: print a message when it does.
2006-12-02 08:48 PeterB
* src/sendmsg-window.c: handle "attach" keyword in mailto URLs,
carefully.
2006-12-01 Pawel Salek
* libbalsa/imap/imap-handle.c: balsa could not handle some
response codes.
2006-11-18 Djihed Afifi <djihed@gmail.com>
* configure.in: Added Arabic.
2006-11-09 08:56 PeterB
* src/sendmsg-window.c: no need for count when toggling entries;
simplify dialog language.
2006-11-08 10:49 PeterB
* src/sendmsg-window.c: restore bcc= in mailto URLs, with a
popup, and make sure Bcc: header is shown if set.
* libbalsa/mailbox_mbox.c: check for NULL mime_message.
2006-11-01 08:46 PeterB
* src/sendmsg-window.c: disable attach= and bcc= in mailto URLs
pending security review.
* src/sendmsg-window.c: handle "attach" keyword in mailto URLs,
thanks to Johan Brannlund.
* src/main.c: do not try to expunge a read-only mailbox.
2006-10-26 09:42 PeterB
* libbalsa/mailbox_mbox.c: drop the mime-stream-shared lock while
caching the message--we might grab the gdk lock to update the
display.
2006-10-08 Albrecht Dreß <albrecht dot dress at arcor dot de>
* src/pref-manager.c: add a check button to enable or disable
playing a "new mail sound".
* src/sendmsg-window.c: German is /not/ always the same.
* libbalsa/gmime-gpgme-context.c: make a gpgme (crypto) error more
meaningful.
2006-10-07 11:08 PeterB
* libbalsa/: mailbox.c, mailbox_local.c: build with
--disable-threads.
2006-10-04 12:37 PeterB
* src/sendmsg-window.c: quote message when quoting, and not when
inlining.
* libbalsa/mailbox.c: construct new order correctly in imap
mailbox.
2006-09-24 Pawel Salek
* src/sendmsg-window.c: quote message bodies, not headers only.
2006-09-21 18:32 PeterB
* libbalsa/mailbox.c: notify gdk when message info is cached;
disable lock check for normal use.
2006-09-18 08:10 PeterB
* libbalsa/message.c: Disposition-Notification-To is not a user
header.
* libbalsa/mailbox_mbox.c: more careful check for From_ line.
2006-09-17 Pawel Salek
* src/sendmsg-window.c: cleanup. Compose and forward will insert
the signature if requested.
2006-09-15 21:17 PeterB
* libbalsa/mailbox.c, libbalsa/mailbox.h, libbalsa/mailbox_imap.c,
libbalsa/mailbox_local.c, libbalsa/mailbox_maildir.c,
libbalsa/mailbox_mh.c, src/balsa-index.c: check
LibBalsaMailboxIndexEntry for pending idle call; defer adding
entries to LibBalsaMailbox::mindex, and modify it only in
mailbox.c; drop LB_MBOX_MESSAGE_COL, and use
libbalsa_mailbox_get_message instead.
* libbalsa/mailbox_mbox.c: do not relocate message_info structures,
so we can make msg_info->message a weak pointer; access them with a
GPtrArray; do not modify LibBalsaMailbox::mindex.
* src/main-window.c: more moderate close-icon on notbook tab.
2006-09-12 07:24 PeterB
* configure.in: remove spaces around '='.
2006-09-11 20:29 PeterB
* libbalsa/: libbalsa_private.h, mailbox.c, mailbox.h,
mailbox_local.c: use a sub-thread instead of an idle-handler for
getting messages; lock mailbox in libbalsa_mailbox_get_message.
* configure.in: report version of gtkhtml-3.x.
2006-09-04 00:32 PeterB
* libbalsa/libbalsa_private.h, libbalsa/mailbox.c,
libbalsa/mailbox.h, libbalsa/mailbox_imap.c,
libbalsa/mailbox_local.c, src/balsa-index.c: use an idle callback
in lbm_get_index_entry to handle getting messages; as a result, we
can simplify the API for prepare-threading.
2006-09-04 00:14 PeterB
* libbalsa/mailbox.c, libbalsa/mailbox_imap.c, libbalsa/message.c,
libbalsa/message.h, src/balsa-message.c,
src/balsa-mime-widget-message.c, src/sendmsg-window.c: implement
and use libbalsa_message_set_subject{,_from_header}; fix
canonize_header_value to handle non-ASCII white space.
2006-09-01 Albrecht Dreß <albrecht dot dress at arcor dot de>
* libbalsa/message.c: collapse whitespace into a single space.
2006-08-30 07:55 PeterB
* configure.in: build with autoconf-2.60.
2006-08-28 12:04 PeterB
* src/main-window.c: make notebook tabs reorderable with drag and
drop.
2006-08-27 16:35 PeterB
* libbalsa/: mailbox.c, mailbox_local.c: check for NULL message.
2006-08-27 Pawel Salek
* libbalsa/address.c: gtk_tree_store not updated until
gtk_tree_model loses focus (gtk2-2.8.20). Force it.
* libbalsa/mailbox.c: ... gtk-2.8 should be smart enough to detect
visible cells - no reason to spent time hinting it (hinting's slow
on large mailboxes).
2006-08-26 10:08 PeterB
* libbalsa/message.c: check for NULL headers.
2006-08-23 09:49 PeterB
* src/: sendmsg-window.c, sendmsg-window.h: replace three gbooleans
with a state variable, and use it to simplify "message has been
modified" dialog.
* libbalsa/: body.c, files.c: check for NULL body.
2006-08-22 Pawel Salek
* src/sendmsg-window.c: set identity for compose, Peter's way.
* libbalsa/identity.c: do not try unreffing NULL when adding new ident.
2006-08-14 13:07 PeterB
* src/sendmsg-window.c: restore setting identity in reply or
continuation.
2006-08-10 Pawel Salek
* src/sendmsg-window.c: do not use released memory.
2006-08-07 19:46 Pawel Salek
* src/sendmsg-window.c: add missing mailbox_close() call. Build fixes.
* src/balsa-mime-widget-message.c: Build fixes.
2006-08-07 Pawel Salek
* libbalsa/filter.c: use new content2reply().
* libbalsa/mailbox_local.c: ditto.
* libbalsa/message.[ch]: extra routines for header manipulation.
* libbalsa/mime.[ch]: content2reply accepts a message part now.
* src/balsa-message.c: aim at providing common ancestor to
LibBalsaMessage and LibBalsaMessageBody.
* src/balsa-mime-widget-message.[hc]: call reply to
embedded message.
* src/sendmsg-window.[hc]: some more related
refactoring. Implement reply to embedded message.
2006-08-06 Pawel Salek
* src/ab-window.c: use new Sendmsg API with better separation
between compose, reply, forward and continue.
* src/balsa-bonobo.c: ditto.
* src/balsa-index.c: ditto.
* src/balsa-mime-widget-message.c: prepare for replying embedded
messages.
* src/balsa-mime-widget-text.c: use new API.
* src/main{-window,}.c: ditto.
* src/message-window.c: ditto.
* src/sendmsg-window.[ch]: separate better different compose modes
so that implementation of replying to embedded messages becomes
easier.
2006-07-09 Albrecht Dreß <albrecht dot dress at arcor dot de>
* src/sendmsg-window.c: do not perform crypto on entire message.
2006-07-04 12:09 PeterB
* libbalsa/address.c: gtk_list_store_insert_with_values requires
gtk version 2.6.
2006-06-29 10:47 PeterB
* src/: balsa-index.c, balsa-mblist.c, balsa-message.c,
balsa-mime-widget-text.c, balsa-mime-widget.c, pref-manager.c:
clear face box instead of hiding it; gtk_object_sink is deprecated
in 2.10--use g_object_ref_sink if available.
2006-06-27 Pawel Salek
* Makefile.am: gnome specific macros not used any more.
* libbalsa/imap-server.c: use client-side sorting.
* libbalsa/mailbox_imap.c: set first_unread correctly.
* libbalsa/imap/imap-commands.c: implement client-side sorting.
* libbalsa/imap/imap-handle.[ch]: add CLIENT_SORT option.
* libbalsa/imap/imap_private.h: add the bit field to ImapMboxHandle.
2006-06-26 Pawel Salek
* libbalsa/mailbox_imap.c: use the synchronous STORE calls for now.
* libbalsa/mailbox_local.c: set first_unread more reliably.
* src/balsa-index.c: fix bug 345638.
* NEWS: release 2.3.13.
2006-06-25 Albrecht Dreß <albrecht dot dress at arcor dot de>
* src/: ab-window.c, ab-window.h: use a table to improve layout of
address selection dialog.
2006-06-22 Pawel Salek
* libbalsa/identity.c: fix a regression (patch from PB).
* libbalsa/address-entry.c: remove non-printable characters on
text paste (AD).
2006-06-17 Pawel Salek
* Makefile.am: do not include GNOME_Balsa.server in the tarball.
* balsa.spec.in: fedora builds do not require gmime.
* configure.in: prepare for release.
* libbalsa/identity.c: allow arbitrary sig file names so that
arguments can be passed to executable sigs.
2006-06-16 08:17 PeterB
* libbalsa/mailbox_imap.c: get mailbox lock before gdk lock.
2006-06-15 21:55 PeterB
* libbalsa/mailbox_local.c: drop the gdk lock before returning.
2006-06-01 10:57 PeterB
* libbalsa/mailbox_imap.c: free cache-manager.
* src/balsa-mblist.c: append subtree when appending exposed
unscanned node.
2006-05-31 09:43 PeterB
* libbalsa/filter-file.c, libbalsa/filter-funcs.c,
libbalsa/filter.c, libbalsa/filter.h, libbalsa/mailbox.c,
libbalsa/mailbox_local.c, src/balsa-index.c,
src/filter-edit-callbacks.c, src/filter-edit-dialog.c,
src/main-window.c: ref-count LibBalsaCondition instead of cloning.
* libbalsa/: mailbox_maildir.c, mailbox_mbox.c, mailbox_mh.c: free
mailbox info after closing mailbox-local.
2006-05-30 00:22 PeterB
* src/balsa-mime-widget-text.c: plug leak.
2006-05-29 15:56 PeterB
* libbalsa/: mailbox.c, mailbox.h: implement
LibBalsaMailbox::persistent_view_filter.
* src/: balsa-index.c, main-window.c: make flag view-filter
persistent, so we can restore it when closing a local mailbox.
* libbalsa/mailbox_local.c: restore persistent view-filter before
saving the tree when closing.
2006-05-26 Pawel Salek
* libbalsa/mailbox.c: sort IMAP mailboxes correctly (part of the
information returned by the imap server was ignored at this level).
* src/balsa-app.c: really respect the "remember passwd" check box.
* src/balsa-index.c: do not re-sort on index close.
2006-05-25 11:11 PeterB
* libbalsa/smtp-server.c: do not crash without
HAVE_SMTP_TLS_CLIENT_CERTIFICATE.
2006-05-20 Albrecht Dreß <albrecht dot dress at arcor dot de>
* src/balsa-icons.[hc]: Choose a better icon for the trash mailbox
when GNOME_STOCK_TRASH is unavailable.
* configure.in: remove stray '-' as reported by Jean-Luc Coulon.
2006-05-17 Pawel Salek
* libbalsa/imap/imap-commands.c: fix return codes of async routines.
* libbalsa/imap/imap{-handle,_private}.c: ditto.
* libbalsa/mailbox_imap.c: use changed return codes.
2006-05-15 Pawel Salek
* libbalsa/imap/imap-handle.c: reset idle_issued flag. handle
message-other right, this includes message/delivery-status.
* src/balsa-mime-widget.c: display message/delivery-status parts.
2006-05-14 10:46 PeterB
* src/sendmsg-window.c: make Yes the default response when user
closes unsaved compose window; add Cancel option when user closes
auto-saved compose window.
* src/sendmsg-window.c: unref, not free, a GObject.
2006-05-13 Pawel Salek
* libbalsa/mailbox_imap.c: use async interface for STORE commands.
* libbalsa/mailbox_mbox.c: do not use file_set_contents() on OSX.
* libbalsa/imap/imap-commands.c: async store_flag_a()
* libbalsa/imap/imap-commands.h: proper prototypes.
* libbalsa/imap/imap-handle.c: generalize IDLE response handlers
to general async command response handlers.
* libbalsa/imap/imap_private.h: provide support for handle locking
and asynchronous command handling.
* src/balsa-index.c: scroll first, fetch messages later.
2006-05-12 09:10 PeterB
* website/faq.html: restore website/faq.html, with a new entry for
format=flowed.
2006-05-09 Pawel Salek
* src/main.c: fix -a handling when GOption API is used.
2006-05-07 14:26 PeterB
* libbalsa/imap/imap-handle.c: add message_id to cache.
2006-05-03 Albrecht Dreß <albrecht dot dress at arcor dot de>
* libbalsa/mime.c: Improve recognition of multi-line URLs.
* libbalsa/misc.h: store a flag whether URL is in a flowed message.
* src/balsa-mime-widget-text.c: initialize this flag.
2006-04-25 Carlos Morgado <chbm gnome.org>
* libbalsa/address.c (addrlist_drag_drop_cb): fix broken cast on 64b
2006-04-21 09:46 PeterB
* libbalsa/mailbox.c: total message count can change while we're
working on the tree, so we save it and remove assertions.
2006-04-17 Pawel Salek
* libbalsa/address.[ch]: address list of edit vidget is now a drop
target.
* libbalsa/mailbox_imap.c: get rid of one RTT for simple messages.
* libbalsa/mailbox_mbox.c: silence spurious warnings on OSX.
* libbalsa/send.c: failure to send a message is an error.
* src/ab-main.c: support D&D and address lists.
2006-04-17 Kjartan Maraas <kmaraas@gnome.org>
* configure.in: Remove obsolete no_NO locale.
* po/no.po: And the translation.
2006-04-07 Carlos Morgado <chbm chbm.net>
* src/balsa-message.c (add_multipart_mixed): fix build without GPGME
2006-04-05 Albrecht Dreß <albrecht dot dress at arcor dot de>
* src/balsa-message.c: fix MDN syntax; add option to show all parts
inline.
2006-04-05 13:17 PeterB
* src/save-restore.c: do not save UNSET show or subscribe values.
2006-04-01 09:52 PeterB
* src/pref-manager.c: do not crash if address book changes are
applied after pref manager is closed.
* src/address-book-config.c: allow only one dialog per address
book.
* libbalsa/mailbox.c: don't clear counts until we know they're
wrong.
2006-03-27 07:55 PeterB
* src/main-window.c: cut down console messages.
* src/balsa-mblist.c: if mailbox isn't subscribed for checking,
don't notify user about new mail and don't emit BalsaMBList signal.
2006-03-24 Albrecht Dreß <albrecht dot dress at arcor dot de>
* libbalsa/libbalsa.c: proper regex's for highlighting quoted
lines.
* configure.in: libesmtp sometimes needs -lpthread.
2006-03-24 08:44 PeterB
* libbalsa/smtp-server.c: build without
HAVE_SMTP_TLS_CLIENT_CERTIFICATE.
* libbalsa/mime.c: include ctype header file.
* src/balsa-mblist.c: unref the correct object; hold gdk lock while
closing mbnode.
2006-03-23 Pawel Salek
* libbalsa/send.c: report MAIL FROM SMTP command errors.
2006-03-21 Pawel Salek
* libbalsa/mi{me,sc}.c: move PCRE dependency to mime.c
* libbalsa/mailbox.c: copy the "deleted" flag as well (Emanuel).
2006-03-18 Pawel Salek
* libbalsa/libbalsa.[hc]:
* libbalsa/misc.[hc]: move library-dependent stuff to libbalsa.c.
2006-03-17 Pawel Salek
* configure.in: create separately list of balsa-ab libraries (12
libs removed). Albrecht Dreß fixed detection of buggy gpgme.
* src/Makefile.am: use it.
* libbalsa/libbalsa.[hc]:
* libbalsa/misc.[hc]: move object-independent stuff to misc.c.
* libbalsa/mailbox_pop3.c: include misc.h
* src/ab-main.c: register only used objects.
2006-03-16 19:56 PeterB
* libbalsa/mailbox.c: notify Gtk when msgno changes.
2006-03-09 Pawel Salek
* libbalsa/address-book-ldap.c: use openldap-2.3.x compatible API.
* libbalsa/libbalsa.c: the same.
* libbalsa/imap/imap-handle.c: treat OpenSSL errors as critical.
* src/balsa-mblist.c: don't be mad if an icon is not found.
2006-03-08 10:40 PeterB
* src/main-window.c: ensure visible message after changing view
filter.
2006-03-06 Ahmad Riza H Nst <rizahnst@eriagempita.co.id>
* configure.in: Added "id" (Indonesian) to the ALL_LINGUAS line
2006-03-05 10:23 PeterB
* libbalsa/mailbox.c, libbalsa/mailbox.h, src/balsa-index.c: check
whether user closed mailbox during long view-filter update.
2006-03-04 Pawel Salek
* libbalsa/mailbox_mbox.c: do not reference freed memory.
* NEWS, configure.in: release 2.3.12.
2006-02-28 Pawel Salek
* src/balsa-app.c: check mbnode fetched by gtk_tree_model_get()...
* src/balsa-mblist.c: ... fixing bug 332980.
* NEWS, configure.in: release 2.3.11.
2006-02-27 Albrecht Dreß <albrecht dot dress at arcor dot de>
* src/sendmsg-window.c: explicitly update gpg-mode when identity is
changed, as apparently the callback is now called only when the
check-button's state is changed.
2006-02-26 19:28 PeterB
* src/balsa-index.c: scroll to ensure a visible message only if
there isn't one.
* doc/C/balsa.xml, src/pref-manager.c: arrange the help file to
match the new prefs window; use section titles instead of notebook
page numbers to locate help sections.
2006-02-25 13:56 PeterB
* src/: balsa-index.c, balsa-index.h, main-window.c: implement
balsa_index_ensure_visible, and use it.
* src/main.c: set GNOME_PARAM_APP_DATADIR.
* libbalsa/address-book-ldap.c, libbalsa/address-book.c,
src/address-book-config.c, src/pref-manager.c: give user control
over LibBalsaAddressBook::is_expensive.
* src/balsa-index.c: try to leave messages showing after changing
view filter.
2006-02-15 Pawel Salek
* libbalsa/html.c: silence printf().
* libbalsa/{message,mailbox_mbox}.c: remove remains of msg counting.
* libbalsa/mailbox_imap.c: fix a crash in low index selection on
cache restore (spotted by PeterB).
* libbalsa/imap/imap-commands.c: check more return codes.
* libbalsa/imap/imap-{handle,search}.c: ditto.
2006-02-21 10:53 PeterB
* src/balsa-mblist.c: hide title and make column natural size when
using single column.
2006-02-20 22:51 PeterB
* src/: sendmsg-window.c, sendmsg-window.h: save reflow widget in
BalsaSendmsg, in case user opens multiple windows.
2006-02-19 12:39 PeterB
* src/balsa-mblist.c, libbalsa/mailbox.c: show count of hidden
messages on status bar; show only non-zero counts.
* src/balsa-message.c: make sure widget can focus.
2006-02-18 15:31 PeterB
* src/sendmsg-window.c, libbalsa/address-entry.c,
libbalsa/address-entry.h: use Escape instead of ctrl+R for manual
address completion.
* libbalsa/address-book-ldap.c: make LDAP address book expensive.
* src/pref-manager.c: edit address book on row-activated; add
closure to add_button_to_box.
2006-02-18 Albrecht Dreß <albrecht dot dress at arcor dot de>
* src/balsa-mime-widget-text.c: fix bug 330093 -- 'copy URL' when
right-clicking one in a mail.
2006-02-17 21:26 PeterB
* src/: balsa-message.c, balsa-message.h,
balsa-mime-widget-callbacks.c, main-window.c, main-window.h:
one-key mail reading using space bar.
* src/main.c: drop gdk lock before syncing mailboxes.
* src/mailbox-node.c: check mailbox in an idle handler.
* src/balsa-index.c: use the gdk lock to control access to
LibBalsaMailbox::msg_tree.
* libbalsa/: libbalsa.c, libbalsa.h, mailbox.c, mailbox.h,
mailbox_imap.c, mailbox_local.c: use the gdk lock to control access
to LibBalsaMailbox::msg_tree.
2006-02-15 Pawel Salek
* balsa.desktop.in: Terminal=0 -> Terminal=false
* libbalsa/rfc3156.c: failed gpg execution is warning, not just info
(Albrecht Dreß).
2006-02-13 22:42 PeterB
* src/: balsa-mblist.c, balsa-icons.c, balsa-icons.h: use icon-name
GtkTreeViewColumn attribute.
* src/: balsa-index.c, balsa-index.h, main-window.c,
message-window.c: reset view filter to show unread message.
* src/pref-manager.c: move message-window group to display-options
page; move format group to character-set page and rename page.
* src/balsa-mblist.c: unref pixbufs; dup string only when
necessary.
2006-02-12 15:11 PeterB
* src/pref-manager.c: let lists expand vertically.
* src/pref-manager.c: align controls.
* src/pref-manager.c: try to fill pages, as per HIG.
2006-02-11 15:32 PeterB
* src/balsa-mblist.c: show unread count in parentheses when not
showing info columns.
2006-02-10 08:22 PeterB
* src/: balsa-app.c, balsa-index.c: check for NULL index.
2006-02-09 13:11 PeterB
* libbalsa/misc.c: disable bracket-checking.
2006-02-07 07:29 PeterB
* src/balsa-mblist.c: schedule only one idle callback at a time;
move UI update to idle callback.
* libbalsa/mailbox_local.c: clear total when restore-tree fails.
2006-02-06 15:46 PeterB
* src/main-window.c: use NULL instead of empty string when it will
be translated.
* src/pref-manager.c: move utf8 out of translated string.
* src/balsa-index.c: fix another typo in earlier commit.
* libbalsa/rfc3156.c: fix typo in previous commit.
* libbalsa/gmime-gpgme-signature.c, libbalsa/mailbox_pop3.c,
libbalsa/misc.c, libbalsa/rfc3156.c, po/POTFILES.in,
src/balsa-index.c, src/save-restore.c, src/sendmsg-window.c,
src/spell-check.c: fix strings--bug 330085.
2006-02-05 21:18 PeterB
* src/pref-manager.c: hide notebook borders and remove extra
border-width.
2006-02-05 Carlos Morgado <chbm gnome.org>
* src/pref-manager.c (pspell_settings_group): fix pedantic pspell build
2006-02-05 Albrecht Dreß <albrecht dot dress at arcor dot de>
* src/pref-manager.c: use unicode for special characters; let
gtk-label wrap lines.
2006-02-04 12:24 PeterB
* libbalsa/misc.c: plug object leak.
* src/pref-manager.c: plug widget leak.
2006-02-03 22:04 PeterB
* src/pref-manager.c: use tree control instead of nested notebooks.
* src/mailbox-conf.c: less ugly alignment.
2006-02-03 Pawel Salek
* libbalsa/smtp-server.c: include misc.h for libbalsa_create_label.
2006-02-01 20:30 PeterB
* src/address-book-config.c, src/balsa-app.c, src/balsa-app.h,
src/balsa-index.c, src/folder-conf.c, src/mailbox-conf.c,
libbalsa/identity.c, libbalsa/misc.c, libbalsa/misc.h,
libbalsa/smtp-server.c: more consistent dialogs.
* libbalsa/mailbox_mbox.c: use cache file to speed up
mailbox-check.
* src/mailbox-conf.c: create only one dialog for new mailbox and to
modify POP3 mailbox.
* src/mailbox-conf.c: check for NULL mailbox.
2006-01-29 20:39 PeterB
* libbalsa/message.c: avoid infinite recursion.
* src/balsa-index.c, src/balsa-index.h, src/balsa-mblist.c,
src/balsa-mblist.h, src/mailbox-conf.c, src/main-window.c,
src/main.c, src/save-restore.c, libbalsa/mailbox.c,
libbalsa/mailbox.h: next-unread chains to all mailboxes with unread
mail.
* libbalsa/message.c: encode broken headers before passing them to
GMime for decoding.
2006-01-29 Pawel Salek
* NEWS: release 2.3.10.
* src/sendmsg-window.c: parent error dialog properly. gtk-2.4.x
compatibility. Do not crash referencing NULL bsmsg->charset in
is_charset_ok() when the first entry to this function was
cancelled by user.
2006-01-28 22:14 PeterB
* src/sendmsg-window.c: don't try to set NULL language for
spell-checking; remember if user set utf8.
2006-01-27 Albrecht Dreß <albrecht dot dress at arcor dot de>
* libbalsa/misc.c: a new attempt for proper quote highlighting
re's in the composer.
* src/balsa-mime-widget-text.c: fixed the never ending highlighting.
* libbalsa/rfc3156.c: remove gnome dependency.
* configure.in: mime icon install configuration.
* images/Makefile.am: ditto.
2006-01-26 05:42 PeterB
* src/sendmsg-window.c: leave draft-message nonNULL.
2006-01-24 Pawel Salek
* src/main.c, src/ab-main.c: achieve compatibility with
libgnome-devel-2.13.7 (bug 178650).
2006-01-24 12:17 PeterB
* libbalsa/mailbox.c: update view-filter before setting threading.
* src/filter-run-callbacks.c: scroll to selected filter.
2006-01-23 19:02 PeterB
* libbalsa/mailbox_mbox.c: check cache file more carefully; better
buffering in readln.
* src/sendmsg-window.c: initialize retval.
2006-01-22 20:49 PeterB
* src/: sendmsg-window.c, sendmsg-window.h: simpler
utf8-confirmation; delete draft message if it was auto-saved but
not user-saved.
2006-01-22 PeterB, Albrecht Dreß <albrecht dot dress at arcor dot de>
* src/sendmsg-window.c: dialogs suggested by Mişu Moldovan <dumol
at gnome dot ro>.
2006-01-22 14:30 PeterB
* libbalsa/mailbox_mbox.c: use our own rdline function.
* libbalsa/mailbox_mbox.c: step to a From_ line before parsing.
* libbalsa/mailbox.c: prepare parent messages for threading as well
as siblings.
2006-01-20 11:15 PeterB
* src/sendmsg-window.c: restore state only for continued messages.
* src/: sendmsg-window.c, sendmsg-window.h: fix saving and
restoring spell-checker state when postponing; build
--without-gtkspell.
2006-01-19 23:27 PeterB
* src/sendmsg-window.c: save format=flowed or fixed, and
spell-check-language, when postponing a message.
2006-01-18 14:36 PeterB
* libbalsa/: mailbox_local.c, mailbox_local.h, mailbox_maildir.c,
mailbox_mbox.c, mailbox_mh.c: don't set first-unread to a deleted
message; check recent messages for message/partial; load-message is
a LibBalsaMailboxLocal method; prepare all recent messages for
threading.
* src/main.c: reset LibBalsaProgress when we're done with the
progress bar.
2006-01-17 13:45 PeterB
* src/balsa-index.c: scroll-on-open immediately, not in idle
handler.
2006-01-16 18:09 PeterB
* src/main.c: re-enable updating progress bar from a subthread,
using gdk lock.
* libbalsa/mailbox_local.c: downgrade information messages to
debug.
* libbalsa/libbalsa.h: fix mangled comment.
* src/balsa-index.c: schedule only one idle callback when mailbox
is changed.
* libbalsa/libbalsa.h, src/main.c: use symbolic constants; disable
updating progress bar from a subthread.
2006-01-15 Albrecht Dreß <albrecht dot dress at arcor dot de>
* libbalsa/message.h, libbalsa/send.c, src/sendmsg-window.c: save
and restore crypto and MDN settings when postponing and continuing.
2006-01-14 19:20 PeterB
* src/: balsa-index.c, main-window.c: no need to prepare
threading--mailbox code takes care of caching info.
* libbalsa/mailbox.c: show progress when filtering-on-reception.
* libbalsa/mailbox_local.c, src/main.c: use new LibBalsaProgress
api.
* libbalsa/mailbox.c: copy flags when copying message instead of
getting message; show progress when reassembling message/partial;
use new LibBalsaProgress api.
* libbalsa/: libbalsa.c, libbalsa.h: simplify LibBalsaProgress and
make it more opaque.
2006-01-13 22:15 PeterB
* libbalsa/mailbox.c, libbalsa/mailbox_local.c, src/balsa-index.c,
src/main-window.c, src/main.c: simplify progress bar updates; use
it for filtering.
* libbalsa/mailbox_mbox.c: save mailbox info with glib < 2.8;
disable debug output.
2006-01-14 Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
* configure.in: Add "zh_HK" to ALL_LINGUAS.
2006-01-12 12:08 PeterB
* libbalsa/mailbox.c: must use get-message to get the flags.
2006-01-11 15:45 PeterB
* src/balsa-mime-widget-text.c: one more.
* src/balsa-mime-widget-text.c: use glib's type conversion macros
for gint <=> gpointer.
* src/sendmsg-window.c: build with gcc < 4.1.
* libbalsa/mailbox_mbox.c: better: use %zd format specifier.
* libbalsa/mailbox_mbox.c: cast value to gint for g_print.
* libbalsa/: mailbox.c, message.c: reset stream after loading
envelope.
* libbalsa/mailbox.c: reset stream before adding message.
* src/: main-window.c, toolbar-factory.c: add optional toolbar
button for expunge.
* src/pref-manager.c, src/save-restore.c, libbalsa/smtp-server.c,
libbalsa/smtp-server.h: implement and use
libbalsa_smtp_server_add_to_list--deletes existing server if new
name is a duplicate.
* libbalsa/mailbox_mbox.c: don't include From_ line in message
length.
2006-01-10 23:43 PeterB
* libbalsa/message.c: set message->size from
g_mime_stream_length().
* src/main.c: use g_idle_add and data instead of g_io_add_watch and
pipes.
* src/main-window.c, src/main-window.h: set progress text in status
bar; run main loop only if needed.
* libbalsa/mailbox_mbox.c: save and restore message info.
* src/balsa-index.c: prepare threading/sorting before setting
non-flags-only filter.
* libbalsa/mailbox_local.c: cache file is not created for empty
mailbox.
* libbalsa/mailbox.c: use progess bar when copying messages.
* src/balsa-index.c, src/main-window.c, src/main-window.h,
src/main.c, libbalsa/libbalsa.c, libbalsa/libbalsa.h: use progress
bar to show fractional progress; implement wrappers for libbalsa;
use it when preparing for threading/sorting.
* libbalsa/: mailbox.c, mailbox_local.c, mailbox_maildir.c,
mailbox_mbox.c, mailbox_mh.c: simplify local mailbox caching; use
progress bar.
* src/information-dialog.c: do not stack status-bar messages.
* libbalsa/: mime-stream-shared.c, mime-stream-shared.h: shared
lock for LibBalsaMimeStreamShared.
2006-01-10 Albrecht Dreß <albrecht dot dress at arcor dot de>
* libbalsa/misc.c, libbalsa/misc.h, src/balsa-mime-widget-text.c,
src/sendmsg-window.c, src/sendmsg-window.h: configure GtkSourceView
with default=no; use it for hacker-highlighting and multi-level
undo.
2006-01-09 10:49 PeterB
* src/balsa-message.c: g_return_* argument must not have
side-effects.
2006-01-06 Pawel Salek
* configure.in, NEWS: release 2.3.9.
2006-01-06 08:48 PeterB
* src/main-window.c: check that Balsa didn't quit.
2006-01-05 Albrecht Dreß <albrecht dot dress at arcor dot de>
* configure.in: GnuPG encryption is stable.
2006-01-05 20:35 PeterB
* libbalsa/mailbox.c: always set tree-changed if msgno is removed.
* libbalsa/misc.c: check for anonymous tag.
2006-01-04 20:48 PeterB
* libbalsa/address.c: don't use InternetAddress::name if it's
non-NULL but empty.
* libbalsa/: mailbox.c, mailbox.h, mailbox_imap.c, mailbox_local.c:
new member LibBalsaMailbox::msg_tree_changed; use it to save tree
only when needed; manage mailbox->view_filter in mailbox.c.
2006-01-03 22:27 PeterB
* libbalsa/libbalsa.c: more careful mailbox lock.
2006-01-01 14:10 PeterB
* src/: balsa-app.h, sendmsg-window.c: build without GTKSPELL.
2006-01-01 Carlos Morgado <chbm gnome.org>
* src/sendmsg-window.c, src/balsa-app.h:
fix build without GTKSPELL
(first commit!!)
2005-12-31 09:27 PeterB
* libbalsa/mailbox_local.c: set first-unread when restoring the
tree.
* src/balsa-index.h: deadwood.
2005-12-31 08:01 Albrecht Dreß <albrecht dot dress at arcor dot de>
* src/: sendmsg-window.c, sendmsg-window.h: keep spell-check
menu-item consistent with toolbar button.
2005-12-30 12:15 PeterB
* libbalsa/mailbox_local.c: downgrade warnings to messages and make
them more people-friendly.
2005-12-29 20:16 PeterB
* src/: balsa-app.c, balsa-app.h, save-restore.c, sendmsg-window.c:
handle GtkSpell errors; reattach spell-checker when language is
changed; spell-checker language persists until spell-checking is
disabled.
* libbalsa/mailbox_local.c: special-case flags-only view-filter;
prepare threading for all messages in the mailbox.
2005-12-28 07:39 PeterB
* libbalsa/imap-server.c: lock imap-servers before checking for
non-NULL.
2005-12-28 Pawel Salek
* libbalsa/imap-server.c: yet another shot at portable mutex
locking.
2005-12-27 16:25 PeterB
* libbalsa/imap-server.c: do not try to lock when no servers have
been created.
* libbalsa/mailbox_mbox.c: make sure message is cached at
mailbox-local and mailbox levels.
2005-12-27 Pawel Salek
* configure.in, NEWS: release 2.3.8.
2005-12-27 12:33 PeterB
* libbalsa/: imap-server.c, server.c: build with gcc-4.1.
* libbalsa/mailbox_local.c: check msgno before accessing array.
2005-12-26 23:22 PeterB
* src/balsa-index.c: remove unnecessary gdk_threads_{leave,enter};
undo SOS filter before closing, so we save the tree that we need
when reopening.
* libbalsa/mailbox_local.c: cache sender for filtering;
save-tree-file with one record is OK.
* libbalsa/mailbox_local.c: use g_file_set_contents when available.
2005-12-25 18:50 PeterB
* libbalsa/mailbox.c: disable some time-consuming sanity checks.
* libbalsa/mailbox_local.c: more robust, less time-consuming tree
file checking.
2005-12-24 23:31 PeterB
* src/: balsa-index.c, balsa-index.h: scroll in an idle handler;
use prepare-theading.
* libbalsa/: mailbox.c, mailbox.h, mailbox_imap.c, mailbox_local.c,
mailbox_local.h, mailbox_maildir.c, mailbox_mbox.c, mailbox_mh.c:
save and restore sorted and threaded view.
2005-12-23 22:02 PeterB
* libbalsa/address-book.c, src/balsa-mime-widget-callbacks.c,
src/print.c: harmonize strings.
* src/balsa-message.c, libbalsa/identity.c, libbalsa/misc.c,
libbalsa/send.c, src/sendmsg-window.c: fix strings (Mişu Moldovan)
and comment them (Jean-Luc Coulon).
2005-12-19 07:22 PeterB
* src/balsa-mime-widget.c: lock a GMimeStream.
2005-12-18 Pawel Salek
* libbalsa/mailbox_imap.c(find_duplicates): do not send UID=0.
* libalsa/mailbox.c: attempting to expunge read-only mboxes would
be a waste of time.
2005-12-15 Pawel Salek
* libbalsa/send.c: use proper time zone in Date: (bug 323871).
* src/balsa-index.c: disconnect "selection-changed" handler
explicitely - do not trash on mbox close with gtk2-2.8.9.
2005-12-13 08:03 PeterB
* src/: sendmsg-window.c, sendmsg-window.h: fix bug 323871; clean
up undo/redo.
2005-12-11 18:14 PeterB
* src/mailbox-conf.c: use new api for
libbalsa_mailbox_local_set_path.
* libbalsa/: mailbox_maildir.c, mailbox_maildir.h, mailbox_mbox.c,
mailbox_mbox.h, mailbox_mh.c, mailbox_mh.h: implement check-files
and set-path methods; simplify new and get-message methods;
fixes bug 323448.
* libbalsa/: mailbox_local.c, mailbox_local.h: new class methods
check-files and set-path; change api for
libbalsa_Mailbox_local_set_path.
* libbalsa/: mailbox_local.c, mailbox_mh.c, mailbox_mh.h,
message.c: fix bug 323448.
* src/: toolbar-factory.h, toolbar-prefs.h: remove some obsolete
defines and replace some others with an enum.
2005-12-09 Jens Granseuer
* src/sendmsg-window.c: compile with gcc-2.95 (bug 323617).
* libbalsa/send.c: compile --without-smtp (bug 323618).
* src/sendmsg-window.c: compile --without-gtkspell (PS).
2005-12-08 07:43 PeterB
* src/: save-restore.c, sendmsg-window.c: remember spell-check
state when using GtkSpell (Marcin Deranek, bug 323458).
* src/pref-manager.c: no spell-check options when using GtkSpell.
* src/: balsa-app.c, balsa-app.h: spell-check members are
conditional on HAVE_GTKSPELL.
2005-12-07 Pawel Salek
* libbalsa/identity.c: fix a warning with gcc-3.4.x
* libbalsa/mailbox_imap.c: use proper arguments to the
server-changed signal, fixing a possible crash on server settings'
update.
2005-12-07 13:35 PeterB
* src/filter-run-callbacks.c: fix bug 323442.
2005-12-04 Pawel Salek
* NEWS: release 2.3.7.
2005-12-03 Pawel Salek
* balsa.spec.in: require gmime-2.1.17.
* libbalsa/{imap-,smtp-,}server.c: clean up saving the config,
enable anonymous access.
* libbalsa/server.h: add try_anonymous field and config-changed
signal.
* libbalsa/mailbox_imap.c: ditto.
* libbalsa/imap/imap-handle.[hc]: respect name space.
* src/balsa-app.c: respect "remember password" checkbox in the
password dialog.
* src/balsa-index.c: remove redundant scroll_to_cell() call.
* src/{folder,mailbox}-conf.c: config anonymous access.
* src/mailbox-node.c: listen to "config-changed" signal.
* src/save-restore.c: the same.
* doc/C/balsa.xml: document anonymous access.
2005-11-28 15:19 PeterB
* src/balsa-message.c, src/sendmsg-window.c, libbalsa/filter.c,
libbalsa/mailbox_local.c, libbalsa/message.c, libbalsa/message.h,
libbalsa/send.c: implement and use accessors for user-headers.
2005-11-27 08:34 PeterB
* libbalsa/identity.c: GtkFileChooserButton requires gtk version
2.6.
2005-11-26 16:35 PeterB
* libbalsa/mailbox_mbox.c: don't leak message.
* libbalsa/mailbox_pop3.c: adjust total size for skipped messages.
2005-11-26 Pawel Salek
* libbalsa/identity.c: add missing #include "misc.h"
* libbalsa/mailbox_pop3.c: handle procmail-filtered messages.
* src/main-window.[hc]: fix a regression: set right default view
filter for sentbox.
* src/balsa-index.c:
* src/balsa-mblist.c: ditto.
2005-11-19 08:47 PeterB
* src/balsa-index.c: don't scroll back to current message after
mailbox changes.
* src/sendmsg-window.c: create Face or X-Face user header from path
in identity.
* src/balsa-message.c: display face from Face or X-Face header.
* libbalsa/send.c: use user-headers correctly.
* libbalsa/: misc.c, misc.h: new public methods
libbalsa_get_image_from_{,x_}face_header and a corresponding GError
domain.
* libbalsa/: identity.c, identity.h: port signature-path to
GtkFileChooserButton; add Face and X-Face header file paths; change
some prototypes to reduce dynamic casting.
* configure.in: new configure option --with-compface=no.
* acinclude.m4: stop some autotool whining.
2005-11-09 19:11 PeterB
* libbalsa/: mailbox.c, mailbox.h, mailbox_imap.c,
mailbox_maildir.c, mailbox_mbox.c, mailbox_mh.c, mailbox_pop3.c,
message.c, message.h, send.c: change LibBalsaMailbox add-message
method to take a GMimeStream and LibBalsaMessageFlag instead of a
message; move libbalsa_mailbox_copy_message to message.c and rename
libbalsa_message_copy; use new add-message method in mailbox-pop3.
2005-11-06 21:15 Pawel Salek
* libbalsa/mailbox_pop3.c: use Mh temporary mailbox until an
add_message_from_stream() method is implemented.
2005-11-06 13:42 PeterB
* libbalsa/mailbox_mh.c: implement load-config method; use
g_mkstemp to make temporary files; sync mailbox even if
.mh_sequences doesn't exist.
* libbalsa/mailbox_pop3.c: use g_file_open_tmp to open the temp
file.
2005-11-06 Pawel Salek
* libbalsa/mailbox_pop3.c: last commit broke direct Pop delivery -
fix it.
* src/sendmsg-window.c: fix compilation without GtkSpell.
* Makefile.am: make variables must start in the first column.
2005-11-05 17:15 PeterB
* src/Makefile.am: define balsa_gtkspell_extra_dist before using
it.
* configure.in, src/Makefile.am, src/sendmsg-window.c,
src/sendmsg-window.h, src/toolbar-factory.c: new configure option
--with-gtkspell, default = no.
* src/main-window.c: don't clip close-button icon.
2005-11-04 18:53 PeterB
* configure.in: gtkhtml3 has yet another version: 3.8.
2005-11-02 Pawel Salek
* libbalsa/mailbox_pop3.c: no need to update config; fix memory leaks.
* src/save-restore.c: "config-updated" signal does not exist any more.
2005-10-30 07:54 PeterB
* src/sendmsg-window.c: do not mark forwarded message as answered.
2005-10-29 Pawel Salek
* src/main-window.[ch]: iron out problems with the last patch
* src/balsa-index.c: and switching between different mboxes.
2005-10-29 Pawel Salek
* libbalsa/mailbox_imap.c: last commit could trigger recursive
searches under certain circumstances. Do it differently.
* libbalsa/mailbox.c: more information about move errors.
* libbalsa/imap/imap-auth.c: AUTH={PLAIN,ANONYMOUS} implemented.
* libbalsa/imap/imap-handle.[hc]: anon support.
* libbalsa/imap/imap-search.c: fix a bug in searching.
* libbalsa/imap/imap_private.h: add enable_anonymous and
enable_binary fields.
* libbalsa/imap/pop3.c: minor cleanup.
* src/balsa-index.[hc]: extend SoS filter.
* src/main-window.[hc]: related changes.
2005-10-28 Pawel Salek
* libbalsa/mailbox_imap.c: fix unread msg counts on concurrent mbox
access.
2005-10-28 06:37 PeterB
* src/: sendmsg-window.c, sendmsg-window.h: use separate members
for the message we're replying to, and the draft message we saved.
* libbalsa/mailbox_local.c: reverse a loop.
* libbalsa/mailbox_mbox.c: look for appended messages in the
correct place; always save the from-offset as the start of the
message.
2005-10-27 17:56 PeterB
* src/save-restore.c: set filters-trash-mbox.
2005-10-23 Pawel Salek
* NEWS, configure.in: release 2.3.6
2005-10-19 Pawel Salek
* libbalsa/imap/imap-tls.c: be compatible with openssl-0.9.8.
* libbalsa/libbalsa-conf.c: fix memory leaks.
2005-10-14 06:53 PeterB
* libbalsa/mailbox.c: check for NULL user-data.
2005-10-10 Pawel Salek
* libbalsa/imap-server.c: distinguish between failed and cancelled
authentication.
* libbalsa/libbalsa.h: add cancelled authentication error code.
* libbalsa/mailbox_imap.c: handle better errors in ::add_message.
* libbalsa/imap/imap-auth.c, auth-{cram,gssapi}.c: cancelled vs failed.
* libbalsa/imap/libimap.h: add apriopriate error code.
* src/balsa-index.c: do not retry if the authentication was cancelled.
* src/sendmsg-window.c:
* src/spell-check.c: parent properly spell checking error messages.
2005-10-07 11:25 PeterB
* libbalsa/libbalsa-conf.c: fix bug 318171.
* src/: filter-edit-callbacks.c, save-restore.c: improve language,
per Craig Routledge.
2005-10-06 19:22 PeterB
* libbalsa/mailbox.c: sanity check.
* src/: filter-edit-callbacks.c, filter-edit-dialog.c: fix various
sensitivity problems, including one that blocked deleting the last
filter.
2005-09-29 13:01 PeterB
* libbalsa/body.c, libbalsa/body.h, libbalsa/misc.c,
libbalsa/misc.h, src/balsa-message.c,
src/balsa-mime-widget-callbacks.c, src/sendmsg-window.c: fix bug
317240: use mode 0666 to save attachments.
2005-09-28 23:06 PeterB
* doc/C/balsa.xml: update identities doc.
* doc/C/balsa.xml: document per-identity SMTP server and message
splitting.
2005-09-27 20:31 PeterB
* src/: balsa-message.c, main-window.c: move BalsaMessage show/hide
to balsa-message.c; fix a startup visual glitch.
* src/main-window.c: hide irrelevant scrollbar--thanks to Sebastian
Zerbe.
* libbalsa/mailbox_mbox.c: write separating newline before
appending new message, not after.
* libinit_balsa/balsa-druid-page-directory.c: manage
LibBalsaMailbox::no_reassemble.
* src/mailbox-node.c, src/save-restore.c, libbalsa/mailbox.c:
manage and use LibBalsaMailbox::no_reassemble; check for a
message/partial part that has been wrapped in a multipart/*
message.
* libbalsa/mailbox.h: new member LibBalsaMailbox::no_reassemble,
used to distinguish outbox.
* libbalsa/rfc3156.c: check that a GMimeMultipartSigned has both
its subparts.
2005-09-22 10:28 PeterB
* libbalsa/: mailbox.c, mailbox_imap.c, mailbox_maildir.c,
mailbox_mbox.c, mailbox_mh.c: update parent style when child is
read.
* libbalsa/body.c: allow saving non-GMimePart message parts.
2005-09-20 23:05 PeterB
* libbalsa/: mailbox.c, mailbox_mbox.c, send.c: implement message
fragmentation and reconstruction using "message/partial" mime type.
* libbalsa/: smtp-server.c, smtp-server.h: add guint
LibBalsaSmtpServer::big_message and manage it in the dialog.
2005-09-20 Pawel Salek
* libbalsa/imap/imap-handle.c: handle lack of headers.
* NEWS, configure.in: release 2.3.5
2005-09-15 10:12 PeterB
* libbalsa/: mailbox.c, mailbox.h, mailbox_mbox.c: fix unthreaded
build.
2005-09-14 Craig Routledge
* doc/C/balsa.xml: update compose window file attaching doc.
2005-09-13 Pawel Salek
* libbalsa/mailbox_imap.c: return correctly TRUE/FALSE on success.
* src/spell-check.c: unavailable word list is a critical error.
2005-09-13 09:36 PeterB
* libbalsa/: mailbox.c, mailbox.h, mailbox_mbox.c: implement
lock_store class method and public functions.
* src/balsa-index.c, libbalsa/body.c,
libbalsa/gmime-part-rfc2440.c, libbalsa/html.c, libbalsa/message.c,
mailbox_imap.c, mailbox_maildir.c, mailbox_mh.c,
libbalsa/rfc3156.c, libbalsa/send.c, libbalsa/source-viewer.c,
src/balsa-message.c: lock the mail store instead of a GMimeStream,
to avoid unnecessary IMAP fetches.
2005-09-11 Carlos Morgado <chbm gnome.org>
* po (Module): update for stats
2005-09-06 Pawel Salek
* configure.in: SuSE changes broke FC. Negotiate a common solution.
2005-09-05 Pawel Salek
* configure.in: merge SuSE kerberos path fixes.
* libbalsa/body.[hc]: provide more info on error in save(),
save_fd(), save_temporary(), get_content() and get_stream().
* libbalsa/libbalsa.h: add MAILBOX_ACCESS_ERROR code.
* libbalsa/mailbox.[ch]: get_message_part() sets GError.
* libbalsa/mailbox_{imap,local}.c: modify implementation accordingly.
* libbalsa/{message,mime}.c: adjust to changed API.
* src/balsa-message.c: ditto.
* src/balsa-mime-widget-{callbacks,message,text}.c:
* src/balsa-mime-widget.c: ditto.
* src/print.c:
* src/sendmsg-window.c: ditto when forwarding message.
2005-09-01 11:04 PeterB
* src/pref-manager.c: connect file-chooser signal in an idle
handler, after the chooser is initialized; test whether user
changed window-layout; update toolbars if necessary.
2005-08-28 11:29 PeterB
* src/balsa-index.c: simpler fix.
* src/balsa-index.c: redisplay current message if filtering cleared
it.
2005-08-25 19:55 PeterB
* src/pref-manager.c: fix spacing.
2005-08-25 Pawel Salek
* configure.in: support selection of the preferred GtkHtml widget.
* README: matching description.
* libbalsa/address-book-ldap.[ch]: support arbitrary locations of
the private address book.
* libbalsa/send.c: handle informatively errors of DATA command.
* src/ab-window.c: fix reload action.
* src/address-book-config.c: support extended LDAP config.
* src/balsa-index.c: "Run" is the default action of "Pipe through"
2005-08-22 07:46 PeterB
* doc/C/balsa.xml: cleanup.
* src/toolbar-factory.c: set button label and tooltip
appropriately.
2005-08-21 Jens Seidel <jseidel@cvs.gnome.org>
* src/filter-export-callbacks.c:
* macros/gnome-bonobo-check.m4:
* libbalsa/mailbox_mbox.c: Fixed the typo "occured"
(also in all effected PO files to avoid fuzzyness)
2005-08-21 09:04 PeterB
* doc/C/: balsa.xml, figures/message-window.png,
figures/msg-part-select.png: message window documentation
contributed by Craig Routledge <webstuff at craigroutledge dot
cm,dom>; fix "unmatched element" warnings.
2005-08-17 19:03 PeterB
* src/balsa-app.c: free filters after destroying mailboxes (fixes a
crash-on-exit).
2005-08-04 14:14 PeterB
* src/filter-run-callbacks.c, src/filter-run-dialog.c,
src/filter-run.h, doc/C/balsa.xml: use separate "apply" buttons for
selected available filters and for mailbox filters.
2005-08-01 09:35 PeterB
* src/sendmsg-window.c: better fix for bug 312105; plug memory
leak.
2005-07-31 22:26 PeterB
* src/sendmsg-window.c: fix bug 312105.
* src/sendmsg-window.c: fix bug 312091.
2005-07-29 09:52 PeterB
* src/: balsa-mime-widget-text.c, sendmsg-window.c: fix some gcc
nitpicking.
2005-07-27 18:54 PeterB
* libbalsa/libbalsa-conf.c: use blank comment lines only to
separate groups.
* libbalsa/gmime-gpgme-context.c: compile with -D_FORTIFY_SOURCE=2.
2005-07-24 Carlos Morgado <chbm chbm.net>
* libbalsa/rfc3156.c: fix FC4 build
2005-07-24 09:03 PeterB
* configure.in, src/save-restore.c, src/threads.h,
libbalsa/address-book-extern.c, libbalsa/libbalsa.c,
libbalsa/mailbox_imap.c, libbalsa/mailbox_mbox.c,
libbalsa/mailbox_mh.c, libbalsa/send.c, libbalsa/send.h,
libbalsa/imap/imap-commands.c, libbalsa/imap/imap-handle.c: compile
with -D_FORTIFY_SOURCE=2.
* src/balsa-mime-widget-message.c: do not create separate Fcc
header.
* libbalsa/message.c: make a single References user-header.
* libbalsa/abook-completion.c: match quoted names and
angle-bracketed mailboxes.
2005-07-23 Pawan Chitrakar <pawan@nplinux.org>
* configure.in: Added ne in ALL_LINGUAS
2005-07-18 08:04 PeterB
* src/sendmsg-window.c: make References header according to RFC
2822.
2005-07-15 10:53 PeterB
* src/sendmsg-window.c: replace CR and LF in subject header with
spaces.
2005-07-12 13:32 PeterB
* src/save-restore.c: fix typo; clean up old filters correctly.
* src/filter-edit-dialog.c: set button sensitivity when filter name
is changed.
* libbalsa/: libbalsa-conf.c, libbalsa-conf.h: use default GKeyFile
list separator; implement libbalsa_conf_get_vector_with_default
directly instead of as a macro.
2005-07-11 12:32 PeterB
* src/store-address.c: use balsa_information instead of writing in
appbar.
* src/spell-check.c: use values from correct enum.
* src/mailbox-node.c: use consistent return sequence.
* src/: filter-edit-callbacks.c, filter-edit-dialog.c,
filter-edit.h: use a single field-frame.
2005-07-09 23:33 PeterB
* src/information-dialog.c: use only single-line messages in status
bar.
2005-07-08 Pawel Salek
* configure.in: -Wdeclare-after-statement is gcc>=4.0 specific.
2005-07-07 23:27 PeterB
* src/balsa-index.c: lock a GMimeStream.
* src/: save-restore.c, save-restore.h: export
config_address_books_load.
* src/mailbox-node.c: downgrade scanning problem from error to
warning.
* src/balsa-app.c: clean up.
* src/address-book-config.c: no need to include address-book-gpe.h.
* src/: ab-window.c, ab-window.h: reimport all address books after
editing.
* src/ab-main.c: show default address book initially.
* libbalsa/rfc3156.c, src/pref-manager.c, src/sendmsg-window.c:
translate strings marked for translation.
* libbalsa/: libbalsa.c, libbalsa.h: include address-book-gpe.h in
libbalsa.h.
* libbalsa/libbalsa-conf.c: detect external modification of config
file.
* configure.in: catch declaration-after-statement.
2005-07-06 Jens Granseuer
* src/filter-run-callbacks.c: fix bug 309574.
2005-07-06 Pawel Salek
* src/ab-window.c: use our address book editor.
* NEWS, configure.in: release balsa-2.3.4.
2005-07-01 16:14 PeterB
* libbalsa/mailbox_pop3.c: destroy LibBalsaMailboxView for POP
temporary mailbox.
2005-07-01 Pawel Salek
* libbalsa/imap/pop3.c: fix handling rejected POP3 TLS certs #308932.
2005-06-30 21:41 PeterB
* libbalsa/imap/imap-commands.c: use more of the GString api.
* src/address-book-config.c: make sure filename is shown for
LibBalsaAddressBookText.
* src/ab-main.c: show address book type in window title; implement
File->delete.
* libbalsa/address-book-text.c: invalidate time stamp when we
change the address book.
* libbalsa/address-book-ldif.c: ensure blank line before new entry.
* src/main-window.c: make progress bar faster than a snail.
* libbalsa/libbalsa-conf.c: use g_file_set_contents to rewrite
config files.
2005-06-24 Albrecht Dreß <albrecht dot dress at arcor dot de>
* libbalsa/body.[hc]: implement libbalsa_message_body_protect_state().
* src/Makefile.am: add 7+7 balsa-mime-widget source files.
* src/balsa-message.[ch]: use the cleaner design from balsa-mime-widget.
2005-06-22 Pawel Salek
* libbalsa/mailbox_imap.c: fix date searching when only upper
limit is present.
* libbalsa/mailbox_pop3.c: fix memory leak.
* libbalsa/imap/imap-search.c: date::range must be signed.
* src/filter-edit-callbacks.c: clean up filter dialog.
* src/filter-run-{callbacks,dialog}.c: fix "run filters".
* src/filter-run.h: add fr_apply_pressed() prototype.
2005-06-17 08:31 PeterB
* libbalsa/address-book-vcard.c, libbalsa/address.c,
src/Makefile.am, src/ab-main.c, src/address-book-config.c,
src/address-book-config.h: implement File->New and File->Properties
in balsa-ab.
2005-06-16 Pawel Salek
* libbalsa/imap/auth-gssapi.c: 6th parameter to gss_{un,}wrap is int*.
2005-06-14 12:48 PeterB
* src/sendmsg-window.c: clear BalsaSendmsg::in_reply_to.
* src/sendmsg-window.h: omitted from yesterday's commit.
2005-06-13 23:59 PeterB
* src/sendmsg-window.c: create in-reply-to string when we begin a
reply, so we can save and restore it without reference to the
original message.
* src/: balsa-message.c, information-dialog.c: use
GTK_WRAP_WORD_CHAR instead of GTK_WRAP_WORD, to allow wrapping of
long words.
* libbalsa/misc.c: trim trailing whitespace beyond the wrap length.
* src/balsa-app.h: use only Monospace and Sans as default fonts.
2005-06-11 Pawel Salek
* libbalsa/imap/imap-handle.c: fix trivial bug introduced yesterday.
2005-06-10 Pawel Salek
* libbalsa/mailbox_imap.c: survive better cases
when number of messages changed in the broken connection. Resync
header caches more aggresively.
* libbalsa/imap/imap-commands.c: use UID search support.
* libbalsa/imap/imap-handle.h: allow searching ranges of messages.
* libbalsa/imap/imap-handle.c: never insert cmd==0 to response queue.
* libbalsa/imap/imap-search.c: implement it.
* src/ab-window.c: Fix "No-address-book" case (bug 158939).
* src/main-window.[hc]: ditto.
* src/pref-manager.c: ditto.
2005-06-08 Andrew Lau
* libbalsa/address-book-ldap.c: include "i18n.h".
2005-06-08 14:13 PeterB
* src/balsa-message.c, src/print.c, src/sendmsg-window.c,
libbalsa/libbalsa.c, libbalsa/libbalsa.h, libbalsa/mailbox.c,
libbalsa/message.h: rename libbalsa_date_to_gchar as
libbalsa_date_to_utf8, and return a UTF-8 string.
* src/ab-main.c: reuse edit widget for smoother update; reload
address book after changing it.
* src/address-book-config.c: use new LibBalsaAddressBook subclass
structure.
* libbalsa/Makefile.am: add dependencies.
* libbalsa/: address.c, address.h: use an editable GtkTreeView to
edit email addresses; implement libbalsa_address_set_edit_entries
to reuse an edit widget.
* libbalsa/: address-book-ldif.c, address-book-ldif.h,
address-book-text.c, address-book-text.h, address-book-vcard.c,
address-book-vcard.h, address-book.c, address-book.h: new class
LibBalsaAddressBookText, subclass of LibBalsaAddressBook, with
LibBalsaAddressBook{Ldif,Vcard} as subclasses.
2005-06-07 11:56 PeterB
* libbalsa/: rfc3156.c, gmime-part-rfc2440.c: lock GMimeStreams.
2005-06-06 Pawel Salek
* libbalsa/gmime-gpgme-signature.c: check gpgme_get_key() result.
* libbalsa/libbalsa.c: fix bug 306666.
* libbalsa/send.c: allow the user to check certificates w/o threads.
* src/main-window.c: mbnode->name can be NULL - do not use it
and perhaps fix 306636.
* NEWS: update for real 2.3.3 release this time.
2005-06-05 Pawel Salek
* libbalsa/mailbox_imap.c: Peter found one more fault in imap scanning.
* NEWS, configure.in: update for release 2.3.3
2005-06-04 Pawel Salek
* balsa.spec.in: extend list of dependencies.
* libbalsa/folder-scanners.c: flags are passed by value.
* libbalsa/imap/auth-gssapi.c: continue authentication on invalid key.
* libbalsa/imap/imap-handle.c: pass flags by value - address was
truncated by the marshaller on 64-bit machines.
2005-06-01 20:54 PeterB
* libbalsa/message.c: lock a GMimeStream.
2005-05-28 23:12 PeterB
* libbalsa/libbalsa.c: look for /var/mail/$USER before
/var/spool/mail/$USER: fixes bug 305659.
* src/mailbox-node.c: make popup menu more appropriate: fixes
bug 305668.
2005-05-26 16:13 PeterB
* src/ab-main.c: make radio list work; set window title to be
address book name.
* libbalsa/source-viewer.c: lock a GMimeStream.
2005-05-24 09:09 PeterB
* libbalsa/gmime-part-rfc2440.c: lock a GMimeStream.
2005-05-24 Albrecht Dreß <albrecht dot dress at arcor dot de>
* libbalsa/gmime-gpgme-signature.c: fix the signature verification
output.
* src/balsa-message.c: check the result of
libbalsa_mailbox_get_message_part().
* balsa.spec.in: clean up and fedora extras adaptation.
2005-05-23 19:36 PeterB
* configure.in, libbalsa/address-book-gpe.c,
libbalsa/address-book-gpe.h, src/address-book-config.c: support
SQLite Version 3--fixes bug 305152.
* libbalsa/libbalsa-conf.c: compile on systems where gsize !=
guint.
2005-05-22 17:11 PeterB
* libbalsa/: Makefile.am, body.c, gmime-part-rfc2440.c, html.c,
mailbox_imap.c, mailbox_maildir.c, mailbox_mbox.c, mailbox_mh.c,
message.c, mime-stream-shared.c, mime-stream-shared.h, rfc3156.c,
send.c: implement LibBalsaMimeStreamShared, a subclass of
GMimeStreamFs with a lock; use it in LibBalsaMailboxMbox in place
of the fine-grained mailbox lock.
2005-05-21 Pawel Salek
* libbalsa/mailbox_imap.c: get properly signed parts.
* src/balsa-message.c: do not reset status of a checked sig.
2005-05-21 09:41 PeterB
* src/save-restore.c: save message counts only when they are
time-stamped.
2005-05-20 23:56 PeterB
* libbalsa/mailbox.c, libbalsa/mailbox.h,
libbalsa/mailbox_maildir.c, libbalsa/mailbox_maildir.h,
libbalsa/mailbox_mbox.c, libbalsa/mailbox_mh.c,
libbalsa/mailbox_mh.h, src/save-restore.c: save and restore
mod_time for local mailboxes.
2005-05-12 18:08 PeterB
* libbalsa/mailbox_mbox.c: use light-weight parser at get-message
time.
* src/save-restore.c: really remove unused mailbox views.
* libbalsa/address-book-extern.c: fix last part of bug 155382.
2005-05-09 08:32 PeterB
* src/balsa-index.c: non-modal pipe-message dialog.
2005-05-07 Pawel Salek
* libbalsa/libbalsa{,-conf}.c: disable debugging output.
* NEWS, configure.in: release 2.3.2
2005-05-07 Pawel Salek
* balsa.1.in: merge patch in DBTS #269787, bugzilla 303422.
* libbalsa/address-book-extern.c: fix DBTS#306556, bugzilla 303421.
* libbalsa/address-book-gpe.c: remove duplicates from the returned list.
* src/ab-window.c: select initially displayed list in the combo.
* src/address-book-config.c: fix bad_path() for gtk < 2.6.0.
* src/pref-manager.c: Display type of extern address book.
* src/balsa-app.c: do not crash when non-existing mailbox specified with -o.
* src/balsa-mblist.c: fix -u command line option.
* src/main.c: ditto + fix -a when passing it via bonobo.
2005-05-06 23:19 PeterB
* src/save-restore.c: slightly more 2.0.x compatibility.
* libbalsa/mailbox_mbox.c: use a separate pthread_mutex_t for
lbm_mbox_mime_stream_lock().
* src/: filter-edit-callbacks.c, filter-edit-dialog.c,
filter-edit.h: manage button sensitivity better.
2005-05-06 Pawel Salek
* src/mailbox-conf.c: do not attempt opening closed mailboxes just
because their configuration is about to get changed.
* src/save-restore.c: s,sa --learn,sa-learn --spam,g.
2005-05-04 Pawel Salek
* libbalsa/imap/imap-handle.c: nail down the broken IDLE connection
problem.
2005-05-03 22:43 PeterB
* src/: balsa-app.h, balsa-index.c, balsa-index.h, main-window.c,
save-restore.c: add a drop-down list of most recently used pipe
commands; pipe all selected messages through command.
* libbalsa/mailbox.c, libbalsa/mailbox.h, libbalsa/mailbox_imap.c,
libbalsa/mailbox_maildir.c, libbalsa/mailbox_mbox.c,
libbalsa/mailbox_mh.c, libbalsa/message.c, libbalsa/message.h,
libbalsa/send.c, libbalsa/source-viewer.c, src/main-window.c:
replace message argument of libbalsa_mailbox_get_message_stream with
msgno; implement and use libbalsa_message_stream(LibBalsaMessage *
message).
2005-05-02 23:58 PeterB
* libinit_balsa/balsa-druid-page-user.c: fix bug 302782.
2005-05-02 Pawel Salek
* NEWS, configure.in: release 2.3.1.
* libbalsa/mailbox_imap.c: handle empty msg-id over imap right.
2005-05-01 Pawel Salek
* libbalsa/mailbox_imap.c: implement remove-duplicates for imap too.
* libbalsa/imap/imap-commands.c: FetchBodyCb callbacks get seqno now.
* libbalsa/imap/imap-commands.h: add imap_mbox_complete_msgids.
* libbalsa/imap/imap-handle.c: handle arbitrary header fetches.
2005-04-30 19:57 PeterB
* libbalsa/mailbox.c, libbalsa/mailbox.h, libbalsa/mailbox_local.c,
src/main-window.c: restore remove-duplicates functionality.
2005-04-28 Pawel Salek
* libbalsa/folder-scanners.c: don't break with uw-imap server.
2005-04-27 20:17 PeterB
* libbalsa/folder-scanners.c, libbalsa/folder-scanners.h,
src/mailbox-node.c: simplify folder scanning.
2005-04-26 14:08 PeterB
* libbalsa/identity.c, src/pref-manager.c: compile --without-esmtp
and --without-gpgme.
2005-04-21 Pawel Salek
* libbalsa/folder-scanners.c: block list-response when asking
for a delimiter.
* libbalsa/imap-server.[ch]: allow checking for new mail with STATUS.
* libbalsa/smtp-server.c: keep old behavior and always save passwd.
* libbalsa/imap/imap-commands.[ch]: implement imap_mbox_status().
* libbalsa/imap/imap-handle.c: handle its response.
* libbalsa/imap/imap_private.h: even for several issued in parallel.
* src/folder-conf.c: configure it.
2005-04-20 21:26 PeterB
* src/sendmsg-window.c: simplify setting identity.
* libbalsa/imap-server.c, libbalsa/mailbox_pop3.c,
libbalsa/server.c, libbalsa/server.h, libbalsa/smtp-server.c,
src/folder-conf.c, src/pref-manager.c: lose LibBalsaServer::type.
* libbalsa/mailbox.c, libbalsa/mailbox.h,
libbalsa/mailbox_maildir.c, libbalsa/mailbox_mbox.c,
libbalsa/mailbox_mh.c, src/balsa-mblist.c, src/save-restore.c: add
unread and total members to LibBalsaMailboxView, and save them in
the config file.
* libbalsa/libbalsa-conf.c: preserve blank lines between sections
in the config file.
2005-04-19 Pawel Salek
* libbalsa/folder-scanners.[hc]: avoid redundant queries for IMAP
hierarchy delimiters.
* src/mailbox-node.[ch]: ... because we store earlier answers.
2005-04-18 Pawel Salek
* libbalsa/imap/imap-handle.c: silence output on the terminal.
* src/balsa-icons.c: silence icon debugging.
* src/sendmsg-window.c: specify exactly file names in messages -
important when attaching multiple messages at once.
2005-04-17 10:57 PeterB
* libbalsa/: mailbox.c, mailbox.h, mailbox_local.c: don't keep
selected message displayed when changing view filter.
2005-04-16 22:37 PeterB
* src/save-restore.c, libbalsa/identity.c: compile with gpgme but
without libesmtp.
* src/pref-manager.c: append server to balsa_app.smtp_servers when
the user OKs it.
2005-04-16 20:23 Pawel Salek
* libbalsa/identity.[ch]: compile --without-gpgme
* libbalsa/imap/imap-handle.c: survive better broken connections.
* src/mailbox-conf.c: generate shorter identity names.
* src/save-restore.c: more robust smtp server config loading.
2005-04-16 08:01 PeterB
* libbalsa/i18n.h: comment that this header must be included last.
* libbalsa/smtp-server.c: include "i18n.h" last.
2005-04-15 17:28 PeterB
* libbalsa/Makefile.am, libbalsa/identity.c, libbalsa/identity.h,
libbalsa/libbalsa.h, libbalsa/message.c, libbalsa/send.c,
libbalsa/send.h, libbalsa/server.h, libbalsa/smtp-server.c,
libbalsa/smtp-server.h, libinit_balsa/balsa-druid-page-user.c,
src/balsa-app.c, src/balsa-app.h, src/balsa-message.c,
src/main-window.c, src/pref-manager.c, src/save-restore.c,
src/sendmsg-window.c: implement LibBalsaSmtpServer; use it for
per-identity server.
2005-04-12 12:31 PeterB
* libbalsa/html.c: convert charset more carefully.
2005-04-10 20:28 PeterB
* libbalsa/mailbox_maildir.c: do not overwrite message when
renaming.
* libbalsa/mailbox_maildir.c: remember correct file name.
2005-04-08 14:30 PeterB
* src/save-restore.c: use correct filter group name; remove filter
groups with malformed names.
2005-04-07 Albrecht Dreß <albrecht dot dress at arcor dot de>
* src/balsa-message.c: save multiple parts.
2005-04-07 11:18 PeterB
* src/sendmsg-window.c: check for NULL charset.
2005-04-06 16:45 PeterB
* libbalsa/body.c: ensure stream is a filter-stream.
2005-04-05 20:36 PeterB
* src/sendmsg-window.c, src/sendmsg-window.h, libbalsa/filter.c,
libbalsa/mailbox_local.c, libbalsa/mime.c, libbalsa/mime.h: yet
another shot at finding the best charset in the compose window.
* src/sendmsg-window.c: destroy file-chooser dialogs with
their parent.
2005-04-05 Pawel Salek
* libbalsa/imap/imap-handle.c: proper types for list-response
signal handlers.
* libbalsa/imap/libimap-marshal.list: ditto.
* libbalsa/imap/imap-search.c: compile on darwin.
2005-04-03 Pawel Salek
* Makefile.am: s,m4,macros,g;
* balsa.spec.in: compile on suse.
* configure.in:
* libbalsa/imap/auth-gssapi.c: compile against heimdal.
2005-04-01 Steve Murphy <murf@e-tools.com>
* configure.in: Added "rw" to ALL_LINGUAS.
2005-04-01 18:46 PeterB
* src/sendmsg-window.c: omit all identity addresses from cc header.
* src/balsa-message.c, src/print.c, libbalsa/body.c,
libbalsa/html.c, libbalsa/html.h: move charset conversion for html
parts to libbalsa/html.c, as it's handled differently by the two
widgets.
2005-03-31 19:58 PeterB
* src/sendmsg-window.c: remember folder when including file in
message content.
2005-03-30 19:45 PeterB
* src/balsa-message.c: fix bug 172145.
2005-03-29 21:16 PeterB
* src/balsa-message.c: fix bug 172005.
* libbalsa/rfc3156.c: pass NULL to g_locale_to_utf8 instead of
(ssize_t *), to keep gcc4 quiet.
* src/: balsa-message.c, sendmsg-window.c: use glib macros to cast
int to pointer and back.
2005-03-26 Albrecht Dreß <albrecht dot dress at arcor dot de>
* libbalsa/rfc3156.c: plug in recently introduced DoS.
2005-03-24 06:59 PeterB
* src/ab-main.c: set all locales.
* src/main.c: set all locales.
* src/main-window.c: make label localizable.
2005-03-24 Pawel Salek
* libbalsa/address-book-ldap.c: add missing libbalsa-conf.h
* balsa.spec.in: update icon cache after rpm installation.
* images/Makefile.am: bug 171388.
2005-03-23 Albrecht Dreß <albrecht dot dress at arcor dot de>
* src/balsa-message.c, libbalsa/gmime-gpgme-context.c,
libbalsa/gmime-gpgme-context.h, libbalsa/identity.c,
libbalsa/identity.h, libbalsa/rfc3156.c, libbalsa/rfc3156.h,
libbalsa/send.c: (1) plug a minor security problem when checking
the gpg subkey status; (2) improve dealing with low-validity uid's
for encryption; (3) several smaller fixes.
2005-03-23 PeterB
* libbalsa/rfc3156.c: fix bug 171415.
* libbalsa/address-book-ldap.c, src/ab-main.c: complete migration
from GnomeConfig to LibbalsaConf.
* src/sendmsg-window.c: strip parameter variables from exec string.
2005-03-22 22:07 PeterB
* libbalsa/: libbalsa-conf.c, libbalsa-conf.h: set up correctly for
new user.
* libbalsa/libbalsa-conf.c: more careful rewrite, more user
feedback.
* src/main.c: set balsa_icon.png as default window icon.
* src/: balsa-message.c, sendmsg-window.c: always pass URI to
gnome_vfs_mime_application_launch.
* src/sendmsg-window.c: more appropriate version checks.
* libbalsa/libbalsa-conf.c: organize key-file info into structures.
2005-03-21 08:08 PeterB
* configure.in, src/balsa-message.c, src/sendmsg-window.c: check
for GnomeVFS version 2.9 instead of 2.8.
2005-03-20 15:03 PeterB
* libbalsa/libbalsa-conf.c: initialize only once in non-threaded
build.
* libbalsa/libbalsa-conf.c: store new config files in ~/.balsa.
* configure.in, libbalsa/misc.c, libbalsa/misc.h,
src/balsa-message.c, src/sendmsg-window.c: more appropriate version
checks.
2005-03-20 Pawel Salek
* src/address-book-config.c: s,GNOME_DISABLE_DEPR,GTK_DISABLE_DEPR,
2005-03-19 23:00 PeterB
* libbalsa/libbalsa-conf.h: check Gtk version.
* libbalsa/Makefile.am, libbalsa/address-book-ldif.c,
libbalsa/address-book.c, libbalsa/body.c, libbalsa/files.c,
libbalsa/filter-file.c, libbalsa/filter.h,
libbalsa/folder-scanners.c, libbalsa/gmime-part-rfc2440.c,
libbalsa/html.c, libbalsa/identity.c, libbalsa/libbalsa-conf.c,
libbalsa/libbalsa-conf.h, libbalsa/libbalsa.c,
libbalsa/mailbox-filter.c, libbalsa/mailbox.c, libbalsa/mailbox.h,
libbalsa/mailbox_imap.c, libbalsa/mailbox_mbox.c,
libbalsa/mailbox_mh.c, libbalsa/message.c, libbalsa/misc.c,
libbalsa/rfc3156.c, libbalsa/send.c, libbalsa/source-viewer.c,
libbalsa/imap/imap-commands.c, libbalsa/imap/imap-commands.h,
libbalsa/imap/md5-utils.c, libbalsa/imap/md5-utils.h,
libbalsa/imap/util.c, libbalsa/imap/util.h,
libinit_balsa/Makefile.am, src/Makefile.am, src/ab-main.c,
src/balsa-message.c, src/filter-edit-callbacks.c,
src/mailbox-node.c, src/print.c, src/quote-color.c,
src/quote-color.h, src/save-restore.c, src/sendmsg-window.c: more
Gnome deprecation cleanup, including a GKeyFile replacement for
GnomeConfig; fix some nit-picking from gcc 4; restore the
*_DISABLE_DEPRECATED defs.
* src/sendmsg-window.c: check whether CP125x charset is ok.
2005-03-18 16:29 PeterB
* src/main.c: get mbnode before checking it.
2005-03-17 Pawel Salek
* libbalsa/imap/imap-handle.c: make the IDLE code behave better
on broken connections.
* src/balsa-app.h: add pipe_cmd field.
* src/main-window.c: allow for piping a message through an
external program. (bug 153386).
* src/save-restore.c: save and restore last pipe_cmd.
2005-03-16 Pawel Salek
* libbalsa/imap/imap-handle.c: provide more info on SSL-related
failures.
2005-03-15 Albrecht Dreß <albrecht dot dress at arcor dot de>
* libbalsa/send.c: don't unref NULL GObject.
2005-03-15 13:03 PeterB
* libbalsa/body.c: convert charset also for html parts (fixes
bug 170456).
* libbalsa/mailbox_imap.c: use delim to build path when renaming;
use g_build_path() for IMAP paths.
2005-03-14 Albrecht Dreß <albrecht dot dress at arcor dot de>
* libbalsa/message.h, libbalsa/send.c, libbalsa/send.h,
src/balsa-app.c, src/balsa-app.h, src/balsa-message.c,
src/pref-manager.c, src/save-restore.c, src/sendmsg-window.c: use
only quoted-printable encoding.
2005-03-14 19:42 PeterB
* libbalsa/body.c: use string returned by
g_mime_filter_windows_real_charset() before it's deallocated.
2005-03-10 10:42 PeterB
* libbalsa/body.c, libbalsa/filter.c, libbalsa/mailbox_local.c,
libbalsa/message.c, libbalsa/mime.c, libbalsa/mime.h,
src/sendmsg-window.c, src/sendmsg-window.h: keep track of charset
instead of using g_mime_charset_best().
2005-03-08 18:40 Albrecht Dreß <albrecht dot dress at arcor dot de>
* libbalsa/gmime-part-rfc2440.c: replace use of
g_mime_content_type_[gs]et_parameter() by
g_mime_object_[gs]et_content_type_parameter(), and
g_mime_part_get_content_type() by g_mime_object_get_content_type().
2005-03-08 10:43 PeterB
* libbalsa/: mailbox.c, mailbox.h: remember that we loaded filters.
* src/filter-edit-callbacks.c: don't set empty filename; comment
out unused LIBESD condition.
* libbalsa/Makefile.am, libbalsa/filter-file.c, libbalsa/filter.h,
libbalsa/libbalsa-conf.c, libbalsa/libbalsa-conf.h,
libbalsa/mailbox-filter.c, src/save-restore.c: move all
GnomeConfigIterator code to (new) libbalsa-conf.c; implement
GnomeConfig version of libbalsa_conf_foreach_section.
2005-03-04 19:56 Albrecht Dreß <albrecht dot dress at arcor dot de>
* libbalsa/gmime-part-rfc2440.c, src/balsa-message.c,
src/balsa-message.h, src/sendmsg-window.c: add and evaluate the RFC
2440 headers properly; write the stream to a new (plain) stream;
rename libbalsa_msg_perform_crypto to balsa_message_perform_crypto,
add a parameter to decrypt only and export the function; call
balsa_message_perform_crypto() to fix the bug Kacper reported.
2005-03-03 20:07 PeterB
* libbalsa/: mailbox_mbox.c, mailbox_mbox.h: implement
lbm_mbox_mime_stream_{lock,unlock}; use them to avoid interruption
of a sequence of GMimeStream operations.
2005-03-01 09:49 PeterB
* src/sendmsg-window.c: make file choosers transient for compose
window.
2005-02-28 09:09 PeterB
* libbalsa/libbalsa.c, libbalsa/libbalsa.h, libbalsa/mailbox.c,
src/main.c: move balsa_threads_{enter,leave} to
libbalsa/libbalsa.c; change libbalsa_lock_mailbox to reflect
recursive gdk lock and remove assumptions about
main-thread/sub-thread; hold mailbox lock before asking for gdk
lock.
* libbalsa/imap/imap-handle.c: downgrade warnings to messages.
* libbalsa/misc.c: fix test for "<URL:" [fixes Bug 168732].
* src/balsa-index.c: mysterious adjustment to width of icon
columns [fixes Bug 168733].
2005-02-27 14:35 PeterB
* libbalsa/message.c, libbalsa/message.h, libbalsa/send.c,
src/sendmsg-window.c, src/sendmsg-window.h: use
g_mime_charset_best() to encode message content.
* libbalsa/mailbox_local.c: get message when needed for matching
(2 commits).
* libbalsa/mailbox.c: check for zero message count before changing
flags.
2005-02-25 11:29 PeterB
* src/address-book-config.c: use correct Gtk response.
2005-02-24 Pawel Salek
* src/pref-manager.c: compile with C89 (contributed by Jens Granseuer).
2005-02-23 Pawel Salek
* NEWS: release 2.3.0
* libbalsa/mailbox_local.c: fix one of the problems with msg filtering.
2005-02-22 19:53 PeterB
* src/main-window.c: remove ctrl+F accelerator from forward-inline.
2005-02-20 Kacper Wysocki <kacperw at online dot no>
* libbalsa/imap/pop3.c: const char *service should not be static.
2005-02-20 Pawel Salek
* balsa.spec.in: icon-related updates.
* libbalsa/imap/imap-commands.c: enable IDLE only when really disabled.
* libinit_balsa/balsa-druid-page-user.c: do not require incoming server
2005-02-20 12:05 PeterB
* src/: balsa-icons.h, balsa-index.c, main-window.c: remove
BALSA_PIXMAP_MENU_* definitions.
* src/balsa-message.c: make OK the default response in save dialog.
2005-02-20 Craig Routledge <webstuff at craigroutledge dot com>
* src/main-window.c: bump the date in the about dialog.
* doc/C/balsa.xml: bring the Main Window section of the help file
up to sync with the user interface.
* src/balsa-message.c: add tooltips to the "check crypto" and
"attachment" icons.
2005-02-16 20:20 Albrecht Dreß <albrecht dot dress at arcor dot de>
* libbalsa/misc.c, libbalsa/misc.h, src/balsa-message.c,
src/sendmsg-window.c: implement libbalsa_ia_rfc2821_equal and use
it to exclude self from cc list.
2005-02-16 09:13 PeterB
* src/mailbox-conf.c: manage sensitivity of the OK/Update button.
2005-02-15 21:48 Craig Routledge <webstuff@craigroutledge.com>
* src/balsa-message.c: better handling of
"application/octet-stream".
2005-02-15 21:48 PeterB
* src/balsa-message.c: don't allocate unnecessary address strings.
* libbalsa/: body.c, mailbox_mbox.c: let GMimeStreams work
end-to-end when possible.
2005-02-14 Kjartan Maraas <kmaraas@gnome.org>
* configure.in: Add «nb» to ALL_LINGUAS.
2005-02-11 19:38 PeterB
* src/sendmsg-window.c, libbalsa/misc.c: use
"application/octet-stream" as a last resort.
2005-02-09 20:33 PeterB
* libbalsa/mailbox.c: don't lock mailbox to change a pseudo-flag.
* src/main-window.c: fix the About dialog.
2005-02-08 17:33 PeterB
* src/save-restore.c: save the sanitized toolbar.
* libbalsa/imap/imap-handle.c: typo.
2005-02-08 Pawel Salek
* libbalsa/imap/imap-handle.c: unregister IDLE listener on
error.
* libbalsa/imap/imap-tls.c: related connection shutting cleanup.
* libbalsa/imap/imap_private.h: add imap_handle_disconnect() proto.
2005-02-07 20:45 Albrecht Dreß <albrecht dot dress at arcor dot de>
* src/: save-restore.c, toolbar-factory.c, toolbar-factory.h: fix
old toolbar button compatibility.
2005-02-07 Pawel Salek
* src/address-book-config.c: compile with gtk-2.4
* balsa.spec.in: distribute new icons.
* configure.in: bump version to 2.3.0.
* images/24x24/Makefile.am: fix install-data-hook:
* libbalsa/Makefile.am: add missing i18n.h file.
* libbalsa/mailbox_imap.c: remove debugging output.
2005-02-06 20:43 PeterB
* configure.in, images/16x16/Makefile, images/16x16/Makefile.in,
images/24x24/Makefile, images/24x24/Makefile.in,
libbalsa/address-book-extern.c, libbalsa/address-book-ldif.c,
libbalsa/address-book-vcard.c, libbalsa/address-book.c,
libbalsa/address.c, libbalsa/body.c, libbalsa/filter-error.c,
libbalsa/filter-file.c, libbalsa/filter.c,
libbalsa/gmime-application-pkcs7.c, libbalsa/gmime-gpgme-context.c,
libbalsa/i18n.h, libbalsa/identity.c, libbalsa/imap-server.c,
libbalsa/libbalsa-conf.h, libbalsa/libbalsa.c,
libbalsa/mailbox-filter.c, libbalsa/mailbox.c,
libbalsa/mailbox_imap.c, libbalsa/mailbox_local.c,
libbalsa/mailbox_maildir.c, libbalsa/mailbox_mbox.c,
libbalsa/mailbox_mh.c, libbalsa/mailbox_pop3.c, libbalsa/message.c,
libbalsa/mime.c, libbalsa/misc.c, libbalsa/send.c,
libbalsa/server.c, libbalsa/source-viewer.c,
libinit_balsa/balsa-druid-page-defclient.c,
libinit_balsa/balsa-druid-page-directory.c,
libinit_balsa/balsa-druid-page-finish.c,
libinit_balsa/balsa-druid-page-user.c,
libinit_balsa/balsa-druid-page-welcome.c,
libinit_balsa/balsa-initdruid.c, libinit_balsa/helper.c,
libinit_balsa/init_balsa.c, src/ab-window.c,
src/address-book-config.c, src/address-book-config.h,
src/balsa-app.c, src/balsa-index.c, src/balsa-mblist.c,
src/balsa-message.c, src/filter-edit-callbacks.c,
src/filter-edit-dialog.c, src/filter-export-callbacks.c,
src/filter-export-dialog.c, src/filter-run-callbacks.c,
src/filter-run-dialog.c, src/folder-conf.c,
src/information-dialog.c, src/mailbox-conf.c, src/mailbox-node.c,
src/main-window.c, src/main.c, src/message-window.c,
src/pref-manager.c, src/print.c, src/save-restore.c,
src/sendmsg-window.c, src/spell-check.c, src/store-address.c,
src/toolbar-factory.c, src/toolbar-prefs.c: install and use
libbalsa/i18n.h; migrate from GnomeFileEntry to GtkFileChooser;
other Gnome-deprecation cleanup.
2005-02-06 18:45 Albrecht Dreß <albrecht dot dress at arcor dot de>
* configure.in, images/Makefile.am, images/16x16/Makefile,
images/16x16/Makefile.am, images/16x16/Makefile.in,
images/16x16/balsa-encrypted.png, images/16x16/balsa-mark-all.png,
images/16x16/balsa-mbox-draft.png,
images/16x16/balsa-mbox-sent.png,
images/16x16/balsa-mbox-tray-empty.png,
images/16x16/balsa-mbox-tray-full.png,
images/16x16/balsa-next-flagged.png,
images/16x16/balsa-next-part.png,
images/16x16/balsa-next-unread.png, images/16x16/balsa-next.png,
images/16x16/balsa-postpone.png,
images/16x16/balsa-previous-part.png,
images/16x16/balsa-previous.png, images/16x16/balsa-reply-all.png,
images/16x16/balsa-signature-bad.png,
images/16x16/balsa-signature-good.png,
images/16x16/balsa-signature-notrust.png,
images/16x16/balsa-signature-unknown.png, images/24x24/Makefile,
images/24x24/Makefile.am, images/24x24/Makefile.in,
images/24x24/balsa-crypt-check.png, images/24x24/balsa-encrypt.png,
images/24x24/balsa-encrypted.png, images/24x24/balsa-mark-all.png,
images/24x24/balsa-marked-new.png,
images/24x24/balsa-next-flagged.png,
images/24x24/balsa-next-part.png,
images/24x24/balsa-next-unread.png, images/24x24/balsa-next.png,
images/24x24/balsa-postpone.png, images/24x24/balsa-preview.png,
images/24x24/balsa-previous-part.png,
images/24x24/balsa-previous.png, images/24x24/balsa-reply-all.png,
images/24x24/balsa-sign.png, images/24x24/balsa-signature-bad.png,
images/24x24/balsa-signature-good.png,
images/24x24/balsa-signature-notrust.png,
images/24x24/balsa-signature-unknown.png,
images/24x24/balsa-trash-empty.png, images/mimetypes/Makefile.am,
src/balsa-icons.c, src/balsa-icons.h, src/balsa-index.c,
src/balsa-mblist.c, src/balsa-message.c, src/filter-edit-dialog.c,
src/main-window.c, src/message-window.c, src/sendmsg-window.c,
src/spell-check.c, src/toolbar-factory.c, src/toolbar-prefs.c:
themable icons.
2005-02-06 Pawel Salek
* libbalsa/mailbox_imap.c: fix some corner cases for
LibBalsaMessageBody-to-imap section transformation.
* libbalsa/mailbox_pop3.c: use backend SSL option.
* libbalsa/imap/imap-commands.[ch]: do not guess whether part headers
are to be fetched - say it clearly.
* libbalsa/imap/imap-handle.c: process all data in IDLE callback.
2005-02-06 Pawel Salek
* libbalsa/body.[hc]: filter CRLF on saving text parts.
* src/balsa-message.c, sendmsg-window.c: adapt to changed API.
* libbalsa/html.c: HAVE_GNOME related fixes.
2005-02-05 17:50 PeterB
* libbalsa/Makefile.am, libinit_balsa/Makefile.am, src/Makefile.am:
temporarily allow deprecated methods.
2005-02-05 17:49 Albrecht Dreß <albrecht dot dress at arcor dot de>
* src/sendmsg-window.c: fix DnD problem with escaped filenames.
2005-02-03 Pawel Salek
* libbalsa/imap/imap-handle.c: clean handle->sio field.
2005-02-02 Pawel Salek
* configure.in: minor reordering fixes.
* libbalsa/address-book-gpe.c: fix InternerAddress regression.
* libbalsa/source-viewer.c: do not expand menu (regression fixed).
* libbalsa/imap/imap-commands.c: enable/disable IDLE.
* libbalsa/imap/imap-{handle,search}.c: ditto.
* libbalsa/imap/imap_private.h: add IDLE related fields.
2005-01-29 Pawel Salek
* configure.in: do it by the book (literally).
* libbalsa/address-book-extern.c: remove uneeded GNOME dependency.
* libbalsa/*.c: ditto.
* libinit_balsa/*.c: Druid needs GNOME.
* src/balsa-app.c: remove BALSA_MAJOR <2 remains.
* src/print.c: drop old gnomeprint-1.* support.
2005-01-29 09:23 PeterB
* src/folder-conf.c: fix typo.
2005-01-28 08:44 Craig Routledge <webstuff at craigroutledge dot com>
* libbalsa/mailbox_local.c: fix bug #147380.
2005-01-27 Pawel Salek
* libbalsa/address-book-ldap.c: fix InternerAddress regression.
2005-01-22 Pawel Salek
* libbalsa/mailbox_imap.c: do not loose content type paramters -
fix message wrapping on replying.
2005-01-20 Pawel Salek
* libbalsa/address-entry.c: fix crashes on: domain-expanded
address selection; unparsable address.
2005-01-17 23:02 PeterB
* src/: balsa-message.c, sendmsg-window.c: port from
GtkFileSelection to GtkFileChooserDialog.
2005-01-17 18:14 Albrecht Dreß <albrecht.dress@arcor.de>
* src/balsa-message.c, libbalsa/misc.c, libbalsa/misc.h: multiline
URL highlighting.
2005-01-17 Pawel Salek
* libbalsa/address-entry.c: add missing #include.
* libbalsa/identity.h:
* libinit_balsa/balsa-druid-page-user.c: port it to InternetAddress.
2005-01-17 14:32 PeterB
* libbalsa/address-entry.c: use list->address instead of
internet_address_list_get_address.
2005-01-17 13:41 PeterB
* src/balsa-message.c, src/message-window.c, src/print.c,
src/save-restore.c, src/sendmsg-window.c, src/store-address.c,
libbalsa/abook-completion.c, libbalsa/abook-completion.h,
libbalsa/address-book-ldif.c, libbalsa/address-book-vcard.c,
libbalsa/address-entry.c, libbalsa/address-entry.h,
libbalsa/address.c, libbalsa/address.h, libbalsa/body.h,
libbalsa/files.h, libbalsa/filter.c, libbalsa/identity.c,
libbalsa/identity.h, libbalsa/libbalsa.h,
libbalsa/libbalsa_private.h, libbalsa/mailbox.c,
libbalsa/mailbox.h, libbalsa/mailbox_imap.c,
libbalsa/mailbox_local.c, libbalsa/mailbox_mbox.c,
libbalsa/message.c, libbalsa/message.h, libbalsa/misc.c,
libbalsa/misc.h, libbalsa/send.c: use GMime's InternetAddress
instead of LibBalsaAddress, except for address-book entries.
2005-01-17 10:36 PeterB
* src/: toolbar-factory.c, toolbar-prefs.c: remove redundant
includes.
2005-01-14 08:32 PeterB
* configure.in, images/Makefile.am, src/balsa-message.c,
src/expand-alias.c, src/expand-alias.h, src/sendmsg-window.c,
images/mimetypes/Makefile, images/mimetypes/Makefile.am,
images/mimetypes/Makefile.in,
images/mimetypes/gnome-mime-application-pgp-signature.png,
images/mimetypes/gnome-mime-application-pkcs7-mime.png,
images/mimetypes/gnome-mime-application-pkcs7-signature.png,
images/mimetypes/gnome-mime-application-x-pkcs7-signature.png,
images/mimetypes/gnome-mime-message-disposition-notification.png,
images/mimetypes/gnome-mime-message-external-body.png,
images/mimetypes/gnome-mime-message.png,
images/mimetypes/gnome-mime-multipart-alternative.png,
images/mimetypes/gnome-mime-multipart-encrypted.png,
images/mimetypes/gnome-mime-multipart-signed.png,
images/mimetypes/gnome-mime-multipart.png: install mime type icons;
simplify icon search.
2005-01-13 14:56 PeterB
* configure.in, libbalsa/address-entry.c, libbalsa/address-entry.h,
libbalsa/files.c, libbalsa/identity.c, libbalsa/mailbox.c,
libbalsa/misc.c, libbalsa/misc.h, libbalsa/send.c,
libbalsa/source-viewer.c, libinit_balsa/helper.c, src/Makefile.am,
src/ab-main.c, src/ab-window.c, src/balsa-app.c, src/balsa-index.c,
src/balsa-mblist.c, src/filter-edit-callbacks.c,
src/filter-edit-dialog.c, src/filter-edit.h, src/mailbox-conf.c,
src/main-window.c, src/main.c, src/pref-manager.c,
src/sendmsg-window.c, src/sendmsg-window.h, src/store-address.c,
src/toolbar-factory.c: require gtk+-2.0 >= 2.4 and remove
GTK_CHECK_VERSION(2,4,0) tests.
2005-01-12 Pawel Salek
* libbalsa/imap/imap-commands.c: work around broken dovecot indexes.
2005-01-07 09:47 PeterB
* src/main-window.c: Use hyphen instead of underscore in translator
credits.
* src/balsa-mblist.c: restore separator in
balsa_mblist_mru_option_menu(); remove unused variable.
2005-01-07 Pawel Salek
* libbalsa/libbalsa.h: add mailbox manipulation error codes.
* libbalsa/mailbox_imap.[hc]: return more info on error.
* src/folder-conf.c: handle errors better.
* src/mailbox-conf.c: ditto.
2005-01-06 Pawel Salek
* libbalsa/imap/imap-handle.c: silence debugging output.
* libinit_balsa/balsa-druid-page-user.[hc]: port initial wizard
improvements.
* src/balsa-mblist.c: protect against D&D crashes.
2005-01-05 09:05 PeterB
* libbalsa/mailbox_local.c: use second GNode tree in jwz-threading.
2005-01-04 Pawel Salek
* libbalsa/mailbox_local.c: remove bogus test from msg matching (PB).
2005-01-03 19:09 PeterB/manu <eallaud@yahoo.fr>
* libbalsa/mailbox_local.c: check for NULL msg-id.
2006-01-02 Pawel Salek
* libbalsa/filter.c, libbalsa/misc.[hc]: move in_string_utf8() to misc
* libbalsa/libbalsa_private.h:
* libbalsa/mailbox.c: move LibBalsaMailboxEntry def to private.h
* libbalsa/mailbox_local.c: implement faster searching code
(manyfold speedup for large mailboxes).
2004-12-31 12:08 Albrecht Dreß <albrecht.dress@arcor.de>
* libbalsa/body.h, libbalsa/files.c, libbalsa/files.h,
libbalsa/send.c, src/balsa-message.c, src/print.c,
src/sendmsg-window.c, src/pixmaps/info_lock.xpm,
src/pixmaps/info_lock_bad.xpm, src/pixmaps/info_lock_encr.xpm,
src/pixmaps/info_lock_good.xpm, src/pixmaps/info_lock_sigtrust.xpm:
new attachment handling code.
2004-12-30 17:04 PeterB
* libbalsa/: mailbox.c, mailbox.h, mailbox_local.c: reduce the
amount of tree modification when updating threading.
* libbalsa/send.c: convert file name to utf-8 for GMime.
2004-12-29 11:49 PeterB
* src/main-window.c: use BALSA_PIXMAP_CLOSE_MBOX instead of
GTK_STOCK_CLOSE for Close-mailbox menu item; use
GTK_ICON_SIZE_BUTTON for notebook label close button.
2004-12-27 10:02 PeterB
* libbalsa/files.c: do not bypass theme when mime-type and filename
are both NULL.
2004-12-26 18:45 PeterB
* libbalsa/body.c: g_mime_data_wrapper_write_to_stream() decodes
the transfer-encoding--we must not.
* libbalsa/files.c: look for themed mime-type icon.
2004-12-24 Pawel Salek
* libbalsa/body.c: always call gdk_pixbuf_loader_close().
* libbalsa/mailbox_pop3.c: do not try to move messages filtered
out by procmail.
2004-12-22 13:25 Albrecht Dreß <albrecht.dress@arcor.de>
* libbalsa/: body.c, mime.c: two minor gpg related fixes.
2004-12-20 12:33 PeterB
* src/: balsa-index.c, balsa-index.h: re-implement
balsa_index_{next,previous}_msgno.
* src/message-window.c: save more menu items; use
balsa_index_{next,previous}_msgno() to correctly manage menu item
and button sensitivity.
2004-12-18 Pawel Salek
* libbalsa/imap/imap-handle.c: forgive errors in BODYSTRUCTURE response
(work around #160083).
2004-12-18 Craig Routledge
* src/balsa-app.[ch]: add mw_action_after_move.
* src/message-window.c: use it.
* src/pref-manager.c: configure it.
* src/save-restore.c: save/restore it.
2004-12-16 14:34 PeterB
* libbalsa/body.c: if body->mime_part is a GMimeMessagePart, get
the stream for its message, not the part.
2004-12-15 06:43 PeterB
* libbalsa/body.c: add some checks.
2004-12-13 09:41 PeterB
* libbalsa/html.c: do not write zero bytes, to avoid a
gtkhtml-CRITICAL.
2004-12-12 12:23 PeterB
* libbalsa/mailbox_imap.c: check for NULL handle.
2004-12-09 15:45 PeterB
* libbalsa/address-entry.c, libbalsa/address-entry.h,
src/sendmsg-window.c: implement libbalsa_address_entry_addresses()
and use it to move address-counting to libbalsa.
2004-12-08 15:11 PeterB
* libbalsa/address.c: use InternetAddress methods to manage quoting
and stringifying.
* libbalsa/address-entry.c: use a hash table to hold
LibBalsaAddress objects; parse quoted strings more carefully.
2004-12-07 18:57 PeterB
* src/sendmsg-window.c: use libbalsa_wrap_rfc2646() to ensure
space-stuffing.
* libbalsa/misc.c: append spaces for DelSp=Yes.
* libbalsa/gmime-gpgme-context.h: replace GMIME_CHECK_* macros with
G_TYPE_*.
* libbalsa/mailbox_mbox.c: simplify From_ line armoring.
2004-12-06 16:23 PeterB
* libbalsa/: address.c, address.h: parse string with group address;
implement libbalsa_address_set_copy_member() to make a copy of a
LibBalsaAddress containing only one mailbox.
* libbalsa/address-entry.c: parse entry text with group address;
make only one completion item per address.
* libbalsa/address-book-vcard.c: when not in dist_list_mode and a
completion item has more than one address, make multiple
single-address LibBalsaAddress objects.
* libbalsa/: address.c, address.h, message.c: implement and use
libbalsa_address_new_list_from_gmime(); do not ignore RFC 2822
group addresses.
2004-12-04 08:39 PeterB
* src/: balsa-index.c, balsa-index.h, message-window.c: remove
balsa_index_next_.*_msgno api; implement balsa_index_select() and
use it to manage highlighting in the mailbox index.
|