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
|
2004-09-02 Mr. Sam <mrsam@courier-mta.com>
* rfc2045/rfc2045reply.c (mkforward): Keep [BLOB]s in the subject.
(mkreply): Ditto.
2004-08-29 Mr. Sam <mrsam@courier-mta.com>
* maildir.c (subjectcmp): Remove extra param from
rfc2047_decode_simple.
2004-08-06 Mr. Sam <mrsam@courier-mta.com>
* authlib/configure.in: Fix usage of mysql_config
4.0.7
2004-07-22 Mr. Sam <mrsam@courier-mta.com>
* gpglib/export.c (libmail_gpg_exportkey): Fix off-by 1 in GPG key
export.
2004-07-21 Mr. Sam <mrsam@courier-mta.com>
* authlib/authmysqllib.c (auth_mysql_getuserinfo): Fix options field.
4.0.6
2004-07-18 Mr. Sam <mrsam@courier-mta.com>
* folder.c (get_textlink): Fix HTTP redirect in the anomalous case
where SCRIPT_NAME is empty.
2004-06-27 Mr. Sam <mrsam@courier-mta.com>
* all: Update GNU toolchain.
2004-06-18 Mr. Sam <mrsam@courier-mta.com>
* folder.c (list_folder_xlate): Fix translatable strings for special
folders.
* authlib/authldaplib.c: Conditionally define LDAP_OPT_SUCCESS if
not defined by <ldap.h>.
2004-06-18 Laurent Wacrenier <lwa@teaser.fr>
* maildir/maildirquota.c (docount): Fix quota parsing bug on 64bit
off_t systems.
2004-06-12 Mr. Sam <mrsam@courier-mta.com>
* liblog/logger.c (startchild): Close stderr after initializing
the monitored process. Fixed hanging file descriptor to the terminal.
4.0.5
2004-06-11 Mr. Sam <mrsam@courier-mta.com>
* folder.c (print_header_uc): Escape header name.
2004-06-06 Mr. Sam <mrsam@courier-mta.com>
* rfc2045/rfc2045.h: Clean up and re-factor out MIME header parsing
into a new function: rfc2045_parse_mime_header.
2004-05-24 Mr. Sam <mrsam@courier-mta.com>
* authlib/configure.in: Add #include <sys/types.h> in probe for
-lresolv.
2004-05-21 Mr. Sam <mrsam@courier-mta.com>
* maildir.c (maildir_checknew): Purging the Trash folder didn't
update the quota correctly when compiled with --with-trashquota.
2004-05-19 Mr. Sam <mrsam@courier-mta.com>
* maildir/maildirquota.c (do_deliver_warning): Make quota warning
message work correctly with NFS.
(do_maildir_openquotafile): Make quota calculations 64bit-safe (based
on patch from Michael Kefeder <ml@weird-birds.org>).
2004-05-18 Mr. Sam <mrsam@courier-mta.com>
* acl.c (maildir_shared_index_file): Complain if shared index file
does not exist.
2004-05-17 Hatuka*nezumi - IKEDA Soji <nezumi@jca.apc.org>
* all: Improve MIME encoding of message headers for East Asian
character sets.
4.0.4
2004-05-09 Mr. Sam <mrsam@courier-mta.com>
* authlib/authpgsqllib.c: fixed dash-extensions
2004-05-09 Jeff Potter <jpotter-courier@codepuppy.com>
* authlib/authmysqllib.c: fixed dash-extensions
2004-05-09 Mr. Sam <mrsam@courier-mta.com>
* makedat/makedat.in: Skip subdirectories named "CVS". Allows all
directory-based lists (makesmtpaccess, etc...) to be managed via CVS.
* authlib/configure.in: Back out the patch to disable creation of
authdaemon.msg - needed by the Courier-IMAP build.
* pcp/pcpdauth.c: Make pcp use AUTHMODULES environment variable instead
of the deprecated authmodules file.
2004-05-09 Brian Candler <B.Candler@pobox.com>
* sqwebmail: Update startup banner msg to reflect new startup command.
2004-05-08 Mr. Sam <mrsam@courier-mta.com>
* Makefile.am: Do not install authmodulelist.
* html: update copyright date.
2004-05-08 Brian Candler <B.Candler@pobox.com>
* sqwebmail: Set authentication modules in sqwebmaild config file.
2004-05-07 Mr. Sam <mrsam@courier-mta.com>
* maildir/maildirkw.c (doit_locked): Fix pointer comparison.
* maildir/maildirfilter.h: Compilation fix.
2004-05-03 Mr. Sam <mrsam@courier-mta.com>
* sqwebmaild.rc.in: Fix PCP start script.
2004-05-01 Brian Candler <B.Candler@pobox.com>
* sqwebmail: convert startup scripts to use new courierlogger wrapper.
* sqwebmail: replace all syslog calls to stderr, now captured by
courierlogger.
2004-04-24 Brian Candler <B.Candler@pobox.com>
* authlib/authdaemond.c (authnext): Do not report unknown
authentication modules -- unwanted noise.
2004-04-24 Mr. Sam <mrsam@courier-mta.com>
* liblog/courierlogger.sgml: courierlogger man page.
2004-04-23 Brian Candler <B.Candler@pobox.com>
* liblog/courierlogger: New courierlogger.
2004-04-20 Brian Candler <B.Candler@pobox.com>
* authlib/authmysqllib.c (auth_mysql_getuserinfo): More SQL fixes.
* maildir/maildirgetnew.c (do_maildir_getnew): Fix infinite loop if
rename() syscall fails.
2004-04-19 Brian Candler <B.Candler@pobox.com>
* authlib/authtest.c: Additional logging messages.
* Documentation fixes.
2004-04-18 Mr. Sam <mrsam@courier-mta.com>
* liblog: new directory for courierlogger, moved out of tcpd.
* Makefile.am: install courierlogger in sbindir
2004-04-16 Mr. Sam <mrsam@courier-mta.com>
* rfc2045/rfc2231encode.c: clean up rfc 2231 encoding.
2004-04-11 Brian Candler <B.Candler@pobox.com>
* all: additional logging messages. Set log level via --with-syslog
2004-04-11 Mr. Sam <mrsam@courier-mta.com>
* cgi/cgiredirect.c (cgiredirect): Output Location: header before
the URI: header in an HTTP redirect.
2004-04-11 Mr. Sam <mrsam@courier-mta.com>
* maildir.c (subjectcmp): Decode message subject to UTF-8 before
sorting folder by subject.
* rfc822/rfc2047.c (a_rfc2047_encode_str): Improve compliance with
RFC 2047 for MIME-encoded recipient lists.
(rfc2047_encode_callback): New argument: qp_allow - function that
indicates acceptable characters in QP-encoded words.
(rfc2047_encode_str): Ditto.
(rfc2047_qp_allow_any, rfc2047_qp_allow_comment)
(rfc2047_qp_allow_word): Possible arguments to qp_allow for various
situations.
2004-04-09 Mr. Sam <mrsam@courier-mta.com>
* rfc2045/rfc2045cdecode.c (do_decode_base64): Long overdue - use
a precomputed base64 decoding table.
* rfc822/encode.c: Moved rfc2045/rfc2045encode.c here, renamed all
functions to use the libmail_ prefix.
4.0.3
2004-04-05 Willi Mann <newsletters@wm1.at>
* newmsg.c (dosendmsg): Fix corrupted return address.
2004-03-29 Dmitry Sukhodoev <raven@bingo.ru>
* newmsg_create.c (lookup_addressbook): Fix double-RFC2047 encoding
when sending a message.
4.0.2
2004-03-16 Matthew Kanar <mattkanar@hotmail.com>
* authlib/authvchkpw.c: Fix password changes.
2004-03-16 Oliver Lehmann <oliver@FreeBSD.org>
* sv-make_timezonelist.pl: Timezone file location on FreeBSD.
2004-03-11 Mr. Sam <mrsam@courier-mta.com>
* authlib/configure.in: netinet/in.h needs sys/types.h on xBSD.
* courier/configure.in: Ditto.
2004-03-10 Mr. Sam <mrsam@courier-mta.com>
* maildir/maildirkeywords.h: Sun C++ compiler fix.
4.0.1
2004-03-09 Mr. Sam <mrsam@courier-mta.com>
* maildir/maildirrename.c (scan_aclhier2_rename): Check dirp is not
NULL before closing it.
* maildir/maildirrename.c (scan_maildir_rename): Ditto.
* maildir/maildirmake2.c (maildir_del): xBSD portability fix.
4.0.0
2004-03-02 Mr. Sam <mrsam@courier-mta.com>
* authlib/configure.in: BSD needs netinet/in.h before resolv.h
2004-02-29 Mr. Sam <mrsam@courier-mta.com>
* maildir.c (maildir_markread): Check for SEEN permission.
(maildir_markreplied): Check for WRITE permission.
(do_msgmove): If appropriate, check for SEEN, WRITE, and DELETEMSGS
permission on the destination folder, and turn off the respective
flags on the message being copied into that folder.
(foldercountfilename): Move message count cache files from each folder
into the sqwebmail-curcache directory, to avoid race conditions from
concurrent access.
(maildir_checknew): Check for EXPUNGE permission before expunging
messages.
(dodirscan): Read message count cache file from the sqwebmail-curcache
directory.
* folder.c (folder_delmsgs): Check for DELETE permission. Also check
for INSERT permission on destination folder if moving the messages.
(savepath): Cache public folder accounts we've seen, for message
move dropdown list (so that messages can be moved between public
accounts). Up to two most recent public folder accounts are cached.
(show_transfer_dest_real): Include cached public folder accounts in
the dropdown list.
(do_folderlist): Various fixes.
2004-02-22 Mr. Sam <mrsam@courier-mta.com>
* maildir.c (maildir_delete): After deleting a folder, delete its
ACLs.
* folder.c (checkrename): Check ACLs for folder rename.
(checkcreate): Check ACLs for folder create.
(folder_list): Check ACLs for folder delete.
* acl.c (acl_computeRightsOnFolder): Plug leak.
* folder.c (folder_contents): Check for ACL_READ permission when
opening a folder.
(show_transfer_dest): Only show folders with ACL_INSERT permissions
in the drop-down for the destination folder of message move.
(folder_list): Fix memory stomp.
(folder_rename_dest_real): Only show hierarchies with ACL_CREATE
permissions in the drop-down for destination folder of folder rename.
2004-02-19 Mr. Sam <mrsam@commodore.email-scan.com>
* sqwebmail.c (start_daemon): Close stdin/stdout/stderr after
starting authdaemond.
2004-02-18 Mr. Sam <mrsam@commodore.email-scan.com>
* Various fixes for the X86-64 platform.
2004-02-17 IKEDA Soji <nezumi@jca.apc.org>
* auth.c: new config file authcharset specifies character set
for account names, from the authentication record.
2004-02-16 Mr. Sam <mrsam@courier-mta.com>
* Initial partial virtual shared folder implementation. New screen
to modify folder ACLs. Partial ACL implementation: implement the
"visible (lookup)" and "administer" ACLs. Other ACLs are ignored
for now. Some minor things are known to be broken when used on
virtually-shared folders.
2004-02-15 Mr. Sam <mrsam@courier-mta.com>
* maildir/maildiraclt.c (maildir_acl_canlistrights): New function
moved from imap code, to be shared by sqwebmail.
2004-02-13 IKEDA Soji <nezumi@jca.apc.org>
* ldaplist.c (getfiltern): Convert query to utf8. New query
operators "ends with" (*=) and "contains" (*=*).
2004-02-11 Mr. Sam <mrsam@courier-mta.com>
* smap.c (do_listcmd): Fix SMAP ACL.
* unicode/big5.c (c2u_doconv): C portability fix.
gb2312: ditto.
2004-02-09 IKEDA Soji <nezumi@jca.apc.org>
* Big5, euc-jp, gb2312, ksx1001, shiftjis: let these functions handle
their own conversion errors.
2004-02-07 IKEDA Soji <nezumi@jca.apc.org>
* Big5: Add non-hanzi maps. Add ETen extension. Add Big5-HKSCS
charset.
* Gb2312: Add non-hanzi maps.
* Let iso2022-jp functions handle their own conversion errors.
2004-02-07 IKEDA Soji <nezumi@jca.apc.org>
* --with-libcharset: if the option is specified, compile with installed
libcharset. If nl_langinfo(CODESET) is found, use it. Otherwise
no charset conversion.
This fixes the display of message date and times which came out
of strftime(), which may use character set other than the character
set sent to the browser.
2004-02-02 Mr. Sam <mrsam@courier-mta.com>
* sqwebmail.c (output_user_form): Drop quotes from Refresh: header,
making Opera happy.
(redirect): Ditto.
2004-02-02 IKEDA Soji <nezumi@jca.apc.org>
* iso2022jp.h: Maps for CJK Compatibility Ideographs has been added.
* ksx1001.c: New character sets: ISO-2022-KR, EUC-KR, CP949
2004-02-01 Mr. Sam <mrsam@courier-mta.com>
* sqwebmail.c (rename_sent_folder): Fix internal error boner.
* unicode/iso88597.c: Updated from unicode.org.
* unicode/unicode_ultcasetab.c: Updated from unicode.org
2004-02-01 IKEDA Soji <nezumi@jca.apc.org>
* iso2022jp.pl / iso2022jp.h: JIS X 0208 mapping has been updated
based on latest regional standard (JIS X 0208:1997) and some vendor
standards. Errorneous (lacking or false) mappings has been fixed.
Support for older JIS X 0208 (JIS C 6226:1978) mapping was added.
JIS X 0212:1990 mapping was added.
* iso2022jp.c: Converters became (upper-)compatible with ISO-2022-JP
(RFC1468 / JIS X 0208:1997 Annex 2) and ISO-2022-JP-1 (RFC2237).
Buffer overflow vulnerability (when Unicode character is out
of BMP range) has been closed. Convert error handling was implemented.
* shiftjis.c: Broken SHIFT_JIS converters has been fixed and became
(upper-)compatible with Shifted Encoding Method (JIS X 0208:1997
Annex 1). Buffer overflow vulnerability (when Unicode character is out
of BMP range) has been closed. Convert error handling was implemented.
* eucjp.c: New converters for EUC-JP.
2004-01-31 Mr. Sam <mrsam@courier-mta.com>
* maildir.c (xlate_mdir): Temporary diagnostics if
maildir_info_imap_find() fails; looking for the real fix.
2004-01-25 Mr. Sam <mrsam@courier-mta.com>
* sqconfig.c (write_sqconfig): Update config file by writing to temp
file, then renaming. Makes sure that sqwebmail_curcnt files will be
safe for concurrent updates in the future.
2004-01-24 Mr. Sam <mrsam@courier-mta.com>
* Massive overhaul of the folder naming scheme to match Courier-IMAP's,
in preparation for support of virtual shared folders.
2004-01-23 Malcolm Rowe <malcolm-courier@farside.org.uk>
* html/en-us/smileys.txt: Add HTML tags to smileys.
2004-01-19 Mr. Sam <mrsam@courier-mta.com>
* auth.c (do_login): Implement disablewebmail account option.
2004-01-18 Mr. Sam <mrsam@courier-mta.com>
* Implement account options.
* authdaemond: replace stderr diagnostics to syslog(). authdaemond's
stderr doesn't go anywhere.
2004-01-13 Mr. Sam <mrsam@courier-mta.com>
* Rebuild all docbook SGML stuff.
2004-01-10 Michael Bowe <mbowe@pipeline.com.au>
* authvchkpw update.
2003-12-27 Mr. Sam <mrsam@courier-mta.com>
* maildir/maildirmake2.c (maildir_make): Fix memory leak.
* maildir/maildirkeywords2.c (doReadKeywords2): Fix memory leak
when keywords are not enabled.
2003-12-25 Mr. Sam <mrsam@courier-mta.com>
* unicode/unicode.h: Formal unicode structure for IMAP's modified-UTF7
coding.
2003-12-19 Mr. Sam <mrsam@courier-mta.com>
* unicode: Fix toupper_func/tolower_func/totitle_func for shiftjis,
big5, utf8, utf7, iso2022jp: function may return a NULL even when
requested to ignore conversion errors.
2003-12-17 Mr. Sam <mrsam@courier-mta.com>
* authlib/authmysqllib.c (get_variable): Fix warning.
2003-12-14 James A Baker <jabaker@mac.com>
* folder.c: Optimize HTML on the folder index screen.
2003-12-09 Mr. Sam <mrsam@courier-mta.com>
* maildir/maildirrename.c (validrename): Rename foo to foo.bar is not
kosher. Compile list of directories to rename first, sort, then
rename.
2003-11-29 Mr. Sam <mrsam@courier-mta.com>
* maildir/maildirdelfolder.c: maildir_mddelete superceded by
maildir_del().
2003-11-28 Mr. Sam <mrsam@courier-mta.com>
* maildir/maildirshared2.c (maildir_shareddir): Move maildir_shareddir
from maildirshared.c, so that a reference to this function does not
pull in the entire db dependency tree.
3.6.2
2003-12-05 Peter Bieringer <pb@bieringer.de>
* html/en-us/login.html: Update copyright date
2003-11-25 Mr. Sam <mrsam@courier-mta.com>
* sqwebmail.h (VALIDCGIVAR): Forward all SQWEBMAIL_ environ variables
to sqwebmaild.
2003-11-23 James A Baker <jabaker@mac.com>
* folder.c (folder_navigate): Show folder navigation bar at top and
the bottom of the message list.
2003-11-18 Tim Rice <tim@multitalents.net>
* rfc822/configure.in: Fix MSG_WARN.
2003-11-17 Mr. Sam <mrsam@courier-mta.com>
* images/Makefile.am: A few more smiley graphics.
* sqwebmaild.c (send_environ): Compile fix.
* sqwebmail.c (read_environ): Ditto.
2003-11-15 Mr. Sam <mrsam@courier-mta.com>
* Update to automake 1.7.8, autoconf 2.57, libtool-1.5, gettext-0.12.1
2003-11-13 Mr. Sam <mrsam@courier-mta.com>
* ldaplist.c (ldaplist): Fix CGI parameter.
2003-11-09 Brian Candler <B.Candler@pobox.com>
* folder.c (download_func): Workaround for a Solaris bug.
2003-11-09 Mr. Sam <mrsam@courier-mta.com>
* folder.c (read_smileys): Implement framework for showing images
for common smileys, in text/plain content.
* sqwebmaild.c (passthrough): Do not set the original client socket
to nonblock mode if file descriptors were passed.
2003-11-01 Mr. Sam <mrsam@courier-mta.com>
* sqwebmail: Split sqwebmail into sqwebmail and sqwebmaild.
sqwebmaild is now a root daemon process that listens on a UNIX
domain socket. sqwebmail is a tiny, unprivileged cgi-bin stub that
forwards the HTTP request to the daemon process. Update INSTALL
and SECURITY. Remove FastCGI support; not compatible with the new
framework.
The stub passes the client's file descriptor to sqwebmaild, on
platforms that support passing file descriptors, else it proxies
http traffic in both directions.
2003-10-30 James A Baker <jabaker@mac.com>
* folder.c: CSS fixes; Javascript-based select/unselect all button;
show "xx-yy of zzz" on the folder index screen.
* folder.c: Show first/last button; jump-to button.
* images: New PNG images.
2003-10-30 Mr. Sam <mrsam@courier-mta.com>
* maildir/maildirlock.c (maildir_lock): Fix double-free() call.
3.6.1
2003-10-21 Mr. Sam <mrsam@courier-mta.com>
* tcpd: Respect $(EXEEXT)
* authlib: Respect $(EXEEXT)
* libhmac: Respect $(EXEEXT)
* rfc2045/testsuite: Fix enable-mimecharset breaking make check.
2003-10-20 Mr. Sam <mrsam@courier-mta.com>
* rfc822/rfc2047u.c (rfc2047_print_unicode): Unicode-aware version of
rfc2047_print().
* folder.c (showmsgrfc822_addressheader): Use rfc2047_print_unicode,
2003-10-11 Paul L. Allen <pla@softflare.com>
* sv-make_timezonelist.pl: Autogenerate timezones for the
login dropdown.
2003-10-10 Brian Candler <B.Candler@pobox.com>
* maildir/loginexec.c (maildir_loginexec): Hook for Maildir/loginexec,
if exists it's executed, then removed. Used for migration-type
situations.
* images/sqwebmail.css: Set background colors via the style sheet.
* sqwebmail.c (error3): More informative error messages.
2003-10-05 Mr. Sam <mrsam@courier-mta.com>
* html.c (decodehtmlchar): Fix potential stomp.
(filtered_tag): Filter out 'background' and 'style' attributes.
(filtered_tag): Filter out raw text in SCRIPT tags.
2003-09-25 Mr. Sam <mrsam@courier-mta.com>
* bdbobj/bdbobj.c (bdbobj_open): Fix dbf_open call for db 3.x
2003-09-22 Mr. Sam <mrsam@courier-mta.com>
* newmsg_create.c (header_wrap): Wrap excessively long headers to
multiple lines.
* maildir.c (maildir_readheader_mimepart): When folding multiline
headers, replace newline+spaces with a single space.
2003-09-21 Brian Candler <B.Candler@pobox.com>
* token.c (tokencheck): Ignore empty msgtoken (lynx bug).
* cgi/cgi.c (nybble): Allow both ucase and lcase in url-encoding.
3.6.0
2003-08-17 Mr. Sam <mrsam@courier-mta.com>
* authlib/authpgsqllib.c (auth_pgsql_getuserinfo): Fix memory
corruption with custom select clause is enabled and long userids.
* authlib/authmysqllib.c (auth_mysql_getuserinfo): Fix memory
corruption with custom select clause is enabled and long userids.
2003-08-12 James A Baker <jabaker@mac.com>
* folder.c (showaddressheader_printsep): Fix message preview.
* html/en-us/index.html: Fix the frameset.
2003-08-09 Brian Candler <B.Candler@pobox.com>
* sqwebmail.c (catch_sig): Ignore signals when running under FastCGI.
2003-07-29 Mr. Sam <mrsam@courier-mta.com>
* authlib/configure.in: Add notice to forward all vpopmail
questions to the vpopmail mailing list.
2003-07-24 James A Baker <jabaker@mac.com>
* authlib/README.authmysql.html: Cleanup.
* authlib/README.authpostgres.html: Cleanup.
* gpglib/README.html: Cleanup.
* maildir/README.maildirfilter.html: Cleanup.
* maildir/README.sharedfolders.html: Cleanup.
* pcp/README.html: Cleanup.
* html/README_LANG.html.in: Cleanup.
* html/en-us/folder.html: Cleanup.
* html/en-us/quickadd.html: Cleanup.
* html/en-us/newmsg.html: Cleanup.
* html/en-us/eventdelete.html: Cleanup.
* html/en-us/abooklist.html: Cleanup.
* html/en-us/eventdaily.html: Cleanup.
* html/en-us/eventweekly.html: Cleanup.
* html/en-us/login.html: Cleanup.
* html/en-us/ldapsearch.html: Cleanup.
* html/en-us/eventmonthly.html: Cleanup.
* html/en-us/spellchk.html: Cleanup.
* html/en-us/gpgcreate.html: Cleanup.
* html/en-us/keyimport.html: Cleanup.
* html/en-us/gpgerr.html: Cleanup.
* html/en-us/navbar3.inc.html: Cleanup.
* html/en-us/navbar.inc.html: Cleanup.
* html/en-us/navbar2.inc.html: Cleanup.
* html/en-us/print.html: Cleanup.
* html/en-us/calendarlogin.inc.html: Cleanup.
* html/en-us/index.html: Cleanup.
* html/en-us/printnocookie.html: Cleanup.
* html/en-us/empty.html: Cleanup.
* html/en-us/redirect.html: Cleanup.
* html/en-us/printredirect.html: Cleanup.
2003-07-23 James A Baker <jabaker@mac.com>
* html/en-us/eventshow.html: Cleanup.
* html/en-us/readmsg.html: Cleanup.
* html/en-us/eventacl.html: Cleanup.
* html/en-us/autoresponder.html: Cleanup.
* html/en-us/invalid.html: Cleanup.
* html/en-us/expired.html: Cleanup.
2003-07-21 Brian Candler <B.Candler@pobox.com>
* sqwebmail.c (do_output_form_loop): Make bannerprog work with FastCGI
2003-07-16 Mr. Sam <mrsam@courier-mta.com>
* sqwebmail.c (fix_xml_header): Emit correct charset in <?xml >
header.
2003-07-14 James A Baker <jabaker@mac.com>
* html/en-us/ldaplist.html: Cleanup.
* html/en-us/gpg.html: Cleanup.
* html/en-us/ldaplist.html: Cleanup.
* html/en-us/folders.html: Cleanup.
2003-07-14 Jesse Guardiani <jesse@wingnet.net>
* INSTALL.html: Document SQWEBMAIL_IMAGEURL
2003-07-14 James A Baker <jabaker@mac.com>
* html/en-us/newevent.html: Cleanup.
* html/en-us/filter.html: Cleanup.
* html/en-us/preferences.html: Cleanup.
2003-07-09 Mr. Sam <mrsam@courier-mta.com>
* rfc822/imaprefs.c (rfc822_threadmsgrefs): New function takes
an array of References: headers, instead of a single References:
string (merged from the cone tree).
2003-07-09 Jesse Guardiani <jesse@wingnet.net>
* sqwebmail.c (get_imageurl): Use SQWEBMAIL_IMAGEURL to override
image URL location, determine at compile time.
* sqwebmail.c (do_output_form_loop): [#IMAGEURL#] tag substitutes
URL to the image directory.
2003-07-07 Mr. Sam <mrsam@courier-mta.com>
* rfc2646html.c (rfc2646tohtml_handler): Put back
blockquote type="cite", and use three different background colors
to highlight quoting level, plus some borders to make stuff purty.
2003-07-04 Mr. Sam <mrsam@courier-mta.com>
* folder.c (charset_warning): Fix null ptr deref if sqwebmail is
misconfigured to use an undefined HTML template character set.
2003-06-30 Brian Candler <B.Candler@pobox.com>
* cgi/cgi.c (cgi_setup_1): FastCGI fix.
2003-06-23 Mr. Sam <mrsam@courier-mta.com>
* authlib/authdaemond.c (start): Fix authdaemon idle processing.
* logindomainlist.c (get_defaultdomainfields): Default SERVER_ADDR
and HTTP_HOST, if not set.
* folder.c (folder_download): Drop quotes around charset name in
the Content-Type: header, apparently mozilla doesn't like that.
* sqwebmail.c (error): Ditto.
(error2): Ditto.
(output_form): Ditto.
2003-06-20 Mr. Sam <mrsam@courier-mta.com>
* rfc2045/rfc2045reply.c (mkforward): Fix MIME decoding of forwarded
text.
2003-06-18 Mr. Sam <mrsam@courier-mta.com>
* http11/contentlanguage.c (http11_content_charset): Fix return code
2003-06-17 James A Baker <jabaker@mac.com>
* logindomainlist.c: HTML output cleanup.
* rfc2646html.c: HTML output cleanup.
* cgi/cgi.c: HTML output cleanup.
* token.c: HTML output cleanup.
* html.c: HTML output cleanup.
2003-06-13 Mr. Sam <mrsam@courier-mta.com>
* gpglib/export.c (libmail_gpg_exportkey): Fix bug that exports all
keys, not just the selected key.
2003-06-12 James A Baker <jabaker@mac.com>
* addressbook.C: HTML output cleanup.
* pref.C: HTML output cleanup.
* sqwebmail.C: HTML output cleanup.
* mailfilter.C: HTML output cleanup.
* attachments.C: HTML output cleanup.
* autoresponse.C: HTML output cleanup.
* gpg.C: HTML output cleanup.
* sqispell.C: HTML output cleanup.
2003-06-12 James A Baker <jabaker@mac.com>
* pcp.c: HTML output cleanup.
* ldaplist.c: HTML output cleanup.
* newmsg.c: HTML output cleanup.
2003-06-12 James A Baker <jabaker@mac.com>
* folder.c: HTML output cleanup.
* sqwebmail.css: cleanup.
2003-06-11 Mr. Sam <mrsam@courier-mta.com>
* authlib/authldap.schema: Remove duplicate definition of
virtualdomainuser.
2003-06-09 Mr. Sam <mrsam@courier-mta.com>
* sqwebmail: Mark default templates as utf-8 preferred, so browsers
that support utf-8 will receive all content in utf-8. Supress
charset conversion warning for utf-8 browsers.
* http11/contentlanguage.c (http11_content_charset): Allow a
comma-separated list in {templatedir}/CHARSET, select the first
charset found in the Accept-Charset: HTTP header.
* gpglib/gpglib.h: Added errstatus to libmail_gpg_info.
2003-06-07 Mr. Sam <mrsam@courier-mta.com>
* gpglib/gpg.c (dogpgsign): Fix a C++ism.
2003-06-02 Mr. Sam <mrsam@courier-mta.com>
* gpglib cleanup.
+ Return an error indication on a fatal error, instead of calling
exit().
+ Rename functions to use a consistent naming convention. The two
primary functions are called libmail_gpg_signencode and
libmail_gpg_decode, and both take a structure that provides
the rest of the parameters and callback functions.
+ Replace I/O to stdin/stdout with function calls to input and
output functions.
+ When signing, do not fork and run reformime in order to convert
8bit text to quoted-printable. Convert it directly, on the fly.
+ Finally, wrap the result in a nice API library, and have sqwebmail
invoke the library, instead of forking and running mimegpg.
2003-05-29 Mr. Sam <mrsam@courier-mta.com>
* rfc822/imaprefs: Extra argument to
rfc822_threadmsg() specifies message date as time_t.
2003-05-27 Mr. Sam <mrsam@courier-mta.com>
* rfc2045/rfc2045header.c: eat leading space when folding header lines.
2003-05-19 Mr. Sam <mrsam@courier-mta.com>
* maildir/README.maildirquota.html: Clarify that lines in maildirsize
are padded to 14 character lengths.
2003-05-18 Mr. Sam <mrsam@courier-mta.com>
* folder.c (folder_contents): Temporarily reset LC_CTYPE while
we're usign wcwidth().
3.5.3
2003-05-15 "Hatuka*nezumi \(IKEDA Soji\)" <nezumi@jca.apc.org>
* folder.c (truncate_at): take into account double-width chars.
2003-05-15 Mr. Sam <mrsam@courier-mta.com>
* folder.c (truncate_at): use wcwidth(), if available.
2003-05-14 Mr. Sam <mrsam@courier-mta.com>
* maildir/maildirdelfolder.c (delsubdir): Sometimes we don't get
an EISDIR, even though we should <sigh>...
2003-05-14 Stefan Hornburg <racke@linuxia.de>
* userdb/makeuserdb.sgml: Fix command names.
2003-05-14 Mr. Sam <mrsam@courier-mta.com>
* unicode/utf7.c: UTF-7 mapping.
* folder.c (truncate_at): Unicode-aware long text string truncation.
3.5.2
2003-05-08 Mr. Sam <mrsam@courier-mta.com>
* folder.c: Properly decode MIME-encoded headers.
2003-05-01 Mr. Sam <mrsam@courier-mta.com>
* authlib: split DEFAULTDELIVERY from MAILDIR for LDAP, MySQL, Postgres
(used by courier instead of MAILDIR)
2003-04-30 Mr. Sam <mrsam@courier-mta.com>
* maildir.c (do_msgmove): Do not refuse to remove multiply-linked
message files, probably some cleanup situation after a crash.
2003-04-29 Mr. Sam <mrsam@courier-mta.com>
* Replace U+0x00A0 in SGML documentation with spaces.
2003-04-27 Mr. Sam <mrsam@courier-mta.com>
* maildir/maildircache.c (maildir_cache_purge): Temporarily reset
SIGCHLD to SIG_DFL while waiting for the purge process to finish.
2003-04-26 Mr. Sam <mrsam@courier-mta.com>
* pcp/pcpd.c (accept_pcpd): Reset child's SIGCHLD to SIG_DFL
2003-04-25 Mr. Sam <mrsam@courier-mta.com>
* gpglib/configure.in: Bless gpg 1.2.1
* maildir/maildirdelfolder.c (maildir_mddelete): A more "thorough"
folder delete.
* maildir.c (maildir_delete): Use the new maildir_mddelete().
2003-04-23 Rodrigo Severo <rodrigo.lists@fabricadeideias.com>
* authlib/authmysqlrc: Fix comments
2003-04-21 Mr. Sam <mrsam@courier-mta.com>
* Updated toolchain to automake 1.6.3, autoconf 2.57,
libtool 1.4.3, gettext 0.11.4, new Docbooks tyle sheets.
* bdbobj/bdbobj2.c (bdbobj_nextkey): Eliminate 0-length malloc.
2003-04-19 Dmitriy Kuznetsov <eth0@dol.ru>
* maildir/maildirfilter.c (maildir_filter_saverules): webmail:
Do not explicitly set MAILDIRQUOTA -- recent versions of maildrop
take care of this automatically.
2003-04-18 Mr. Sam <mrsam@courier-mta.com>
* authlib/authmysqllib.c (validateMyPassword): Rename
validate_password to validateMyPassword (MySQL 4 conflict).
2003-04-13 Jesse Guardiani <jesse@wingnet.net>
* sqwebmail.c (do_output_form_loop): Fix logindomainlist.
2003-04-12 Mr. Sam <mrsam@courier-mta.com>
* All beta and releases will now be signed by
http://www.courier-mta.org/KEYS.bin
2003-04-12 Jesse Guardiani <jesse@wingnet.net>
* logindomainlist.c: Enhanced drop-down domain listing on the login
screen.
2003-04-09 Mr. Sam <mrsam@courier-mta.com>
* authlib/README.authpostgres.html: Documentation updates.
2003-04-04 Mr. Sam <mrsam@courier-mta.com>
* autoconf 2.57 fixes.
2003-04-03 Mr. Sam <mrsam@courier-mta.com>
* rfc2045/rfc2045.c (content_location): Plug a leak.
* unicode/unicode.c (unicode_xconvert): Plug a memory leak.
2003-03-22 Brian Candler <B.Candler@pobox.com>
* sqwebmail.c (main): FastCGI update.
2003-03-21 Mr. Sam <mrsam@courier-mta.com>
* maildir/maildirpurgetmp.c (maildir_purge): Fix maildir_purge(".");
2003-03-20 Mr. Sam <mrsam@courier-mta.com>
* rfc2047.c (rfc2047_encode_callback): Fix MIME encoding of "_".
2003-03-19 Mr. Sam <mrsam@courier-mta.com>
* courier.spec.in (BuildPreReq): Default to /var/www
* unicode/iso2022jp.c (read_jis_char): Fix various bugs that result
in crashes, as a result of invalid character sequences.
2003-03-19 James A Baker <jabaker@mac.com>
* configure.in: Search additional directories for mime.types
3.5.1
2003-03-10 Mr. Sam <mrsam@courier-mta.com>
* authlib/preauthvchkpw.c (auth_vchkpw_pre): Disable open_smtp_relay()
until fixed by authvchkpw devs.
2003-03-06 Mr. Sam <mrsam@courier-mta.com>
* maildir/maildirpurgetmp.c (maildir_purge): Adjust quota when
autopurging Trash --with-trashquota.
* rfc2045/configure.in: rename config.h to rfc2045_config.h
* unicode/configure.in: rename config.h to unicode_config.h
2003-03-01 Mr. Sam <mrsam@courier-mta.com>
* autoresponse.c (read_headers): Use rfc2045_parse_partial() to
properly size-up content without trailing newlines.
* folder.c: Ditto.
* cgi/cgi.c (cgi_formdata): Ditto.
* rfc2045/reformime.c (read_message): Ditto.
* rfc2045/rfc2646create.c (rfc2646create_free): Emit the trailing
newline.
* configure.in: Conditionally probe if SA_NOCLDWAIT could be used.
* pcpd.c (start): Use SA_NOCLDWAIT, if blessed by configure.
2003-02-22 Toshikazu Ichikawa <ichikawa@toshikazu.org>
* unicode/iso2022jp.pl: iso2022jp update.
2003-02-17 Kurt Bigler <kkb@breathhost.net>
* HTML template cleanup.
2003-02-15 Mr. Sam <mrsam@courier-mta.com>
* folder.c (folder_list): Recalculate maildir quota after
a DELETE or RENAME (new function: maildir_quote_recalculate).
2003-02-11 Kurt Bigler <kkb@breathhost.net>
* HTML template cleanup.
2003-01-30 Mr. Sam <mrsam@courier-mta.com>
* configure.in: Fix search path for binaries.
3.5.0
2003-01-26 Mr. Sam <mrsam@courier-mta.com>
* folder.c (download_func): Fix platforms with broken putchar()s.
* authlib/authmysqllib.c (append_username): Same fix as authpgsqllib,
even though mysql does not need it.
2003-01-25 Mr. Sam <mrsam@courier-mta.com>
* FInal maildir creation revision.
2003-01-23 Mr. Sam <mrsam@courier-mta.com>
* authlib/authpgsqllib.c (append_username): Escape 's too.
2003-01-20 Mr. Sam <mrsam@courier-mta.com>
* maildir/maildircreate.c (maildir_tmpcreate_fd): Move maildir create
retry loop into maildir_tmpcreate_fd.
2003-01-19 Mr. Sam <mrsam@courier-mta.com>
* maildir/maildircreate.c: Removed old maildir creation code.
* maildir/maildirfilter2.c: New maildir creation code.
* images/sqwebmail.css: Cleanup.
* pcp.c: New maildir creation code.
* ldaplist.c: New maildir creation code.
* folder.c: New maildir creation code.
* maildir.c: New maildir creation code.
* maildir/maildircreateh.c: Optimizations.
2003-01-15 Mr. Sam <mrsam@courier-mta.com>
* html/en/Makefile.am (clonedist): Replace $(TAR) with $(AMTAR)
2003-01-16 Mr. Sam <mrsam@courier-mta.com>
* maildir/deliverquota: Initial implementation of new maildir
creation library. Converted deliverquota.
2003-01-14 Mr. Sam <mrsam@courier-mta.com>
* courier/module.local/deliver.c (savemessage): Use maildir_movetmpnew.
* webmail/maildir.c (do_msgmove): Use maildir_movetmpnew.
(maildir_closemsg): Use maildir_movetmpnew.
* maildir/deliverquota.c (deliver): Use maildir_movetmpnew.
* maildir/maildircreateh.c (maildir_try_create_hostname): Include
microseconds in message filename.
(maildir_movetmpnew): Encapsulate move from tmp to new by trying
link first, and only if it fails with exdev try rename.
2003-01-04 Mr. Sam <mrsam@courier-mta.com>
* maildir: rename mf_ and autoresponse_ functions to maildir_filter_
and maildir_autoresponse_ (namespace cleanup).
2003-01-03 "Thomas T. Thai" <tom@minnesota.com>
* Custom query patch for authpgsql
3.4.1
2002-12-23 Mr. Sam <mrsam@courier-mta.com>
* rfc2047.c (rfc2047_encode_callback): Fix hang on
locales where isspace(U+0x00A0) is true.
2002-12-12 Mr. Sam <mrsam@courier-mta.com>
* rfc2045/rfc2231.c (rfc2231_attrCreate): Do not use RFC 2231
MIME attribute encoding for attribute values that fit in the US-ASCII
charset.
2002-12-12 Mr. Sam <mrsam@courier-mta.com>
* html/en-us/readmsg.html: Typo.
2002-12-11 John D. Rowell <jdrowell@exerciseyourbrain.com>
* md5/md5_hash.c: Rename md5_has to md5_hash_courier (namespace
conflict with postgres).
2002-11-23 John Morrissey <jwm@horde.net>
* Move quota warning code from deliverquota to libmaildir.a,
to be reused by maildrop.
2002-11-17 Mr. Sam <mrsam@courier-mta.com>
* unicode/mkultcase.pl: Fix titlecase mapping.
* unicode: all unicode functions now receive the ptr to the unicode
structure as their first argument. Added a flags field to the unicode
structure to describe charset properties (multibyte, utf, uses shift
sequences...)
2002-11-17 Dr. Peter Bieringer <pb@bieringer.de>
* html/en-us/quickadd.html: <title> fix.
2002-11-11 Mr. Sam <mrsam@courier-mta.com>
* html/en-us/preferences.html: Remove double-dashes in the comment
to fix some stupid mozilla parser bug.
2002-11-07 Mr. Sam <mrsam@courier-mta.com>
* html/en-us: Typos
2002-11-06 Mr. Sam <mrsam@courier-mta.com>
* NEWS.html: added a few more links.
2002-10-31 Christian Hammers <ch@westend.com>
* maildir.c (maildir_save_start): More verbose logging messages
2002-10-29 Mr. Sam <mrsam@courier-mta.com>
* courier.spec.in (BuildPreReq): Fix build prereqs.
2002-10-25 Mr. Sam <mrsam@courier-mta.com>
* sqwebmail.c (main2): Drop root privs before showing invalid.html
and printnocookie.html
3.4.0
2002-10-15 Mr. Sam <mrsam@courier-mta.com>
* authlib/debug.c (auth_debug_login_init): Make it work if
DEBUG_LOGIN_ENV is not set.
2002-10-14 Olivier Girondel <olivier.girondel@cw.com>
* authlib/authldaplib.c (authldap_read_config): LDAP_FILTER fix.
2002-10-07 Mr. Sam <mrsam@courier-mta.com>
* Major toolchain upgrade - gcc 3.2, automake 1.6, autoconf 2.53,
libtool 1.4.
2002-10-03 Mr. Sam <mrsam@courier-mta.com>
* maildir/*.c: various cleanups.
2002-09-25 Mr. Sam <mrsam@courier-mta.com>
* html.c (filtered_tag): Allow type= in <blockquote>
* html: Amaya 6.4 is out. iso-8859-1 0xA0 chars replaced with
2002-09-21 Mr. Sam <mrsam@courier-mta.com>
* autobloat: check for gmake, check for gcc in top level makefile.
2002-09-19 Mr. Sam <mrsam@courier-mta.com>
* sqwebmail/makemime/reformime: RFC 2231 support.
2002-09-10 Alessandro Vesely <vesely@tana.it>
* authlib/authdaemond.c: Fix error logging.
2002-08-24 Mr. Sam <mrsam@courier-mta.com>
* http11/contentlanguage.c (parse_accept_language): Fix
Accept-Language: header parsing.
2002-08-23 Mr. Sam <mrsam@courier-mta.com>
* newmsg.c (dosendmsg): Added an option to request delivery
confirmation receipts (for mail servers that implement RFC 1894).
2002-08-19 Mr. Sam <mrsam@courier-mta.com>
* authlib/authdaemond.c (start): After 5 mins of inactivity call
the newly-defined module 'idle' function.
2002-08-16 kenp@infospace.com
* sqwebmail/maildir.c: Tolerate NFS clock skew.
2002-08-12 Mr. Sam <mrsam@courier-mta.com>
* maildir/maildirsearch.h: added a C++ wrapper.
* imap/utf8.c: cleanup, exposed internal unicode-to-utf8 conversion
function.
2002-08-11 Alessandro Vesely <vesely@tana.it>
* authlib/authmysqllib.c (validate_password): Fix password change
buffer overflow.
2002-08-08 Mr. Sam <mrsam@courier-mta.com>
* rfc2047.c (rfc2047_encode_callback): Fix MIME encoding of words
with = and ? characters.
2002-08-05 Mr. Sam <mrsam@courier-mta.com>
* sqwebmail.spec.in: Fix %is_not_mandrake.
3.3.7
2002-07-26 Mr. Sam <mrsam@courier-mta.com>
* authlib/configure.in: Fix invocation of pg_config.
* authlib/authsyschangepwd.c (dochangepwd): Call setsid() and
setlogin() on OpenBSD (make webmail passwd change work).
* ldapaddressbook/abooksearch.c (ldapabook_search): Fix ldapsearch
option.
2002-07-14 Mr. Sam <mrsam@courier-mta.com>
* maildir/maildirquota.c (maildir_quota_delundel_end): Typo fix.
2002-07-07 Yu Kobayasi <mail@yukoba.jp>
* shift-JIS encoding.
2002-07-06 Mr. Sam <mrsam@courier-mta.com>
* gpg: Bless GnuPG 1.0.7; add a dropdown to set the keysig trust
level.
2002-06-29 Mr. Sam <mrsam@courier-mta.com>
* pcp: Refreshed to gettext 0.11.1-2
3.3.6
2002-06-27 Mr. Sam <mrsam@courier-mta.com>
* authlib/authldaplib.c: Fix null ptr deref in new LDAP_MAILROOT
code.
3.3.5
2002-06-19 Mr. Sam <mrsam@courier-mta.com>
* pcp.c (do_login): Squash bad error message if initial groupware
calendar login fails for some reason.
* sqwebmail.spec/README: ... and the initial groupware calendar
login was failing on platform that use PAM because PAM needs to
be configured to authenticate the "calendar" service. Updated the
RPM spec file to set this up, and update pcp/README to indicate that.
2002-06-17 Mr. Sam <mrsam@courier-mta.com>
* maildir/maildirfilter.c: Fix FROM being incorrectly set for mailbot
autoreplies.
* maildir/maildirfilter.c: Do not use the -t flag when running
SENDMAIL to forward a message.
2002-06-13 Mr. Sam <mrsam@courier-mta.com>
* maildir/maildirquota.h: Renamed maildirsize struct member to
maildirsizefile - some compiler is having a cow about a struct member
having the same name as the struct.
2002-06-12 Mr. Sam <mrsam@courier-mta.com>
* maildrop/configure.in: Fix SPOOLDIR to ./Maildir
* maildir/maildirquota.c (do_maildir_openquotafile): Fix quotas
on FreeBSD (fcntl("/dev/null", F_SETFL) doesn't work on FreeBSD)
* authlib/cryptpassword.c: Added missing include of stdlib.h
2002-06-11 Mr. Sam <mrsam@courier-mta.com>
* authlib/authldaprc: Added LDAP_MAILROOT
2002-06-09 Mr. Sam <mrsam@courier-mta.com>
* numlib/strofft.c: off_t may be negative.
* +++ maildirquota API update +++
+ allows documented way to change the set quota on a maildir
+ major internal cleanup, established a sane API library
External changes:
+ quota no longer set by deliverquota or MAILDIRQUOTA, new -q
option to maildirmake. Both deliverquota, maildrop, and
Courier now read the maildirsize no matter what, and observe
the quota
+ maildirmake and deliverquota now installed by the Courier-IMAP,
maildrop, and sqwebmail standalone builds.
+ updated README.maildirquota, and man pages to reflect all these
changes.
2002-05-26 Mr. Sam <mrsam@courier-mta.com>
* configure.in: Do not use qmail-inject, use sendmail.
2002-05-26 Ron van den Dungen <ron@dse.nl>
* authlib/authmysqllib.c (do_connect): Fix server connect via
filesystem socket.
2002-05-25 Mr. Sam <mrsam@courier-mta.com>
* folder.c: Generate and validate a hash for redirect requests, to
prevent unauthorized use of the redirector.
2002-05-20 Mr. Sam <mrsam@courier-mta.com>
* rfc822_parsedt.c (rfc822_parsedt): Ignore obviously invalid years
(someone else can worry about Y10K).
2002-05-19 Mr. Sam <mrsam@courier-mta.com>
* sqwebmail.c (open_langform): Fix crash if a form template cannot be
opened.
2002-05-17 Mr. Sam <mrsam@courier-mta.com>
* newmsg.c (dosendmsg): Fix quota update when new message is NOT
saved in the Sent folder.
2002-05-14 Mr. Sam <mrsam@courier-mta.com>
* html/en-us/readmsg.html: Mozilla bug workaround
2002-05-09 Mr. Sam <mrsam@courier-mta.com>
* authlib/Makefile.am (libauth-modules): Get rid of some cruft in
the Makefile.
2002-05-08 Norihisa Washitake <nori@washitake.com>
* iso-2022-jp charset update
2002-05-07 Keith T. Garner <kgarner@kgarner.com>
* authlib: Additional LDAP authentication filter.
2002-05-07 John Morrissey <jwm@horde.net>
* authlib: Solaris LDAP fix.
3.3.4
2002-05-01 Mr. Sam <mrsam@courier-mta.com>
* pcp.c (createcache): Get rid of a spurious error message.
* maildir/maildirquota.c (qcalc): Fix quota calculation for large
maildir quotas.
2002-04-30 Mr. Sam <mrsam@courier-mta.com>
* unicode/big5.c (c2u): Fixed a crash caused by invalid big5 chars.
2002-04-17 Norihisa Washitake <nori@washitake.com>
* iso-2022-jp unicode map.
2002-04-08 "tonix (Antonio Nati)" <tonix@interazioni.it>
* maildir.c, html/en/folder.html: use strftime string from
folder.html to format message dates.
* folder.c, html/en/readmsg.html: selectively replace rfc822 mail
headers from readmsg.html
2002-04-07 Mr. Sam <mrsam@courier-mta.com>
* rfc822/rfc822_mkdate.c (rfc822_mkdate_buf): Explicit (int) cast gets
the file compiled under Cygwin.
2002-04-01 Mr. Sam <mrsam@courier-mta.com>
* authlib/authmysqllib.c (auth_mysql_setpass): Fix password change in
the custom MySQL driver.
2002-03-31 Brian Grossman <brian@SoftHome.net>
* FastCGI patches + update.
3.3.3
2002-03-26 Mr. Sam <mrsam@courier-mta.com>
* authlib/authldaplib: Added an option to implement two-stage
LDAP lookups, for authentication purposes.
2002-03-22 Mr. Sam <mrsam@courier-mta.com>
* newmsg_create.c (sentmsg_reformat): Use SQWEBMAIL_TEMPLATEDIR,
if defined, instead of HTMLLIBDIR.
2002-03-21 Mr. Sam <mrsam@courier-mta.com>
* authlib/configure.in: Fix broken vpopmail_home test.
2002-03-17 Mr. Sam <mrsam@courier-mta.com>
* ldaplist.c (parsesearch): Attempt to decode base64-encoded LDAP
attributes. Allow configuration of LDAP server SASL parameters.
2002-03-15 Mr. Sam <mrsam@courier-mta.com>
* html.c: Tighten up HTML parsing.
2002-03-14 Brian Candler <B.Candler@pobox.com>
* maildir/maildirmkdir.c (maildir_mkdir): Create tmp subdir last,
when creating a maildir.
2002-03-14 Toshikazu Ichikawa <ichikawa@toshikazu.org>
* sqwebmail.c (main2): Optionally disable monthly Sent folder rename.
2002-03-04 Mr. Sam <mrsam@courier-mta.com>
* rfc822/rfc822.c (rfc822_prname_orlist): Dequote quoted-strings.
2002-03-01 "Peter C. Norton" <spacey-courier@lenin.nu>
* Added authlib/README.authpostgres.html
2002-03-01 Mr. Sam <mrsam@courier-mta.com>
* fix configure and makefile scripts for autoconf 2.52 and automake 1.5
2002-02-27 Mr. Sam <mrsam@courier-mta.com>
* authlib/configure.in: Replace test ~vpopmail (home directory) with
a Perl script (~username not supported by Solaris's sh).
* mimegpg: when encrypting, include Mime-Version: 1.0 header in
the headers of the encrypted portion of the message.
* folder.c (folder_initnextprev): Remove spurious hidden field
left outside a form.
3.3.2
2002-02-25 Mr. Sam <mrsam@courier-mta.com>
* ldaplist.c (parsesearch): Expect LDIF-formatted output from
ldapsearch, now.
2002-02-19 Mr. Sam <mrsam@courier-mta.com>
* gpglib/mimegpgfork.c (gpgmime_fork): set O_NONBLOCK on pipes
to gpg.
2002-02-15 Mr. Sam <mrsam@courier-mta.com>
* authlib/configure.in: Link against $CRYPTLIBS when probing for
open_smtp_relay()
2002-02-13 Mr. Sam <mrsam@courier-mta.com>
* maildirfilter: import SENDER from the environment, use that for
forwarded mail.
2002-02-12 Mr. Sam <mrsam@courier-mta.com>
* sqwebmail.spec: Fix crontab.
2002-02-12 "Stefan Hornburg (Racke)" <racke@linuxia.de>
* webmail: Disable Trash folder autopurge by setting # of days to 0.
2002-02-06 Mr. Sam <mrsam@courier-mta.com>
* pcp: Initial set of changes for the forthcoming remote calendaring
proxy: build pcp/uids.h from the Makefile; added pcpuid() and
pcpgid() functions; moved auth_myhostname() into a separate module;
split pcp_open_proxy() function into two functions: pcp_find_proxy()
(with an extra parameter that specifies which pcp servers to skip,
we want to make sure a remote proxy connection doesn't multihop) and
pcp_set_proxy().
2002-02-02 Ken Jones <kbo@inter7.com>
* authvchkpw update: vpopmail 5.2
2002-01-25 Mr. Sam <mrsam@courier-mta.com>
* rfc2045/rfc2045.c (doline): Fix incorrect calculation of the
end of a multipart MIME section that's inside another multipart
MIME section.
3.3.1
2002-01-13 Mr. Sam <mrsam@courier-mta.com>
* folder.c (folder_nextprev): Add "Download Message" option.
* attachments.c (attachments_head): Display a meaningful error message
if makemime fails.
* pcp.c (sqpcp_displayevent): Add class=calendarevent to event time
table.
2002-01-12 Mr. Sam <mrsam@courier-mta.com>
* authlib/authldaplib.c (auth_ldap_do): Escape punctuation in
userid string.
2002-01-10 Mr. Sam <mrsam@courier-mta.com>
* html/en/eventshow.html: Added some missing tags for displaying
attachments.
2002-01-08 Robert L Mathews <rob@tigertech.com>
* sqwebmail/ispell.c (ispell_run): Handle '?' replies from ispell.
2002-01-08 Oliver Hitz <oliver@net-track.ch>
* authlib/Makefile.am (libauth-modules): Fix Makefile build
with no authentication modules selected.
2002-01-07 Pawel Wilk <siefca@kernel.pl>
* authlib/authmysqllib.c: Major update to the authmysql driver
that adds the option to create hand-crafted SQL queries.
2002-01-07 Mr. Sam <mrsam@courier-mta.com>
* maildir/maildirfilter.c (mf_saverules): Add -t option to sendmail
is maildirfilter-generated recipe.
3.3
2001-12-30 Mr. Sam <mrsam@courier-mta.com>
* pcp/pcpnet.c (bookevent): Fix memory corruption.
2001-12-28 Iustin Pop <iusty@intensit.de>
* authldap: if LDAP_TLS and LDAP_AUTHBIND were enabled, use TLS for
the authenticated bind also.
2001-12-28 Mr. Sam <mrsam@courier-mta.com>
* folder.c (showaddressheader_printc): Properly decode 8-bit characters
for the quick addressbook add link.
2001-12-26 Mr. Sam <mrsam@courier-mta.com>
* sqwebmail.c (scriptptrget): URL-encode the mailboxid in sqwebmail's
URL.
2001-12-24 Mr. Sam <mrsam@courier-mta.com>
* Calendar: attempting to delete an event placed on a calendar by
proxy results in a warning message.
2001-12-22 Mr. Sam <mrsam@courier-mta.com>
* authpam: Fix failover to the next auth module if userid not found.
2001-12-10 Mr. Sam <mrsam@courier-mta.com>
* Calendar: mail notices to event participants when the event is
updated.
2001-12-08 Mr. Sam <mrsam@courier-mta.com>
* Converted maildir documentation to Docbook SGML
2001-12-07 Mr. Sam <mrsam@courier-mta.com>
* Added groupware calendaring.
2001-12-04 Mr. Sam <mrsam@courier-mta.com>
* sqwebmail/folder.c: close the maildir cache file before responding
with an http redirect - rare race condition.
2001-11-27 Mr. Sam <mrsam@courier-mta.com>
* authlib/authmod.c (authmod_success): Adjust error reporting after
a failed exec().
2001-11-25 John Morrissey <jwm@horde.net>
* authlib/authldaplib.c: make user uid/gid optional, default to global
uid/gid.
2001-11-24 Mr. Sam <mrsam@courier-mta.com>
* Add pcp/README.html to the RPM.
* SGML work resulted in elimination of some makefile cruft.
sqwebmail man pages will now be installed in <prefix>/man instead of
<prefix>/man/man.
* Begin conversion of man/html documentation to Docbook SGML.
Created a docbook directory in CVS, and added it to all modules.
This directory won't get packaged into tarballs, the tarballs will
have just the compiled man and html documentation, and the docbook
directory (module name 'docbook-scripts') will contain only the
scripts to convert SGML to HTML and MAN.
* Converted authlib and userdb man/html pages to sgml.
2001-11-23 Mr. Sam <mrsam@courier-mta.com>
* Fix pcp/po/Makefile mess, by creating it from autobloat
2001-11-18 Mr. Sam <mrsam@courier-mta.com>
* authlib/authldaplib.c (auth_ldap_do): Fix incorrect soft/hard
error indication for a failure in ldap_search_st().
2001-11-17 Mr. Sam <mrsam@courier-mta.com>
* configure.in (all): use a different test for -lnsl and -lsocket
that works on BSD/I.
2001-11-16 Mr. Sam <mrsam@courier-mta.com>
* maildir.c (do_msgmove): Do not change the quota counter when
moving a message between the folders.
2001-11-14 Mr. Sam <mrsam@courier-mta.com>
* pcp: Rename getpw() to do_getpw(), Solaris has something like that.
2001-11-12 Mr. Sam <mrsam@courier-mta.com>
* html: Move the navigation bar into a separate file (three, actually)
and add an 'include'-type directive that inserts the navigation bar
into the other template files. This should prove to be useful later.
2001-11-12 Charlie Watts <cewatts@frontier.net>
* html: optimizations - remove redundant tables.
3.2
2001-11-06 Mr. Sam <mrsam@courier-mta.com>
* html.c: html filter - adjust handling of invalid markup tags.
2001-11-05 Mr. Sam <mrsam@courier-mta.com>
* pcp: Add additional localization information to pcp/README.html
* pcp: Add -Iintl to cpp flags - required on systems that use
builtin gettext.
2001-11-03 Mr. Sam <mrsam@courier-mta.com>
* Fix bugs with display of recurring events.
* html/en/newevent.html: Fix it.
* html/en/spellchk.html: Fix it.
2001-11-03 Abhijit Menon-Sen <ams@wiw.org>
* rfc2045/rfc2045.c (rfc2045_free): Plug a memory leak.
2001-11-02 Mr. Sam <mrsam@courier-mta.com>
* Add monthly and weekly recurring events.
* pref.c (pref_displayweekstart): Add a preferences setting for
a Saturday start of the calendar week.
2001-11-01 Mr. Sam <mrsam@courier-mta.com>
* clean up rfc1035, md5, sha1, libhmac, configure scripts.
2001-10-31 Mr. Sam <mrsam@courier-mta.com>
* calendar: Add a preferences setting for start of calendar week:
sunday/monday.
* maildir.c (get_msginfo): fix - do not save date_s in cache file,
instead build it when the cache file is read, from date_n.
* html: Add link to new event form on all calendar view pages.
2001-10-29 Mr. Sam <mrsam@courier-mta.com>
* html: provide TITLE tags for images, used instead of ALT by newer
browser to provide popups when pointer is over the image.
* pcp.c (sqpcp_monthlylink): Create a link from the weekly calendar
view to the monthly calendar view
2001-10-28 Mr. Sam <mrsam@courier-mta.com>
* folder.c (convertcid): Workaround for broken linkage in
multipart/related content from certain MS mailers.
* Select alternative timezone from dropdown on the login screen.
Populate the timezone file with US timezones, for now.
2001-10-26 Mr. Sam <mrsam@courier-mta.com>
* Check in initial implementation of the personal calendaring
protocol. Added pcp library to top level configure/makefile.
2001-10-14 Mr. Sam <mrsam@courier-mta.com>
* sqwebmail.spec: stub out call to libtoolize in configure.in -
messes up RH 7.1 builds
2001-10-06 Vittorio Ballestra <vittorio.ballestra@infogestnet.it>
* Added experimental PostgreSQL authentication module.
2001-10-06 Mr. Sam <mrsam@courier-mta.com>
* Restore current mailbox quota usage display to folder listing.
* Enhance new message preview to display any attachments to the
new message (basically, call folder_showmsg to preview the message).
Changed folder_showmsg()+derivatives to omit certain links when in
preview mode (such as a link to download an attachment, etc...)
2001-10-01 Mr. Sam <mrsam@courier-mta.com>
* Drop many useless BGCOLOR attribute tags from most HTML.
3.1.0
2001-10-01 Alessandro Vesely <vesely@tana.it>
* gpglib/testgpg.c: fix missing return code from poll_wait()
2001-09-26 Mr. Sam <mrsam@courier-mta.com>
* Import of cniconsulting.com's HTML templates.
2001-08-28 Mr. Sam <mrsam@courier-mta.com>
* authlib/authuserdbpwd.c (auth_userdb_passwd): Fix trashed pointer
dereference. Problem noted by James Knight <jknight@fuhm.net>
2001-08-26 Mr. Sam <mrsam@courier-mta.com>
* Added unicode mappings for windows-874/tis-620. Refresh to
Unicode 3.1.1
2001-08-22 Mr. Sam <mrsam@courier-mta.com>
* html.c (filtered_tag): delete TYPE attribute from html mail.
2001-08-21 Mr. Sam <mrsam@courier-mta.com>
* GnuPG passphrase support.
* newmsg.c (dosendmsg): Fix - if new message is sent without
previewing, if signing or encrypting fails, the error message screen
will not return to the composition window.
* gpg: fix error message not showing up if failed to sign a message.
2001-08-20 Mr. Sam <mrsam@courier-mta.com>
* logincache: converted logincache into a libmaildir.a module.
2001-08-19 Mr. Sam <mrsam@courier-mta.com>
* auth.c (badstr): Adjust illegal characters in username/login/pwd
to be control chars, ', and " only.
2001-08-18 Mr. Sam <mrsam@courier-mta.com>
* mailfilter.c: Option to specify whether the filter matching
pattern is plain text string or a regular expression
* mailfilter.c: Fixed bug where invalid filter input that results
in an error message forgetting the active filter number, so when the
filter input error is corrected, the filter rule is saved as a new
rule, instead of updating the former rule.
2001-09-18 Mr. Sam <mrsam@courier-mta.com>
* Enigma update: fixes for new autoconfig/automake.
2001-08-15 Mr. Sam <mrsam@courier-mta.com>
* folder.c (list_folder_xlate): Added wrapper for list_folder()
that subs reserved folder names with parametrized names.
2001-08-10 Mr. Sam <mrsam@courier-mta.com>
* authlib/authldaplib.c (ldapopen): LDAP_OPT_DEREF is not available
in openldap 1.0
2001-08-07 Mr. Sam <mrsam@courier-mta.com>
* Fix --with-random configure.in option. Problem noted by William
Hue <williamhue@telus.net>
2001-08-06 Mr. Sam <mrsam@courier-mta.com>
* maildir/maildirshared.c (maildir_shared_subscribe): Fix a bug in
shared folder subscribe logic.
Problem noted by Vojtech Karny <karny@datalite.cz>
* maildir/maildirmake.c (add): Explicitly fseek() to start of file,
for system where fopen("a+") initially positions to EOF.
Problem noted by Vojtech Karny <karny@datalite.cz>
2001-08-01 Mr. Sam <mrsam@courier-mta.com>
* authlib/authmysql.h: Drop mysql/ prefix from paths to mysql header
files (should be included in mysql_config).
3.0.0
2001-07-28 Mr. Sam <mrsam@courier-mta.com>
* Mail filter: prepend a backslash to a body search string that
begins with a space (avoid a parsing error in maildrop).
2001-07-25 inter7.com
* Updated authvchkpw module.
2001-07-24 Christophe Sollet <csollet@coleebris.com>
* authlib/authldaplib.c (authldap_read_config): Add LDAP_DEREF option
to authldaprc that sets the LDAP_OPT_DEREF option.
2001-07-24 Mr. Sam <mrsam@courier-mta.com>
* maildir/maildirquota.c (qcalc): Prevent a division by 0 if
someone specified a quota of 0.
2001-07-17 Mr. Sam <mrsam@courier-mta.com>
* cgi/cgi.c (cgi_setup_1): Fix to allow extra arguments in the
Content-Type: header on http POSTs. Problem noted by
Marcin Owsiany <porridge@expro.pl>
2001-07-17 Mr. Sam <mrsam@courier-mta.com>
* sqwebmail.c (output_form): Enable gzip compress on folder.html
and folders.html
2001-07-16 Mr. Sam <mrsam@courier-mta.com>
* maildir.c (dodirscan): Fix a potential race condition that might
result in the folder content index not to be refreshed if the cur
directory got updated in the middle of folder message totals being
calculated.
2001-07-15 Mr. Sam <mrsam@courier-mta.com>
* Rename HAVE_UNICODE to HAVE_SQWEBMAIL_UNICODE to fix the link
error caused by --disable-utf7-folder-encoding.
2001-07-07 Mr. Sam <mrsam@courier-mta.com>
* authlib/authdaemond.c (start): close stdin/stdout/stderr after
becoming a background process.
2001-07-03 Mr. Sam <mrsam@courier-mta.com>
* imap, pop3, webmail, ldap, mysql: minor changes to the default
settings in associated configuration files, to accomodate webadmin.
Be sure to verify your system configuration after doing make
install-configure
2001-07-01 Mr. Sam <mrsam@courier-mta.com>
* authlib/authldap.schema: Added - a sample LDAP schema.
2001-06-27 Mr. Sam <mrsam@courier-mta.com>
* rfc2047.c (a_rfc2047_encode_str): Fix incorrect MIME encoding of
address name in old-style RFC-822 format.
2001-06-25 Mr. Sam <mrsam@courier-mta.com>
* Disable MSIE 6.0 smart tags in all html files
2001-06-22 Mr. Sam <mrsam@courier-mta.com>
* configure.in: SCO needs -lsocket for inet_addr().
2001-06-21 Mr. Sam <mrsam@courier-mta.com>
* authlib: updated authvchkpw code.
2001-06-20 Mr. Sam <mrsam@courier-mta.com>
* authlib: implement password changing in the authmysql module.
Added optional MYSQL_NAME_FIELD.
2001-06-19 Mr. Sam <mrsam@courier-mta.com>
* authlib: implement password changing in the authldap module.
Switch the default setting of LDAP_CLEARPW and LDAP_CRYPTPW in
order to better match the LDAP schema. Add password change code
to authtest.
2001-06-18 Mr. Sam <mrsam@courier-mta.com>
* rfc2045/rfc2045decodemimesectionu.c(txtflush): fix a null ptr
deref caused by a message with an empty body.
2001-06-17 Mr. Sam <mrsam@courier-mta.com>
* First phase of a major rewrite of the authentication layer that
will allow passwords to be updated back on the original authentication
database. This is going to pretty much guarantee a major version
upgrade. Eventually sqwebmail-pass is going to go away (not just
yet), so after upgrading to 3.0, mail account passwords will have
to be reset. Since we've already thrown out a bunch of stuff, also
clean up lots of cruft in the configure script and Makefile. The
end result is that some of the stuff that went into
/usr/local/libexec/sqwebmail is going to move back into
/usr/local/share/sqwebmail.
2001-06-11 Mr. Sam <mrsam@courier-mta.com>
* Bless GnuPG 1.0.6
2.1.1
2001-06-08 Mr. Sam <mrsam@courier-mta.com>
* autoresponse.c (read_headers): Fix a crash caused by an
autoresponse to a message with an unknown charset. Problem noted
by porridge@mail1.expro.pl.
2001-06-06 Mr. Sam <mrsam@courier-mta.com>
* liblock/lockdaemon.c: fix several improper tests for failed fopen().
2.1.0
2001-05-25 Mr. Sam <mrsam@courier-mta.com>
* Fix handling of --imageurl to not require a trailing slash.
2001-05-23 Mr. Sam <mrsam@courier-mta.com>
* Show size of the MIME attachment (reformatted attachment indicator).
2001-05-20 Ken Pizzini <kenp@go2net.com>
* Add the 'env' keyword to template files that inserts
environment variables.
2001-05-20 "John A. Barbuto" <jbarbuto@bizland-inc.com>
* Add quota support to authmysql (not used in the sqwebmail build).
2001-05-18 Mr. Sam <mrsam@courier-mta.com>
* Added makemime to the install, use makemime to MIME-ify uploaded
attachments. Benefits: better MIME encoding, consistency.
* Fix random failures in mimegpg from unexpected child process
termination.
2001-05-17 Mr. Sam <mrsam@courier-mta.com>
* Bless GnuPG 1.0.5. If we detect 1.0.5, default to including utf-8
charset in the unicode map.
2001-05-15 Mr. Sam <mrsam@courier-mta.com>
* Added autoreply capability. maildrop 1.3.2 required.
* rfc2045/makereply.c - manually handle copy of message for
forwardatt(), it got broke by the 4/8 change to rfc2045_mimepos.
2001-05-14 Mr. Sam <mrsam@courier-mta.com>
* rfc2045/rfc2646create.c (rfc2646create_alloc): Fix incorrect
flowed wrapping of first paragraph.
2001-05-13 Mr. Sam <mrsam@courier-mta.com>
* html/en-us: Added style sheet codes to mailfilter.html, created
autoresponder.html
2001-05-12 Mr. Sam <mrsam@courier-mta.com>
* authlib/authlib.html.in: authldap and authmysql are now battle-
tested, and are no longer marked "experimental".
2001-05-01 Mr. Sam <mrsam@courier-mta.com>
* folder.c (folder_list): block attempt to delete INBOX (which ends
up blowing away preferences). Problem noted by gourgen@acc.am.
2001-04-24 "Roland Hnel" <rh@ginko.net>
* authlib/authmysql: applied patch to replace the remaining
hardcoded mysql table field names with configurable values from
authmysqlrc.
2001-04-17 Mr. Sam <mrsam@courier-mta.com>
* tcpd/starttls.c (create_tls): Log an error if
PEM_read_bio_DHparams() call fails.
* rfc822.c (rfc822t_alloc): Explicitly cast arg to (void *).
* authlib/configure.in (AUTHLDAP): Test for -lresolv before -lber.
2001-04-14 Mr. Sam <mrsam@courier-mta.com>
* authlib/authldap: minor fixes for OpenLDAP 2.0.7. Suppress a
spurious ldap_get_values msg. Fail authentication completely if LDAP
server is unreachable (installing of falling over to the next
authentication mode). IMPORTANT: some people might be relying on
this behavior to fail over to another authentication module. Make
sure to note this in release notes.
2001-04-12 Mr. Sam <mrsam@courier-mta.com>
* Cosmetic fixes. Replace // with /* */ comments in some .c files
and replace return of void datatype with an explicit return.
Other misc stuff too.
2001-04-11 Mr. Sam <mrsam@courier-mta.com>
* userdb/makeuserdb.html.in: Fix some documentation typos.
* authlib/authldaplib.c: refuse to authenticate if we end up running
as uid 0 or gid 0, this indicates a config file problem.
2001-04-08 Mr. Sam <mrsam@courier-mta.com>
* authlib/authmysqllib.c (auth_mysql_getuserinfo): Better error
recovery when the mysql server goes down (from
oliver.blasnik@nextra.de).
* rfc2045/rfc2045.c (rfc2045_mimepos): Fix a long-time glitch where
a garbled message with no body will have its headers logically placed
in the body section, and the supposed headers will be NULL -- this was
a benign artifact of the parsing logic.
* Added /usr/local/bin to AC_PATH macros in all configure.in scripts
2001-04-07 Mr. Sam <mrsam@courier-mta.com>
* gpglib/mimegpg.c (isgpg): Drop the check for micalg=pgp-sha1
* Added /usr/local/bin to AC_PATH macros in all configure.in scripts.
2001-04-04 Mr. Sam <mrsam@courier-mta.com>
* maildir.c (do_msgmove): Fix trashed free() on a failure to
remove the message from a shared folder.
* maildir/maildirshared.c (maildir_unlinksharedmsg): Check if we
failed to remove a message from a shared folder because we do not
have the permission to do so. If so, do not remove our private
link, and instead drop the T flag from link's name (if it had one).
2.0
2001-03-29 Mr. Sam <mrsam@courier-mta.com>
* pref.c (pref_pagesize): Add option to display 100 or 250 messages
per folder index page.
* authlib/preauthcustom.c (authcustomcommon): Fix the framework of
the custom authentication function to properly call the callback
ptr, and set the exit code appropriately.
2001-03-26 Mr. Sam <mrsam@courier-mta.com>
* misc: miscellaneous style sheet patches from einar@bordewich.net
* authlib/preauthvchkpw.c: add configure script probe for the
existence of vlogauth()
2001-03-25 Mr. Sam <mrsam@courier-mta.com>
* Converted HTML templates to use style sheet. Rebuilt dynamic
HTML generation to use labeled tags.
2001-03-21 Mr. Sam <mrsam@courier-mta.com>
* gpglib: probe for --allow-secret-key-import
* folder.c (void): Detect application/pgp-keys no matter what
Content-Disposition: says.
2001-03-19 Mr. Sam <mrsam@courier-mta.com>
* sqwebmail.c (setlang): Put sqwebmail_content_locale into environment
as LANG=, in order to get localized messages from GnuPG.
2001-03-19 Ken Jones <kbo@inter7.com>
* preauthvchkpw.c update.
2001-03-17 Mr. Sam <mrsam@courier-mta.com>
* sqwebmail.spec.in: minor updates.
* rfc2045/configure.in: --disable-unicode overrides libunicode.a
autodetect
2001-03-15 Mr. Sam <mrsam@courier-mta.com>
* Added GnuPG support (1.0.4).
2001-03-12 Mr. Sam <mrsam@courier-mta.com>
* newmsg_newdraft.c (newmsg_newdraft): Clear out rfc2045_mkreplyinfo
struct (extra fld commited from oak branch was not being initialized).
2001-03-11 Mr. Sam <mrsam@courier-mta.com>
* folder.c (get_textlink): Detect https links in text/plain.
2001-03-10 Mr. Sam <mrsam@courier-mta.com>
* maildir.c (maildir_delete): Added option to delete folder contents,
before deleting the folder.
* sqwebmail.c (rename_sent_folder): Change the names of archived
sent folders to Sent.YYYY.mm-name, so that they sort correctly.
2001-03-07 Mr. Sam <mrsam@courier-mta.com>
* maildir.c (do_msgmove): Check return code from link(), in order to properly
report screwed up maildir permissions.
2001-02-23 Mr. Sam <mrsam@courier-mta.com>
* folder.c: fixed bad free call in modified-utf7 folder logic,
for shared folders.
1.2.5
2001-02-18 Mr. Sam <mrsam@courier-mta.com>
* maildir/deliverquota.c: replace snprintf with sprintf, for better
compatibility.
2001-02-15 Mr. Sam <mrsam@courier-mta.com>
* unicode/utf8.c (unicode_utf8_tou): Fixed memory corruption in UTF8
code.
2001-02-13 Mr. Sam <mrsam@courier-mta.com>
* sqwebmail.c (output_form): Complain to syslog if we can't exec gzip.
2001-02-09 Mr. Sam <mrsam@courier-mta.com>
* Patch: tobi@tobi.nu - replace --with-dyn-mysql with --with-mysql-libs
and --with-mysql-includes
2001-02-08 Chris Seawood <cls@radiate.com>
* authlib: Added check for open_smtp_relay in -lvpopmail
2001-02-07 Mr. Sam <mrsam@courier-mta.com>
* newmsg_create.c (sentmsg_reformat): Fix crash when appending footer
to sent message from the attachment window.
* Makefile.am: delete MAKEFLAGS
2001-02-05 Mr. Sam <mrsam@courier-mta.com>
* folder.c: Tweaks for mozilla.
* newmsg.c (newmsg_init): More misorders of TD & TR tags.
2001-02-02 Mr. Sam <mrsam@courier-mta.com>
* configure.in (INSTALL_SCRIPT): added sqwebmail-system-auth.pamconf
and added a script to set webmail.authpam to either that, or the
original sqwebmail.pamconf, if we do not find /etc/pam.d/system-auth
2001-01-30 Mr. Sam <mrsam@courier-mta.com>
* folder.c (showunknown): Fix misorder of TD & TR tags.
1.2.4
2001-01-27 Mr. Sam <mrsam@courier-mta.com>
* pref.c: Add option not to archive sent mail.
2001-01-26 Mr. Sam <mrsam@courier-mta.com>
* pref.c: Add a preferences option to suppress flowed text format
display.
* rfc2045searchcontenttype.c - fix stack overflow due to incorrect
recursion logic.
1.2.3
2001-01-25 Mr. Sam <mrsam@courier-mta.com>
* Added a hook for passing some additional flags to the
RPM spec script, using --define 'xflags [flags]' option.
* all: Fix authldap connection failure recovery (Brian Candler)
* Fix big5/gb2312 conversion bug.
1.2.2
2001-01-24 Mr. Sam <mrsam@courier-mta.com>
* cgi/cgirelscriptptr.c: Fixed bug in automatic http/https selection
(it doesn't work for HTTP redirects).
* Fixed bug in charset conversion logic.
2001-01-22 Mr. Sam <mrsam@courier-mta.com>
* html/en-us/spellchk.html: get rid of some leftover javascript
calls.
1.2.1
2001-01-16 Mr. Sam <mrsam@courier-mta.com>
* Remove spurious filter_end() from newmsg_create.
2001-01-15 Mr. Sam <mrsam@courier-mta.com>
* auth.c (do_login): explicitly announce the fact that maildir is
broken.
1.2.0
2000-12-30 Mr. Sam <mrsam@courier-mta.com>
* Implemented flowed text format.
2000-12-27 Mr. Sam <mrsam@courier-mta.com>
* Fixed off-by-one in attachment upload code.
2000-12-23 Mr. Sam <mrsam@courier-mta.com>
* sqwebmail.c (output_form): Explicitly set the charset in the HTTP
header.
* Removed Content-Type: metatag from all .html files, it's now in the
HTTP header.
* Implemented unicode support. Added message that will be printed
whenever the message character set does not match the display
character set.
* Added unicode subdirectory from CVS, in preparation for adding
unicode-related code.
2000-12-22 Mr. Sam <mrsam@courier-mta.com>
* logincache.c (prepare_login_cache): get rid of spurious error message
with vchkpw with webpass optional enabled being installed suid root.
2000-12-22 Mr. Sam <mrsam@courier-mta.com>
* sqwebmail.c (rename_sent_folder): First login of the month rename
Sent to Sent.MMM-YYYY.
2000-12-21 Mr. Sam <mrsam@courier-mta.com>
* newmsg_newdraft: major code cleanup. Took most of what was in here
and moved it to librfc2045.a as a generic function that generates
replies to MIME messages. Got rid of a lot of cruft. The reply
and forward function needs to be heavily tested now. Changes:
+ mailing list address compare now case insensitive.
+ new functions in librfc2045.a: rfc2045_makereply(), which contains
most of the original code from newmsg_newdraft;
rfc2045_searchcontenttype(), search for a MIME section to reply to;
rfc2045_decodemimesection() - decode a MIME section.
rfc2045header_start(), rfc2045header_get(), rfc2045header_end() -
read headers from a MIME section.
+ librfc2045 now has a make check action to check header parsing.
1.1.2
2000-12-18 Mr. Sam <mrsam@courier-mta.com>
* folder.c: fix null ptr deref in RFC 2369 header processing.
1.1.1
2000-12-16 Mr. Sam <mrsam@gwl.email-scan.com>
* mailinglist.c: getname() should be getaddr() in checkmailinglist().
1.1.0
2000-12-09 Mr. Sam <mrsam@gwl.email-scan.com>
* maildir.c: Fix quota update breaking in move to trash.
* Fix crash if quota is exceeded on a message move.
* Set LC_CTYPE localte to "C", because glibc is broken.
2000-12-08 Mr. Sam <mrsam@courier-mta.com>
* logincache.c (check_login_cache): another place to move setuid and
setgid before chdir.
2000-12-02 Mr. Sam <mrsam@gwl.email-scan.com>
* Created "Reply To List"
* Created address book quick add.
* newmsg_create.c (newmsg_createdraft_do): get rid of extra blank
line that was being prepended to the new message.
* Made maildirquotas work with mail filters. This is done entirely
in libmaildir.a -- mf_saverules() reads maildirsize(), if it exists,
and uses it to initialize MAILDIRQUOTA in the generated recipe.
2000-11-26 Mr. Sam <mrsam@courier-mta.com>
* Replaced rfc822t_alloc() with rfc822t_alloc_new().
2000-11-20 Mr. Sam <mrsam@courier-mta.com>
* preauthvchkpw.c update.
2000-11-16 Mr. Sam <mrsam@courier-mta.com>
* Properly set the return address on mail forwarded from a mail
filter.
2000-11-15 Mr. Sam <mrsam@courier-mta.com>
* Potential (but irrelevant) file descriptor leak in soft quota
checking.
1.0.3
Minor fixes -- bad stat in maildir_try_create, move chdir to homedir
after setting uid/gid.
Fix for a memory leak in OpenLDAP.
1.0.2 Additional tweaks to mysql configuration script.
Fixed bad label for authvchkpw module.
1.0.1 - maintenance update.
Authentication overhaul. authdaemond split into alternate versions,
one for each database back end. The original "authdaemond" replaced
by a shell script that checks for the installed authdaemond
alternates, and run whatever's installed. The idea is to allow
LDAP and MySQL support to be separately packaged, and for LDAP and
MySQL support to be added simply by installing the extra package
(the base packaged for the garden variety and the LDAP/MySQL back
end remains the same).
Some tweaks to MySQL configuration and detection logic.
Some tweaks for the MSIE breakage.
Added a "custom" authentication module -- a stub that doesn't
authenticate anything. It takes care of all the low level details
relating to interfacing with the authentication library. Just insert
site-specific code in the right spot.
Fixed bug where nicknames were automatically lowercased.
Allow TIMEOUTSOFT to be adjusted via SQWEBMAIL_TIMEOUTSOFT environment
variable. TIMEOUTHARD is adjustable via SQWEBMAIL_TIMEOUTHARD (but
read the warning in INSTALL carefully).
09/13/2000 - 1.0
Spec file updated for RH 7.0
Fixed several bugs in the spec file. The old spec file
sets wrong permissions on /home/httpd/cgi-bin, fix existing
installs by running chmod 755 /home/httpd/cgi-bin.
Add cc to maildirfilter.
Fix an obscure bug in incorrect encoding of multiple RFC2047
encoded words.
Finally RFC2047-decode headers in message preview.
Push back authpam to the tail end of the module list, because
authpam wants to be the last called module.
Slightly changed how name attributes in LDAP are handled.
Display current quota usage.
Added %define in spec file for some hardcoded values.
07/27/2000 - 0.99
Fixed bug with random envelope return address corruption.
Berkeley DB 3 support.
Completely rewritten authmysql module.
Added mail filtering.
jbj@redhat's optimization suggestions.
06/16/2000 - 0.37
Added "show for printing option" -- based on an external
patch. Created my own icon for this option.
Added a config file - logindomainlist. If exists, login screens
will include a drop down list of domains.
Added LDAP address book import.
Other miscellaneous address book enhancements.
Forwarding a message with attachments preserves the attachments.
05/30/2000 - 0.36a maintenance release. A major Courier debugging session
uncovered several potential bugs in the authentication layer.
The patches are brought back into the sqwebmail tree.
05/25/2000 - 0.36 Slightly changed semantics of maildir file creation. Don't
loop on non-ENOENT errors. DJB is wrong - you'll get stuck in an
infinite loop if, say, directory permissions are wrong. Abort
instead.
Added optional images and icons.
05/10/2000 - 0.35 Changed footer to a per-lang parameter (html/lang/footer
read instead of html/footer)
Fixed cid: URL bug (didn't work :-( )
Fixed RFC2047 bug introduced in 0.32 series.
Bug fix in quota support. Properly implemented.
multipart/related.
Added address book.
Added authdaemon.
When vpopmail is used, change password via vpopmail.
Bug fix -- concurrent access failure in displaying of inline
images.
Nuke ACTION attribute in HTML tags (disable FORM posts).
03/16/2000 - 0.34 Several fixes to allow sqwebmail to be manually installed
suid to non-root, as long as all mailboxes are owned by the
same uid. --with-maxmsgsize patch (default 2 MB).
03/13/2000 - 0.33 MySQL patch. Courier integration. Added LINK to the list
of banned HTML tags. Content-Base:/Content-Location support.
02/28/2000 - 0.32 Removed --enable-mimecharset option. The MIME character set
for outgoing messages is now set in the CHARSET file located
in the HTML template directory. Upgrade to 0.32 during quiet
time, because people will get kicked off. Note that the default
character set is now iso-8859-1. It was previously us-ascii.
Complete RFC 2047 implementation. SqWebMail should now
automatically encode and decode MIME headers. "Send Preview"
is an exception, I'll take care of that one later.
You can use ${sysconfdir}/footer to define a footer that will
be appended to every message.
01/26/2000 - 0.31 Authlib enhancements. Updated vpopmail support. Updated
authldap support: mailDir, userPassword optional to suppress
spurious error messages. Added option to use authenticated
LDAP binds and have the LDAP server validate the password,
instead of sqwebmail.
01/22/2000 - 0.30 More authlib tweaks - Makefile. Authvchkw will now
recognize : as a domain separator, since there are still many
old dump Netscape versions lying around. No need to chgrp mail
on sqwebmail.
01/04/2000 - 0.29 LDAP fixes. Reformatted HTML files with Amaya 2.2. The
logged on user's E-mail address will be shown now in the upper
right hand corner. Optionally attach X-Sender to sent messages.
More authvchkpw fixes (hopefully that's it). With authvchkpw,
you will now have to login as user@domain. user%domain never
worked, and it has been removed. Replaced --enable-hostname
config file with a runtime config file,
/usr/local/share/sqwebmail/hostname
01/03/2000 - 0.28 makefile fixes. Added experimental LDAP module.
12/15/1999 - 0.27 resumed maintaining this ChangeLog. A lot of new stuff.
Changes from 0.26: new authentication code. Eliminated --enable-multidir
option. New authentication includes option to maintain virtual mailboxes.
That, plus the pseudo-hierarchical folders can support the functionality of
--enable-multidir.
No more separate sqwebmail/vsqwebmail. Only sqwebmail will be built, and
configuration time options will select whether vpopmail's vpasswd support
gets compiled in as an authentication module. The Red Hat package stills
builds two versions. That's implemented by actually configuring and
building the package twice :-(. Well, that's the price of progress.
New authentication: pretty much wiped auth.c clean, and started from
scratch. Added authentication modules from Courier-IMAP. This code will
now be shared :-).
Some installation directories have now been changed. Previous, all
html template subdirectories were created in /usr/local/share/sqwebmail
(such as /usr/local/share/sqwebmail/en-us). They are now moved into a
separate subdirectory of their own, so the English html are now installed
in /usr/local/share/sqwebmail/html/en-us. If you have a custom installation,
it will have to be moved into /usr/local/share/sqwebmail/html.
NOTE: although .html files have NOT been changed in this version, the
configuration scripts: configure.in, Makefile.am, Makefile.in, and configure
HAVE been slightly changed. If you maintain your custom HTML, you must
update the configuration scripts. The easiest thing to do is to simply
copy over your .html files only into the subdirectory sqwebmail/html/en-us,
after unpacking the tarball.
Extra bonus: RFC 2111 support (cid: IMG URLs in text/html messages will
be resolved!!! )
04/14/1999 - 0.16 released. Bug fixes and subpackage updates. Small bits of
HTML were hardcoded in sqwebmail - moved to HTML templates. Refreshed rfc822
and rfc2045 with the latest versions from RCS. Fixed obscure bug in parsing
RFC822 headers containing old-style () comments. Replies now have a
References: header. Redesigned "Create Message" page to take up less
horizontal real estate.
03/16/1999 - 0.15 released. Bug fixes. SqWebMail now handles mailto: links.
RFC2369 support.
03/01/1999 - 0.14 released. Security. Nifty trick used to greatly reduce
the amount of code that needs to be run as root. Consequently to this,
I no longer need to use /tmp for temporary files used to decode file uploads,
that will now go into Maildir/tmp. Added "Full Headers" button which will
appear on the message display page if preferences are set not to display
full headers by default. The "Full Headers" button will show full headers
for the current message only.
02/23/1999 - 0.13 released. Minor bug fixes. Modularized functions for
displaying messages, word wrapping messages, and processing input into a
separate module - filter.c. This will break the ground for
internationalization work to follow. If you run configure with
--enable-webpass=no, the preferences page will not have the password change
dialog. Replaced the @ character in HTML templates with a less likely
character combination.
01/31/1999 - 0.11 released. Improved caching - better performance for large
Maildirs. Number of days before messages are purged can be set via
preferences. New "Trash" folder. Deleted messages no longer show up
as a separate "deleted" section of the original folder. When you delete
a message, it is moved into the "Trash" folder, and shows up marked as "D"
in the original folder, until you leave that folder. Fixed bug where some
messages may be purged early. HTTP redirects now HTTP/1.1 compliant. There
may be some occasional problems with older HTTP/1.0 browsers. Checkmarks for
deleted messages marked as DISABLED (ignored by Netscape Communicator).
"Select All" checkmark. Fixed some quoting issues when handling URL
redirects. Improved URL recognition logic in text/plain. Long subject lines
are truncated in the folder contents window. Removing a folder now actually
works (stupid bug).
Clicking on message data will also bring up the message, just like clicking
on the subject. This is sometimes needed for lynx, which does not present
empty links (if message has an empty subject, you won't be able to select
it, in lynx).
01/04/1999 - 0.10 released.
- 0.10a update
No longer strip out [] when building the Re: subject.
Changed so that "Message X of Y", "Reply To All", doesn't wordwrap.
Fixed obsolete Makefile code causing spurious error.
Removed '+=' from Makefile, old makes can't handle it.
Added /usr/local/apache/conf to the list of places we search mime.conf in.
|