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
|
2004-03-24 Jeffrey Stedfast <fejj@ximian.com>
* README: Updated.
* configure.in: Bumped version to 2.0.14
* gmime/gmime-charset.c (g_mime_charset_name): Use my own strdown
implementation to 'strdown' the alloca()'d charset name.
(g_mime_charset_map_init): Instead of strdup()ing the charset name
and then using g_ascii_strdown(), just use g_ascii_strdown() since
it malloc's.
* gmime/gmime-stream-buffer.c (stream_write): Fixed a bug when
writing across block boundaries.
2003-03-07 Jeffrey Stedfast <fejj@ximian.com>
* README: Updated.
* configure.in: Bumped version to 2.0.13
2004-02-28 Jeffrey Stedfast <fejj@ximian.com>
* gmime/gmime-stream-buffer.c (stream_write): Shrink buflen down
by the number of bytes flushed or we'll loop forever writing the
same block over and over.
2004-02-18 Jeffrey Stedfast <fejj@ximian.com>
* gmime/internet-address.c (internet_address_to_string): Check
that ia->name is not an empty string.
2004-02-13 Jeffrey Stedfast <fejj@ximian.com>
* gmime/gmime-parser.c (parser_construct_multipart): Pop our end
boundary before scanning postface text data. Prevents a hang if a
multipart brokenly has 2 end boundaries.
2004-02-05 Jeffrey Stedfast <fejj@ximian.com>
* gmime/url-scanner.c: Added single/double quotes to url_braces[]
in case the user is quoting the url.
(g_url_web_end): Add "-;:" to list of punctuation to strip off the
end of urls. Also fixed to handle user@domain's
(g_url_addrspec_start): Strip open brace characters from the
beginning of the addr.
(g_url_web_start): Make sure "www" wasn't part of something not a
url (like "Ewww.Gross") by check that pos[-1] is either an open
brace or whitespace.
(g_url_addrspec_end): Don't allow toplevel domain addr-specs
(if we encounter something that looks like it is a toplevel domain
addr, it is more likely to be bogus than correct).
2004-01-25 Jeffrey Stedfast <fejj@ximian.com>
* gmime/gmime-param.c: Disable debugging and conditionally disable
warnings.
* gmime/gmime-multipart.c: Disable debugging.
* gmime/gmime-stream.c: Disable debugging.
* gmime/internet-address.c: Same.
* gmime/gmime-parser.c: Conditionally disable warnings.
2003-12-16 Jeffrey Stedfast <fejj@ximian.com>
* gmime/gmime-stream-mmap.c (g_mime_stream_mmap_new): Don't add
getpagesize() to the map length.
(g_mime_stream_mmap_new_with_bounds): Same.
2003-12-06 Jeffrey Stedfast <fejj@ximian.com>
* gmime/gmime-parser.c (parser_step_headers): If scanning for eoln
results in finding inend, request a refill and try again (changed
from inptr + 1 >= inend).
2003-12-05 Jeffrey Stedfast <fejj@ximian.com>
* gmime/internet-address.c (decode_domain): Make sure domain->len
> 0 before checking domain->str[domain->len - 1].
* gmime/gmime-gpg-context.c (gpg_ctx_op_start): Properly set the
O_NONBLOCK flag on each of the pipes (ie. we need to get the
current flags first and then add the O_NONBLOCK flag rather than
just setting the O_NONBLOCK flag by itself).
2003-12-04 Jeffrey Stedfast <fejj@ximian.com>
* README: Updated.
* configure.in: Bumped version to 2.0.12
2003-12-02 Jeffrey Stedfast <fejj@ximian.com>
* gmime/gmime-gpg-context.c (gpg_ctx_op_start): Modified the code
that closes the child's fds to use fcntl and also to start at fd =
3 so as to get rid of the need to check for stdin/out/err.
* gmime/gmime-filter-from.c (filter_filter): Fixed to malloc the
correct buffer length.
2003-09-12 Jeffrey Stedfast <fejj@ximian.com>
* gmime/gmime-stream.c (g_mime_stream_read): If len == 0, return 0.
(g_mime_stream_write): Same.
2003-08-30 Jeffrey Stedfast <fejj@ximian.com>
* gmime/md5-utils.c (md5_get_digest_from_file): Open in binary
mode, fixes a bug when built on Win32 systems.
2003-08-06 Jeffrey Stedfast <fejj@ximian.com>
* README: Updated.
* configure.in: Bumped version to 2.0.11
* gmime/gmime-multipart.c (g_mime_multipart_foreach): Simplified.
* gmime/gmime-stream-cat.c (stream_read): Same here.
(stream_write): And finally here.
* gmime/gmime-stream-file.c (stream_read): Same.
(stream_write): And again...
* gmime/gmime-stream-fs.c (stream_read): Here too.
(stream_write): And here.
* gmime/gmime-stream-mmap.c (stream_read): Same as the mem stream.
(stream_write): Same.
* gmime/gmime-stream-mem.c (stream_read): Need to fix the MIN
expresion so that both args are signed, otherwise 'len' will be
the min if the 'bytes-left' calculation is negative.
(stream_write): Same.
2003-07-29 Jeffrey Stedfast <fejj@ximian.com>
* README: Updated.
* configure.in: Bumped version to 2.0.10
* gmime/gmime-message.c (g_mime_message_get_recipients): Make
return const. Thanks to
* gmime/gmime-message-part.c (g_mime_message_part_get_message):
Ref the content message before returning it. Thanks to Nigel
Kukard <nkukard@lbsd.net> for helping me catch this.
2003-07-25 Jeffrey Stedfast <fejj@ximian.com>
* README: Updated.
* configure.in: Bumped version to 2.0.9
* gmime/gmime-multipart.c (g_mime_multipart_foreach): Don't
descend recursively... make the user descend into sub-multiparts
him/herself. This makes more sense since the callback will be
called on the multipart too...
(g_mime_multipart_get_subpart_from_content_id): Be more efficient
about checking if the subpart is a multipart.
2003-06-12 Jeffrey Stedfast <fejj@ximian.com>
* gmime/gtrie.c (g_trie_free): Free the fail_states array.
2003-05-26 Jeffrey Stedfast <fejj@ximian.com>
* gmime/gmime-multipart-signed.c (g_mime_multipart_signed_verify):
Do not strip trailing whitespace when verifying, this should allow
us to verify both rfc2015 and rfc3156 signed messages (as well as
this being the correct way of doing it anyway).
2003-05-25 Jeffrey Stedfast <fejj@ximian.com>
* README: Updated.
* configure.in: Bumped version to 2.0.8
2003-05-22 Jeffrey Stedfast <fejj@ximian.com>
* gmime/gmime-parser.c (parser_construct_multipart): Fixed to
properly handle multiparts which do not end with their own
end-boundary. See bug #113527 for details.
* gmime/gmime-stream-mmap.h: Removed sys/mman.h and unistd.h from
the #includes. These are needed in the ehader and will break the
build on win32.
* configure.in: Check for sys/param.h
* gmime/gmime-utils.c: Only #include sys/param.h if the system has
it. If the build environment is win32, #include process.h for
pid_t.
2003-05-21 Jeffrey Stedfast <fejj@ximian.com>
* README: Updated.
* configure.in: Bumped version to 2.0.7
* gmime/gmime-message.c (handle_multipart_mixed): Don't look at
the subtype of the first_type unless we have already defined
first_type. Fixes a crash.
* gmime/gmime-message-partial.c
(g_mime_message_partial_split_message): Fixed an optimisation gone
bad. Thanks to Piotr Klaban for reporting this.
2003-05-19 Jeffrey Stedfast <fejj@ximian.com>
* docs/reference/*: Updated some.
* gmime/gmime-multipart-signed.c: Same as below.
* gmime/gmime-multipart-encrypted.c: Fixed the prototypes for
write_to_stream().
* gmime/gmime-gpg-context.c (gpg_ctx_new): Initialise seen_eof1 to
TRUE.
(gpg_ctx_set_ostream): Set seen_eof1 to FALSE here, this way we
only ever check for EOF for gpg's stdout if we care about the data
received from it.
(gpg_ctx_parse_status): Remove the hack that set seen_eof1 to TRUE
when we received a TRUST status from gpg when verifying a
signature. Same for when importing signatures.
(gpg_ctx_op_step): Only FD_SET() fd's that we have not finished
reading from.
(gpg_ctx_op_exited): #if 0'd for now since we aren't using it
anymore. Keeping it around for historical reasons and in case we
find we really do need it back.
2003-04-15 Jeffrey Stedfast <fejj@ximian.com>
* README: Bumped version to 2.0.6
* configure.in: Bumped version to 2.0.6
2003-04-15 Jeffrey Stedfast <fejj@ximian.com>
* configure.in: Check for netdb.h, gethostname and gethostbyname.
* gmime/gmime-utils.c (g_mime_utils_generate_message_id): Guard
against systems without netdb.h, gethostname() and/or
gethostbyname(). Seems MingW does not have these things.
* gmime/gmime-gpg-context.c (gpg_ctx_get_diagnostics): Flush the
diagnostics stream and append a nul-byte. This allows us to return
a const char * which will allow us to avoid strdup/free later.
(gpg_ctx_free): Unref the diagnostics stream.
(gpg_ctx_new): Get the locale charset and setup a charset filter
for the diagnostics stream (use a stream instead of a GByteArray
like we did before so we can do charset conversion more easily).
(gpg_ctx_op_step): Use g_mime_stream_write() to append data to the
diagnostics buffer instead of g_byte_array_append() - this way we
get some charset filtering action. When reporting errors, use
gpg_ctx_get_diagnostics(). Also make the errors reported to the
user a little nicer.
(gpg_sign): Diagnostics is now const, so don't free the result.
(gpg_verify): Same. But also don't exit the main loop when gpg
exits - there could still be data in the pipes left to read.
(gpg_encrypt): Same as gpg_sign().
(gpg_decrypt): Same here.
(gpg_import_keys): Here too.
(gpg_export_keys): And here.
(gpg_ctx_parse_status): Convert the userid hint to UTF-8.
2003-04-07 Jeffrey Stedfast <fejj@ximian.com>
* README: Bumped version to 2.0.5
* configure.in: Bumped version to 2.0.5
2003-03-30 Jeffrey Stedfast <fejj@ximian.com>
* gmime/gmime-message.c (g_mime_message_set_subject): Encode the
subject before setting it in the raw header list.
2003-03-30 Jeffrey Stedfast <fejj@ximian.com>
* README: Bumped version to 2.0.4
* configure.in: Bumped version to 2.0.4
* gmime/gmime-header.c (g_mime_header_add): Don't try to encode
the header here. This is not our responsibility.
(g_mime_header_set): Same.
2003-03-11 Charles Kerr <charles@rebelbase.com>
* gmime/md5-utils.c (md5_get_digest_from_file): fix
dangling file pointer.
2003-03-09 Jeffrey Stedfast <fejj@ximian.com>
* gmime/url-scanner.c (g_url_addrspec_end): Check inptr == pos +
1, if true then return FALSE.
2003-03-06 Jeffrey Stedfast <fejj@ximian.com>
* configure.in: Check that the compiler supports the inline
optimisation keyword (or variant) and #define it to 'inline'.
* gmime/gtrie.c (trie_utf8_getc): Same.
* gmime/gmime-filter-html.c (html_utf8_getc): Use the inline macro.
2003-03-04 Jeffrey Stedfast <fejj@ximian.com>
* gmime/gmime-filter-charset.c (filter_filter): Set outlen equal
to outbuf - filter->outbuf - this is a much clearer way to
calculate the outlen. The other way might have even been wrong.
(filter_complete): Same.
2003-03-02 Jeffrey Stedfast <fejj@ximian.com>
* README: Bumped version to 2.0.3
* configure.in: Bumped version to 2.0.3
* gmime/gmime-iconv.c (iconv_cache_bucket_new): If the current
list of cache buckets is non-NULL, set list->prev to the new
bucket being prepended.
(g_mime_iconv_open): Only expire unused if the cache size is
greater than the max allowable size.
2003-02-27 Jeffrey Stedfast <fejj@ximian.com>
* gmime/gmime-stream-filter.c (stream_read): Set priv->flushed to
TRUE if we call g_mime_filter_complete() on our filters.
(stream_eos): It's not actually the end of the stream until we've
flushed the filters. This fixes some possible truncation when
reading from a filtered stream.
2003-02-13 Jeffrey Stedfast <fejj@ximian.com>
* README: Bumped version to 2.0.2
* configure.in: Bumped version to 2.0.2
* gmime/gmime-parser.c (parser_scan_content): Stop looping if/when
we find EOS in all cases. Also handle the case where an
[end-]boundary ends an an EOS rather than a new-line.
2003-02-14 Jeffrey Stedfast <fejj@ximian.com>
* gmime/url-scanner.c (g_url_file_end): If the file:// url is
preceded with some sort of brace, when scanning for the end of the
url - take this into consideration.
(g_url_web_end): Same.
2003-02-13 Jeffrey Stedfast <fejj@ximian.com>
* gmime/gmime-gpg-context.c: #include <sys/time.h>
2003-02-12 Jeffrey Stedfast <fejj@ximian.com>
* gmime/url-scanner.c: Fixed the table to treat >=127 as a CTRL
character.
* gmime/gtrie.c (trie_utf8_getc): When we encounter an invalid
UTF-8 sequence, update in to point to in+1 and return 0xffff.
(g_trie_add): Handle invalid UTF-8 sequences (ie, c == 0xffff).
(g_trie_search): Same.
* gmime/gmime-filter-html.c (html_utf8_getc): Shortcut if inptr ==
inend by returning 0 and treating it as if we found the
terminating nul-char.
2003-02-08 Jeffrey Stedfast <fejj@ximian.com>
* configure.in: Bumped the version to 2.0.1
* docs/*: A completely new set of documentation.
2003-02-07 Jeffrey Stedfast <fejj@ximian.com>
* gmime/gmime-multipart.c (multipart_remove_part): When the part
being removed is not the first part in the list, make sure to set
node->prev->next = node->next -- oops :-)
(multipart_remove_part_at): Same.
2003-01-25 Jeffrey Stedfast <fejj@ximian.com>
* configure.in: Bumped the version to 2.0.0
* gmime/gmime-filter-html.c (writeln): Read the stream as UTF-8
rather than 8bit so that we can properly write out unicode
entities.
2002-12-17 Jeffrey Stedfast <fejj@ximian.com>
Build fixes for G_DISABLE_DEPRECATED
* gmime/gmime-param.c (encode_param): Replace calls to
g_string_sprintfa() with g_string_append_printf() since the former
is marked as being deprecated.
(param_list_format): Same.
* gmime/gmime-utils.c (rfc2047_encode_word): Here too.
2002-12-16 Jeffrey Stedfast <fejj@ximian.com>
* configure.in: Bumped the version to 1.90.8
* doc/gmime-doc.sgml: Added a section for GMimeFilterMd5.
* doc/gmime-sections.txt: Added a section on GMimeFilterMd5.
* tests/test-parser.c (print_mime_struct): Validate Content-Md5
headers.
* gmime/gmime-part.c (g_mime_part_set_content_md5): Rewritten to
use the md5 filter and also to do things the right way by
converting textual parts to their canonical CRLF form.
(g_mime_part_verify_content_md5): Same.
* gmime/gmime-filter-md5.[c,h]: New filter to compute the md5
digest of a stream passed through it.
2002-12-11 Jeffrey Stedfast <fejj@ximian.com>
* gmime/gmime-message.c (g_mime_message_get_body): Reworked the
logic a bit to properly handle multipart/alternative.
2002-12-10 Jeffrey Stedfast <fejj@ximian.com>
* configure.in: Bumped the version to 1.90.7
2002-12-09 Jeffrey Stedfast <fejj@ximian.com>
* gmime/url-scanner.c: Use our own masking table since we need it
atoms to be slightly different. There's a few more chars we want
to restrict. Also has the benefit of being easier to split out if
someone else wants to use it.
(g_url_addrspec_end): Fixed to not be fooled in the case where the
address is followed immediately by a period.
(g_url_web_end): Made more robust.
(g_url_scanner_scan): Oops. We need to set the match->pattern
string pointer to the correct pattern before executing the
start/end methods (as some of them rely on this info).
2002-12-09 Jeffrey Stedfast <fejj@ximian.com>
* gmime/url-scanner.c: Don't need a hash table anymore.
(g_url_scanner_add): When adding a pattern to the trie, use the
array index as the pattern_id argument.
(g_url_scanner_scan): Use the matched_id set by g_trie_search() to
lookup the urlpattern_t instead of using a hash table.
* gmime/gtrie.c (g_trie_add): Now takes a pattern_id argument so
that we can avoid the use of GQuarks and thus save on unecessary
memory usage.
(g_trie_search): Instead of giving our caller back the pattern
string pointer, give him back the pattern id.
2002-12-09 Jeffrey Stedfast <fejj@ximian.com>
* gmime/gtrie.c (g_trie_matches): Removed.
(g_trie_search): Fixed the FIXME.
2002-12-09 Jeffrey Stedfast <fejj@ximian.com>
* gmime/gmime-filter-html.c: Modified to use url-scanner.c instead
of using glibc's regex routines. This has improved performance by
~16.5x not to mention that it is also more accurate than the regex
patterns had been (the url scanner can be setup to be much
stricter in the matching).
* gmime/url-scanner.c: New source file implementing a simple
expression scanner meant (currently designed for url matching)
which uses gtrie.
* gmime/gtrie.c: New source file implementing Aho-Corasick's Trie
graph algorithm.
2002-12-08 Jeffrey Stedfast <fejj@ximian.com>
Fix for bug #91536
* gmime/gmime-object.c (g_mime_object_register_type): Use a struct
to hold the object_type for the subtype hash. 64 archs use 32bit
ints and so using GINT_TO_POINTER() and GPOINTER_TO_INT() doesn't
work.
(g_mime_object_new_type): Get the object_type from the subtype
bucket.
2002-12-06 Jeffrey Stedfast <fejj@ximian.com>
* gmime/gmime-stream.c (g_mime_stream_writev): Pointer arithmetic
fixes.
* gmime/memchunk.c (memchunk_alloc): Pointer arithmetic fixes.
2002-12-03 Jeffrey Stedfast <fejj@ximian.com>
* gmime/gmime-utils.c (datetok): Modified to properly handle when
the first char of a token is a special char (such as a '-') that
is also used as a token delimiter.
2002-12-02 Jeffrey Stedfast <fejj@ximian.com>
* gmime/gmime-filter-html.c (g_mime_filter_html_init): match
REG_ICASE so we don't cut off at the first capital letter, duh.
2002-12-01 Jeffrey Stedfast <fejj@ximian.com>
* gmime/gmime-utils.c: #define _GNU_SOURCE for isblank on GNU
systems.
* gmime/gmime-gpg-context.c (gpg_ctx_op_wait): Fixed the errno
saving.
2002-11-21 Jeffrey Stedfast <fejj@ximian.com>
* gmime/gmime-message.c (write_received): After skipping the
special received token and it's value, skip any following comments
as well.
(skip_addrspec): Skip past the '.' and '@' chars before decoding
the next word or domain respectively.
2002-11-20 Jeffrey Stedfast <fejj@ximian.com>
* gmime/gmime-message.c (write_received): New function to nicely
format Received headers.
(write_msgid): New writer function that doesn't fold the msg-id no
matter now long it is.
(g_mime_message_init): Override the writer functions for Received
and Message-Id headers. Should we also override the writer
function for Path headers to not wrap?
* gmime/internet-address.c (decode_addrspec): Get rid of an extra
call to decode_lwsp that wasn't needed.
* gmime/gmime-header.c (g_mime_header_register_writer): Renamed.
2002-11-18 Jeffrey Stedfast <fejj@ximian.com>
* configure.in: Make sure to include -liconv on systems that need it.
2002-11-17 Jeffrey Stedfast <fejj@ximian.com>
* configure.in: Check for gethostbyname in -lnsl and also bump the
version to 1.90.6.
* src/getopt*.[c,h]: Added for portability to non-GNU systems.
* gmime/gmime-parser.c (g_mime_parser_init): Initialize scan_from
and have_regex here instead of in parser_init() since we don't
want these flags to be reset when a new stream gets set.
(g_mime_parser_new_with_stream): New convenience function.
2002-11-16 Jeffrey Stedfast <fejj@ximian.com>
* gmime/gmime-utils.c (decode_msgid): Eat the '<' before
continuing to parse the addr-spec.
2002-11-14 Jeffrey Stedfast <fejj@ximian.com>
* gmime/gmime-content-type.c
(g_mime_content_type_new_from_string): #include
"gmime-table-private.h" and use is_ttoken() to correctly parse
type/subtype. Fixes bug #98463.
2002-11-13 Jeffrey Stedfast <fejj@ximian.com>
* gmime/gmime-gpg-context.c (gpg_ctx_op_start): Don't bother
stat()ing gpg->path, if the file doesn't exist, the exec() call
will return immediately anyway.
2002-11-13 Jeffrey Stedfast <fejj@ximian.com>
* configure.in: Bumped the version to 1.90.5.
* gmime/Makefile.am: Remove gmime-exception-list.def from the
EXTRAS.
2002-11-12 Jeffrey Stedfast <fejj@ximian.com>
* doc/*: Updated.
* gmime/gmime-error.h: Added.
* gmime/gmime-multipart-encrypted.[c,h]: Use GError instead of
GMimeException.
* gmime/gmime-multipart-signed.[c,h]: Same.
* gmime/gmime-session.[c,h]: Here too.
* gmime/gmime-gpg-context.[c,h]: Don't use GMimeException anymore,
instead use GError.
* gmime/gmime-cipher-context.[c,h]: Same here.
* gmime/gmime.h.in: Remove gmime-exception.h and add gmime-error.h
2002-11-09 Jeffrey Stedfast <fejj@ximian.com>
* configure.in: Generate src/Makefile.
* Makefile.am: Add src to the SUBDIRS.
* src/Makefile.am: Build uuencode and uudecode.
* src/uuencode.c: New source file emulating GNU shareutils'
uuencode.
* src/uudecode.c: New source file emulating GNU shareutils'
uudecode.
2002-11-07 Jeffrey Stedfast <fejj@ximian.com>
* configure.in: Bumped the version to 1.90.4
* PORTING: New document meant to help developers port their
applications from gmime-1.0 to gmime-2.0.
* iconv-detect.c: Removed unused variables and #include <stdlib.h>
* gmime/gmime-multipart.c
(g_mime_multipart_get_subpart_from_content_id): Init part to NULL.
* gmime/gmime-stream-cat.c (stream_write): Init n to -1 each time
through the outer loop.
* gmime/gmime-filter-strip.c: #include <string.h> for memcpy.
* gmime/gmime-filter-html.c (html_convert): Make sure to
initialise depth to 0 each loop so we don't use it uninitialised.
2002-11-07 Jeffrey Stedfast <fejj@ximian.com>
* gmime*.[c,h]: Moved to gmime/ subdirectory. Also updated to
#include <gmime/some-header.h> instead of #include "some-header.h"
* test-*.c: Moved to tests/ subdirectory.
2002-11-06 Jeffrey Stedfast <fejj@ximian.com>
* Makefile.am: Install headers to $(includedir)/gmime-2.0/gmime
2002-11-04 Jeffrey Stedfast <fejj@ximian.com>
* gmime-filter-basic.c (g_mime_filter_basic_new_type): Set the
new->type to type.
2002-11-01 Jeffrey Stedfast <fejj@ximian.com>
* gmime.h.in: Wrap in #ifdef __cplusplus
* gmime-filter-html.c (html_convert): If flush is TRUE, flush any
remaining input rather than backing it up.
2002-10-31 Jeffrey Stedfast <fejj@ximian.com>
* gmime-gpg-context.c: Renamed stdin to stdin_fd, stdout to
stdout_fd, and stderr to stderr_fd to be more portable.
2002-10-30 Jeffrey Stedfast <fejj@ximian.com>
* gmime-filter-html.c (html_convert): Rewrote to use regex for
url/addr extraction. Outputs more correct html now too.
2002-10-18 Jeffrey Stedfast <fejj@ximian.com>
* gmime-stream-filter.c (stream_read): Change presize from an int
to a size_t to fix a 64bit cleanliness bug.
(stream_write): Same.
2002-10-14 Jeffrey Stedfast <fejj@ximian.com>
* gmime-gpg-context.c (gpg_ctx_get_argv): Setup the import/export
command-line.
(gpg_ctx_op_step): Handle import/export errors.
(gpg_import_keys): Implemented.
(gpg_export_keys): Implemented.
(gpg_ctx_op_step): Don't do anything with gpg's stdin unless we
have something to write to it (exporting keys doesn't require
writing to gpg's stdin).
2002-10-13 Jeffrey Stedfast <fejj@ximian.com>
* doc/*: Updated.
* gmime-utils.c (g_mime_utils_generate_message_id): New function
to generate a valid unique message-id string.
2002-10-08 Jeffrey Stedfast <fejj@ximian.com>
Fixes to make g_mime_message_partial_split_message() use the
correct token as the id parameter.
* gmime-object.c (g_mime_object_set_content_id): Same as with
GMimeMessage::message_id.
(process_header): Same as process_header for gmime-message.c but
for content_id.
* gmime-message.c (process_header): Set only the addr-spec portion
of the msgid.
(g_mime_message_set_message_id): Treat the message_id passed in as
the addr-spec msgid (ie, as if it didn't contain <>'s).
2002-10-02 Jeffrey Stedfast <fejj@ximian.com>
* gmime-gpg-context.c (gpg_import_keys): Renamed.
(gpg_export_keys): Renamed.
* gmime-cipher-context.c (g_mime_cipher_export_keys): Renamed to
be friendlier toward c++.
(g_mime_cipher_import_keys): Renamed to be similarly named with
the above function.
2002-09-30 Jeffrey Stedfast <fejj@ximian.com>
* configure.in: Bumped version.
* Makefile.am: Don't install gmime.m4
* gmime.m4: Removed.
2002-09-30 Jeffrey Stedfast <fejj@ximian.com>
* gmime-filter-charset.c (filter_filter): Rewritten, don't set
errno to 0 before calling iconv (we can't assume that on success
errno will not be set?). Also, don't grow the buffer here, save
any un-converted text in the backup buffer to be converted next
time through.
(filter_complete): Pick up the slack of filter_filter by
converting anything left over.
2002-09-29 Jeffrey Stedfast <fejj@ximian.com>
* gmime-filter[c,h]: Ported to GObject.
* gmime-filter-basic.[c,h]:
* gmime-filter-best.[c,h]:
* gmime-filter-charset.[c,h]:
* gmime-filter-crlf.[c,h]:
* gmime-filter-from.[c,h]:
* gmime-filter-html.[c,h]:
* gmime-filter-strip.[c,h]:
* gmime-filter-yenc.[c,h]: Ported to the new GMimeFilter.
* gmime-data-wrapper.c (write_to_stream): Unref the filter after
adding it to the filtered stream.
* gmime-multipart-encrypted.c
(g_mime_multipart_encrypted_encrypt): Unref the filters once we've
added them to the filtered_stream.
(g_mime_multipart_encrypted_decrypt): And here.
* gmime-multipart-signed.c (g_mime_multipart_signed_sign): Unref
the filters once we've added them to the filtered_stream.
(g_mime_multipart_signed_verify): Same here.
* gmime-part.c (write_content): Unref the filter.
(g_mime_part_set_pre_encoded_content): Here too.
* gmime-stream-filter.c (g_mime_stream_filter_add): Ref the filter
here.
(g_mime_stream_filter_remove): Unref the filter.
(g_mime_stream_filter_finalize): Unref the filters here.
2002-09-23 Jeffrey Stedfast <fejj@ximian.com>
* gmime-filter-charset.c: Try our best to handle EILSEQ (illegal
multibyte sequences) by eating the illegal bytes and
continuing. This seems to be what users expect (it's what Mozilla
seems to do).
2002-09-15 Jeffrey Stedfast <fejj@ximian.com>
* gmime-charset.c (g_mime_charset_name): Don't g_assert after
using strtoul on the iso charset name, seems that some news
clients use 'isolatin' as if it were a real charset (it's not) and
we don't want to abort() on this.
2002-09-14 Jeffrey Stedfast <fejj@ximian.com>
* doc/*: Updated.
* gmime-utils.c (g_mime_utils_decode_message_id): New function to
decode a message-id as defined by rfc822.
(g_mime_references_decode): New function to decode a references or
in-reply-to header.
(g_mime_references_append): New function to append a raw
message-id to a GMimeReferences list.
(g_mime_references_clear): New function to clear a GMimeReferences
list.
* internet-address.c (decode_addrspec): New function to parse an
addr-spec needed by the msg-id decoder.
(decode_lwsp): Make public.
(decode_word): Same.
2002-09-08 Jeffrey Stedfast <fejj@ximian.com>
* gmime-utils.c (parse_broken_date): Wrap printfs in d() to
prevent them from printing anything unless debugging is turned on.
2002-09-03 Jeffrey Stedfast <fejj@ximian.com>
* gmime-utils.c (get_tzone): Fixed to not get false positives when
the token is shorter than the actual timezone string (but matches
the first little bit of it).
2002-09-03 Tomasz K�oczko <kloczek@pld.org.pl>
* Makefile.am: fixes for automake >= 1.5 (removed duplicated
variables) and few minor cleanups and better method for install gmime
aclocal macros.
* doc/Makefile.am: fixes for "make install DESTDIR=</install/prefix>".
2002-09-01 Jeffrey Stedfast <fejj@ximian.com>
* internet-address.c (decode_mailbox): When erroring out due to no
local part in the add-spec, set *in to inptr + 1 so we don't get
into an infinite loop.
* gmime-message-part.c (message_part_remove_header): Same as
below.
* gmime-multipart.c (multipart_remove_header): Same as
gmime-part.c
* gmime-part.c (mime_part_remove_header): Don't return anything
here since our function is supposed to return void.
2002-08-31 Jeffrey Stedfast <fejj@ximian.com>
* gmime-parser.c (parser_scan_mime_part_content): Pass `content'
into parser_scan_content(), fixes bug #92183.
2002-08-30 Jeffrey Stedfast <fejj@ximian.com>
* configure.in: Bumped version to 1.90.1
* doc/Makefile.am: Don't gtkdoc-fixxref if the user disabled
gtk-doc from the build.
2002-08-25 Jeffrey Stedfast <fejj@ximian.com>
* test-best.c: New test suite for the gmime-filter-best filter.
* gmime.h.in: Added gmime-filter-best.h
* gmime-filter-best.c (g_mime_filter_best_charset): Never return
NULL, instead return us-ascii.
(filter_filter): Fixed to not get into an infinite loop.
2002-08-23 Jeffrey Stedfast <fejj@ximian.com>
* doc/*: Updated.
* gmime-message-part.c (message_part_write_to_stream): Changed the
prototype to return ssize_t and not int.
2002-08-21 Jeffrey Stedfast <fejj@ximian.com>
* gmime-filter-best.c: New filter for calculating the best charset
and encoding for a stream.
* gmime-iconv-utils.c (g_mime_iconv_locale_to_utf8): Make
threadsafe.
(g_mime_iconv_locale_to_utf8_length): Same.
(g_mime_iconv_utf8_to_locale): Here too.
(g_mime_iconv_utf8_to_locale_length): And here.
* gmime.c (g_mime_init): Updated to call
g_mime_charset_map_init().
* gmime-charset.c (g_mime_charset_locale_name): Initialize the
charset map if it hasn't already been initialized.
(g_mime_charset_map_init): Renamed from g_mime_charset_init().
(g_mime_charset_init): Renamed from charset_init() and also made
it globally accessable.
(g_mime_charset_step): New external function (was an internal
function before).
(g_mime_charset_best_name): Now an external function also.
2002-08-19 Jeffrey Stedfast <fejj@ximian.com>
* gmime-gpg-context.c (gpg_decrypt): Report better errors for when
gpg fails to be executed.
(gpg_encrypt): Same.
(gpg_verify): Here too.
(gpg_sign): And here.
(gpg_ctx_op_start): Try stat()ing the gpg binary to make sure it
exists and when handling an exception, save errno so we can re-set
it after cleanup.
2002-08-11 Jeffrey Stedfast <fejj@ximian.com>
* gmime-iconv.c: Instead of checking for #ifdef _REENTRANT, just
check #ifdef G_THREADS_ENABLED and use a GStaticMutex rather than
a pthread_mutex_t.
* gmime-charset.c (g_mime_charset_init): Use nl_langinfo() if it
is available.
(g_mime_charset_name): Call g_mime_charset_init() if
iconv_charsets is NULL (meaning the programmer did not properly
initialize gmime). Also do mutex locking around the use of the
iconv_charset hash table.
2002-08-10 Jeffrey Stedfast <fejj@ximian.com>
* test-pgpmime.c (test_multipart_signed): Unref the content object
after setting it on the MIME part.
* gmime-multipart-signed.c (g_mime_multipart_signed_sign): Unref
the content object after setting it on the MIME part.
(g_mime_multipart_signed_verify): Unref the content object after
we're done with it.
* gmime-multipart-encrypted.c
(g_mime_multipart_encrypted_encrypt): Unref the content object
after setting it on the MIME part.
(g_mime_multipart_encrypted_decrypt): Unref the content object
after we're done with it.
* gmime-message-partial.c
(g_mime_message_partial_reconstruct_message): Unref the content
object when we're done with it.
(g_mime_message_partial_split_message): Unref the content object
after setting it on the MIME part.
* gmime-parser.c (parser_scan_mime_part_content): Unref the
content object after setting it on the MIME part.
* gmime-part.c (g_mime_part_set_content_object): Ref the new
content object and unref the old.
(g_mime_part_get_content_object): Ref the content object before
returning it to our caller.
(g_mime_part_finalize): Unref the content object.
* gmime-data-wrapper.c: Rewritten to subclass GObject.
(g_mime_data_wrapper_destroy): Removed.
(g_mime_data_wrapper_write_to_stream): Virtualize.
2002-08-08 Jeffrey Stedfast <fejj@ximian.com>
* gmime-iconv.c: Implemented an all new iconv cache. Also has the
beginnings of thread-safety but I'd really need to fix the
Makefiles to conditionally link with -lpthread before it'd be of
any value as well as needing to make gmime-charset.c's functions
thread-safe.
2002-08-07 Jeffrey Stedfast <fejj@ximian.com>
* gmime-message.c (message_remove_header): If the header to be
removed is one of the special headers, then g_free() the cached
value on the message object and set it to NULL. Fixes bug #90138.
2002-08-05 Jeffrey Stedfast <fejj@ximian.com>
* doc/*: Updated.
* gmime-multipart-signed.c (g_mime_multipart_signed_sign):
Documented.
(g_mime_multipart_signed_verify): Documented.
* gmime-filter-from.c (g_mime_filter_from_new): Updated the
documentation to explain the new mode argument.
* gmime-multipart-encrypted.c
(g_mime_multipart_encrypted_encrypt): Documented.
(g_mime_multipart_encrypted_decrypt): Documented.
* gmime-gpg-context.c (g_mime_gpg_context_get_always_trust):
Implemented.
2002-08-04 Jeffrey Stedfast <fejj@ximian.com>
* doc/*: Updated.
2002-08-03 Jeffrey Stedfast <fejj@ximian.com>
* gmime-message.c (g_mime_message_set_message_id): Revert Charles'
previous fix and just g_return_if_fail() if the message_id is NULL
instead.
(g_mime_message_set_subject): Same for NULL subjects.
(g_mime_message_set_reply_to): Here too.
(g_mime_message_set_sender): Again here.
(g_mime_message_add_header): Check that the value != NULL.
(g_mime_message_set_header): Same here.
* internet-address.c (decode_mailbox): Changed a for-loop into a
while-loop to make the code a tad easier to read. Also fixed a
type-o that meant to wrap a debug printf in d(). While we're at
it, g_strstrip the resulting comment before using it as the name
part of the address.
2002-08-02 Jeffrey Stedfast <fejj@ximian.com>
* gmime-message-part.c: Fix some comments that say "message/*"
(which is meant as a wildcard mime-type match) and change them to
just "message" to prevent compiler warnings about a /* being
inside a comment.
* gmime-charset.c: Get rid of a #include "unicode.h". This is no
longer needed since we use glib2's unicode stuff.
2002-08-02 Charles Kerr <charles@rebelbase.com>
* gmime-message.c (gmime_message_foreach_part): if the message
isn't a multipart message, just invoke the callback directly,
passing in the single part.
* gmime-message.c (gmime_message_set_message_id): work around
a g_strstrip() warning if message_id is NULL.
* gmime-part.c (g_mime_part_get_content_object): remove "const"
from the retval; otherwise it's impossible to add a new filter.
2002-07-31 Jeffrey Stedfast <fejj@ximian.com>
* gmime-filter-html.c (is_addr_char): Don't use "isprint(c)" to
mean "c >= 32 && c < 128" since it doesn't in most locales.
(is_url_char): Same.
(is_trailing_garbage): Same.
(is_domain_name_char): New macro for dns-valid characters
(email_address_extract): Use is_domain_name_char rather than
is_addr_char for the part after the @.
2002-07-30 Jeffrey Stedfast <fejj@ximian.com>
* gmime-parser.c (parser_step_headers): Finish the fix from
yesterday, the last statement of the while-loop needs to
re-calculate `len' for parser_fill().
2002-07-30 Charles Kerr <charles@rebelbase.com>
* gmime-message.c (message_remove_header): Fix April 3 2002 bug
that kept message-remove-header from removing headers.
2002-07-29 Jeffrey Stedfast <fejj@ximian.com>
* gmime-message.c (message_get_headers): Write the toplevel MIME
Part's headers to the string as well, this fixes bug #88632 in
bugzilla.gnome.org.
2002-07-29 Jeffrey Stedfast <fejj@ximian.com>
The following changes are meant to address bug #88100 on
bugzilla.gnome.org - I'm as of yet unsure whether or not GMime
should override the Message-Id write function or if Pan should do
it. I'm sort of leaning towards Pan doing it simply because the
current behavior is RFC compliant and the bug is really a "we need
a workaround for a buggy NNTP server". However... It might just be
simpler to have GMime do it.
* gmime-header.c (g_mime_header_new): Init a new hash table that
stores info on how to write a particular header.
(g_mime_header_destroy): Free the hash table.
(g_mime_header_set_write_func): Set the writer function for a
header.
(g_mime_header_write_to_stream): Use the specified header write
function for each ehader. If one wasn't specified, use the
default.
2002-07-29 Charles Kerr <charles@rebelbase.com>
* remove strlib.[ch]
* use g_strcasecmp instead of strcasecmp
* use g_strncasecmp instead of strncasecmp
* use g_stpcpy instead of stpcpy
* added "#include <string.h>" where needed
2002-07-29 Charles Kerr <charles@rebelbase.com>
* gmime-filter-strip: fix trivial compiler warning.
* gmime-message-part.c: same.
* gmime-multipart-signed.c: same.
* gmime-object.c: same.
* gmime-param.c: same.
* gmime-session.c: same.
* test-iconv.c: same.
* test-mbox.c: same.
* test-parser.c: same.
* test-partial.c: same.
2002-07-29 Jeffrey Stedfast <fejj@ximian.com>
* gmime-parser.c (parser_step_headers): When refilling, make sure
that the refilled buffer is larger than the buffer was before
refilling, otherwise break out of the loop and parse whatever is
left. Fixes bug #89260 on bugzilla.gnome.org
2002-07-27 Jeffrey Stedfast <fejj@ximian.com>
* gmime-stream-cat.c (stream_read): Initialize `n' at the
beginning of the while-loop so that it can't be used
uninitialized.
* gmime-parser.c (header_parse): Check to make sure that the
header was valid (ie, `colon' == ':'). If not, then set
header->value to "".
2002-05-26 Charles Kerr <charles@rebelbase.com>
* alloca.c: removed.
* gmime-charset.c: use g_alloca instead of alloca.
* gmime-filter-from.c: same.
* gmime-filter-strip.c: same.
* gmime-iconv.c: same.
* gmime-param.c: same.
* gmime-part.c: same.
* gmime-utils.c: same.
* memchunk.c: same.
2002-07-21 Jeffrey Stedfast <fejj@ximian.com>
* gmime-filter-crlf.c (filter_filter): Fix to not add an extra \r
for pre-canonicalised streams.
2002-07-19 Jeffrey Stedfast <fejj@ximian.com>
* gmime-iconv-utils.c (g_mime_iconv_strndup): Fix a logic mistake
in the calculation of the number of bytes converted.
2002-07-18 Jeffrey Stedfast <fejj@ximian.com>
* gmime-part.c (set_disposition): Fix to parse the disposition
parameter values rather than assuming it is only the "attachment"
or "inline" part of the value.
2002-07-14 Jeffrey Stedfast <fejj@ximian.com>
* configure.in: check for gmtime_r
* gmime-utils.c (g_mime_utils_header_format_date): Use gmtime_r() if
we have this function available to us.
* gmime-parser.c (parser_step_from): Save the From-line offset.
(g_mime_parser_get_from_offset): Newly implemented function used
for retrieving the offset of the From-line (for use when parsing
mbox files).
2002-07-11 Jeffrey Stedfast <fejj@ximian.com>
* strlib.c (strlcpy): Changed to behave the same as the Solaris
strlcpy function.
(strlcat): Changed to behave the same as the Solaris strlcat
function.
2002-07-04 Jeffrey Stedfast <fejj@ximian.com>
* gmime-iconv-utils.c (g_mime_iconv_strndup): Fix for
nul-terminating some multibyte charsets.
2002-06-28 Jeffrey Stedfast <fejj@ximian.com>
* gmime-gpg-context.c (gpg_ctx_op_step): If we get an EOF from the
status-fd, then set gpg->complete to TRUE.
(gpg_ctx_get_argv): Use --charset=UTF-8 and --keyserver-options to
disable auto-key-retrieve rather than the deprecated
--no-auto-key-retrieve flag.
2002-06-27 Jeffrey Stedfast <fejj@ximian.com>
* gmime-gpg-context.c (gpg_ctx_op_step): Loop on our reads while
errno is EINTR or EAGAIN. Also make sure to completely read stdout
and stderr by keeping better state.
(gpg_ctx_parse_status): If we encounted a NODATA error from gpg
and we have diagnostics output, use that as the exception string.
(gpg_ctx_op_exited): New function to determine if the gpg process
has exited.
(gpg_ctx_op_wait): Reuse any exit status information from
gpg_ctx_op_exited().
(gpg_verify): Check that the gpg process has not exited each loop.
2002-06-26 Jeffrey Stedfast <fejj@ximian.com>
* gmime-multipart-signed.c (g_mime_multipart_signed_sign): Once
we've created the mime-part stream and armored the From lines and
such, create a new MIME part based on this stream (since normally
our QP encoder will not armor From lines) and use it as the
content part for this multipart/signed part rather than the
original MIME part.
(multipart_signed_write_to_stream): This can now be simplified by
calling our parent class's write_to_stream implementation since
g_mime_multipart_signed_sign() takes care of all the From
armoring.
2002-06-26 Jeffrey Stedfast <fejj@ximian.com>
* test-pgpmime.c: New test suite for the pgp/mime code.
* gmime-gpg-context.c (gpg_ctx_parse_status): Handle a NODATA
status message from gpg.
* gmime-message.c (g_mime_message_new): Don't set NULL header
values via the g_mime_object_set_header interface.
* gmime-object.c (g_mime_object_add_header): Don't allow value == NULL.
(g_mime_object_set_header): Same.
* gmime.h.in: Updated to #include the new headers related to
encryption and digital signatures.
* gmime.c (g_mime_init): register the multipart/encrypted and
multipart/signed cclass types.
* gmime-multipart-signed.c: Fixed to compile cleanly.
(multipart_signed_write_to_stream): We need to handle writing out
the subparts ourselves because we need to armor From-lines.
* gmime-multipart-encrypted.c: Fixed to compile cleanly.
2002-06-25 Jeffrey Stedfast <fejj@ximian.com>
* gmime-param.c (g_string_append_len_quoted): Append length as
advertised rather than appending the whole string. Oops.
* gmime-multipart-encrypted.c
(g_mime_multipart_encrypted_decrypt): Ugh, the
g_return_val_if_fail()'s should be returning NULL.
* test-pgp.c: New test suite to make sure that the gpg code works.
* gmime-gpg-context.c: Keep more state as it seems we needed
it. Also keep information such as trust level and whether the
signature was found to be valid and such (in case we ever decide
to use it).
2002-06-24 Jeffrey Stedfast <fejj@ximian.com>
* gmime-multipart-signed.c (g_mime_multipart_signed_get_type):
Register as a subclass of a GMimeMultipart.
* gmime-multipart-encrypted.c
(g_mime_multipart_encrypted_get_type): Same.
* gmime-gpg-context.[c,h]: A new class implementing the
GMimeCipherContext interfaces for GnuPG.
* gmime-session.[c,h]: New abstract session class for use by the
cipher context classes for requesting passphrases/etc.
* gmime-cipher-context.c (g_mime_cipher_context_finalize): Unref
the gmime-session.
2002-06-22 Jeffrey Stedfast <fejj@ximian.com>
* gmime-part.c: Oops, a prototype had the wrong return type.
2002-06-19 Jeffrey Stedfast <fejj@ximian.com>
* gmime-multipart.c: Oops, some prototypes had the wrong return
type.
2002-06-15 Jeffrey Stedfast <fejj@ximian.com>
* gmime-parser.c (parser_scan_mime_part_content): Use
g_mime_stream_mem_new_with_byte_array() so that the mem stream
owns the byte array so we don't leak.
2002-06-12 Jeffrey Stedfast <fejj@ximian.com>
* gen-table.c: Updated.
* gmime-utils.c (quoted_decode): Oops. ESPECIALs are allowed
inside of the encoded-text section of the encoded-word.
* gmime-message.c (process_header): Add some NULL-protection.
* gmime-iconv.c (g_mime_iconv_open): If the from charset is
"x-unknown", replace it with the user's locale charset.
2002-06-11 Jeffrey Stedfast <fejj@ximian.com>
* gmime-parser.c (parser_scan_mime_part_content): If the parser
stream is not seekable, then scan the content into a memory
stream.
2002-06-09 Jeffrey Stedfast <fejj@ximian.com>
* gmime-2.0.pc.in: New file for use in pkg-config.
* gmime-filter-strip.[c,h]: New source files implementing a stream
filter for stripping trailing whitespace from lines (needed for
PGP/MIME).
* gmime-exception.[c,h]: New source files implementing generic
error reporting functionality.
* gmime-cipher-context.[c,h]: New abstract class for performing
common functionality (such as encryption, decryption, signing,
verifying, importing keys, and exporting keys) needed by any MIME
cipher suite (PGP/MIME and S/MIME specifically).
* gmime-multipart-signed.[c,h]: New source files implementing the
multipart/signed specification.
* gmime-multipart-encrypted.[c,h]: New source files implementing
the multipart/encrypted specification.
2002-06-06 Jeffrey Stedfast <fejj@ximian.com>
* test-mbox.c (test_parser): Test the new set_header_regex
function.
* gmime-parser.c (g_mime_parser_set_header_regex): New convenience
function to allow an application to be notified when a header
matching a particular pattern is parsed by the
parser. Particularly useful for finding the Status: header when
parsing mbox files.
2002-06-04 Jeffrey Stedfast <fejj@ximian.com>
* gmime-iconv-utils.c (g_mime_iconv_strndup): Pull up past fixes
from the gmime-1 branch.
2002-06-02 Jeffrey Stedfast <fejj@ximian.com>
* gmime.c (g_mime_init): Register the message-part class.
* gmime-message-part.c: New class for handling message/* subparts.
* gmime-parser.c (parser_scan_message_part): Handle mime parts of
type message.
(parser_construct_leaf_part): Find out if the leaf part is
actually a message part.
* gmime-filter-from.c (g_mime_filter_from_new): Now takes a mode
argument to specify how "From "'s should be protected.
(filter_filter): If we are to armor the "From " then transform it
into "=46rom " otherwise transform it into the normal ">From ".
2002-05-31 Jeffrey Stedfast <fejj@ximian.com>
* gmime/gmime-stream-cat.c (stream_read): Rewritten to work
correctly. This was broken worse than I could imagine :-)
(stream_write): Fix similarly.
2002-05-30 Jeffrey Stedfast <fejj@ximian.com>
* gmime-stream-cat.c (stream_reset): Same.
* gmime-stream-file.c (stream_reset): Same.
* gmime-stream-fs.c (stream_reset): If the stream position is
already reset, just return 0.
2002-05-23 Jeffrey Stedfast <fejj@ximian.com>
* doc/*: Updated documentation.
2002-05-22 Jeffrey Stedfast <fejj@ximian.com>
* gmime-multipart.c (multipart_write_to_stream): Avoid adding an
extranious newline character when a preface doesn't exist.
2002-05-20 Jeffrey Stedfast <fejj@ximian.com>
* gmime-part.c (g_mime_part_set_content_md5): Fix some compiler
warnings as well as doing some more error handling.
(g_mime_part_verify_content_md5): Same.
* md5-utils.c: Removed some compiler warnings.
2002-05-20 Jeffrey Stedfast <fejj@ximian.com>
* gmime-stream-cat.c (stream_seek): Return the absolute offset
into the cat stream rather than the relative offset of one of the
substreams on success. Fixed a few other things too.
(stream_read): Fix the logic here so that we never try reading
from a stream that is current at EOS.
2002-05-16 Jeffrey Stedfast <fejj@ximian.com>
* gmime-parser.c (parser_scan_mime_part_content): Only compensate
for the '\n' if we found a boundary.
2002-05-16 Charles Kerr <charles@rebelbase.com>
* gmime-filter-yenc.c: fixed regression that caused end line of
yenc encoding to not be detected. This was causing crc errors in Pan.
2002-05-14 Jeffrey Stedfast <fejj@ximian.com>
* gmime-stream-filter.c (stream_destroy): Removed.
2002-05-12 Jeffrey Stedfast <fejj@ximian.com>
* gmime-stream-cat.c (stream_read): Don't allow our caller to read
past the end of the stream.
(stream_write): Same.
(stream_seek): Don't forget to add the current source stream's
bound_start when seeking on the current source stream.
* gmime-message-partial.c (g_mime_message_partial_init): Zero our
extra fields.
(g_mime_message_partial_finalize): Cleanup strdup'd memory.
(message_partial_set_content_type): Implemented.
(g_mime_message_partial_class_init): Override set_content_type().
(g_mime_message_partial_get_id): Simplify.
(g_mime_message_partial_get_number): Simplify.
(g_mime_message_partial_get_total): Simplify.
* gmime-multipart.c (multipart_set_content_type): Implement.
(g_mime_multipart_class_init): Override set_content_type().
* gmime-object.c: Make set_content_type() virtual.
2002-05-12 Jeffrey Stedfast <fejj@ximian.com>
* gmime-message-partial.c (partial_compare): Fixed to work
properly.
2002-05-12 Jeffrey Stedfast <fejj@ximian.com>
* test-partial.c: New test suite for gmime-message-partial.c.
* gmime-stream-cat.c: Several fixes.
(g_mime_stream_cat_class_init): Overload the seek method.
* gmime-stream-mmap.c (g_mime_stream_mmap_class_init): Overload
the seek method.
* gmime-stream-buffer.c (g_mime_stream_buffer_class_init):
Overload the seek method.
* gmime-stream-null.c (g_mime_stream_null_class_init): Overload
the seek method.
* gmime-stream-filter.c (g_mime_stream_filter_class_init):
Overload the seek method.
* gmime-stream.c (g_mime_stream_class_init): Overload the seek
method.
* gmime-stream-mem.c (g_mime_stream_mem_class_init): Overload the
seek method.
* gmime-stream-file.c (g_mime_stream_file_class_init): Overload
the seek method.
(stream_length): The length of the stream is bound_end -
bound_start.
* gmime-stream-fs.c (g_mime_stream_fs_class_init): Overload the
seek method.
(stream_length): The length of the stream is bound_end -
bound_start.
2002-05-10 Jeffrey Stedfast <fejj@ximian.com>
* gmime-stream-cat.c (stream_reset): Use stream_seek().
(stream_read): Seek to position before starting our read, this is
to protect against one of our source streams being read while we
weren't looking and/or a substream related to our cat stream.
(stream_write): Same.
2002-05-09 Jeffrey Stedfast <fejj@ximian.com>
* gmime-message-partial.c: New class to handle MIME parts with a
content-type of message/partial.
* gmime.c (g_mime_init): Register the message/partial class.
* gmime-object.c (g_mime_object_new_type): If we fail to find an
appropriate mime object class, try falling back to the */*
handler. Only if that fails do we return NULL.
2002-05-08 Jeffrey Stedfast <fejj@ximian.com>
* Makefile.am: Added gmime-stream-cat.c to the build.
* gmime-stream-cat.c: New stream that acts similar to the Unix
`cat` command by concatenating multiple streams.
2002-05-07 Jeffrey Stedfast <fejj@ximian.com>
* gmime-stream-fs.c (stream_write): Do more error handling and
also try to write out everything.
2002-05-02 Jeffrey Stedfast <fejj@ximian.com>
* gmime-charset.c (main): Generate the multibyte charsets without
the need for using external .dat files. Also attempt to condense
the charset-map table a bit.
* gen-multibyte.c: Removed.
2002-04-30 Jeffrey Stedfast <fejj@ximian.com>
* gmime-charset.c (main): Instead of converting the multibyte
charset tables to UTF-8 and then using the unicode functions to
convert UTF-8 to UCS4, just convert directly to UCS4. Also fixed a
type-o in the Big5.dat filename (it should be Big5.dat not
Big5.data).
2002-04-26 Jeffrey Stedfast <fejj@ximian.com>
* gmime-parser.c (parser_fill): Try to align the end of our
left-over buffer with realbuf + SCAN_HEAD so that we avoid: 1)
completely filling the prespace or 2) reading more than SCAN_BUF
bytes per read() call.
2002-04-25 Jeffrey Stedfast <fejj@ximian.com>
* gmime-utils.c (g_mime_utils_base64_decode_step): Only backtrack
if we have output data.
2002-04-23 Jeffrey Stedfast <fejj@ximian.com>
* gmime-utils.c (rfc2047_encode_phrase): Fixed a small memory
leak. Thanks to the Pan guys for finding this.
2002-04-21 Jeffrey Stedfast <fejj@ximian.com>
* gmime-parser.c (parser_step_from): Fixes to make it work.
(g_mime_parser_eos): New function to tell if a parser is at the
end of it's stream.
2002-04-20 Jeffrey Stedfast <fejj@ximian.com>
* docs/*: Updated.
* configure.in: Add $srcdir to the include path so it catches
iconv-detect.h.
2002-04-18 Jeffrey Stedfast <fejj@ximian.com>
* gmime-parser.c (parser_step_headers): Take advantage of the same
optimization as parser_scan_content.
2002-04-17 Jeffrey Stedfast <fejj@ximian.com>
* gmime-parser.c (parser_scan_content): Optimized by a good 15% by
simply changing my inner while-loop. See comment for explanation.
* gmime-part.c (g_mime_part_encoding_from_string): Added support
for the binary encoding.
(g_mime_part_encoding_to_string): Same.
* gmime-utils.h: Added GMIME_PART_ENCODING_BINARY.
2002-04-17 Jeffrey Stedfast <fejj@ximian.com>
* gmime-parser.c (parser_scan_multipart_subparts): Don't leak
objects!
2002-04-16 Jeffrey Stedfast <fejj@ximian.com>
* gmime-message.c (process_header): process the headers we care
about.
(message_add_header): Call process_header.
(message_set_header): Same.
* gmime-part.c (process_header): process the headers we care
about.
(mime_part_add_header): Call process_header.
(mime_part_set_header): Same.
* gmime-object (process_header): process the headers we care
about.
(add_header): Call process_header.
(set_header): Same.
2002-04-15 Jeffrey Stedfast <fejj@ximian.com>
* gmime-parser.c (g_mime_parser_set_scan_from): New accessor
method to set whether or not to scan from-lines.
(g_mime_parser_get_scan_from): New accessor method to get the
from-line mode.
2002-04-14 Jeffrey Stedfast <fejj@ximian.com>
* gmime-utils.c (datetok): Treat ',' as a token delimeter. Also
updated the datetok lookup table.
* configure.in: Check for off_t, size_t, and ssize_t.
2002-04-15 Jeffrey Stedfast <fejj@ximian.com>
* gmime-parser.[c,h]: Brand spankin' new parser. Seems to work for
at least simple messages, needs a lot more love though.
* gmime-stream*.c: Don't use a base_class init or finalize.
* gmime-object.c: Same.
* gmime-part.c: Same here.
* gmime.c (g_mime_init): Call g_type_init.
* gmime-utils.c (g_mime_utils_header_fold): Slight bugfix to get
rid of extra whitespace at the end of a line.
* gmime-multipart.c (g_mime_multipart_set_preface): New accesor
function to set the multipart preface.
(g_mime_multipart_get_preface): New accesor function to get the
multipart preface.
(g_mime_multipart_set_postface): New accesor function to set the
multipart postface.
(g_mime_multipart_get_postface): New accesor function to get the
multipart postface.
(write_to_stream): Don't force a preface if we don't have one.
2002-04-08 Jeffrey Stedfast <fejj@ximian.com>
* gmime-object.c: Don't tie the type-registry lifetime to the
GMimeObject lifetime.
* gmime.c (g_mime_init): Register our generic and multipart/* MIME
object classes here.
* gmime-part.c (g_mime_part_class_init): Don't register ourselves
here anymore.
* gmime-multipart.c (g_mime_multipart_class_init): Don't register
ourselves here anymore.
2002-04-07 Jeffrey Stedfast <fejj@ximian.com>
* gmime-utils.c (g_mime_utils_uuencode_close): Fixed a bug that
crept in during my simplification.
2002-04-07 Jeffrey Stedfast <fejj@ximian.com>
* gmime-part.c (g_mime_part_set_content_id): Wrap the object
set_content_id.
(g_mime_part_get_content_id): Same.
* gmime-multipart.c
(g_mime_multipart_get_subpart_from_content_id): Compare the
object->content_id's.
* gmime-object.c (g_mime_object_set_content_id): New function
since the Content-Id should really be stored on the object class.
(g_mime_object_get_content_id): Same.
(set_header): If we are setting the Content-Id header, also set
our internal content_id member.
(add_header): Same.
* gmime-content-type.c (g_mime_content_type_set_parameter):
Renamed from g_mime_content_type_add_parameter.
* gmime-multipart.c (g_mime_multipart_new_with_subtype): New
convenience function.
* Makefile.am temporarily removed gmime-parser.c from the
build. It needs to be completely rewritten from scratch pretty
much.
2002-04-06 Jeffrey Stedfast <fejj@ximian.com>
* gmime-part.c (g_mime_part_add_subpart): Removed.
(g_mime_part_set_boundary): Removed.
(g_mime_part_get_boundary): Removed.
* gmime-object.c (g_mime_object_get_content_type_parameter): New
function.
(g_mime_object_set_content_type_parameter): New function.
* gmime-multipart.c (g_mime_multipart_new): New function, forgot
to implement it before ;-)
(multipart_set_boundary): Set the boundary parameter on the
content-type.
2002-04-06 Jeffrey Stedfast <fejj@ximian.com>
* gmime-part.c (g_mime_part_foreach): Removed.
(g_mime_part_get_subpart_from_content_id): Same.
* gmime-multipart.c (g_mime_multipart_foreach): Moved here from
gmime-part.c:g_mime_part_foreach since this is really only meant
to work on multiparts.
(g_mime_multipart_get_subpart_from_content_id): Same idea here too.
* gmime-object.c (g_mime_object_set_content_type): Move
g_mime_part_set_content_type up to the GMimeObject abstraction.
(g_mime_object_get_content_type): Same.
2002-04-03 Jeffrey Stedfast <fejj@ximian.com>
* gmime-message.c: Initial port to GObject.
2002-04-02 Jeffrey Stedfast <fejj@ximian.com>
* gmime-message.c (g_mime_message_add_recipients_from_string):
Destroy the temporary addrlist.
2002-03-29 Jeffrey Stedfast <fejj@ximian.com>
* configure.in: Detect the iconv-friendly formats for iso charsets
at configure time and dump them into iconv-detect.h for use in
gmime-charset.c.
* gmime-charset.c: Updated to use iconv-detect.h if it exists.
2002-03-25 Jeffrey Stedfast <fejj@ximian.com>
* gmime-multipart.c: Compile fixes.
* gmime-header.c (g_mime_header_write_to_stream): Now returns the
number of bytes written or -1 on fail.
* gmime-object.c: Compile fixes.
* gmime-stream-null.c (g_mime_stream_null_finalize): And finally
here.
* gmime-stream-mmap.c (g_mime_stream_mmap_finalize): Here too.
* gmime-stream-mem.c (g_mime_stream_mem_finalize): And again...
* gmime-stream-fs.c (g_mime_stream_fs_finalize): Again here.
* gmime-stream-filter.c (g_mime_stream_filter_finalize): Here too.
* gmime-stream-file.c (g_mime_stream_file_finalize): Same.
* gmime-stream-buffer.c (g_mime_stream_buffer_finalize): Call
GObject's finalize function.
2002-03-24 Jeffrey Stedfast <fejj@ximian.com>
* memchunk.c: Make this compile.
* internet-address.c (decode_mailbox): No longer check
gmime_interfaces_utf8 as that was a hack in gmime-1's branch.
* gmime-charset.c (charset_step): Sync with the gmime-1 branch. We
now have multibyte charset detection.
* gmime-utils.c: Sync with gmime-1's changed.
(rfc2047_decode_word): Always convert decoded text to UTF-8.
(rfc2047_encode_phrase_get_words): We can always assume our input
is in UTF-8 now.
(rfc2047_encode_phrase): Sam here.
(g_string_append_len): Removed since glib2 now has this function.
* gmime-param.c (decode_param): Make sure the decoded text is
valid UTF-8.
(encode_param): Convert to the best charset before encoding.
(g_string_append_len): Removed since glib2 now has this function.
* gmime.c (g_mime_init): Initializes gmime. We no longer care
about GMIME_INIT_FLAGS_UTF8 as we now always use UTF-8 interfaces.
2002-03-17 Jeffrey Stedfast <fejj@ximian.com>
* gmime-stream-null.c (g_mime_stream_null_get_type): Use
GMIME_TYPE_STREAM as our base class.
(g_mime_stream_null_class_init): Our parent class is a
GMIME_STREAM_CLASS, not a G_OBJECT_CLASS.
(g_mime_stream_null_finalize): Call our parent's finalize, which
is GMIME_STREAM_CLASS's finalize, not G_OBJECT_CLASS's finalize.
* gmime-stream-mmap.c: Same.
* gmime-stream-filter.c: Here too.
* gmime-stream-file.c: And here.
* gmime-stream-fs.c: Again here.
* gmime-stream-mem.c: And again...
* gmime-stream-buffer.c: And finally here.
* gmime-multipart.[c,h]: New class that inherits from GMimeObject
that represents a MIME multipart.
2002-03-17 Jeffrey Stedfast <fejj@ximian.com>
* gmime-object.c: Ported to glib2 by subclassing GObject and also
added a GMimeHeader data member and methods to access those
headers as well as adding abstract methods for getting the headers
as one big string buffer and writing the object headers/content to
a stream.
* gmime-stream-*.c (*_class_init): Don't set a destroy handler -
we can't, we don't have a virtual function pointer for it!
* gmime-stream.c (g_mime_stream_substream): Use GET_CLASS since we
are passing in an object.
(g_mime_stream_length): Same.
(g_mime_stream_tell): Here too.
(g_mime_stream_seek): And here.
(g_mime_stream_reset): And again here.
(g_mime_stream_eos): Again.
(g_mime_stream_close): Here too.
(g_mime_stream_flush): Same.
(g_mime_stream_write): Same here.
(g_mime_stream_read): And finally here.
(g_mime_stream_class_init): Setup default implementations of all
the stream methods. Also no longer set a destroy handler.
* gmime-stream-buffer.[c,h]: Updated to subclass the new
GMimeStream based on GObject.
2002-03-16 Jeffrey Stedfast <fejj@ximian.com>
* gmime-stream-filter.[c,h]: Updated to subclass the new
GMimeStream based on GObject.
* gmime-stream-fs.[c,h]: Updated to subclass the new GMimeStream
based on GObject.
* gmime-stream-file.[c,h]: Updated to subclass the new GMimeStream
based on GObject.
* gmime-stream-mmap.[c,h]: Updated to subclass the new GMimeStream
based on GObject.
* gmime-stream-null.[c,h]: Updated to subclass the new GMimeStream
based on GObject.
* gmime-stream-mem.[c,h]: Updated to be based on the new
implementation of GMimeStream.
* gmime-type-utils.h: New file to contain some more-friendly
type-cast macros around the glib2 ones.
* gmime-stream.[c,h]: Now subclasses GObject. Not sure if I got
everything right, but I think it's mostly there?
2002-03-15 Charles Kerr <charles@rebelbase.com>
* gmime-filter-charset.c: fixed minor compiler warnings.
* gmime-iconv-utils.c: same.
* test-html.c: same.
* test-iconv.c: same.
* test-mime.c: same.
* test-streams.c: same.
2002-03-15 Jeffrey Stedfast <fejj@ximian.com>
* gmime-utils.c (g_mime_utils_uudecode_step): Fixed a logic
mistake. All is good now in the land of UU :-)
2002-03-15 Charles Kerr <charles@rebelbase.com>
Syncing up with small changes from Pan...
* gmime-content-type.c: remove unused #include <alloca.h>
* gmime-message.c: same.
* gmime-part.c: same.
* internet-address.c: same.
* gmime-filter-basic.c: add #include <string.h> (strncmp)
* gmime-filter-yenc.c: add #include <string.h> (strncmp)
* gmime-iconv-utils.c: add #include <string.h> (strlen)
* gmime-iconv.c: add #include <string.h> (strlen)
* gmime-iconv.c: add #include <stdio.h> (sprintf)
2002-03-14 Jeffrey Stedfast <fejj@ximian.com>
* gmime-filter-yenc.c (filter_reset): Added a switch-statement
based on direction. Yes, for now the INIT state for encode/decode
are both the same but this may change? Probably not but oh well
:-)
(g_mime_ydecode_step): Sync up with Charles' yenc fixes.
2002-03-13 Jeffrey Stedfast <fejj@ximian.com>
* gmime-filter-yenc.c: Compile fixes.
2002-03-12 Jeffrey Stedfast <fejj@ximian.com>
* gmime-filter-yenc.c (g_mime_filter_yenc_get_pcrc): Finalize the
crc before returning.
(g_mime_filter_yenc_get_crc): Same.
2002-03-12 Jeffrey Stedfast <fejj@ximian.com>
* gmime-filter-yenc.c: New filter to encode/decode yEnc streams.
2002-03-03 Jeffrey Stedfast <fejj@ximian.com>
Thanks to Carlos Morgado <chbm@chbm.nu>
* gmime.spec.in: Fix.
2002-03-03 Jeffrey Stedfast <fejj@ximian.com>
* gmime-part.c (g_mime_part_write_to_stream): Get rid of some
extra line feeds.
2002-02-21 Jeffrey Stedfast <fejj@ximian.com>
* doc/*: Updated.
* configure.in: Updated version to 0.8.0
2002-01-25 Jeffrey Stedfast <fejj@ximian.com>
* gmime-charset.c (g_mime_charset_name): Updated for AIX, HPUX,
IRIX, and Sun systems.
2002-01-24 Jeffrey Stedfast <fejj@ximian.com>
* gmime-iconv.c (iconv_cache_bucket_add_node): Fixed an oops.
(iconv_cache_bucket_get_first_unused): Fixed another oops.
2002-01-20 Jeffrey Stedfast <fejj@ximian.com>
* gmime-data-wrapper.c (g_mime_data_wrapper_write_to_stream):
Handle the x-uuencode encoding type.
* gmime-utils.c (g_mime_utils_uuencode_close): No longer needs a
uulen argument since it is now compacted into the state argument.
(g_mime_utils_uuencode_step): Same here.
* gmime-filter-basic.c (filter_filter): Ignore data until we have
found the "begin" line. Also, we no longer need uulen.
(filter_complete): Same.
* gmime-part.c (g_mime_part_encoding_to_string): Handle
x-uuencode.
(g_mime_part_encoding_from_string): Same.
(g_mime_part_set_pre_encoded_content): Here too.
(write_content): And again here.
2002-01-19 Jeffrey Stedfast <fejj@ximian.com>
* gmime-iconv.c (iconv_node_new): Return the node - how did I miss
this!?
2002-01-18 Jeffrey Stedfast <fejj@ximian.com>
* configure.in: Fixed more silliness.
* acconfig.h: Added #undef's for some iconv stuff.
* gmime-filter-charset.c (g_mime_filter_charset_new): Put the
charset arguments in the right order.
* gmime-iconv.c (g_mime_iconv_open): Swap the to/from arguments so
that they are in the same order as iconv_open.
* gmime-iconv-utils.c (iconv_utils_init): Put the to/from
arguments in the right order.
2002-01-17 Jeffrey Stedfast <fejj@ximian.com>
* gmime-iconv-utils.c (g_mime_iconv_strndup): If we get an EILSEQ,
just return NULL rather than g_strndup'ing the original
string. We'd rather get back NULL and know it failed than get back
a string thinking everything went okay.
* configure.in: Fixed some silliness, thanks to Charles Schmidt.
2002-01-16 Jeffrey Stedfast <fejj@ximian.com>
* gmime-iconv-utils.c (g_mime_iconv_strndup): New utility function
to iconv n bytes of a string and return a buffer containing the
converted string.
(g_mime_iconv_strdup): Same but for the whole string.
(g_mime_iconv_locale_to_utf8): Converts a string in the locale
charset to utf8.
(g_mime_iconv_locale_to_utf8_length): Same but for a sublength of
the string.
(g_mime_iconv_utf8_to_locale): Converts a string from utf8 to the
locale charset.
(g_mime_iconv_utf8_to_locale_length): Same but for a sublength of
the string.
2002-01-15 Jeffrey Stedfast <fejj@ximian.com>
* test-iconv.c: test suite to make sure that the gmime-iconv cache
works.
* gmime-iconv.c (g_mime_iconv_init): Initialize the iconv_node
memchunk.
(g_mime_iconv_shutdown): Destroy the iconv_node memchunk.
(iconv_node_destroy): Use memchunk_free instead of g_free.
(iconv_node_new): Use memchunk_alloc.
(iconv_node_set_used): Add/Remove the node to the iconv_open_hash.
2002-01-14 Jeffrey Stedfast <fejj@ximian.com>
* configure.in: Bumped the version to 0.7.7
* doc/*: Updated to document the new gmime-iconv interfaces.
* gmime-filter-charset.c (g_mime_filter_charset_new): Use
g_mime_iconv_open instead of iconv_open. Also no longer need to
use g_mime_charset_name() since gmime-iconv does this for us.
(filter_destroy): Use g_mime_iconv_close() instead of
iconv_close().
* gmime-iconv.c (g_mime_iconv_open): New wrapper around
iconv_open() so that we can cache the results. This'll be a major
speedup for systems like Solaris where iconv_open() must dlopen a
module for each of the charsets. Also uses g_mime_charset_name()
to get the iconv-friendly charset name for you.
(g_mime_iconv_close): New wrapper around iconv_close().
2002-01-13 Jeffrey Stedfast <fejj@ximian.com>
* configure.in: Bumped version to 0.7.6
* doc/*: Updated to document the new charset code.
* gmime.h.in: Added #includes for gmime-charset.h and
gmime-filter-charset.h.
* gmime-filter-charset.c: New filter for converting text between
charsets using iconv.
* gmime-charset.c (g_mime_charset_name): New function to derive
the iconv-friendly name for a given charset.
2002-01-09 Charles Kerr <charles@rebelbase.com>
* internet-address.c (internet_address_list_prepend): replaced
"g_return_if_fail" with "g_return_val_if_fail".
* internet-address.c (internet_address_list_append): same.
* internet-address.c (internet_address_set_group): removed
unused variables to shut up compiler.
* gmime-param.c (rfc2184_decode): same.
2002-01-08 Jeffrey Stedfast <fejj@ximian.com>
* config.h.in: Added a #include <alloca.h> if HAVE_ALLOCA_H is
defined - this limits the number of places I have to conditionally
add #include <alloca.h> in the source files.
2002-01-05 Jeffrey Stedfast <fejj@ximian.com>
* gmime-utils.c (parse_broken_date): Implemented.
2002-01-04 Jeffrey Stedfast <fejj@ximian.com>
* memchunk.c (memchunk_clean): Oops, when tree_search() returns 0
we want to prune it, not the other way around :-)
2002-01-02 Jeffrey Stedfast <fejj@ximian.com>
* memchunk.c (memchunk_clean): Fixed a logic mistake that
prevented pruning of the head node.
2002-01-01 Charles Kerr <charles@rebelbase.com>
* gmime-message (g_mime_message_get_body): added g_return_val_if_fail
checks in the entry point.
2001-12-31 Jeffrey Stedfast <fejj@ximian.com>
* internet-address.c (decode_address): Optimized group parsing.
* doc/*: Updated.
2001-12-31 Jeffrey Stedfast <fejj@ximian.com>
* strlib.c (strncasecmp): Convert the chars to lowercase before
diffing.
2001-12-30 Jeffrey Stedfast <fejj@ximian.com>
* configure.in: Bumped version number to 0.7.5 since the
internet-address API and bits of the gmime-message API have
changed.
* internet-address.c (internet_address_new): Initialize the
refcount to 1.
(internet_address_destroy): This is now an internal function.
(internet_address_ref): New function to ref an InternetAddress
object.
(internet_address_unref): New function to unref an InternetAddress
object.
(internet_address_set_group): Updated to use the new
internet_address_list functions.
(internet_address_add_member): Same.
(internet_address_list_prepend): New function to manipulate a list
of InternetAddress objects.
(internet_address_list_append): Same.
(internet_address_list_concat): Another new function.
(internet_address_list_length): Again...
(internet_address_list_destroy): Destroy a list of addresses.
(internet_address_list_to_string): New utility function to write a
list of addresses to a string.
(internet_address_parse_string): Optimized slightly by not using
GLists' generic append function and also updated to use
InternetAddressList.
* gmime-message.c (recipients_destroy): Updated to call
internet_address_list_destroy.
(sync_recipient_header): Updated to let the InternetAddress code
do the work for us.
(g_mime_message_add_recipient): Updated to use the new
InternetAddress API.
(g_mime_message_add_recipients_from_string): Same.
(g_mime_message_get_recipients): Return an InternetaddressList
instead of GList.
2001-12-30 Jeffrey Stedfast <fejj@ximian.com>
* strlib.c (strncasecmp): Do null-checking.
* TODO: Remove features that have already been
implemented/fixed/whatever.
2001-12-30 Jeffrey Stedfast <fejj@ximian.com>
* memchunk.c (memchunk_clean): Prune 'cleaned' nodes from our
free-node list. Thanks to Charles Kerr for discovering this bug.
* strlib.c (strncasecmp): Moved the return calculation to within
the loop so as to only take a difference if the strings are not
identical. This also fixes a bug that would falsely return
non-zero for strings that were identical for the first n bytes.
2001-12-20 Jeffrey Stedfast <fejj@ximian.com>
* gmime-stream.c (g_mime_stream_construct): 'type' is now an
unsigned int rather than a signed int.
* memchunk.c (memchunk_clean): Oops. Don't forget to free the tree
after we're finished with it...
2001-12-18 Jeffrey Stedfast <fejj@ximian.com>
Various compiler warning fixes to several source files (mostly
"unused variable" type stuff).
2001-12-17 Jeffrey Stedfast <fejj@ximian.com>
* gmime-utils.c (datetok): reimplement to not use GLists
(appending is slow) and also to not g_strndup the token, instead
just remember it's offset and length so we can examine it later.
(decode_int): New function to decode an int.
(get_wday): Now takes an inlen argument.
(get_mday): Same. Also calls decode_int.
(get_month): Here too.
(get_year): Again here... also calls decode_int.
(get_tzone): Modified to use struct _date_token.
(get_time): Completely rewritten.
2001-12-16 Jeffrey Stedfast <fejj@ximian.com>
* memchunk.[c,h]: A memchunk library similar to g_mem_chunk's but
faster.
2001-12-16 Jeffrey Stedfast <fejj@ximian.com>
* configure.in: Added a --enable-warnings to turn on compiler
warnings.
* gmime-utils.c: Various compiler warning cleanup.
* gmime-object.c (g_mime_object_construct): Change the type
argument to be of type unsigned rather than int.
* gmime-filter-html.c (url_extract): g_strndup takes an unsigned
length argument.
* gmime-filter-from.c (filter_filter): memcpy takes an unsigned
length argument.
* gmime-disposition.c (g_mime_disposition_new): g_strndup takes an
unsigned length argument.
* gmime-content-type.c (g_mime_content_type_new_from_string):
g_strndup takes an unsigned length argument.
* gmime-charset.c (g_mime_charset_init): g_strndup takes an
unsigned length argument.
2001-12-16 Jeffrey Stedfast <fejj@ximian.com>
* gmime-part.c (g_mime_part_destroy): Now an internal-only method.
* gmime-message.c (g_mime_message_destroy): Now an internal-only
method.
2001-12-05 Jeffrey Stedfast <fejj@ximian.com>
* gmime-filter-basic.c (filter_filter):
(filter_complete): The outbuf for QP decoding can be up to len + 2
bytes and UU decoding outbuf can be up to len + 3 bytes.
2001-12-01 Jeffrey Stedfast <fejj@ximian.com>
* gmime-parser.c (parse_content_headers): Set is_multipart to
FALSE.
(g_mime_parser_construct_part_internal): Get the inlen properly
and do content-offsetting a little better by skipping past the
end-of-header marker.
* gmime-stream-buffer.c (g_mime_stream_buffer_gets): Use the
'register' keyword for some variables.
* gmime-data-wrapper.c (g_mime_data_wrapper_set_stream): Safeguard
against NULL streams.
(g_mime_data_wrapper_write_to_stream): Reset the stream before
writing too.
* gmime-stream-mem.c (stream_seek): Fix to work like the others.
(stream_read): On error, always return -1 (and not just any value
less than 0)
(stream_write): Same.
2001-11-30 Jeffrey Stedfast <fejj@ximian.com>
* gmime-part.c (write_content): Implemented a slight optimization
which bypasses the need to do any encoding in certain
circumstances.
2001-11-28 Jeffrey Stedfast <fejj@ximian.com>
* pan-mime-parser.c (parser_read_until_boundary): Make sure
boundary is non-NULL before calling strlen on it.
2001-11-26 Jeffrey Stedfast <fejj@ximian.com>
* gmime-parser.c (g_mime_parser_construct_part_internal): Fixed a
bug - don't set bounds on the original stream, set the bounds on
our temporary memory stream. Also got rid of find_header_end().
* gmime-filter-from.c (filter_filter): initialize fromcount to 0.
2001-11-25 Jeffrey Stedfast <fejj@ximian.com>
* strlib.c (strlcpy): BSD defines the prototype as returning
size_t, the strlen of the resultant string.
(strlcat): Same.
* gmime-stream-buffer.c (stream_flush): Oops, memmove the buffer
too and a smidgen of code cleanup.
(stream_reset): Fix reset for block write mode.
* configure.in: Bumped the version to 0.7.4 and added checks for
system mmap functions.
* gmime-stream-mmap.[c,h]: New stream that uses an mmaped buffer.
2001-11-24 Jeffrey Stedfast <fejj@ximian.com>
* doc/gmime-docs.sgml: Added documentation of the use of filters.
2001-11-23 Jeffrey Stedfast <fejj@ximian.com>
* gmime-stream-buffer.c (stream_seek): Implemented.
* gmime-parser.c (parse_content_headers): Fixed another memory
leak here.
* gmime-param.c (decode_param_list): Fixed a small memory leak.
2001-11-22 Jeffrey stedfast <fejj@ximian.com>
* gmime-filter-from.[c,h]: New filter to escape from-lines.
* pan-mime-parser.c (parser_read_until_boundary): Slight
optimization.
2001-11-21 Jeffrey Stedfast <fejj@ximian.com>
* gmime-utils.c (is_8bit_word_encoded): Make into a macro, we
don't need to do a strlen because the atom is a GString which
means we have it's length already. This also saves us some
overhead of calling a function.
(g_mime_utils_8bit_header_decode): Update to pass the len argument
to is_8bit_word_encoded.
2001-11-18 Jeffrey Stedfast <fejj@ximian.com>
* configure.in: Bumped version to 0.7.3
* gmime-param.c: GMimeParam is now a linked list of parameters
rather than a single name/value pair.
(g_mime_param_new_from_string): Now returns a parameter list based
on the input string rather than only returning a single parameter
name/value pair. Also updated to handle rfc2184 encoded
parameters.
(g_mime_param_destroy): Destroy the linked list of params.
(g_mime_param_append): Append a new parameter.
(g_mime_param_append_param): Append a new parameter object.
(g_mime_param_write_to_string): New function (which replaces
g_mime_param_to_string) which correctly encodes (either by quoting
the value or rfc2184 encoding it) the list of parameters and
optionally folds them suitable for header wrapping.
* gmime-disposition.[c,h]: New source files to handle
parsing/generating Content-Disposition headers.
* gmime-part.c (g_mime_part_destroy): Updated to use
g_mime_disposition_destroy.
(g_mime_part_set_content_disposition_object): New function for
setting the disposition object on a mime part.
(g_mime_part_set_content_disposition): Updated to use
g_mime_disposition_set.
(g_mime_part_get_content_disposition): Updated to use
g_mime_disposition_get.
(g_mime_part_add_content_disposition_parameter): Updated to use
g_mime_disposition_add_parameter.
(g_mime_part_get_content_disposition_parameter): Updated to use
g_mime_disposition_get_parameter.
(g_mime_part_set_filename): Updated to use
g_mime_disposition_add_parameter.
(g_mime_part_get_filename): Updated to use
g_mime_disposition_get_parameter.
* gmime-content-type.c (g_mime_content_type_new_from_string): Use
the gmime-param code to parse any Content-Type parameters.
(g_mime_content_type_destroy): Updated to use
g_mime_param_destroy.
(g_mime_content_type_add_parameter): Updated to use g_mime_param
functions.
* gmime-utils.c (g_mime_utils_header_fold): Fixed a small header
folding bug.
* gmime-parser.c (parse_content_headers): Updated to use the
GMimeDisposition parser.
* pan-mime-parser.c (parse_content_headers): Updated to use the
GMimeDisposition parser.
2001-11-16 Jeffrey Stedfast <fejj@ximian.com>
* configure.in: Bumped version to 0.7.2 due to the change-over to
refcounted mime objects.
* gmime-object[c,h]: New source files that implement an abstract
Object class.
* gmime-message.c: Updated to subclass GMimeObject
* gmime-part.c: Updated to subclass GMimeObject
(g_mime_part_set_content_header): Set an arbitrary mime content
header.
(g_mime_part_get_content_header): Get an arbitrary mime content
header.
(g_mime_part_add_child): Finally deprecated, please use
g_mime_part_add_subpart instead if you aren't already.
* gmime-parser.c: Updated to unref mime parts where appropriate as
well as set unknown content headers on mime parts.
* pan-mime-parser.c: Same as gmime-parser.c
2001-11-14 Jeffrey Stedfast <fejj@ximian.com>
* gmime-stream-null.c (g_mime_stream_null_new): A new stream,
similar to /dev/null basically.
2001-11-10 Jeffrey Stedfast <fejj@ximian.com>
* configure.in: Added checks for strlib functions and bumped the
version to 0.7.1 (there won't be an official 0.7.1 release but I
figure I should be bumping version numbers whenever I add
functionality).
* strlib.[c,h]: New string library that provides anything that the
system libc doesn't (includig strnstr and stpcpy).
* gmime-filter-html.[c,h]: New filter that converts plain text
into HTML suitable for display in things like GtkHTML (makes urls
into hyperlinks and preserves whitespace and such).
* gmime-parser.c (g_strstrbound): Removed.
(find_header_part_end): Use strnstr.
(g_mime_parser_construct_part_internal): Use strnstr.
2001-10-26 Jeffrey Stedfast <fejj@ximian.com>
* configure.in: Updated the version to 0.7.0
* doc/*: Updated.
2001-10-25 Jeffrey Stedfast <fejj@ximian.com>
* gmime-message.c (g_mime_message_new): Now takes an
"init_headers" argument, it doesn't really matter what value you
put here - it's more a "I want my message headers to be in a nice
friendly order rather than the order they are set in".
* gmime-parser.c (g_mime_parser_construct_message): Use
!preserve_headers as the init_headers argument to
g_mime_message_new ().
* pan-mime-parser.c (g_mime_parser_construct_message): Same.
2001-10-24 Jeffrey Stedfast <fejj@ximian.com>
* pan-mime-parser.c (construct_message_headers): Use
g_mime_header_add instead of g_mime_header_set so we can get
multiple of the same header (such as "Received:").
* gmime-parser.c (construct_headers): Use g_mime_header_add
instead of g_mime_header_set so we can get multiple of the same
header (such as "Received:") and also move it into the switch
statement into the default case.
* gmime-message.c (g_mime_message_set_header): New function to add
a header to a message.
* gmime-header.c (g_mime_header_add): New function to add a
header.
* gmime-stream.c (g_mime_stream_writev): New function to write a
vector to a stream.
2001-10-21 Jeffrey Stedfast <fejj@ximian.com>
* pan-mime-parser.c: Updated to use g_mime_stream_buffer_readln.
* gmime-stream-buffer.c (g_mime_stream_buffer_readln): New
convenience function to read a single line from a stream.
2001-10-12 Jeffrey Stedfast <fejj@ximian.com>
* gmime-part.c (g_mime_part_write_to_stream): No longer takes a
'toplevel' argument.
(g_mime_part_to_string): No longer takes a 'toplevel' argument.
* gmime-message.c (g_mime_message_write_to_stream): Write the
MIME-Version header here instead of needing to pass a 'toplevel'
argument to g_mime_part_write_to_stream().
* gmime-charset.c (g_mime_charset_init): Fix for Debian and
Solaris.
2001-10-09 Charles Kerr <charles@rebelbase.com>
* gmime-filter.c (g_mime_filter_construct): make sure outptr is
zeroed out before we read it in g_mime_filter_set_size().
2001-10-06 Jeffrey Stedfast <fejj@ximian.com>
* gmime-filter-basic.c (filter_filter): Implemented uuencoding.
(filter_complete): Implemented uuencoding.
* gmime-utils.c (g_mime_utils_uuencode_close): New function to
flush the uuencoder.
(g_mime_utils_uuencode_step): New function to uuencode a block of
data.
2001-10-05 Jeffrey Stedfast <fejj@ximian.com>
Fixes for c++ compilation
* gmime-stream*.c: s/template/stream_template
* gmime-filter*.c: s/template/filter_template
2001-10-04 Jeffrey Stedfast <fejj@ximian.com>
* gmime-data-wrapper.c (g_mime_data_wrapper_set_stream): If we
just change the order of operations, we can get away without a
second stream pointer.
* gmime-stream.c (g_mime_stream_substream): Revert.
* gmime-stream-buffer.c (stream_substream): Instead of calling
g_mime_stream_substream(), call the source stream's substream
method directly. I think this is the better fix for the bug
Charles just fixed.
2001-10-04 Charles Kerr <charles@rebelbase.com>
* gmime-stream.c (g_mime_stream_substream): fix refcount stealth
bug. Calling this on a buffered stream wound up reffing two
streams instead of one because of a nested call to
g_mime_stream_substream(). This took a lot of scaffolding to
find. :)
* gmime-data-wrapper.c (g_mime_data_wrapper_set_stream): fix
refcount paranoia bug. ref the new *before* unreffing the old
just in case new==old.
* gmime-filter-basic.[ch]: fix some compiler warnings that I
introduced yesterday. (Strange how the same version of gcc finds
different warnings on different platforms.)
2001-10-03 Charles Kerr <charles@rebelbase.com>
* gmime-part.c (g_mime_part_get_content): bugfix for when getting
the content from a stream-mem. We were just returning the
stream-mem's gbytearray buffer, but we need to check against the
stream's bounds.
* gmime-filter-basic.[ch]: added support for decoding a uuencoded
stream; added a placeholder for uuencoding a stream.
* md5-utils.c: commented out d(x) macro.
2001-10-02 Jeffrey Stedfast <fejj@ximian.com>
* gmime-stream-buffer.h: buflen should be an ssize_t not a
size_t. Thanks to Charles for catching this.
2001-10-01 Charles Kerr <charles@rebelbase.com>
* gmime-filter.c: include <string.h> to pick up memcpy prototype.
* gmime-stream-mem.c: same.
* gmime-stream-buffer.c: same.
* gmime-stream-filter.c: same.
* gmime-stream-mem.c (stream_flush): added a retval of 0.
* gmime-filter-crlf.h (g_mime_filter_crlf_new_type): renamed
prototype as g_mime_filter_crlf_new to sync with .c
* gmime-part.h: added g_mime_part_set_content_object() prototype.
* gmime-content-type.h: Replaced <> with "" in #include
<gmime-param.h>
* pan-mime-parser.c: added #include gmime-stream-buffer.h to pick
up prototype for g_mime_stream_buffer_gets.
(g_strstrbound): removed unused func.
* gmime-utils.c: on calls to ctype functions, explicitly upcast
the char arguments as ints to shut up gcc warnings on Solaris.
* gmime-param.c: same.
2001-09-29 Jeffrey Stedfast <fejj@ximian.com>
* pan-mime-parser.c: New parser (with exactly the same API as
gmime-parser.c) that is meant to parse MIME objects without
needing them to be memory mapped. Quite a bit slower on average,
but is vastly sped up by using a GMimeStreamBuffer in BLOCK_READ
mode.
* gmime-stream-buffer.c (stream_write): Incremement the stream
position by the number of bytes we wrote.
(stream_tell): Return stream->position.
(stream_substream): Just return a substream of our source stream.
(g_mime_stream_buffer_gets): Increment the stream position by the
number of bytes read if and only if we are operating on a buffered
stream.
2001-09-27 Jeffrey Stedfast <fejj@ximian.com>
* gmime-stream-file.c (stream_tell): Return stream->position here
too.
* gmime-part.c (g_mime_part_set_pre_encoded_content): Don't decode
into a stream and then set the data wrapper encoding to the
incoming encoding type, instead use filters to decode into the
stream and set the data wrapper encoding to the default.
* gmime-stream.c (g_mime_stream_set_bounds): Don't set the
position equal to end if end == -1.
* gmime-parser.c (g_mime_parser_construct_message): Use the stream
functions to find the beginning and end of the stream rather than
breaking abstractions. Also reset the mem stream after writing to
it.
(g_mime_parser_construct_part): Reset the mem stream here too.
(g_mime_parser_construct_part_internal): Use the stream interfaces
to get the position instead of breaking abstractions.
* gmime-stream-fs.c (stream_tell): Return stream->position.
* gmime-stream-mem.c (stream_seek): Return the new syteam
position.
(stream_tell): Return stream->position.
2001-09-23 Jeffrey Stedfast <fejj@ximian.com>
* doc/gmime-docs.sgml: Documented streams.
* gmime-stream-fs.c (stream_write): Seek to the position we think
we're at before attempting to write, and increment the stream
position after the write.
* gmime-stream-file.c (stream_write): Seek to the position we
think we're at... this is just in case we are or have substreams
that might have read or written in the meantime. Also remember to
increment the stream position after the write.
(stream_eos): Only return feof() if our end boundary is unlimited.
* gmime-stream-mem.c (stream_write): Start writing data at
stream->position rather than always appending it to the end of the
mem stream. Also don't go writing past the end boundary if it's
set.
(stream_length): Use a relative bound_end.
(stream_seek): Same.
(stream_eos): Here too.
(stream_write): And here.
(stream_read): And here.
(stream_substream): Correctly set the bounds.
(g_mime_stream_mem_new): Here too.
(g_mime_stream_mem_new_with_byte_array): And here.
(g_mime_stream_mem_new_with_buffer): Same.
(g_mime_stream_mem_set_byte_array): And finally here.
2001-09-22 Jeffrey Stedfast <fejj@ximian.com>
* test-streams.c: New test suite for streams.
* gmime-stream-buffer.c (stream_read): Fixed some logic bugs
(including forgetting a break statement at the end of a case).
(g_mime_stream_buffer_gets): Fixed some logic bugs.
* gmime-stream-mem.c (stream_read): Fixed logic error.
2001-09-21 Jeffrey Stedfast <fejj@ximian.com>
* gmime-stream-buffer.c (g_mime_stream_buffer_gets): Implemented.
(stream_reset): Implemented.
(stream_eos): Implemented.
(stream_write): Reimplemented.
(stream_read): Reimplemented.
2001-09-21 Jeffrey Stedfast <fejj@ximian.com>
* gmime-stream-buffer.[c,h]: New stream that buffers reads or
writes to/from another stream. Will also implement a gets() method
for Charles.
2001-09-20 Jeffrey Stedfast <fejj@ximian.com>
* gmime-stream-mem.c (stream_eos): Check for position >= instead
of == bound_end
* gmime-stream.c (g_mime_stream_eos): Do some simple bounds
checking.
* doc/*: Updated.
* gmime-part.c (g_mime_part_get_content_object): Added.
2001-09-19 Jeffrey Stedfast <fejj@ximian.com>
* gmime-stream-fs.c (stream_seek): Improve.
* gmime-stream-file.c (stream_reset): Oops, reset the position
pointer on a successful reset.
(stream_seek): Fixed.
2001-09-19 Jeffrey Stedfast <fejj@ximian.com>
* gmime-stream-fs.c (stream_reset): Reset the position offset. Doh!
* gmime-stream.c (g_mime_stream_write_to_stream): Don't increment
total if no bytes were read/written.
* gmime-stream-filter.c (stream_substream): Copy over the filters.
* gmime-part.c (g_mime_part_verify_content_md5): Updated.
(g_mime_part_set_content_md5): Updated.
(g_mime_part_get_content): Updated.
(write_content): Updated.
* gmime-data-wrapper.c (g_mime_data_wrapper_write_to_stream):
Implemented.
* gmime-filter-basic.[c,h]: A basic filter that does Base64 and QP
encoding/decoding.
* gmime-filter-crlf.[c,h]: A simple filter that does crlf(/dot)
encoding/decoding.
2001-09-19 Jeffrey Stedfast <fejj@ximian.com>
* gmime-data-wrapper.c (g_mime_data_wrapper_new_with_stream): Ref
the stream.
(g_mime_data_wrapper_set_stream): Same.
(g_mime_data_wrapper_get_stream): Return the internal stream.
(g_mime_data_wrapper_get_encoding): Return the internal stream's
encoding.
(g_mime_data_wrapper_write_to_stream): Not-yet-implemented.
* gmime-filter.[c,h]: Abstract class for filters.
* gmime-stream-filter.[c,h]: Abstract stream for filtering.
* gmime-part.c (g_mime_part_set_content): Updated for data-wrapper
changes.
(g_mime_part_set_content_byte_array): Same.
(g_mime_part_set_pre_encoded_content): And here.
(g_mime_part_get_content): And here too.
* gmime-parser.c (g_mime_parser_construct_part_internal): Fix
offset calculations.
(g_mime_parser_construct_part_internal): Updated for data-wrapper
changes.
2001-09-18 Jeffrey Stedfast <fejj@ximian.com>
* test-parser.c (test_parser): Updated.
* test-mime.c (test_parser): Updated.
* gmime-utils.h: Move the GMimePartEncodingType enum here.
* gmime-stream-fs.[c,h]: Implemented.
* gmime-stream.c (g_mime_stream_construct): New function to
initialize the stream data members.
(g_mime_stream_substream): New function to get a substream of
another stream.
(g_mime_stream_unref): If the stream is actually a substream,
unref it's "super" stream if we are destroying the substream.
* gmime-stream-mem.c (stream_substream): Implemented.
(g_mime_stream_mem_new): Updated to use g_mime_stream_construct().
(g_mime_stream_mem_new_with_byte_array): Same.
(g_mime_stream_mem_new_with_buffer): And here too.
* gmime-stream-file.c (stream_substream): Implemented.
(g_mime_stream_file_new): Updated to use
g_mime_stream_construct().
(g_mime_stream_file_new_with_bounds): Same.
* gmime-part.c (g_mime_part_set_content_md5): Updated to use
streams.
(g_mime_part_verify_content_md5): Same.
(g_mime_part_set_content): Updated to use streams and data
wrappers.
(g_mime_part_set_content_byte_array): Same.
(g_mime_part_set_pre_encoded_content): And here.
(g_mime_part_set_content_object): New function that allows one to
set the content object of a MIME part.
(g_mime_part_get_content): Updated to use streams.
(write_content): Same.
(g_mime_part_write_to_stream): Replacement for
g_mime_part_write_to_string().
(g_mime_part_to_string): Updated to use
g_mime_part_write_to_stream().
(g_mime_part_destroy): Updated to destroy the content object
rather than destroying a GByteArray (since we longer use a
GByteArray for the content data).
* gmime-parser.c (g_mime_parser_construct_message): Now takes a
stream argument instead of a string.
(g_mime_parser_construct_message_from_file): Deprecated.
(g_mime_parser_construct_part): Also takes a stream now.
* gmime-message.c (g_mime_message_write_to_stream): Replacement
for g_mime_message_write_to_string().
(g_mime_message_to_string): Updated.
* gmime-header.c (g_mime_header_write_to_stream): Replacement for
g_mime_header_write_to_string().
(g_mime_header_to_string): Updated.
2001-09-17 Jeffrey Stedfast <fejj@ximian.com>
* gmime-stream.[c,h]: Abstract stream class.
* gmime-stream-mem.[c,h]: Memory stream.
* gmime-stream-file.[c,h]: File stream.
* gmime-data-wrapper.[c,h]: Data wrapper class. Will be used as
the content object in MIME parts.
2001-08-23 Jeffrey Stedfast <fejj@ximian.com>
* gmime-utils.c (encode_8bit_word): Oops. Add the closing ? char.
(g_mime_utils_8bit_header_encode): Oops. Make sure we encode *all*
lwsp chars.
(g_mime_utils_8bit_header_decode): Slightly better fix for the
other day.
2001-08-19 Jeffrey Stedfast <fejj@ximian.com>
* doc/*: Updated.
2001-08-18 Jeffrey Stedfast <fejj@ximian.com>
* Makefile.am: Added gmime-charset.[c,h] to the build.
* gmime-charset.[c,h]: New source files for managing charset
related issues.
(g_mime_charset_init): New function to retrieve the user's locale
information for later use with gmime_charset_locale_name.
(g_mime_charset_locale_name): New function to return user's
locale.
* gmime-utils.c (g_mime_utils_8bit_header_decode): linear
whitespace isn't the only thing that can delimit atoms.
(get_codeset): Removed in favor of the new gmime-charset
functions.
(g_mime_utils_8bit_header_encode): Use g_mime_charset_locale_name.
(encode_8bit_word): And here too.
2001-08-15 Jeffrey Stedfast <fejj@ximian.com>
* internet-address.c (decode_mailbox): When returning due to a
missing local part, make sure to set *in to inptr.
2001-08-13 Charles Kerr <charles@rebelbase.com>
* gmime-utils.c (encode_8bit_word): query nl_langinfo for the
codeset instead of just assuming iso-8859-1. Thanks to Volodymyr
M . Lisivka <lvm@mystery.lviv.net> for suggesting this patch.
* gmime-utils.c (g_mime_utils_8bit_header_encode): same.
* gmime-parser.c (find_header_part_end): new utility function to
find the dividing line between body & header.
(g_mime_parser_construct_part): sync.
(g_mime_parser_construct_message): sync.
* gmime-parser.c (get_header_block): remove unused func.
(rfc822_headers): remove unused static array.
2001-07-02 Jeffrey Stedfast <fejj@ximian.com>
* zentimer.h: Added. Provides some timing macros for performace
testing.
* zenprofiler.h: Added. Extends zentimer.h as a simple profiler
that gives nice printouts.
* test-parser.c: Use zentimer.h
2001-06-23 Jeffrey Stedfast <fejj@ximian.com>
* gmime-header.c (g_mime_header_remove): New function.
(g_mime_header_set): Setting header to NULL no longer removes the
header. Use g_mime_header_remove instead.
* gmime-message.c (g_mime_message_write_to_string): No longer have
to sync the headers.
(g_mime_message_get_headers): Same.
(g_mime_message_set_sender): sync the From header.
(g_mime_message_set_reply_to): Sync the Reply-To header.
(g_mime_message_add_recipient): Sync the recipient header.
(g_mime_message_add_recipients_from_string): Same.
(g_mime_message_set_subject): Sync the Subject header.
(g_mime_message_set_date): Sync the date header.
(g_mime_message_set_message_id): Sync the Message-Id header.
2001-06-03 Jeffrey Stedfast <fejj@ximian.com>
* gmime-utils.c (quoted_encode): Minor cleanup.
2001-06-02 Jeffrey Stedfast <fejj@ximian.com>
* gmime-message.c (sync_headers): Oops. Don't place "Cc:" in the
header value string :-)
2001-03-31 Charles Kerr <charles@rebelbase.com>
* gmime-utils.c (g_mime_utils_8bit_header_decode): big speedups.
* gmime-utils.c (g_mime_utils_8bit_header_encode): small speedups.
2001-05-29 Jeffrey Stedfast <fejj@ximian.com>
* internet-address.c (decode_mailbox): Oops, test to make sure we
won't be running past the end of the buffer when considering a
retry. Thanks to Charles Kerr for this fix.
2001-03-29 Charles Kerr <charles@rebelbase.com>
* gmime-part.c (g_mime_part_append_pre_encoded_content): fix small
bug that crept into the last commit.
2001-05-29 Jeffrey Stedfast <fejj@ximian.com>
Fixes on behalf of Charles Kerr of Pan fame:
* gmime-parser.c (g_mime_parser_construct_part_from_file):
Use g_mime_part_append_pre_encoded_content().
* gmime-part.c (g_mime_part_append_pre_encoded_content): New
function so that the FILE parser doesn't need to manage it's own
content array.
* gmime-header.[c,h]: const'ify.
(g_mime_header_foreach): New function to call a chosen function
for each header in the header object.
2001-05-26 Jeffrey Stedfast <fejj@ximian.com>
* configure.in: Updated version to 0.6.0.
* README: Updated version to 0.6.0.
* doc/*: Updated again.
* gmime-header.c (g_mime_header_to_string): New function - mostly
for the sake of keeping with the API of the rest of GMime.
(g_mime_header_set): Make sure to always encode the header value
before we set it.
* gmime-part.c (g_mime_part_write_to_string): New function to
write the mime part to a GString.
(g_mime_part_to_string): Use g_mime_part_write_to_string.
* gmime-message.c (g_mime_message_get_headers): Use the new
g_mime_header_to_string function.
(g_mime_message_write_to_string): New function to write the
message to a GString.
(g_mime_message_to_string): Use write_to_string.
2001-05-25 Jeffrey Stedfast <fejj@ximian.com>
* doc/*: Updated.
* Makefile.am: Add gmime-header.[c,h] to the build.
* gmime-parser.c: Numerous changes to use gmime-header.
* gmime-message.c: Numerous changes to use gmime-header.
(g_mime_message_add_arbitrary_header): Removed.
(g_mime_message_set_header): The replacement for
add_arbitrary_header.
(g_mime_message_get_header): New function to get a header.
* gmime-header.[c,h]: New source fies to handle the complicated
nature of setting/getting header pairs.
2001-05-24 Jeffrey Stedfast <fejj@ximian.com>
* doc/*: Updated.
* doc/Makefile.am: Use $(INSTALL) and $(INSTALL_DATA) rather than
`install -m 644`
* alloca.c: New file for systems that do not have alloca().
* Makefile.am: build alloca.c
* gmime-utils.c: Don't #include <alloca.h> - this is now handled
by config.h.
* config.h.in: Added alloca define checks.
* acconfig.h: Remove some extra defines that we don't care about.
2001-05-20 Jeffrey Stedfast <fejj@ximian.com>
* gmime-parser.c (parse_content_headers): Simplified and also
unfolded content-headers.
* gmime-part.c (g_mime_part_get_filename): If there isn't a
disposition, make sure that we don't ignore the possibility of a
"name" param in the Content-Type header.
2001-05-12 Jeffrey Stedfast <fejj@ximian.com>
* gmime-utils.c (need_quotes): Include '.' as a char to quote.
* gen-table.c (main): Fixed a type-o.
* internet-address.c (decode_mailbox): Be a little more forgiving
about unexpected chars while parsing the name part of the email
address. Skip the bad char and then retry. If we fail again,
*then* we abort.
* gmime-utils.c: #include <alloca.h>
* gmime-parser.c (g_mime_parser_construct_part): Oops, inend
points to the end of the string, not the last char of the string
(ie, '\0' not the char before it).
2001-05-08 Jeffrey Stedfast <fejj@ximian.com>
* gmime-table-private.h: Oops, take out the check for isblank().
* internet-address.c (decode_quoted_string): Get rid of unused
variable.
(decode_address): Same.
2001-04-03 Jeffrey Stedfast <fejj@ximian.com>
* internet-address.c (decode_domain): Try to only get
"fully-qualified" domain names, or ones that "look" like they are
at least ;-)
(decode_mailbox): If decode_domain() returns NULL, don't append
the '@' char. Also make sure that the name is non-empty.
2001-04-01 Jeffrey Stedfast <fejj@ximian.com>
* gmime-utils.c (g_mime_utils_quote_string): Made smarter.
2001-03-31 Jeffrey Stedfast <fejj@ximian.com>
* Makefile.am: Added rules to build gen-table.c and added
gmime-table-private.h to the build.
* gen-table.c: New file to generate gmime-table-private.h if need
be.
* gmime-table-private.h: New file that contains
gmime_special_table.
* gmime-utils.c: Remove the gmime_special_table from here and
instead #include gmime-table-private.h.
* internet-address.c: #include gmime-table-private.h
2001-03-30 Jeffrey Stedfast <fejj@ximian.com>
* gmime-message.c (create_header): Simplified a tad.
(g_mime_message_add_recipient): Updated for the new
InternetAddress API.
(g_mime_message_add_recipients_from_string): Simplified greatly
using the new InternetAddress API.
* internet-address.[c,h]: Completely rewritten to be a lot more
rfc0822 compliant.
2001-03-28 Jeffrey Stedfast <fejj@ximian.com>
* README, configure.in: Updated version to 0.5.0
2001-03-29 Charles Kerr <charles@rebelbase.com>
* gmime-parser.c (g_mime_parser_construct_message_from_file): new
function to read a message from a FILE* instead of a character
array. This can be used to reduce the memory requirements of very
large messages.
* gmime-parser.c (get_next_line): new internal function.
* gmime-parser.c (g_mime_parser_construct_part_from_file): same.
* gmime-parser.c (parse_content_headers): same.
* gmime-parser.c (find_header_end): same.
* gmime-parser.c (get_header_block): same.
* gmime-parser.c (get_header_block_from_file): same.
2001-03-28 Jeffrey Stedfast <fejj@ximian.com>
* gmime-utils.c (get_time): Fix a compile warning.
2001-03-20 Charles Kerr <charles@rebelbase.com>
* gmime-utils.c (get_year): constify the argument list.
* gmime-utils.c (get_time): same.
* gmime-utils.c (get_days_in_month): if #0'ed out unused code.
* gmime-utils.c (parse_broken_date): same.
2001-03-15 Jeffrey Stedfast <fejj@ximian.com>
* internet-address.c (internet_address_new_from_string): Try to be
a little better about extracting the name, not 100% accurate but
better I guess.
2001-03-14 Jeffrey Stedfast <fejj@ximian.com>
* gmime-part.c (g_mime_part_get_content_disposition_parameter):
It's okay to have a NULL disposition or a NULL param hash.
(g_mime_part_get_filename): Same.
(g_mime_part_get_content): It's okay not to have content.
2001-03-13 Jeffrey Stedfast <fejj@ximian.com>
* gmime-utils.c (quoted_decode): Fix a possible buffer overrun.
2001-02-27 Jeffrey Stedfast <fejj@ximian.com>
* gmime-utils.c (parse_rfc822_date): Allow for time token to not
have a seconds field.
2001-02-11 Jeffrey Stedfast <fejj@ximian.com>
* gmime-part.c (g_mime_part_to_string): Oops. Don't init
content_md5 with the content location string ;-)
* gmime-parser.c (g_mime_parser_construct_part): Init content to
NULL to get rid of a warning (this doesn't really matter as 'len'
was init'd to 0)
* gmime-part.c: #include unistd.h
2001-01-27 Jeffrey Stedfast <fejj@helixcode.com>
* gmime-part.c (g_mime_part_set_content_byte_array): So
set_content_array() was no good. After inspecting glib it was
discovered that there are hidden data members of a GByteArray that
hold info like if the data is NUL terminated, how much data is
allocated, etc.
2001-01-26 Charles Kerr <charles@superpimp.org>
* gmime-part.c (g_mime_part_set_content_array): new function.
2001-01-25 Charles Kerr <charles@superpimp.org>
* gmime-part.c (g_mime_part_destroy): fix memory leak - the
disposition wasn't being g_free()d.
2001-01-24 Charles Kerr <charles@superpimp.org>
* gmime-part.c (g_mime_part_get_filename): Now takes a const
GMimePart.
2001-01-17 Jeffrey Stedfast <fejj@ximian.com>
* internet-address.c (encoded_name): Updated.
* gmime-part.c (g_mime_part_set_pre_encoded_content): Updated to
reflect changes to gmime-utils.
* gmime-utils.c (g_mime_utils_text_is_8bit): Take a len argument.
(g_mime_utils_best_encoding): Same.
(encode_8bit_word): Updated.
2001-01-14 Jeffrey Stedfast <fejj@ximian.com>
* gmime-parser.c (g_mime_parser_construct_part): Check for NULL
returns from g_strstrbound.
2001-01-11 Charles Kerr <charles@superpimp.org>
* gmime-utils.c (get_year): small patch to handle 2-digit year
representation a little better -- "71" now translates to 1971,
but "01" now translates to 2001. Thanks to Ihar Viarheichyk for
suggesting this change.
2001-01-07 Jeffrey Stedfast <fejj@helixcode.com>
* gmime-part.c (g_mime_part_set_content_md5): Don't allow the
setting of Content-MD5 headers for multipart/* and message/rfc822
types.
* rfc/rfc1864.txt: Added (Content-MD5 RFC).
2001-01-05 Jeffrey Stedfast <fejj@helixcode.com>
* gmime-part.c (g_mime_part_set_content_md5): Oops, didn't quite
do this right. It should be correct now.
(g_mime_part_verify_content_md5): New function to verify the
Content-MD5.
2001-01-04 Jeffrey Stedfast <fejj@helixcode.com>
* gmime-parser.c (g_mime_parser_construct_part): Added support for
parsing Content-Location and Content-Md5 headers. Trim excess
trailing \n's. Also fix a bug where the end boundary would get
included as part of the last MIME Part's contents.
(g_strstrbound): Bounded strstr.
* configure.in:
* README: Updated version to 0.4.0
* Makefile.am: Added md5-utils to the build.
* md5-utils.[c,h]: Added.
* gmime-part.c (g_mime_part_to_string): Slightly new
implementation. Also added in support for Content-Location and
Content-Md5 headers.
(g_mime_part_destroy): Return if the mime part is
NULL. Also free the new content_location and content_md5 headers.
(g_mime_part_set_content_md5): Implemented.
(g_mime_part_get_content_md5): Implemented.
(g_mime_part_set_content_location): Implemented.
(g_mime_part_get_content_location): Implemented.
(get_content_type): Append a '\n'.
2001-01-01 Jeffrey Stedfast <fejj@helixcode.com>
* doc/gmime-sections.txt: Updated.
* doc/sgml/*: Updated.
* doc/html/*: Updated.
2000-12-24 Jeffrey Stedfast <fejj@helixcode.com>
* gmime-parser.c (g_mime_parser_construct_part): Don't set the
boundary if we are able to get the boundary from the content-type
because we'll just set the same data over again which is a
waste. Also tack a \n onto the ends of the boundary markers so
that "blah_" and "blah_D" don't trick the parser. Fix it so that
an empty part won't set any contents (since setting a 0-length
content stream causes a segfault).
(construct_headers): Take an inlen argument so that we can parse
headers without needing to strdup before passing into this
function.
(g_mime_parser_construct_message): Don't strdup the headers since
we can just pass in the length to the construct_headers() function
now.
2000-12-18 Jeffrey Stedfast <fejj@helixcode.com>
* gmime-parser.c (g_mime_parser_construct_part): Moved from being
an internal-only function.
2000-12-28 Charles Kerr <charles@superpimp.org>
* gmime-utils.c (g_mime_utils_text_is_8bit): gracefully handle
a NULL pointer being passed in. Thanks to Christophe Lambin for
reporting this problem.
2000-12-14 Charles Kerr <charles@superpimp.org>
* gmime-messge.c (g_mime_message_get_message_id): change
g_return_if_fail() to g_return_val_if_fail() to ensure that
a value is always returned.
* gmime-part.h (g_mime_part_get_content_description): make
the GMimePart argument const.
* gmime-part.h (g_mime_part_get_content): same.
* test-mime.c (test_addresses): fix bad printf statement.
* test-parser.c (test_parser): fixed the printf type of a time_t
from an int to unsigned long to avoid compiler warnings.
2000-12-13 Jeffrey Stedfast <fejj@helixcode.com>
* doc/sgml/*:
* doc/html/*:
* doc/gmime-sections.txt: Updated.
* README: Updated version line to 0.3.0
2000-12-12 Jeffrey Stedfast <fejj@helixcode.com>
* gmime-part.c (g_mime_part_to_string): Wrap some content-*
headers that might sometimes be long.
* gmime-message.c (create_header): Updated to reflect function
name changes/moves.
* gmime-utils.c (g_mime_utils_header_printf): Moved here from
gmime-message.c and slightly renamed ;-)
(g_mime_utils_header_fold): Moved from being private to being
public.
2000-12-12 Jeffrey Stedfast <fejj@helixcode.com>
* gmime-part.c: Hmmm, why weren't multiparts using the internal
get_content_type function rather than ...content_type_to_string?
Possible FIXME: Should content_type_to_string do what
get_content_type does? or should it remain untouched and just
return "type/subtype"?
* gmime-part.h: No more boundary data member.
* gmime-part.c (g_mime_part_get_boundary): Updated, as we no
longer store the boundary on the MIME Part and instead only on the
content-type (where it belongs).
(g_mime_part_set_boundary): And here too.
(g_mime_part_destroy): No longer need to destroy the boundary.
2000-12-11 Jeffrey Stedfast <fejj@helixcode.com>
* gmime-part.c (g_mime_part_get_subpart_from_content_id): Erm,
smack me. This needs to be recursive (this is what happens when I
code really late at night).
2000-12-11 Jeffrey Stedfast <fejj@helixcode.com>
* configure.in (GMIME_MINOR_VERSION): Updated to 0.3.0
* gmime-parser.c (get_mime_part): Updated to reflect the
add_subpart API change.
* test-mime.c (test_multipart): And here too.
* gmime-part.h (g_mime_part_add_child): Macro added for backward
source compatability.
* gmime-part.c (g_mime_part_get_subpart_from_content_id): Renamed
from g_mime_part_get_child_from_content_id as I think I'm gonna
start calling them subparts in the API as it's a bit clearer than
calling them children. Also fixed up some of the logic (what if
the parent mime part had a content-id? The way the code was before
it'd never search the subparts). Oh, it also returns const now.
(g_mime_part_add_subpart): Renamed from g_mime_part_add_child and
also now does some error checking to make sure the parent part is
a multipart.
2000-12-10 Charles Kerr <charles@superpimp.org>
* gmime-part.c (g_mime_part_get_child_by_content_id): new
utility function.
2000-12-09 Jeffrey Stedfast <fejj@helixcode.com>
* gmime-part.c (g_mime_part_set_boundary): Generate a random
boundary if passed boundary is NULL.
2000-12-07 Jeffrey Stedfast <fejj@helixcode.com>
* gmime-message.c (multipart_get_body): Traverses a MIME Part and
'always' extracts the body assuming it exists. Extracts the
preffered text type if it exists, otherwise returns the type less
preferred.
(g_mime_message_get_body): Use multipart_get_body if the toplevel
part is a multipart.
2000-12-05 Jeffrey Stedfast <fejj@helixcode.com>
* README: Updated with more RFCs, etc.
* rfc/* Added a bunch more rfcs of interest.
2000-12-04 Jeffrey Stedfast <fejj@helixcode.com>
* test-mime.c: Added test code for the address parser.
* gmime-utils.c (g_mime_utils_quoted_encode_step): Updated. No
longer need to special-case whitespace chars as they have been put
into the gmime_special_table (a while ago).
2000-12-02 Jeffrey Stedfast <fejj@helixcode.com>
* Makefile.am: Install gmime.m4
* gmime.m4: Added.
2000-12-02 Jeffrey Stedfast <fejj@helixcode.com>
* gmime-part.c (g_mime_part_foreach): New convenience function for
manipulating each subpart of a mime part.
* gmime-message.c (g_mime_message_foreach_part): New convenience
function for manipulating all mime parts of a message.
2000-12-02 Jeffrey Stedfast <fejj@helixcode.com>
* doc/sgml/*:
* doc/html/*: Updated.
* doc/gmime-sections.txt: Add g_mime_message_[g,s]et_message_id.
* gmime-parser.c (construct_headers): Parse out Message-Id
headers.
* gmime-message.c (g_mime_message_destroy): Free the message id.
(g_mime_message_set_message_id): New function to set the message
id on a message.
(g_mime_message_set_message_id): New accessor function for
message-ids.
(create_header): Write out the Message-Id if and only if it
exists.
2000-11-29 Jeffrey Stedfast <fejj@helixcode.com>
* README: Updated.
* doc/gmime-sections.txt: Added new functions.
* doc/html/*: Updated.
2000-11-29 Jeffrey Stedfast <fejj@helixcode.com>
* configure.in: Bumped the version to 0.2.0 because the API has
changed a bit.
* test-parser.c:
* test-mime.c: Updated.
* gmime-utils.c (BASE64_ENCODE_LEN):
(QP_ENCODE_LEN): Macros for determining how much space we need to
encode a chunk of data to that encoding (estimate is liberal).
(encode_8bit_word): Use the macros to determine the length we
need.
* gmime-message.c (g_mime_message_get_body): Updated to reflect
changes to gmime-part.
* gmime-parser.c (get_mime_part): Updated.
* gmime-part.c (g_mime_part_set_content): Now takes a len argument
and has been updated to reflect the move to GByteArray.
(g_mime_part_destroy): Updated.
(g_mime_part_set_pre_encoded_content): New convenience function to
decode pre-encoded content and set it on the mime part.
(g_mime_part_get_content): Renamed from
g_mime_part_decode_contents.
* gmime-part.h: GMimePart->content is now a GByteArray that will
hold the raw content (in it's unencoded form).
2000-11-28 Jeffrey Stedfast <fejj@helixcode.com>
* gmime-content-type.c (g_mime_content_type_new_from_string):
Ignore extranious semicolons between parameters. Handle the event
where the content-type doesn't specify a subtype (this is broken
but some mailers will send "Content-Type: text" for example).
(g_mime_content_type_new): If there isn't a type or subtype, print
a warning and try to do some smart defaulting action.
* gmime-message.c (handle_multipart_alternative): Only remember
the last subpart if it was a text part.
2000-11-19 Jeffrey Stedfast <fejj@helixcode.com>
* doc/html/*:
* doc/sgml/*: Updated.
* test-mime.c: Updated.
* gmime-utils.c (g_mime_utils_quote_string): Do the detection on
whether or not to wrap the string in quotes here rather than
requiring a boolean argument specifying whether the string should
be quoted. RFC2045 provides us with a list of characters that are
not safe.
* gmime-param.c (g_mime_param_to_string): Updated to reflect
changes to g_mime_utils_quote_string. This function is the main
reason for the change - parameter values should really only be
quoted if they have to be else they should remain unquoted.
* internet-address.c (encoded_name): Updated to reflect changes to
g_mime_utils_quote_string.
2000-11-19 Jeffrey Stedfast <fejj@helixcode.com>
* TODO: Updated.
* gmime-utils.c: Updated gmime_special_table.
(g_mime_utils_8bit_header_encode): Since rfc2047 states that all
whitespace between encoded atoms must be ignored, the encoder
should therefor make an effort to encode whitespace when it falls
between two atoms that will be encoded. Use the IS_ESAFE mask.
(quoted_encode): Now takes a safemask argument to specify which
chars are safe to leave unencoded and also a arg to save whether
or not the word was encoded.
(g_mime_utils_8bit_header_encode_phrase): Updated to use the
IS_PSAFE mask.
2000-11-19 Jeffrey Stedfast <fejj@helixcode.com>
* gmime-parser.c (header_unfold): New function to unfold a header
(to be used internally).
(construct_headers): Unfold headers as we parse them.
* configure.in: Changed version to 0.1.1.
* gmime-part.c (get_content_disposition): Append a ";" before
appending any parameters even when there is no disposition
text. Also only enter into the param loop if there exist params.
2000-11-16 Jeffrey Stedfast <fejj@helixcode.com>
* doc/sgml/*: Added.
* doc/gmime-sections.txt: Added g_mime_part_decode_contents and
g_mime_header_printf.
* gmime-message.c (header_fold): New function to fold headers.
(g_mime_header_printf): New convenience function to print a
formatted header (which will get correctly folded).
(create_header): Correctly fold each header.
2000-11-16 Charles Kerr <charles@superpimp.org>
* gmime-utils.c (datetok): don't crash if the date string passed
in is NULL.
2000-11-15 Jeffrey Stedfast <fejj@helixcode.com>
* gmime-part.c (g_mime_part_decode_contents): New convenience
function to decode the contents of a mime part (based on code by
Wayne Schuller).
2000-11-14 Jeffrey Stedfast <fejj@helixcode.com>
* doc/html/index.sgml: Added - apparently we need this :-)
* doc/Makefile.am: Updated to pass distcheck
2000-11-10 Jeffrey Stedfast <fejj@helixcode.com>
* doc/gmime-docs.sgml: Added a new paragraph explaining the
difference between functions that return const and the ones that
don't.
* doc/html/*.html: Updated.
* gmime-message.c:
* gmime-part.c:
* gmime-parser.c:
* internet-address.c:
* gmime-param.c: Updated Gtk-Doc comments.
* gmime-content-type.c: Wrote Gtk-Doc comments.
2000-11-10 Jeffrey Stedfast <fejj@helixcode.com>
* Makefile.am (SUBDIRS): Added doc
* configure.in: Generate doc/Makefile
* doc/Makefile.am: Ignore more headers when performaing
gtkdoc-scan.
* doc/gmime-docs.sgml:
* doc/gmime-sections.txt: Added.
* doc/html/*.html: Generated library reference.
2000-11-09 Jeffrey Stedfast <fejj@helixcode.com>
* TODO: Updated.
* test-mime.c: Added test of the new quote/unquote functions.
* gmime-message.c (g_mime_message_add_recipients_from_string):
Check for escaped quotes.
* gmime-part.c (get_content_type): Correctly quote params.
(get_content_disposition): Same.
* gmime-param.c (g_mime_param_new_from_string): Check for escaped
quotes. Also use unquote_string() to unquote the value.
(g_mime_param_to_string): Correctly quote the value.
* gmime-parser.c (get_mime_part): Check for escaped quotes and
correctly unquote strings where appropriate.
* gmime-utils.c (g_mime_utils_quote_string): New convenience
function to escape and quote a string.
(g_mime_utils_unquote_string): New convenience function to
un-escape and un-quote a string.
* internet-address.c (encoded_name): Use quote_string().
(internet_address_new): Use unquote_string() to unquote and
unescape the name component (it will be re-escaped and re-quoted
when it's written to a string later).
2000-11-09 Jeffrey Stedfast <fejj@helixcode.com>
* TODO: Updated.
2000-11-08 Jeffrey Stedfast <fejj@helixcode.com>
* gmime-parser.c (construct_headers): Oops. Set the subject with
the decoded string rather than the encoded one.
(get_mime_part): On the chance that we come accross a broken
multipart, default the mime type to text/plain and continue on.
2000-11-08 Jeffrey Stedfast <fejj@helixcode.com>
* internet-address.c (internet_address_to_string): Moved code
around to avoid unecessary warnings.
* gmime-utils.c: Added Gtk-Doc style comments to all the
functions.
(g_mime_utils_best_encoding): Return a GMimePartEncodingType
instead of gint.
2000-11-01 Jeffrey Stedfast <fejj@helixcode.com>
* Makefile.am (INCLUDES): Add -DG_LOG_DOMAIN=\"gmime\"
2000-10-31 Jeffrey Stedfast <fejj@helixcode.com>
* test-parser.c (test_parser): Test g_mime_message_get_body() here
as well.
* test-mime.c: Updated to reflect changes to get_body.
* gmime-message.c (g_mime_message_get_body): Return an allocated
buffer because we want to return the decoded message body rather
than the (possibly) encoded form.
(create_header): Write out the arbitrary headers first as they may
contain headers like "Received:" which really ought to be at the
top.
* gmime-part.c: Removed some old cruft.
2000-10-29 Jeffrey Stedfast <fejj@helixcode.com>
* internet-address.c (encoded_name): Use
g_mime_utils_8bit_header_encode_phrase() to encode the addrspec.
* gmime-utils.c (g_mime_utils_8bit_header_decode): Fix to make the
decoder more rfc compliant. As stated by rfc2047, all white space
between encoded words MUST be ignored.
(g_mime_utils_8bit_header_encode_phrase): New rfc2047 encoding
function for phrases (see rfc2047 section 5 part 3).
2000-10-28 Jeffrey Stedfast <fejj@helixcode.com>
* gmime-utils.c (parse_rfc822_date): Fixed the off-by-one-hour
bug.
* test-mime.c: Updated to reflect changes to
g_mime_message_get_body().
* gmime-message.c (g_mime_message_get_headers): Added Gtk-Doc
comment.
(g_mime_message_get_body): Modified to return a const pointer to
the message body rather than allocating it.
2000-10-28 Charles Kerr <charles@superpimp.org>
* gmime-message.c (g_mime_message_get_headers): New function
similar to g_mime_message_get_body. Useful if you want a raw
display of headers separate from the body.
* gmime-message.[c,h] (g_mime_message_get_body): made const.
2000-10-28 Jeffrey Stedfast <fejj@helixcode.com>
* tests/Makefile.am: New automake file (when we make a release,
this directory should really be a part of the tarball as it
contains data for the test programs).
* tests/.cvsignore: Added.
* Makefile.am (SUBDIRS): Add the 'tests' directory
* configure.in: Generate tests/Makefile
2000-10-27 Jeffrey Stedfast <fejj@helixcode.com>
* test-mime.c: Added code to test g_mime_message_get_body()
* gmime-message.c (g_mime_message_get_body): New convenience
function that attempts to get the message body in the requested
text format (plain vs html).
* gmime-parser.c (construct_headers): If the end of a header field
is the end of the header, break out of the loop.
* gmime-content-type.[c,h]: Added const to arguments where
appropriate.
* gmime-utils.h: Fixed a spelling mistake in a comment ;-)
2000-10-26 Charles Kerr <charles@superpimp.org>
* gmime-utils.h: made const the input ptrs for encode/decode
funcs.
* gmime-utils.c: Updated to reflect const changes.
2000-10-26 Jeffrey Stedfast <fejj@helixcode.com>
* test-mime.c: Also updated.
* gmime-parser.c (construct_headers): Updated to reflect name
changes.
* gmime-message.c: Updated to reflect name changes.
* gmime-message.h: Changed the name of the recipient type
#defines.
2000-10-24 Jeffrey Stedfast <fejj@helixcode.com>
* Makefile.am (SUBDIRS): Added "."
* configure.in: Create libgmime.spec
2000-10-24 Charles Kerr <charles@superpimp.org>
* gmime-utils.c: added #include <stdlib.h> to pick up atoi.
* internet-address.c (internet_address_new): removed unused
variable `decoded'
2000-10-24 Jeffrey Stedfast <fejj@helixcode.com>
Thanks to Charles Kerr of Pan fame for the following fixes.
* gmime-utils.c (encode_8bit_word): Oops, encode 'word' and not 'ptr'.
* gmime-part.c (g_mime_part_destroy): Free the content-id.
2000-10-21 Jeffrey Stedfast <fejj@helixcode.com>
* gmime.h.in: Wrap definitions in #ifndef __GMIME_H__
2000-10-18 Jeffrey Stedfast <fejj@helixcode.com>
* TODO: Updated.
* test-*.c: Updated to reflect GMime API changes.
* gmime-part.c: #include "gmime-utils.h"
* gmime-parser.c (g_mime_parser_construct_message): Now takes a
boolean argument 'save_extra_headers' which tells the parser
whether it should add unknown headers to the arbitrary header
array or ignore them.
(construct_headers): Save the extra headers if desired.
* gmime-message.c (g_mime_message_add_arbitrary_header): Use the
new GMimeHeader structure.
(g_mime_message_new): Always initialize the arbitrary header array.
(g_mime_message_destroy): The arbitrary header array will never
be NULL (as it is now pre-initialized) so don't bother
checking.
(create_header): rfc2047 encode the arbitrary header values.
2000-10-17 Jeffrey Stedfast <fejj@helixcode.com>
* rfc/rfc*.txt: MIME specification RFCs
* README: Updated.
* TODO: Added a list of tasks that need to be done eventually.
* gmime-parser.c (get_mime_part): rfc2047 decode the
content-description before we set the value.
* gmime-part.c (g_mime_part_to_string): rfc2047 encode the
content-description before we write it to the string.
2000-10-06 Jeffrey Stedfast <fejj@helixcode.com>
* gmime-parser.c (construct_headers): rfc2047 decode some headers.
* internet-address.c (internet_address_to_string): Now takes an
argument to rfc2047 encode or not, when not rfc2047 encoding.
(internet_address_new_from_string): Rewrote
* gmime-message.c (create_header): rfc2047 encode addresses and
subject headers.
2000-10-05 Jeffrey Stedfast <fejj@helixcode.com>
* gmime-utils.c (g_mime_utils_quoted_encode_step): Fixed some
non-compliance issues like encoding all spaces as =20 even when
they shouldn't have been.
2000-10-04 Jeffrey Stedfast <fejj@helixcode.com>
* acconfig.h:
* config.h.in: #undef HAVE_ISBLANK
* configure.in: Check for the isblank() GNU extension function.
* gmime-parser.c (get_mime_part): Parse for the Content-Id. Use
isblank() instead of isspace() when looking to see if the content
header was wrapped. We want it to match only if the next char is
either a tab or a space.
(isblank): Define an isblank() macro if HAVE_ISBLANK isn't
defined.
* gmime-part.c (g_mime_part_set_content_id): New function to set
the Content-ID.
(g_mime_part_get_content_id): New function to get the Content-Id.
(g_mime_part_to_string): Print content id's if available.
(get_content_type): Eek! If there aren't any params, don't assign
'string' an empty string! It's already been initialized with a
type!
2000-10-04 Jeffrey Stedfast <fejj@helixcode.com>
* gmime-utils.c (quoted_decode): New function to decode rfc2047's
version of the quoted-printable encoding.
(decode_8bit_word): Use quoted_decode()
(quoted_encode): New function to encode to rfc2047's version of
quoted-printable (removed from the internals of encode_8bit_word)
(encode_8bit_word): Use quoted_encode()
2000-10-01 Jeffrey Stedfast <fejj@helixcode.com>
* internet-address.c (internet_address_new_from_string): Fixed a
logic error that cut off the last char of the name (or address).
* gmime-parser.c (construct_headers): Optimized.
* gmime-part.c (get_content_type): If there are no params, don't
try to get any. Fixes a segfault.
* gmime-utils.[c,h]: New utilities functions for use with libgmime
(time and encoding/decoding routines)
* test-mime.c: test some of the routines in gmime-utils.c
* gmime.h.in: #include "gmime-utils.h"
* configure.in: Added checks for time zone stuff
* acconfig.h:
* config.h.in: Added some #undef's for timezone stuff
* Makefile.am: Added gmime-utils.[c,h]
2000-09-24 Jeffrey Stedfast <fejj@helixcode.com>
* HACKING: Updated
* gmime-param.c: Wrote Gtk-docs comments
* gmime-parser.c: Wrote Gtk-docs comments
* AUTHORS: Updated
* autogen.sh: Updated autogen.sh to look for gmime.h.in instead of
gmime.h
2000-09-24 Jeffrey Stedfast <fejj@helixcode.com>
* gmime.h: Removed
* gmime.h.in: Replacement for gmime.h - modified to be dynamically
created at build-time.
* configure.in: Updated to generate gmime.h and also to ignore
doc/ until docs are written.
* Makefile.am: Modified to ignore doc/
* tests/*: MIME messages that break are likely to break MIME
parsers.
2000-09-24 Jeffrey Stedfast <fejj@helixcode.com>
* gmime-part.c (get_content_disposition): Put a space between
disposition parameters.
(get_content_type): New convenience function to dump the content
type and it's params to a string (for use internally).
(g_mime_part_to_string): Use get_content_type and add print for
content-description's.
* gmime-parser.c (get_mime_part): strip leading/trailing
whitespace from the disposition and convert param names to
lowercase. Also fixed Content-Transfer-Encoding.
2000-09-23 Jeffrey Stedfast <fejj@helixcode.com>
* gmime-part.c (g_mime_part_destroy): Erm, make sure to increment
to the next item in the list.
* gmime-message.c (recipients_destroy): Optimized a bit
* gmime-content-type.c (g_mime_content_type_new_from_string):
Change all parameter names to lowercase, this way we can look them
up without having to know which case the original name used (eg
boundary).
* test-mime.c: renamed from mime-test.c
* test-parser.c: a new test program that allows us to specify a
file to get our test email from.
2000-09-22 Jeffrey Stedfast <fejj@helixcode.com>
* configure.in: remember glib_cflags and glib_libs so we can dump
them into gmime-config later.
* gmime-config.in: use glib_cflags and glib_libs.
* gmime.h: add variables for major/minor/micro release
* Makefile.am: switch to GMIME_ instead of LIBGMIME_ stuff
|