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
|
------------------------------------------------------------------------
r389 | bruce | 2005-10-25 22:43:43 -0600 (Tue, 25 Oct 2005) | 2 lines
Changed paths:
M /trunk/TODO
Updated the TODO document.
------------------------------------------------------------------------
r388 | bruce | 2005-10-25 22:43:34 -0600 (Tue, 25 Oct 2005) | 2 lines
Changed paths:
A /trunk/tests/qmqpfront-echo
A /trunk/tests/qmtpfront-echo
Added simple tests for the QMQP/QMTP front-ends.
------------------------------------------------------------------------
r387 | bruce | 2005-10-25 17:26:31 -0600 (Tue, 25 Oct 2005) | 2 lines
Changed paths:
M /trunk/msa.html
M /trunk/smtpfront.html
Cleaned up the MSA documentation.
------------------------------------------------------------------------
r386 | bruce | 2005-10-25 17:20:37 -0600 (Tue, 25 Oct 2005) | 3 lines
Changed paths:
M /trunk/NEWS
M /trunk/mailfront.h
D /trunk/msa.c
M /trunk/qmqp=l
M /trunk/qmtp=l
M /trunk/smtp=l
M /trunk/std-handle.c
M /trunk/std-handle.html
M /trunk/tests/patterns-after
M /trunk/tests/patterns-general
M /trunk/tests/patterns-header
M /trunk/tests/patterns-message
M /trunk/tests/patterns-normal
M /trunk/tests/received
M /trunk/tests/rules-asterisk
M /trunk/tests/rules-both
M /trunk/tests/rules-cdb
M /trunk/tests/rules-databytes
M /trunk/tests/rules-databytes2
M /trunk/tests/rules-defaultmsg
M /trunk/tests/rules-empty
M /trunk/tests/rules-header-add
M /trunk/tests/rules-list
M /trunk/tests/rules-maxhops
M /trunk/tests/rules-multiline
M /trunk/tests/rules-negate
M /trunk/tests/rules-noop
M /trunk/tests/rules-rcptlist
M /trunk/tests/rules-recip
M /trunk/tests/rules-selector
M /trunk/tests/rules-sender
M /trunk/tests/smtpfront-auth-login
M /trunk/tests/smtpfront-auth-plain
M /trunk/tests/smtpfront-bad-bounce
M /trunk/tests/smtpfront-content
M /trunk/tests/smtpfront-databytes
M /trunk/tests/smtpfront-looping-delivered-to
M /trunk/tests/smtpfront-looping-received
M /trunk/tests/smtpfront-maxrcpts
M /trunk/tests/smtpfront-quotes
M /trunk/tests/smtpfront-require-auth
Moved most of the MSA functionality into std-handle.c, making FQDNs
unconditionally mandatory.
------------------------------------------------------------------------
r385 | bruce | 2005-10-25 00:14:06 -0600 (Tue, 25 Oct 2005) | 3 lines
Changed paths:
M /trunk/std-handle.html
Fixed the std-handle HTML documentation to not mirror the SMTP front end
documentation.
------------------------------------------------------------------------
r384 | bruce | 2005-10-24 15:17:43 -0600 (Mon, 24 Oct 2005) | 2 lines
Changed paths:
M /trunk/reject-backend.c
M /trunk/responses.c
M /trunk/responses.h
M /trunk/std-handle.c
Moved the duplicated number_ok and response_ok functions into responses.c
------------------------------------------------------------------------
r383 | bruce | 2005-10-24 15:09:30 -0600 (Mon, 24 Oct 2005) | 2 lines
Changed paths:
M /trunk/NEWS
A /trunk/qmqpfront-reject.c (from /trunk/smtpfront-reject.c:382)
A /trunk/qmqpfront-reject=x (from /trunk/smtpfront-reject=x:382)
A /trunk/qmtpfront-reject.c (from /trunk/smtpfront-reject.c:382)
A /trunk/qmtpfront-reject=x (from /trunk/smtpfront-reject=x:382)
M /trunk/reject-backend.c
Added QMQP and QMTP "reject" front ends, for completeness.
------------------------------------------------------------------------
r382 | bruce | 2005-10-24 15:01:32 -0600 (Mon, 24 Oct 2005) | 2 lines
Changed paths:
A /trunk/reject-backend.c (from /trunk/smtpfront-reject.c:378)
M /trunk/smtpfront-reject.c
M /trunk/smtpfront-reject=x
Broke apart the reject backend to make it useable for the other protocols.
------------------------------------------------------------------------
r381 | bruce | 2005-10-24 14:55:03 -0600 (Mon, 24 Oct 2005) | 3 lines
Changed paths:
M /trunk/smtpfront.html
A /trunk/std-handle.html (from /trunk/smtpfront.html:376)
Broke the SMTP documentation into its two logical parts, separating out
the parts the belong to std-handle.c
------------------------------------------------------------------------
r380 | bruce | 2005-10-24 14:51:22 -0600 (Mon, 24 Oct 2005) | 2 lines
Changed paths:
M /trunk/qmail-validate.c
M /trunk/qmqp=l
M /trunk/qmqpfront-qmail=x
M /trunk/qmtp=l
M /trunk/qmtpfront-qmail=x
M /trunk/smtp=l
M /trunk/smtpfront-qmail=x
M /trunk/std-handle.c
Moved the CVM validation hook out of qmail-validate and into std-handle.
------------------------------------------------------------------------
r379 | bruce | 2005-10-24 14:49:57 -0600 (Mon, 24 Oct 2005) | 2 lines
Changed paths:
M /trunk/tests/smtpfront-require-auth
Fixed up message for "authentication required".
------------------------------------------------------------------------
r378 | bruce | 2005-10-24 14:45:02 -0600 (Mon, 24 Oct 2005) | 2 lines
Changed paths:
M /trunk/smtpfront-reject.c
Skip going through std-handle.c for the simple reject backend.
------------------------------------------------------------------------
r377 | bruce | 2005-10-22 00:20:20 -0600 (Sat, 22 Oct 2005) | 2 lines
Changed paths:
M /trunk/std-handle.c
Fix up the SMTP code for the "authentication required" message.
------------------------------------------------------------------------
r376 | bruce | 2005-10-22 00:17:12 -0600 (Sat, 22 Oct 2005) | 4 lines
Changed paths:
M /trunk/NEWS
M /trunk/smtpfront.html
M /trunk/std-handle.c
A /trunk/tests/smtpfront-require-auth
Added support for rejecting all mail unless client is authenticated
(either as a relay client or with SMTP authentication) if
$REQUIRE_AUTH is set.
------------------------------------------------------------------------
r375 | bruce | 2005-10-21 16:04:51 -0600 (Fri, 21 Oct 2005) | 2 lines
Changed paths:
M /trunk/smtp-mainloop.c
Added a missing extended mail system status code to a response here.
------------------------------------------------------------------------
r374 | bruce | 2005-10-20 23:01:40 -0600 (Thu, 20 Oct 2005) | 2 lines
Changed paths:
M /trunk/tests/patterns-after
M /trunk/tests/patterns-general
M /trunk/tests/patterns-header
M /trunk/tests/patterns-message
M /trunk/tests/patterns-normal
M /trunk/tests/rules-databytes
M /trunk/tests/rules-databytes2
M /trunk/tests/rules-header-add
M /trunk/tests/rules-maxhops
M /trunk/tests/smtpfront-auth-login
M /trunk/tests/smtpfront-auth-plain
M /trunk/tests/smtpfront-bad-bounce
M /trunk/tests/smtpfront-content
M /trunk/tests/smtpfront-databytes
M /trunk/tests/smtpfront-looping-delivered-to
M /trunk/tests/smtpfront-looping-received
M /trunk/tests/smtpfront-maxnotimpl
M /trunk/tests/smtpfront-maxrcpts
M /trunk/tests/smtpfront-reject
Adjusted messages in the tests to match the current strings.
------------------------------------------------------------------------
r373 | bruce | 2005-10-20 22:55:56 -0600 (Thu, 20 Oct 2005) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/pop3front-maildir.c
M /trunk/tests/pop3front-maildir-state
Truncate UIDL responses to 70 characters as per RFC 1939.
------------------------------------------------------------------------
r372 | bruce | 2005-10-20 22:11:31 -0600 (Thu, 20 Oct 2005) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/cvm-validate.c
M /trunk/mailrules.c
M /trunk/msa.c
M /trunk/qmail-backend.c
M /trunk/qmail-validate.c
M /trunk/qmqp-mainloop.c
M /trunk/qmtp-mainloop.c
M /trunk/responses.c
M /trunk/responses.h
M /trunk/smtp-commands.c
M /trunk/smtp-mainloop.c
M /trunk/std-handle.c
Added enhanced mail system status codes (RFC 1893/2034).
------------------------------------------------------------------------
r371 | bruce | 2005-10-20 14:15:47 -0600 (Thu, 20 Oct 2005) | 2 lines
Changed paths:
M /trunk/smtpfront-reject.c
Eliminate unused variable warnings in smtpfront-reject.c
------------------------------------------------------------------------
r370 | bruce | 2005-10-19 22:56:28 -0600 (Wed, 19 Oct 2005) | 3 lines
Changed paths:
M /trunk/msa.c
M /trunk/msa.html
Added support for adding a default host and domain to addresses that are
missing them in MSA mode.
------------------------------------------------------------------------
r369 | bruce | 2005-10-18 17:05:55 -0600 (Tue, 18 Oct 2005) | 2 lines
Changed paths:
M /trunk/echo-backend.c
A /trunk/null-validate.c (from /trunk/echo-backend.c:342)
M /trunk/qmqpfront-echo=x
M /trunk/qmtpfront-echo=x
M /trunk/smtpfront-echo=x
Broke the stub validate routines out of echo-backend.c
------------------------------------------------------------------------
r368 | bruce | 2005-10-18 17:03:50 -0600 (Tue, 18 Oct 2005) | 3 lines
Changed paths:
M /trunk/mailfront.h
A /trunk/msa.c
A /trunk/msa.html
M /trunk/qmqp=l
M /trunk/qmtp=l
M /trunk/smtp=l
M /trunk/smtpfront.html
M /trunk/std-handle.c
Added the start of hooks and documentation on RFC 2476 "Message
Submission Agent" mode.
------------------------------------------------------------------------
r367 | bruce | 2005-10-14 11:29:46 -0600 (Fri, 14 Oct 2005) | 3 lines
Changed paths:
M /trunk/mailrules.c
M /trunk/responses.c
Use the RESPONSE macro for all "const response resp_*" definitions to
make searching the sources easier.
------------------------------------------------------------------------
r366 | bruce | 2005-10-13 14:04:20 -0600 (Thu, 13 Oct 2005) | 4 lines
Changed paths:
M /trunk/NEWS
M /trunk/std-handle.c
M /trunk/tests/smtpfront-bad-bounce
Removed the "bounce must have a single recipient" rule, as it is
currently causing more problems (with address checkers) than it is
solving (spammers no longer use this technique).
------------------------------------------------------------------------
r365 | bruce | 2005-10-13 10:45:02 -0600 (Thu, 13 Oct 2005) | 2 lines
Changed paths:
M /trunk/qmail-backend.c
Fixed an "assignment discards qualifiers" warning.
------------------------------------------------------------------------
r364 | bruce | 2005-10-13 10:43:50 -0600 (Thu, 13 Oct 2005) | 2 lines
Changed paths:
M /trunk/qmail-backend.c
Tweaked permanent qmail-queue failure error message.
------------------------------------------------------------------------
r363 | bruce | 2005-10-12 16:38:23 -0600 (Wed, 12 Oct 2005) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/std-handle.c
A /trunk/tests/smtpfront-maxrcpts
Fixed one-off bug in counting recipients for $MAXRCPTS.
------------------------------------------------------------------------
r362 | bruce | 2005-10-12 16:35:54 -0600 (Wed, 12 Oct 2005) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/VERSION
Bumped version to 0.98.
------------------------------------------------------------------------
r361 | bruce | 2005-10-05 00:12:51 -0600 (Wed, 05 Oct 2005) | 1 line
Changed paths:
A /tags/0.97 (from /trunk:360)
Tagged version 0.97
------------------------------------------------------------------------
r360 | bruce | 2005-10-04 23:44:14 -0600 (Tue, 04 Oct 2005) | 2 lines
Changed paths:
M /trunk/spec
Renamed "Copyright:" field in spec to "License:".
------------------------------------------------------------------------
r359 | bruce | 2005-10-04 11:37:31 -0600 (Tue, 04 Oct 2005) | 4 lines
Changed paths:
M /trunk/NEWS
M /trunk/cvm-validate.c
Fixed typo in the CVM lookup code that would prevent the proper
operation of lookup secrets.
Thanks Dale Woolridge <hash-8825ae786a15bd37352a6bff8422776f@woolridge.org>
------------------------------------------------------------------------
r358 | bruce | 2005-09-22 16:12:14 -0600 (Thu, 22 Sep 2005) | 2 lines
Changed paths:
M /trunk/qmail-backend.c
Fixed typo in a comparison operator.
------------------------------------------------------------------------
r357 | bruce | 2005-09-22 15:46:06 -0600 (Thu, 22 Sep 2005) | 3 lines
Changed paths:
M /trunk/qmail-backend.c
M /trunk/qmail-backend.html
Fixed up the qmail backend to properly follow qmail's semantics for
qmail-queue exit codes from 1 to 10.
------------------------------------------------------------------------
r356 | bruce | 2005-09-22 15:14:52 -0600 (Thu, 22 Sep 2005) | 3 lines
Changed paths:
M /trunk/NEWS
M /trunk/qmail-backend.c
M /trunk/qmail-backend.html
Add support to the qmail backend for custom qmail-queue error messages
taken from $QQERRMSG_#.
------------------------------------------------------------------------
r355 | bruce | 2005-08-12 14:27:15 -0600 (Fri, 12 Aug 2005) | 3 lines
Changed paths:
M /trunk/NEWS
M /trunk/imapfront-auth.c
M /trunk/pop3front-auth.c
Clear session timeouts (via alarm) before executing authenticated
commands in imapfront-auth and pop3front-auth.
------------------------------------------------------------------------
r354 | bruce | 2005-08-12 14:26:34 -0600 (Fri, 12 Aug 2005) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/VERSION
Bumped version to 0.97
------------------------------------------------------------------------
r353 | bruce | 2005-07-12 00:02:25 -0600 (Tue, 12 Jul 2005) | 1 line
Changed paths:
A /tags/0.96 (from /trunk:352)
Tagged version 0.96
------------------------------------------------------------------------
r352 | bruce | 2005-07-11 23:52:10 -0600 (Mon, 11 Jul 2005) | 2 lines
Changed paths:
M /trunk/spec
Depend on the new bglibs that has the fixed glob functions.
------------------------------------------------------------------------
r351 | bruce | 2005-07-10 23:13:15 -0600 (Sun, 10 Jul 2005) | 3 lines
Changed paths:
M /trunk/NEWS
M /trunk/mailrules.c
M /trunk/mailrules.html
M /trunk/tests/rules-asterisk
Switched Pattern matching from the simpler mechanism (originated in
multilog) to standard shell glob.
------------------------------------------------------------------------
r350 | bruce | 2005-07-08 13:17:38 -0600 (Fri, 08 Jul 2005) | 3 lines
Changed paths:
M /trunk/NEWS
M /trunk/smtp-respond.c
Fixed extern/static conflicting definition of "line" in smtp-respond.c.
Thanks Gerrit Pape <pape@smarden.org>
------------------------------------------------------------------------
r349 | bruce | 2005-07-08 13:09:30 -0600 (Fri, 08 Jul 2005) | 2 lines
Changed paths:
M /trunk/TODO
Replaced todo item about negation with one for selectors.
------------------------------------------------------------------------
r348 | bruce | 2005-07-08 12:26:22 -0600 (Fri, 08 Jul 2005) | 3 lines
Changed paths:
M /trunk/NEWS
M /trunk/sasl-stub.c
A /trunk/tests/smtpfront-reject
Fixed smtpfront-reject crashing on receipt of EHLO.
Thanks Janos Farkas <chexum@gmail.com>
------------------------------------------------------------------------
r347 | bruce | 2005-07-08 00:25:39 -0600 (Fri, 08 Jul 2005) | 3 lines
Changed paths:
M /trunk/NEWS
M /trunk/constants.h
M /trunk/smtp-commands.c
A /trunk/tests/smtpfront-quotes
Fixed the SMTP front-end's inability to handle quoted or escaped
characters, or to strip source routing addresses.
------------------------------------------------------------------------
r346 | bruce | 2005-07-08 00:19:44 -0600 (Fri, 08 Jul 2005) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/VERSION
Bumped version to 0.96
------------------------------------------------------------------------
r345 | bruce | 2005-06-10 15:12:59 -0600 (Fri, 10 Jun 2005) | 1 line
Changed paths:
A /tags/0.95 (from /trunk:344)
Tagged version 0.95
------------------------------------------------------------------------
r344 | bruce | 2005-06-10 15:08:45 -0600 (Fri, 10 Jun 2005) | 2 lines
Changed paths:
M /trunk/spec
Fixed install stage in spec.
------------------------------------------------------------------------
r343 | bruce | 2005-06-10 13:39:20 -0600 (Fri, 10 Jun 2005) | 3 lines
Changed paths:
M /trunk/NEWS
M /trunk/mailrules.c
A /trunk/tests/rules-databytes2
Fixed bug in handling of environment variables when applying multiple
rules to the same message.
------------------------------------------------------------------------
r342 | bruce | 2005-06-10 12:23:48 -0600 (Fri, 10 Jun 2005) | 2 lines
Changed paths:
A /trunk/BIN
M /trunk/README.in
D /trunk/insthier.c
M /trunk/spec
Switch installation procedure to use new bg-installer from bglibs-1.022
------------------------------------------------------------------------
r341 | bruce | 2005-06-09 23:31:00 -0600 (Thu, 09 Jun 2005) | 2 lines
Changed paths:
M /trunk/tests/patterns-after
M /trunk/tests/patterns-general
M /trunk/tests/patterns-header
M /trunk/tests/patterns-message
M /trunk/tests/patterns-normal
M /trunk/tests/rules-asterisk
M /trunk/tests/rules-both
M /trunk/tests/rules-cdb
M /trunk/tests/rules-databytes
M /trunk/tests/rules-defaultmsg
M /trunk/tests/rules-empty
M /trunk/tests/rules-header-add
M /trunk/tests/rules-list
M /trunk/tests/rules-maxhops
M /trunk/tests/rules-multiline
M /trunk/tests/rules-negate
M /trunk/tests/rules-noop
M /trunk/tests/rules-recip
M /trunk/tests/rules-selector
M /trunk/tests/rules-sender
M /trunk/tests/smtpfront-databytes
M /trunk/tests/smtpfront-looping-delivered-to
M /trunk/tests/smtpfront-looping-received
M /trunk/tests/smtpfront-maxnotimpl
M /trunk/tests.inc
Made the test scripts more portable (tested with ash).
------------------------------------------------------------------------
r340 | bruce | 2005-06-09 16:47:14 -0600 (Thu, 09 Jun 2005) | 3 lines
Changed paths:
M /trunk/tests.inc
Fixed the selftests to use the invoking user's UID/GID.
Thanks Janos Farkas
------------------------------------------------------------------------
r339 | bruce | 2005-06-09 16:46:01 -0600 (Thu, 09 Jun 2005) | 4 lines
Changed paths:
M /trunk/NEWS
M /trunk/patterns.c
M /trunk/tests/patterns-header
Fixed bug in header pattern matching that made it only look at the
first header line.
Thanks Janos Farkas <chexum@gmail.com>
------------------------------------------------------------------------
r338 | bruce | 2005-06-09 16:44:36 -0600 (Thu, 09 Jun 2005) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/VERSION
Bumped version to 0.95
------------------------------------------------------------------------
r337 | bruce | 2005-06-02 00:35:50 -0600 (Thu, 02 Jun 2005) | 1 line
Changed paths:
A /tags/0.94 (from /trunk:336)
Tagged version 0.94
------------------------------------------------------------------------
r336 | bruce | 2005-06-01 23:35:05 -0600 (Wed, 01 Jun 2005) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/cvm-validate.c
M /trunk/imapfront-auth.c
M /trunk/imapfront-auth=x
M /trunk/pop3front-auth.c
M /trunk/pop3front-auth=x
M /trunk/qmqpfront-echo=x
M /trunk/qmqpfront-qmail=x
M /trunk/qmtpfront-echo=x
M /trunk/qmtpfront-qmail=x
D /trunk/sasl-auth.c
D /trunk/sasl-auth.h
M /trunk/sasl-stub.c
M /trunk/smtp-commands.c
M /trunk/smtp-mainloop.c
M /trunk/smtp.h
M /trunk/smtpfront-echo=x
M /trunk/smtpfront-qmail=x
Switched to CVM 2 support, with new SASL library etc.
------------------------------------------------------------------------
r335 | bruce | 2005-06-01 23:20:37 -0600 (Wed, 01 Jun 2005) | 2 lines
Changed paths:
M /trunk/tests.inc
Use cvm-pwfile instead of a shell script for testing authentication.
------------------------------------------------------------------------
r334 | bruce | 2005-06-01 23:19:59 -0600 (Wed, 01 Jun 2005) | 2 lines
Changed paths:
M /trunk/makedist.py
Put the ChangeLog on the web site.
------------------------------------------------------------------------
r333 | bruce | 2005-06-01 19:30:29 -0600 (Wed, 01 Jun 2005) | 2 lines
Changed paths:
M /trunk/README.in
M /trunk/spec
Document the current version requirements.
------------------------------------------------------------------------
r332 | bruce | 2005-05-30 23:45:10 -0600 (Mon, 30 May 2005) | 2 lines
Changed paths:
M /trunk/tests/rules-rcptlist
Fixed up a test that was broken by recent changes to spac-tests
------------------------------------------------------------------------
r331 | bruce | 2005-05-30 23:13:09 -0600 (Mon, 30 May 2005) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/patterns.c
M /trunk/patterns.html
A /trunk/tests/patterns-header
Added support for restricting patterns to match only in headers.
------------------------------------------------------------------------
r330 | bruce | 2005-05-30 23:02:27 -0600 (Mon, 30 May 2005) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/VERSION
Bumped version to 0.94
------------------------------------------------------------------------
r329 | bruce | 2005-04-21 11:21:00 -0600 (Thu, 21 Apr 2005) | 1 line
Changed paths:
A /tags/0.93 (from /trunk:328)
Tagged version 0.93
------------------------------------------------------------------------
r328 | bruce | 2005-04-21 11:02:44 -0600 (Thu, 21 Apr 2005) | 2 lines
Changed paths:
M /trunk/README.in
Use the new @YEAR@ macro in the copyright statement.
------------------------------------------------------------------------
r327 | bruce | 2005-04-21 00:31:47 -0600 (Thu, 21 Apr 2005) | 3 lines
Changed paths:
M /trunk/NEWS
M /trunk/imapfront-auth.c
M /trunk/imapfront.html
M /trunk/pop3front-auth.c
M /trunk/pop3front-maildir.c
M /trunk/pop3front.html
M /trunk/std-handle.c
M /trunk/timeout.c
Added seperate $AUTH_TIMEOUT and $AUTH_SESSION_TIMEOUT overrides for
the authentication front-ends (imapfront-auth and pop3front-auth).
------------------------------------------------------------------------
r326 | bruce | 2004-12-04 11:59:06 -0600 (Sat, 04 Dec 2004) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/mailrules.c
A /trunk/tests/rules-rcptlist
Fixed bug in handling multiple sender or recipient specific rules.
------------------------------------------------------------------------
r325 | bruce | 2004-12-04 11:58:13 -0600 (Sat, 04 Dec 2004) | 4 lines
Changed paths:
M /trunk/NEWS
M /trunk/cvm-validate.c
M /trunk/smtpfront.html
Modified the CVM lookup secret handling to use $CVM_LOOKUP_SECRET just
like the latest CVM code, falling back to $LOOKUP_SECRET if that isn't
set.
------------------------------------------------------------------------
r324 | bruce | 2004-12-03 12:26:40 -0600 (Fri, 03 Dec 2004) | 5 lines
Changed paths:
M /trunk/NEWS
M /trunk/patterns.c
A /trunk/tests/patterns-general
Fixed bug in pattern matching where the pattern was longer than the
line that would other match. This relied on the erroneous assumption
that patterns would always be shorter than the lines they were intended
to match.
------------------------------------------------------------------------
r323 | bruce | 2004-12-03 10:56:18 -0600 (Fri, 03 Dec 2004) | 2 lines
Changed paths:
A /trunk/tests/rules-databytes (from /trunk/tests/smtpfront-databytes:320)
Added test to ensure databytes is being obeyed.
------------------------------------------------------------------------
r322 | bruce | 2004-12-02 10:03:00 -0600 (Thu, 02 Dec 2004) | 3 lines
Changed paths:
M /trunk/NEWS
M /trunk/std-handle.c
Fixed omission of not resetting maxdatabytes, which could be set by a
rule, after checking for sender rules.
------------------------------------------------------------------------
r321 | bruce | 2004-12-02 10:01:36 -0600 (Thu, 02 Dec 2004) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/mailrules.c
Fixed bug in parsing the databytes column in mail rules.
------------------------------------------------------------------------
r320 | bruce | 2004-10-29 16:03:27 -0600 (Fri, 29 Oct 2004) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/VERSION
Bumped version to 0.93
------------------------------------------------------------------------
r319 | bruce | 2004-10-29 16:01:42 -0600 (Fri, 29 Oct 2004) | 1 line
Changed paths:
A /tags/0.92 (from /trunk:318)
Tagged version 0.92
------------------------------------------------------------------------
r318 | bruce | 2004-10-29 15:56:13 -0600 (Fri, 29 Oct 2004) | 2 lines
Changed paths:
M /trunk/tests.inc
Use the newer "-n" format for head/tail.
------------------------------------------------------------------------
r317 | bruce | 2004-03-25 16:49:51 -0600 (Thu, 25 Mar 2004) | 3 lines
Changed paths:
M /trunk/NEWS
M /trunk/imapfront-auth.c
Fixed bug: Only set $MAILDIR in imapfront-auth if the CVM set it.
Thanks Charlie Brady.
------------------------------------------------------------------------
r316 | bruce | 2004-03-11 12:20:12 -0600 (Thu, 11 Mar 2004) | 3 lines
Changed paths:
M /trunk/NEWS
M /trunk/patterns.c
M /trunk/tests/patterns-normal
Fixed bug in pattern handling that would cause a bogus "out of memory"
error if the patterns file had a blank line.
------------------------------------------------------------------------
r315 | bruce | 2004-03-06 22:29:04 -0600 (Sat, 06 Mar 2004) | 3 lines
Changed paths:
M /trunk/NEWS
M /trunk/qmqp-mainloop.c
Fixed bug in QMQP front-end that prevented it from accepting relayed
messages (relayclient wasn't getting set properly).
------------------------------------------------------------------------
r314 | bruce | 2004-03-06 22:25:47 -0600 (Sat, 06 Mar 2004) | 2 lines
Changed paths:
M /trunk/insthier.c
Added qmqpfront-echo and qmtpfront-echo test front-ends to insthier.
------------------------------------------------------------------------
r313 | bruce | 2004-03-06 22:25:00 -0600 (Sat, 06 Mar 2004) | 2 lines
Changed paths:
M /trunk/smtpfront-echo.c
Fixed program name.
------------------------------------------------------------------------
r312 | bruce | 2004-03-06 22:24:47 -0600 (Sat, 06 Mar 2004) | 2 lines
Changed paths:
M /trunk/NEWS
A /trunk/qmqpfront-echo.c (from /trunk/smtpfront-echo.c:293)
A /trunk/qmqpfront-echo=x (from /trunk/smtpfront-echo=x:302)
A /trunk/qmtpfront-echo.c (from /trunk/smtpfront-echo.c:293)
A /trunk/qmtpfront-echo=x (from /trunk/smtpfront-echo=x:302)
Added qmqpfront-echo and qmtpfront-echo test front-ends.
------------------------------------------------------------------------
r311 | bruce | 2004-03-06 22:12:36 -0600 (Sat, 06 Mar 2004) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/VERSION
Bumped version to 0.92
------------------------------------------------------------------------
r310 | bruce | 2004-03-05 17:14:35 -0600 (Fri, 05 Mar 2004) | 2 lines
Changed paths:
M /trunk/smtp-mainloop.c
Show a message if the connection drops or times out during a command.
------------------------------------------------------------------------
r309 | bruce | 2004-03-05 16:47:38 -0600 (Fri, 05 Mar 2004) | 2 lines
Changed paths:
M /trunk/spec
Depend on bglibs version 1.016
------------------------------------------------------------------------
r308 | bruce | 2004-03-05 12:54:31 -0600 (Fri, 05 Mar 2004) | 1 line
Changed paths:
A /tags/0.91 (from /trunk:307)
Tagged version 0.91
------------------------------------------------------------------------
r307 | bruce | 2004-03-04 17:19:03 -0600 (Thu, 04 Mar 2004) | 2 lines
Changed paths:
M /trunk/TODO
Added notes about better MIME patterns.
------------------------------------------------------------------------
r306 | bruce | 2004-03-04 17:08:43 -0600 (Thu, 04 Mar 2004) | 2 lines
Changed paths:
M /trunk/patterns.html
Added new signature identified by James Triplett on the qmail mailing list.
------------------------------------------------------------------------
r305 | bruce | 2004-03-04 16:59:18 -0600 (Thu, 04 Mar 2004) | 2 lines
Changed paths:
M /trunk/NEWS
Fixed typo in news about Received: header changes.
------------------------------------------------------------------------
r304 | bruce | 2004-03-04 16:58:20 -0600 (Thu, 04 Mar 2004) | 4 lines
Changed paths:
M /trunk/mailfront.h
M /trunk/smtp-commands.c
M /trunk/std-handle.c
M /trunk/tests/received
Try #3 at proper Received: header generation. This time,
${PROTO}LOCALIP and ${PROTO}REMOTEIP don't need to be set (which was the
behavior before the last change).
------------------------------------------------------------------------
r303 | bruce | 2004-03-03 23:16:37 -0600 (Wed, 03 Mar 2004) | 3 lines
Changed paths:
M /trunk/echo-backend.c
A /trunk/tests/received
Dump the Received: header in the echo backend, so I can use it to test
for proper header generation.
------------------------------------------------------------------------
r302 | bruce | 2004-03-03 23:16:00 -0600 (Wed, 03 Mar 2004) | 2 lines
Changed paths:
M /trunk/imapfront-auth=x
M /trunk/pop3front-auth=x
M /trunk/pop3front-maildir=x
M /trunk/qmqpfront-qmail=x
M /trunk/qmtpfront-qmail=x
M /trunk/smtpfront-echo=x
M /trunk/smtpfront-qmail=x
M /trunk/smtpfront-reject=x
M /trunk/spec
Switched to bglibs 1.015 using -lbg.
------------------------------------------------------------------------
r301 | bruce | 2004-03-03 23:14:50 -0600 (Wed, 03 Mar 2004) | 3 lines
Changed paths:
M /trunk/std-handle.c
M /trunk/tests/patterns-after
M /trunk/tests/rules-header-add
M /trunk/tests/rules-maxhops
M /trunk/tests/smtpfront-bad-bounce
M /trunk/tests/smtpfront-content
M /trunk/tests/smtpfront-looping-delivered-to
M /trunk/tests/smtpfront-looping-received
Fixed up handling of cases where ${PROTO}LOCALHOST or ${PROTO}REMOTEHOST
is unset; require ${PROTO}LOCALIP and ${PROTO}REMOTEIP to be set.
------------------------------------------------------------------------
r300 | bruce | 2004-03-02 17:52:41 -0600 (Tue, 02 Mar 2004) | 3 lines
Changed paths:
M /trunk/NEWS
M /trunk/std-handle.c
Fixed the generated Received: headers to always put the local host name
in the comment if tcpserver looked it up.
------------------------------------------------------------------------
r299 | bruce | 2004-02-10 14:51:57 -0600 (Tue, 10 Feb 2004) | 3 lines
Changed paths:
M /trunk/NEWS
M /trunk/imapfront-auth.c
Explicitly set $MAILDIR in imapfront-auth for Courier-IMAP's imapd.
Thanks Bernhard Graf <bgware@augensalat.de>
------------------------------------------------------------------------
r298 | bruce | 2004-02-10 13:14:39 -0600 (Tue, 10 Feb 2004) | 3 lines
Changed paths:
M /trunk/NEWS
M /trunk/cvm-validate.c
Fixed a bug in the CVM lookup code that would cause failures if
$LOOKUP_SECRET was not set. Thanks Bernhard Graf <bgware@augensalat.de>
------------------------------------------------------------------------
r297 | bruce | 2004-02-10 13:12:43 -0600 (Tue, 10 Feb 2004) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/VERSION
Bumped version to 0.91
------------------------------------------------------------------------
r296 | bruce | 2004-02-09 16:13:58 -0600 (Mon, 09 Feb 2004) | 1 line
Changed paths:
A /tags/0.90 (from /trunk:295)
Tagged version 0.90
------------------------------------------------------------------------
r295 | bruce | 2004-02-09 16:08:24 -0600 (Mon, 09 Feb 2004) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/mailrules.c
M /trunk/mailrules.html
D /trunk/mailrules2.html
A /trunk/tests/rules-negate
Added support for negation of rule patterns.
------------------------------------------------------------------------
r294 | bruce | 2004-02-09 15:38:54 -0600 (Mon, 09 Feb 2004) | 2 lines
Changed paths:
M /trunk/tests/pop3front-auth
M /trunk/tests/smtpgreeting
M /trunk/tests.inc
Use explicit paths when running programs.
------------------------------------------------------------------------
r293 | bruce | 2004-02-09 14:49:00 -0600 (Mon, 09 Feb 2004) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/mailrules.c
M /trunk/mailrules.html
M /trunk/mailrules2.html
A /trunk/tests/rules-selector
Added support for explicit sender/recipient selection.
------------------------------------------------------------------------
r292 | bruce | 2004-02-09 13:49:06 -0600 (Mon, 09 Feb 2004) | 2 lines
Changed paths:
A /trunk/mailrules2.html
Checked in interim mailrules v2 documentation.
------------------------------------------------------------------------
r291 | bruce | 2004-02-09 12:30:51 -0600 (Mon, 09 Feb 2004) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/patterns.c
M /trunk/tests/patterns-normal
Fixed a bug in handling patterns that are not after a blank line.
------------------------------------------------------------------------
r290 | bruce | 2004-02-09 12:30:04 -0600 (Mon, 09 Feb 2004) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/VERSION
Bumped version to 0.90
------------------------------------------------------------------------
r289 | bruce | 2004-02-07 15:01:55 -0600 (Sat, 07 Feb 2004) | 1 line
Changed paths:
A /tags/0.89 (from /trunk:288)
Tagged version 0.89
------------------------------------------------------------------------
r288 | bruce | 2004-02-07 14:54:22 -0600 (Sat, 07 Feb 2004) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/qmail-backend.c
M /trunk/qmail-backend.html
M /trunk/qmail-validate.c
Allow overriding the qmail home directory with $QMAILHOME.
------------------------------------------------------------------------
r287 | bruce | 2004-02-07 14:48:55 -0600 (Sat, 07 Feb 2004) | 2 lines
Changed paths:
M /trunk/README.in
Bumped up the copyright year.
------------------------------------------------------------------------
r286 | bruce | 2004-02-07 14:47:38 -0600 (Sat, 07 Feb 2004) | 2 lines
Changed paths:
M /trunk/qmail-backend.c
Block SIGPIPE from killing the front-end if qmail-queue dies.
------------------------------------------------------------------------
r285 | bruce | 2004-02-06 14:05:08 -0600 (Fri, 06 Feb 2004) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/smtp-commands.c
M /trunk/smtp-mainloop.c
M /trunk/smtpfront.html
A /trunk/tests/smtpfront-maxnotimpl
Drop connections after $MAXNOTIMPL unimplemented commands are given.
------------------------------------------------------------------------
r284 | bruce | 2004-02-06 12:40:28 -0600 (Fri, 06 Feb 2004) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/VERSION
Bumped version to 0.89, fixing up the NEWS file.
------------------------------------------------------------------------
r283 | bruce | 2004-02-06 12:40:01 -0600 (Fri, 06 Feb 2004) | 1 line
Changed paths:
M /trunk/TODO
------------------------------------------------------------------------
r282 | bruce | 2004-02-06 12:27:58 -0600 (Fri, 06 Feb 2004) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/mailrules.c
M /trunk/mailrules.html
A /trunk/tests/rules-noop
Added a new "no-op" mail rule type.
------------------------------------------------------------------------
r281 | bruce | 2004-02-06 12:20:31 -0600 (Fri, 06 Feb 2004) | 2 lines
Changed paths:
M /trunk/mailrules.c
Make namelen a pre-initialized constant.
------------------------------------------------------------------------
r280 | bruce | 2004-02-06 12:18:19 -0600 (Fri, 06 Feb 2004) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/mailfront.h
A /trunk/patterns.c
A /trunk/patterns.html
M /trunk/qmqp=l
M /trunk/qmtp=l
M /trunk/smtp=l
M /trunk/smtpfront.html
M /trunk/std-handle.c
A /trunk/tests/patterns-after
A /trunk/tests/patterns-message
A /trunk/tests/patterns-normal
Added support for content pattern rejection.
------------------------------------------------------------------------
r279 | bruce | 2004-02-05 17:33:58 -0600 (Thu, 05 Feb 2004) | 2 lines
Changed paths:
M /trunk/std-handle.c
Pre-initialize the value of maxdatabytes so SMTP can report it.
------------------------------------------------------------------------
r278 | bruce | 2004-02-05 17:28:55 -0600 (Thu, 05 Feb 2004) | 2 lines
Changed paths:
M /trunk/mailrules.c
Fixed one (last?) bug in rules_getenvu.
------------------------------------------------------------------------
r277 | bruce | 2004-02-05 17:14:49 -0600 (Thu, 05 Feb 2004) | 3 lines
Changed paths:
M /trunk/std-handle.c
Skip character-by-character processing of data bytes after the last
header byte is processed.
------------------------------------------------------------------------
r276 | bruce | 2004-02-05 17:04:21 -0600 (Thu, 05 Feb 2004) | 3 lines
Changed paths:
M /trunk/std-handle.c
Don't bother incrementing the line position if it's already past any
possible useful values.
------------------------------------------------------------------------
r275 | bruce | 2004-02-05 15:33:51 -0600 (Thu, 05 Feb 2004) | 4 lines
Changed paths:
M /trunk/mailrules.c
Fixed two bugs in the new rules_getenvu function:
1. missing external environment variables caused a seg fault
2. external environment variable values were ignored
------------------------------------------------------------------------
r274 | bruce | 2004-02-05 13:11:36 -0600 (Thu, 05 Feb 2004) | 3 lines
Changed paths:
M /trunk/NEWS
M /trunk/std-handle.c
Defer looking up $RELAYCLIENT and $MAXRCPTS so they can be set in mail
rules; use the new rules_getenvu to look up $MAXHOPS.
------------------------------------------------------------------------
r273 | bruce | 2004-02-05 11:54:09 -0600 (Thu, 05 Feb 2004) | 3 lines
Changed paths:
M /trunk/mailrules.c
M /trunk/mailrules.h
M /trunk/std-handle.c
Handle the databytes rules column by setting an internal environment
variable.
------------------------------------------------------------------------
r272 | bruce | 2004-01-27 12:58:39 -0600 (Tue, 27 Jan 2004) | 2 lines
Changed paths:
M /trunk/smtpfront.html
Fixed minor typo in description of databytes handling.
------------------------------------------------------------------------
r271 | bruce | 2004-01-05 23:08:42 -0600 (Mon, 05 Jan 2004) | 2 lines
Changed paths:
M /trunk/README.in
Updated documentation to make note of seperation between cvm and bglibs.
------------------------------------------------------------------------
r270 | bruce | 2003-12-01 15:43:59 -0600 (Mon, 01 Dec 2003) | 1 line
Changed paths:
A /tags/0.88 (from /trunk:269)
Tagged version 0.88
------------------------------------------------------------------------
r269 | bruce | 2003-12-01 14:28:40 -0600 (Mon, 01 Dec 2003) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/TODO
M /trunk/sasl-auth.c
Export CVM data after authentication.
------------------------------------------------------------------------
r268 | bruce | 2003-12-01 13:38:52 -0600 (Mon, 01 Dec 2003) | 2 lines
Changed paths:
M /trunk/spec
Depend on the latest version of bglibs.
------------------------------------------------------------------------
r267 | bruce | 2003-11-27 14:52:32 -0600 (Thu, 27 Nov 2003) | 2 lines
Changed paths:
M /trunk/TODO
Fixed RFC numbers for enhanced status codes.
------------------------------------------------------------------------
r266 | bruce | 2003-11-27 14:52:15 -0600 (Thu, 27 Nov 2003) | 2 lines
Changed paths:
A /trunk/tests/imapfront-auth-login
A /trunk/tests/imapfront-auth-plain
Added tests for imapfront-auth AUTHENTICATE command.
------------------------------------------------------------------------
r265 | bruce | 2003-11-27 14:31:43 -0600 (Thu, 27 Nov 2003) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/imapfront-auth.c
A /trunk/tests/imapfront-auth
M /trunk/tests.inc
Added support for IMAP string literals, and tests for imapfront-auth.
------------------------------------------------------------------------
r264 | bruce | 2003-11-26 17:00:52 -0600 (Wed, 26 Nov 2003) | 2 lines
Changed paths:
M /trunk/mailrules.html
Fixed documentation on syntax of setting environment variables in rules.
------------------------------------------------------------------------
r263 | bruce | 2003-11-20 15:47:46 -0600 (Thu, 20 Nov 2003) | 2 lines
Changed paths:
M /trunk/spec
Fixed typo: building depends on cvm-devel, not cvm.
------------------------------------------------------------------------
r262 | bruce | 2003-11-20 15:33:41 -0600 (Thu, 20 Nov 2003) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/std-handle.c
A /trunk/tests/rules-header-add
A /trunk/tests/rules-maxhops
Defer looking up $MAXHOPS and $HEADER_ADD and use rules_getenv instead.
------------------------------------------------------------------------
r261 | bruce | 2003-11-17 22:21:01 -0600 (Mon, 17 Nov 2003) | 2 lines
Changed paths:
M /trunk/spec
Added dependancy notes regarding bglibs and cvm libraries.
------------------------------------------------------------------------
r260 | bruce | 2003-11-17 22:13:03 -0600 (Mon, 17 Nov 2003) | 2 lines
Changed paths:
M /trunk/std-handle.c
Make rcpt_count unsigned, to match the values its compared against.
------------------------------------------------------------------------
r259 | bruce | 2003-11-17 22:12:07 -0600 (Mon, 17 Nov 2003) | 2 lines
Changed paths:
M /trunk/sasl-auth.c
M /trunk/sasl-stub.c
Fixup the include path for recent cvm libraries.
------------------------------------------------------------------------
r258 | bruce | 2003-11-17 21:07:40 -0600 (Mon, 17 Nov 2003) | 2 lines
Changed paths:
M /trunk/README.in
M /trunk/makedist.py
Converted lists.em.ca to lists.untroubled.org
------------------------------------------------------------------------
r257 | bruce | 2003-11-08 15:13:37 -0600 (Sat, 08 Nov 2003) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/smtpfront.html
M /trunk/std-handle.c
Added MAXRCPTS patch from Marcelo Augusto <maugusto@stetnet.com.br>.
------------------------------------------------------------------------
r256 | bruce | 2003-09-15 12:12:36 -0600 (Mon, 15 Sep 2003) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/mailrules.c
M /trunk/tests/rules-cdb
M /trunk/tests/rules-list
Fixed handling of "@domain" entries in mailrules lists and CDB files.
------------------------------------------------------------------------
r255 | bruce | 2003-09-15 11:42:15 -0600 (Mon, 15 Sep 2003) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/VERSION
Bumped version to 0.88
------------------------------------------------------------------------
r254 | bruce | 2003-08-28 15:52:15 -0600 (Thu, 28 Aug 2003) | 2 lines
Changed paths:
M /trunk/tests.inc
Removed testing echo hook.
------------------------------------------------------------------------
r253 | bruce | 2003-08-28 15:50:49 -0600 (Thu, 28 Aug 2003) | 1 line
Changed paths:
A /tags/0.87 (from /trunk:252)
Tagged version 0.87
------------------------------------------------------------------------
r252 | bruce | 2003-08-28 14:04:30 -0600 (Thu, 28 Aug 2003) | 2 lines
Changed paths:
D /trunk/mailrules2.html
A /trunk/mailrulesx.html (from /trunk/mailrules2.html:251)
Renamed mailrules v2 to vX, as there may be an intermediate v2 step.
------------------------------------------------------------------------
r251 | bruce | 2003-08-27 18:09:22 -0600 (Wed, 27 Aug 2003) | 2 lines
Changed paths:
A /trunk/mailrules2.html
Rewrote the mailrules v2 documentation to use a compiled file format.
------------------------------------------------------------------------
r250 | bruce | 2003-08-27 17:17:10 -0600 (Wed, 27 Aug 2003) | 2 lines
Changed paths:
M /trunk/tests/pop3front-auth-login
M /trunk/tests/pop3front-auth-plain
M /trunk/tests/pop3front-auth-userpass
M /trunk/tests/smtpfront-auth-login
M /trunk/tests/smtpfront-auth-plain
M /trunk/tests.inc
Use a locally generated CVM for testing.
------------------------------------------------------------------------
r249 | bruce | 2003-08-27 16:26:03 -0600 (Wed, 27 Aug 2003) | 2 lines
Changed paths:
M /trunk/tests/smtpfront-bad-bounce
M /trunk/tests/smtpfront-content
M /trunk/tests/smtpfront-looping-delivered-to
M /trunk/tests/smtpfront-looping-received
M /trunk/tests.inc
Really fixed the sizes, forgot to export the new variables.
------------------------------------------------------------------------
r248 | bruce | 2003-08-27 14:59:44 -0600 (Wed, 27 Aug 2003) | 2 lines
Changed paths:
M /trunk/tests/smtpfront-bad-bounce
M /trunk/tests/smtpfront-content
M /trunk/tests/smtpfront-looping-delivered-to
M /trunk/tests/smtpfront-looping-received
M /trunk/tests.inc
Adjusted tests for new link protocol handling.
------------------------------------------------------------------------
r247 | bruce | 2003-08-26 17:51:50 -0600 (Tue, 26 Aug 2003) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/std-handle.c
Added the link protocol (ie TCP or TCP6) to the Received: header.
------------------------------------------------------------------------
r246 | bruce | 2003-08-26 16:50:03 -0600 (Tue, 26 Aug 2003) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/std-handle.c
Fixed the Received: header generation to match the syntax described in RFC 2821.
------------------------------------------------------------------------
r245 | bruce | 2003-07-17 13:50:15 -0600 (Thu, 17 Jul 2003) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/std-handle.c
A /trunk/tests/smtpfront-looping-delivered-to
A /trunk/tests/smtpfront-looping-received
Fixed a bug that prevented looping email detection from working.
------------------------------------------------------------------------
r244 | bruce | 2003-07-17 13:05:19 -0600 (Thu, 17 Jul 2003) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/VERSION
Bumped version to 0.87
------------------------------------------------------------------------
r243 | bruce | 2003-05-28 14:56:18 -0600 (Wed, 28 May 2003) | 1 line
Changed paths:
A /tags/0.86 (from /trunk:242)
Tagged version 0.86
------------------------------------------------------------------------
r242 | bruce | 2003-05-28 14:51:04 -0600 (Wed, 28 May 2003) | 2 lines
Changed paths:
M /trunk/TODO
Added notes about address handling reorganization.
------------------------------------------------------------------------
r241 | bruce | 2003-05-28 14:48:10 -0600 (Wed, 28 May 2003) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/smtp-commands.c
M /trunk/smtpfront.html
A /trunk/tests/smtpfront-databytes
Added support for RFC 1870 ESMTP SIZE extension.
------------------------------------------------------------------------
r240 | bruce | 2003-05-28 14:05:25 -0600 (Wed, 28 May 2003) | 2 lines
Changed paths:
M /trunk/NEWS
A /trunk/cvm-validate.c
M /trunk/mailfront.h
M /trunk/qmail-validate.c
M /trunk/qmqpfront-qmail=x
M /trunk/qmtpfront-qmail=x
M /trunk/smtpfront-qmail=x
M /trunk/smtpfront.html
Added CVM validation of recipient addresses.
------------------------------------------------------------------------
r239 | bruce | 2003-05-27 13:20:19 -0600 (Tue, 27 May 2003) | 2 lines
Changed paths:
M /trunk/README.in
Added note about Subversion repository.
------------------------------------------------------------------------
r238 | bruce | 2003-05-27 13:19:15 -0600 (Tue, 27 May 2003) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/smtp-commands.c
Make SMTP front end log invalid commands.
------------------------------------------------------------------------
r237 | bruce | 2003-05-27 12:52:36 -0600 (Tue, 27 May 2003) | 2 lines
Changed paths:
M /trunk/qmtp-respond.c
M /trunk/qmtp.h
Moved the internal respond_* functions to static.
------------------------------------------------------------------------
r236 | bruce | 2003-05-22 22:51:18 -0600 (Thu, 22 May 2003) | 3 lines
Changed paths:
M /trunk/qmail-backend.c
M /trunk/smtp-respond.c
Restore former behavior of only logging errors (and qmail message
acceptance data).
------------------------------------------------------------------------
r235 | bruce | 2003-05-22 22:39:12 -0600 (Thu, 22 May 2003) | 3 lines
Changed paths:
M /trunk/qmail-backend.c
No longer need to log message delivery status, as the front-end code
logs all responses.
------------------------------------------------------------------------
r234 | bruce | 2003-05-22 22:34:51 -0600 (Thu, 22 May 2003) | 2 lines
Changed paths:
M /trunk/smtp-respond.c
M /trunk/smtp.h
Restored the previously deleted logging messages.
------------------------------------------------------------------------
r233 | bruce | 2003-04-30 18:09:16 -0600 (Wed, 30 Apr 2003) | 3 lines
Changed paths:
M /trunk/README.in
Added (tweaked) documentation additions from
"Bryan Curnutt" <bcurnutt@salu.com>
------------------------------------------------------------------------
r232 | bruce | 2003-03-24 14:35:51 -0600 (Mon, 24 Mar 2003) | 2 lines
Changed paths:
M /trunk/NEWS
Added missing NEWS line item about $HEADER_ADD.
------------------------------------------------------------------------
r231 | bruce | 2003-03-24 14:35:02 -0600 (Mon, 24 Mar 2003) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/VERSION
Bump up version number.
------------------------------------------------------------------------
r230 | bruce | 2003-03-24 14:34:21 -0600 (Mon, 24 Mar 2003) | 2 lines
Changed paths:
M /trunk/smtpfront.html
M /trunk/std-handle.c
Allow for addition of user specified headers with $HEADER_ADD
------------------------------------------------------------------------
r229 | bruce | 2003-03-24 14:23:07 -0600 (Mon, 24 Mar 2003) | 2 lines
Changed paths:
M /trunk/smtp-respond.c
Move the \n handling into the primary respond function.
------------------------------------------------------------------------
r228 | bruce | 2003-03-24 14:17:29 -0600 (Mon, 24 Mar 2003) | 3 lines
Changed paths:
M /trunk/echo-backend.c
M /trunk/mailrules.c
M /trunk/qmail-backend.c
M /trunk/qmail-validate.c
M /trunk/qmqp-mainloop.c
M /trunk/qmtp-mainloop.c
M /trunk/qmtp-respond.c
M /trunk/responses.c
M /trunk/responses.h
M /trunk/smtp-commands.c
M /trunk/smtp-respond.c
M /trunk/smtpfront-reject.c
Instead of using (inconvenient) pointers to link multi-line messages,
just treat '\n' as a separator within the message itself.
------------------------------------------------------------------------
r227 | bruce | 2003-03-06 11:58:02 -0600 (Thu, 06 Mar 2003) | 2 lines
Changed paths:
M /trunk/README.in
Added note about QMQP and QMTP front-ends.
------------------------------------------------------------------------
r226 | bruce | 2003-03-05 17:28:29 -0600 (Wed, 05 Mar 2003) | 1 line
Changed paths:
A /tags/0.85 (from /trunk:225)
Tagged version 0.85
------------------------------------------------------------------------
r225 | bruce | 2003-03-05 17:05:05 -0600 (Wed, 05 Mar 2003) | 2 lines
Changed paths:
M /trunk/TODO
Added some things to do.
------------------------------------------------------------------------
r224 | bruce | 2003-03-05 14:57:18 -0600 (Wed, 05 Mar 2003) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/smtpfront.html
Documented the fixup header.
------------------------------------------------------------------------
r223 | bruce | 2003-03-05 14:38:08 -0600 (Wed, 05 Mar 2003) | 2 lines
Changed paths:
M /trunk/qmtp-respond.c
If multiple responses are give, separate them with LF chars.
------------------------------------------------------------------------
r222 | bruce | 2003-03-05 14:36:53 -0600 (Wed, 05 Mar 2003) | 4 lines
Changed paths:
M /trunk/qmqp=l
M /trunk/qmtp=l
M /trunk/smtp=l
M /trunk/std-handle.c
Added code to add a second "Received:" header before the normal one that
can be used to fix up mismatches between incoming and outgoing hostnames
or IPs.
------------------------------------------------------------------------
r221 | bruce | 2003-03-05 14:34:11 -0600 (Wed, 05 Mar 2003) | 2 lines
Changed paths:
M /trunk/responses.c
M /trunk/responses.h
Remove the unused response, and add a OOM one.
------------------------------------------------------------------------
r220 | bruce | 2003-03-05 14:32:55 -0600 (Wed, 05 Mar 2003) | 2 lines
Changed paths:
M /trunk/README.in
Fix up the copyright years.
------------------------------------------------------------------------
r219 | bruce | 2003-03-04 11:33:59 -0600 (Tue, 04 Mar 2003) | 2 lines
Changed paths:
A /trunk/tests/smtpfront-content
Test to make sure escaping on SMTP is handled correctly.
------------------------------------------------------------------------
r218 | bruce | 2003-03-04 11:33:38 -0600 (Tue, 04 Mar 2003) | 2 lines
Changed paths:
M /trunk/echo-backend.c
Properly reset the number of bytes received.
------------------------------------------------------------------------
r217 | bruce | 2003-03-04 11:01:42 -0600 (Tue, 04 Mar 2003) | 2 lines
Changed paths:
M /trunk/smtp-commands.c
Fixed broken leading period handling.
------------------------------------------------------------------------
r216 | bruce | 2003-03-04 01:01:59 -0600 (Tue, 04 Mar 2003) | 2 lines
Changed paths:
M /trunk/std-handle.c
The second line uses two spaces, for continuity with qmail.
------------------------------------------------------------------------
r215 | bruce | 2003-03-04 00:55:23 -0600 (Tue, 04 Mar 2003) | 2 lines
Changed paths:
M /trunk/insthier.c
Install the new QMQP and QMTP programs.
------------------------------------------------------------------------
r214 | bruce | 2003-03-03 17:49:14 -0600 (Mon, 03 Mar 2003) | 2 lines
Changed paths:
M /trunk/std-handle.c
Use str_cat#s functions to shrink code size.
------------------------------------------------------------------------
r213 | bruce | 2003-03-03 17:42:29 -0600 (Mon, 03 Mar 2003) | 4 lines
Changed paths:
M /trunk/std-handle.c
Set up {local,remote}_{host,ip} at init time, instead of when building
the Received: header; modularize building the date string into a
seperate function.
------------------------------------------------------------------------
r212 | bruce | 2003-03-03 17:34:42 -0600 (Mon, 03 Mar 2003) | 2 lines
Changed paths:
M /trunk/smtp-commands.c
Removed extraneous reset that was blowing away SMTP response messages.
------------------------------------------------------------------------
r211 | bruce | 2003-03-03 16:51:13 -0600 (Mon, 03 Mar 2003) | 2 lines
Changed paths:
M /trunk/qmtpfront-qmail.c
Fixed typo: program name is qmtpfront-qmail, not smtpfront-qmail
------------------------------------------------------------------------
r210 | bruce | 2003-03-03 16:50:16 -0600 (Mon, 03 Mar 2003) | 2 lines
Changed paths:
M /trunk/NEWS
A /trunk/qmqp-mainloop.c
A /trunk/qmqp=l
A /trunk/qmqpfront-qmail.c
A /trunk/qmqpfront-qmail=x
Added QMQP front-end with qmail back-end.
------------------------------------------------------------------------
r209 | bruce | 2003-03-03 16:47:08 -0600 (Mon, 03 Mar 2003) | 2 lines
Changed paths:
M /trunk/qmtp-mainloop.c
Log the sender and recipient addresses.
------------------------------------------------------------------------
r208 | bruce | 2003-03-03 16:45:38 -0600 (Mon, 03 Mar 2003) | 2 lines
Changed paths:
M /trunk/mailfront.h
A /trunk/netstring.c
M /trunk/qmtp-mainloop.c
M /trunk/qmtp=l
Moved the netstring reading code into a separate object.
------------------------------------------------------------------------
r207 | bruce | 2003-03-03 16:10:48 -0600 (Mon, 03 Mar 2003) | 2 lines
Changed paths:
M /trunk/imapfront-auth=x
M /trunk/pop3front-auth=x
M /trunk/pop3front-maildir=x
M /trunk/qmtpfront-qmail=x
M /trunk/smtpfront-echo=x
M /trunk/smtpfront-qmail=x
M /trunk/smtpfront-reject=x
M /trunk/spec
Switched to new (revised) bglibs library scheme.
------------------------------------------------------------------------
r206 | bruce | 2003-02-18 18:03:40 -0600 (Tue, 18 Feb 2003) | 1 line
Changed paths:
M /trunk/NEWS
------------------------------------------------------------------------
r205 | bruce | 2002-12-18 16:06:41 -0600 (Wed, 18 Dec 2002) | 2 lines
Changed paths:
M /trunk/std-handle.c
Reject the message outright if more than one recipient was given.
------------------------------------------------------------------------
r204 | bruce | 2002-12-18 14:17:32 -0600 (Wed, 18 Dec 2002) | 2 lines
Changed paths:
M /trunk/NEWS
Added comment about new bglibs usage.
------------------------------------------------------------------------
r203 | bruce | 2002-12-17 17:09:38 -0600 (Tue, 17 Dec 2002) | 2 lines
Changed paths:
M /trunk/imapfront-auth=x
M /trunk/pop3front-auth=x
M /trunk/pop3front-maildir=x
M /trunk/qmtpfront-qmail=x
M /trunk/smtpfront-echo=x
M /trunk/smtpfront-qmail=x
M /trunk/smtpfront-reject=x
Switched to new bglibs library paths.
------------------------------------------------------------------------
r202 | bruce | 2002-12-17 17:08:51 -0600 (Tue, 17 Dec 2002) | 2 lines
Changed paths:
M /trunk/README.in
Added installation notes.
------------------------------------------------------------------------
r201 | bruce | 2002-12-16 17:49:47 -0600 (Mon, 16 Dec 2002) | 2 lines
Changed paths:
M /trunk/imapfront-auth.c
M /trunk/mailrules.c
M /trunk/pop3front-maildir.c
M /trunk/qmail-backend.c
M /trunk/qmtp-mainloop.c
M /trunk/qmtp-respond.c
M /trunk/sasl-auth.c
M /trunk/sasl-auth.h
M /trunk/smtp-respond.c
M /trunk/std-handle.c
Renamed variables to eliminate global/local shadow declarations.
------------------------------------------------------------------------
r200 | bruce | 2002-12-16 17:27:34 -0600 (Mon, 16 Dec 2002) | 2 lines
Changed paths:
D /trunk/README
A /trunk/README.in (from /trunk/README:196)
Moved to a templated README system, generated by spac-dist.
------------------------------------------------------------------------
r199 | bruce | 2002-12-16 17:26:50 -0600 (Mon, 16 Dec 2002) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/VERSION
Bumped version from 0.82 to 0.85 (0.82 was not released).
------------------------------------------------------------------------
r198 | bruce | 2002-12-16 17:07:29 -0600 (Mon, 16 Dec 2002) | 2 lines
Changed paths:
D /trunk/README.CVS
Removed extraneous CVS instructions.
------------------------------------------------------------------------
r197 | bruce | 2002-11-29 15:19:08 -0600 (Fri, 29 Nov 2002) | 2 lines
Changed paths:
M /trunk/std-handle.c
Clarified the logic of handle_sender and handle_recipient.
------------------------------------------------------------------------
r196 | bruce | 2002-11-19 17:21:55 -0600 (Tue, 19 Nov 2002) | 1 line
Changed paths:
A /branches
Created branches directory
------------------------------------------------------------------------
r195 | bruce | 2002-11-19 17:21:55 -0600 (Tue, 19 Nov 2002) | 1 line
Changed paths:
A /tags
Created tags directory
------------------------------------------------------------------------
r194 | bruce | 2002-11-08 23:36:03 -0600 (Fri, 08 Nov 2002) | 4 lines
Changed paths:
M /trunk/echo-backend.c
M /trunk/mailfront.h
M /trunk/qmail-backend.c
M /trunk/qmail-validate.c
D /trunk/qmail.h
M /trunk/qmtpfront-qmail.c
M /trunk/smtpfront-qmail.c
M /trunk/smtpfront-reject.c
M /trunk/std-handle.c
Renamed the qmail_ functions to standard backend_ naming.
Removed the qmail.h header file.
Added a call to backend_validate_init to std-handle.c.
------------------------------------------------------------------------
r193 | bruce | 2002-11-08 23:20:28 -0600 (Fri, 08 Nov 2002) | 2 lines
Changed paths:
M /trunk/qmtpfront-qmail.c
M /trunk/smtpfront-qmail.c
Removed duplicate relayclient and authenticated handling.
------------------------------------------------------------------------
r192 | bruce | 2002-11-08 23:03:40 -0600 (Fri, 08 Nov 2002) | 2 lines
Changed paths:
M /trunk/std-handle.c
Fixed typo with maxdatabytes.
------------------------------------------------------------------------
r191 | bruce | 2002-11-08 23:03:22 -0600 (Fri, 08 Nov 2002) | 2 lines
Changed paths:
A /trunk/qmtpfront-qmail.c
A /trunk/qmtpfront-qmail=x
Added QMTP-qmail main routine.
------------------------------------------------------------------------
r190 | bruce | 2002-11-08 22:53:54 -0600 (Fri, 08 Nov 2002) | 5 lines
Changed paths:
M /trunk/echo-backend.c
M /trunk/mailfront.h
M /trunk/qmtp-mainloop.c
M /trunk/smtp-commands.c
M /trunk/smtp-mainloop.c
M /trunk/smtpfront-qmail.c
M /trunk/smtpfront-reject.c
M /trunk/std-handle.c
Renamed handle and validate functions:
handle_* => backend_handle_*
validate_* => backend_validate_*
std_handle_* => handle_*
------------------------------------------------------------------------
r189 | bruce | 2002-11-08 22:36:01 -0600 (Fri, 08 Nov 2002) | 2 lines
Changed paths:
M /trunk/mailfront.h
M /trunk/smtp-commands.c
M /trunk/smtp-mainloop.c
M /trunk/smtp.h
M /trunk/smtp=l
Removed the duplicated code in std-handle.c
------------------------------------------------------------------------
r188 | bruce | 2002-11-08 22:35:35 -0600 (Fri, 08 Nov 2002) | 3 lines
Changed paths:
A /trunk/std-handle.c
Pulled a lot of common code from the SMTP library into this shared
module.
------------------------------------------------------------------------
r187 | bruce | 2002-11-08 22:34:33 -0600 (Fri, 08 Nov 2002) | 2 lines
Changed paths:
M /trunk/NEWS
A /trunk/qmtp-mainloop.c
A /trunk/qmtp-respond.c
A /trunk/qmtp.h
A /trunk/qmtp=l
Added a QMTP back-end.
------------------------------------------------------------------------
r186 | bruce | 2002-11-07 19:42:05 -0600 (Thu, 07 Nov 2002) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/smtp-commands.c
Fixed internal variable transposition bug.
------------------------------------------------------------------------
r185 | bruce | 2002-11-07 19:41:51 -0600 (Thu, 07 Nov 2002) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/VERSION
Bumped up version.
------------------------------------------------------------------------
r184 | bruce | 2002-09-27 23:41:02 -0600 (Fri, 27 Sep 2002) | 2 lines
Changed paths:
M /trunk/README
M /trunk/VERSION
Bumped version to 0.81.
------------------------------------------------------------------------
r183 | bruce | 2002-09-25 17:10:10 -0600 (Wed, 25 Sep 2002) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/smtp-commands.c
Abort the DATA command immediately if the databytes limit is reached.
------------------------------------------------------------------------
r182 | bruce | 2002-09-25 17:08:57 -0600 (Wed, 25 Sep 2002) | 2 lines
Changed paths:
M /trunk/tests/rules-asterisk
Test for "*" pattern matching "".
------------------------------------------------------------------------
r181 | bruce | 2002-09-25 17:00:10 -0600 (Wed, 25 Sep 2002) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/mailrules.c
Make the "*" pattern properly match all strings.
------------------------------------------------------------------------
r180 | bruce | 2002-09-25 16:53:02 -0600 (Wed, 25 Sep 2002) | 2 lines
Changed paths:
M /trunk/smtp-commands.c
Remove extraneous reset of mail/rcpt state.
------------------------------------------------------------------------
r179 | bruce | 2002-09-25 16:51:48 -0600 (Wed, 25 Sep 2002) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/smtp-commands.c
Accept bounces after the first one by properly resetting state.
------------------------------------------------------------------------
r178 | bruce | 2002-09-25 16:49:50 -0600 (Wed, 25 Sep 2002) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/mailrules.c
Apply maxdatabytes even if $DATABYTES is not set.
------------------------------------------------------------------------
r177 | bruce | 2002-09-24 20:53:06 -0600 (Tue, 24 Sep 2002) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/qmail-backend.c
Fixed handling of environment variables in mail rules.
------------------------------------------------------------------------
r176 | bruce | 2002-09-17 19:29:32 -0600 (Tue, 17 Sep 2002) | 4 lines
Changed paths:
M /trunk/mailrules.c
M /trunk/mailrules.h
Fix prototype for rules_getenv to return const data.
Fix rules_getenv to call getenv if no suitable variable was found.
Fix rules_getenv to return the *last* matching result.
------------------------------------------------------------------------
r175 | bruce | 2002-09-13 19:46:30 -0600 (Fri, 13 Sep 2002) | 2 lines
Changed paths:
M /trunk/tests/rules-defaultmsg
Fixed deferred message.
------------------------------------------------------------------------
r174 | bruce | 2002-09-13 19:46:15 -0600 (Fri, 13 Sep 2002) | 2 lines
Changed paths:
M /trunk/README
Bumped up version.
------------------------------------------------------------------------
r173 | bruce | 2002-09-13 04:38:07 -0600 (Fri, 13 Sep 2002) | 2 lines
Changed paths:
M /trunk/mailrules.html
Added some more examples.
------------------------------------------------------------------------
r172 | bruce | 2002-09-13 04:37:33 -0600 (Fri, 13 Sep 2002) | 2 lines
Changed paths:
M /trunk/mailrules.c
Added a default handler.
------------------------------------------------------------------------
r171 | bruce | 2002-09-11 17:31:39 -0600 (Wed, 11 Sep 2002) | 2 lines
Changed paths:
M /trunk/TODO
*** empty log message ***
------------------------------------------------------------------------
r170 | bruce | 2002-09-11 16:29:27 -0600 (Wed, 11 Sep 2002) | 2 lines
Changed paths:
M /trunk/mailrules.c
M /trunk/mailrules.html
M /trunk/tests/rules-cdb
M /trunk/tests/rules-defaultmsg
M /trunk/tests/rules-list
M /trunk/tests/rules-recip
M /trunk/tests/rules-sender
Fixed z/d semantics to match qmail-remote, QMQP, and QMTP.
------------------------------------------------------------------------
r169 | bruce | 2002-09-11 16:20:08 -0600 (Wed, 11 Sep 2002) | 2 lines
Changed paths:
M /trunk/mailrules.html
Clarified the note on escapes.
------------------------------------------------------------------------
r168 | bruce | 2002-09-11 16:17:12 -0600 (Wed, 11 Sep 2002) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/qmail-validate.c
Added support for wildcards in rcpthosts and morercpthosts.cdb.
------------------------------------------------------------------------
r167 | bruce | 2002-08-27 21:13:21 -0600 (Tue, 27 Aug 2002) | 2 lines
Changed paths:
M /trunk/mailrules.c
M /trunk/mailrules.html
M /trunk/tests/rules-recip
M /trunk/tests/rules-sender
Added support for "pass-through" rules.
------------------------------------------------------------------------
r166 | bruce | 2002-08-26 20:28:27 -0600 (Mon, 26 Aug 2002) | 2 lines
Changed paths:
M /trunk/mailrules.html
Added note that the qmail rules are only an example.
------------------------------------------------------------------------
r165 | bruce | 2002-08-26 20:20:24 -0600 (Mon, 26 Aug 2002) | 3 lines
Changed paths:
M /trunk/NEWS
M /trunk/qmail-validate.c
Properly lowercase the sender address before looking it up in
badmailfrom.
------------------------------------------------------------------------
r164 | bruce | 2002-08-26 03:35:44 -0600 (Mon, 26 Aug 2002) | 2 lines
Changed paths:
M /trunk/README
M /trunk/mailrules.html
Clarified interpretation of empty or missing columns.
------------------------------------------------------------------------
r163 | bruce | 2002-08-26 03:35:19 -0600 (Mon, 26 Aug 2002) | 2 lines
Changed paths:
A /trunk/tests/rules-defaultmsg
Test default messages.
------------------------------------------------------------------------
r162 | bruce | 2002-08-26 03:35:08 -0600 (Mon, 26 Aug 2002) | 2 lines
Changed paths:
M /trunk/mailrules.c
Properly set up different default messages for each type of rule.
------------------------------------------------------------------------
r161 | bruce | 2002-08-26 03:28:45 -0600 (Mon, 26 Aug 2002) | 2 lines
Changed paths:
M /trunk/mailrules.c
Fixed handling of empty resposes.
------------------------------------------------------------------------
r160 | bruce | 2002-08-26 03:08:27 -0600 (Mon, 26 Aug 2002) | 2 lines
Changed paths:
M /trunk/mailrules.html
Added note about empty pattern matching.
------------------------------------------------------------------------
r159 | bruce | 2002-08-26 03:07:12 -0600 (Mon, 26 Aug 2002) | 2 lines
Changed paths:
A /trunk/tests/rules-empty
Added test for empty pattern.
------------------------------------------------------------------------
r158 | bruce | 2002-08-26 03:06:57 -0600 (Mon, 26 Aug 2002) | 2 lines
Changed paths:
M /trunk/TODO
*** empty log message ***
------------------------------------------------------------------------
r157 | bruce | 2002-08-26 03:05:35 -0600 (Mon, 26 Aug 2002) | 2 lines
Changed paths:
M /trunk/NEWS
Added note about mail rules processing and sponsorship.
------------------------------------------------------------------------
r156 | bruce | 2002-08-26 03:04:35 -0600 (Mon, 26 Aug 2002) | 2 lines
Changed paths:
M /trunk/VERSION
Bumped version.
------------------------------------------------------------------------
r155 | bruce | 2002-08-26 03:04:02 -0600 (Mon, 26 Aug 2002) | 3 lines
Changed paths:
M /trunk/smtp-commands.c
Fixed bounce to multiple recipient logic to properly reject the data
command after the condition is discovered.
------------------------------------------------------------------------
r154 | bruce | 2002-08-26 03:03:25 -0600 (Mon, 26 Aug 2002) | 2 lines
Changed paths:
M /trunk/smtpfront.html
Added note about bounce to multiple recipient handling.
------------------------------------------------------------------------
r153 | bruce | 2002-08-26 02:57:39 -0600 (Mon, 26 Aug 2002) | 2 lines
Changed paths:
M /trunk/smtp=l
M /trunk/smtpfront-echo=x
M /trunk/smtpfront-reject=x
Added necessary linkage for mailrules implementation.
------------------------------------------------------------------------
r152 | bruce | 2002-08-26 02:57:17 -0600 (Mon, 26 Aug 2002) | 2 lines
Changed paths:
A /trunk/tests/rules-asterisk
A /trunk/tests/rules-both
A /trunk/tests/rules-cdb
A /trunk/tests/rules-list
A /trunk/tests/rules-multiline
A /trunk/tests/rules-recip
A /trunk/tests/rules-sender
Added mail rules tests.
------------------------------------------------------------------------
r151 | bruce | 2002-08-26 02:57:12 -0600 (Mon, 26 Aug 2002) | 2 lines
Changed paths:
A /trunk/mailrules.c
A /trunk/mailrules.html
Added mail rules implementation and documentation.
------------------------------------------------------------------------
r150 | bruce | 2002-08-26 02:56:38 -0600 (Mon, 26 Aug 2002) | 3 lines
Changed paths:
M /trunk/qmail-validate.html
M /trunk/smtpfront.html
Added notes about new mail rules interface, and the addition of
$RELAYCLIENT and authentication handling to all back-ends.
------------------------------------------------------------------------
r149 | bruce | 2002-08-26 02:55:46 -0600 (Mon, 26 Aug 2002) | 4 lines
Changed paths:
M /trunk/smtp-commands.c
Call the mailrules API at the appropriate places.
Add $RELAYCLIENT handling here from qmail-validate.
Add authenticated handleing here.
------------------------------------------------------------------------
r148 | bruce | 2002-08-25 21:26:30 -0600 (Sun, 25 Aug 2002) | 2 lines
Changed paths:
M /trunk/qmail-backend.c
Use mailrules API to get/export environment variables.
------------------------------------------------------------------------
r147 | bruce | 2002-08-25 21:24:29 -0600 (Sun, 25 Aug 2002) | 3 lines
Changed paths:
M /trunk/mailrules.h
M /trunk/smtp-mainloop.c
M /trunk/smtp.h
Moved maxdatabytes saving and restoring into mailrules.
Added environment API to mailrules.
------------------------------------------------------------------------
r146 | bruce | 2002-08-20 18:12:20 -0600 (Tue, 20 Aug 2002) | 2 lines
Changed paths:
M /trunk/smtp-mainloop.c
Set up relayclient and saved_maxdatabytes, and init mail rules.
------------------------------------------------------------------------
r145 | bruce | 2002-08-20 18:11:46 -0600 (Tue, 20 Aug 2002) | 2 lines
Changed paths:
A /trunk/mailrules.h
Added initial API for mail rules processing.
------------------------------------------------------------------------
r144 | bruce | 2002-08-20 18:10:23 -0600 (Tue, 20 Aug 2002) | 2 lines
Changed paths:
M /trunk/echo-backend.c
M /trunk/mailfront.h
M /trunk/smtpfront-qmail.c
Add seperate validate_(sender|recipient) routines.
------------------------------------------------------------------------
r143 | bruce | 2002-08-20 18:09:56 -0600 (Tue, 20 Aug 2002) | 3 lines
Changed paths:
M /trunk/smtpfront-reject.c
Add seperate validate_(sender|recipient) routines.
Explicitly set relayclient and authenticated to false.
------------------------------------------------------------------------
r142 | bruce | 2002-08-20 18:07:10 -0600 (Tue, 20 Aug 2002) | 2 lines
Changed paths:
M /trunk/smtp.h
Export relayclient and saved_maxdatabytes state.
------------------------------------------------------------------------
r141 | bruce | 2002-08-19 18:24:00 -0600 (Mon, 19 Aug 2002) | 2 lines
Changed paths:
M /trunk/smtp-commands.c
Completed other half of single-recipient-bounce logic.
------------------------------------------------------------------------
r140 | bruce | 2002-08-19 18:22:31 -0600 (Mon, 19 Aug 2002) | 2 lines
Changed paths:
M /trunk/smtp-commands.c
Tweaked single-recipient-bounce logic to apply before any parsing.
------------------------------------------------------------------------
r139 | bruce | 2002-08-13 04:35:57 -0600 (Tue, 13 Aug 2002) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/smtp-mainloop.c
Fixed handling of SMTPGREETING and TCPLOCALHOST.
------------------------------------------------------------------------
r138 | bruce | 2002-08-09 20:07:21 -0600 (Fri, 09 Aug 2002) | 2 lines
Changed paths:
M /trunk/README
M /trunk/VERSION
Bumped up version.
------------------------------------------------------------------------
r137 | bruce | 2002-08-08 17:18:45 -0600 (Thu, 08 Aug 2002) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/qmail-validate.c
Add wildcard code for badrcptto to smtpfront-qmail.
------------------------------------------------------------------------
r136 | bruce | 2002-07-15 23:58:02 -0600 (Mon, 15 Jul 2002) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/insthier.c
Added missing imapfront-auth.
------------------------------------------------------------------------
r135 | bruce | 2002-06-20 18:24:41 -0600 (Thu, 20 Jun 2002) | 2 lines
Changed paths:
M /trunk/spec
Added build requirement for bglibs.
------------------------------------------------------------------------
r134 | bruce | 2002-06-20 16:22:41 -0600 (Thu, 20 Jun 2002) | 2 lines
Changed paths:
M /trunk/README
M /trunk/VERSION
Bumped up version number.
------------------------------------------------------------------------
r133 | bruce | 2002-06-20 16:20:27 -0600 (Thu, 20 Jun 2002) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/sasl-auth.c
Provide better credential information, as well as logging failures.
------------------------------------------------------------------------
r132 | bruce | 2002-06-18 23:38:50 -0600 (Tue, 18 Jun 2002) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/imapfront-auth=x
M /trunk/sasl-auth.c
Log SASL authenticated username.
------------------------------------------------------------------------
r131 | bruce | 2002-06-18 21:21:16 -0600 (Tue, 18 Jun 2002) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/imapfront-auth.c
Fixed missing "OK" bug in imapfront-auth.
------------------------------------------------------------------------
r130 | bruce | 2002-06-06 18:28:58 -0600 (Thu, 06 Jun 2002) | 2 lines
Changed paths:
M /trunk/spec
Added missing include/library flags.
------------------------------------------------------------------------
r129 | bruce | 2002-06-06 18:25:47 -0600 (Thu, 06 Jun 2002) | 2 lines
Changed paths:
M /trunk/README
M /trunk/VERSION
Bumped up version.
------------------------------------------------------------------------
r128 | bruce | 2002-06-06 18:22:32 -0600 (Thu, 06 Jun 2002) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/TODO
M /trunk/imapfront-auth=x
M /trunk/imapfront.html
M /trunk/pop3front-auth=x
M /trunk/pop3front-maildir=x
M /trunk/pop3front.html
M /trunk/smtpfront-echo=x
M /trunk/smtpfront-qmail=x
M /trunk/smtpfront-reject=x
M /trunk/smtpfront.html
M /trunk/timeout.c
Added support for a session timeout.
------------------------------------------------------------------------
r127 | bruce | 2002-06-06 18:12:04 -0600 (Thu, 06 Jun 2002) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/TODO
M /trunk/smtp-commands.c
A /trunk/tests/smtpfront-bad-bounce
M /trunk/tests.inc
Reject bounces with multiple recipients.
------------------------------------------------------------------------
r126 | bruce | 2002-06-06 17:58:45 -0600 (Thu, 06 Jun 2002) | 2 lines
Changed paths:
M /trunk/TODO
*** empty log message ***
------------------------------------------------------------------------
r125 | bruce | 2002-06-06 17:47:17 -0600 (Thu, 06 Jun 2002) | 2 lines
Changed paths:
M /trunk/TODO
M /trunk/imapfront-auth.c
M /trunk/imapfront-auth=x
M /trunk/pop3-mainloop.c
M /trunk/pop3=l
M /trunk/smtp-mainloop.c
M /trunk/smtp=l
A /trunk/timeout.c
Merged the common timeout code into one place.
------------------------------------------------------------------------
r124 | bruce | 2002-06-06 17:34:54 -0600 (Thu, 06 Jun 2002) | 2 lines
Changed paths:
M /trunk/TODO
Revised pattern matching plan.
------------------------------------------------------------------------
r123 | bruce | 2002-06-04 20:59:49 -0600 (Tue, 04 Jun 2002) | 2 lines
Changed paths:
M /trunk/imapfront-auth.c
M /trunk/imapfront-auth=x
M /trunk/insthier.c
M /trunk/iobytes.c
M /trunk/mailfront.h
M /trunk/pop3-mainloop.c
M /trunk/pop3-response.c
M /trunk/pop3front-auth.c
M /trunk/pop3front-auth=x
M /trunk/pop3front-maildir.c
M /trunk/pop3front-maildir=x
M /trunk/qmail-backend.c
M /trunk/qmail-validate.c
M /trunk/sasl-auth.c
M /trunk/sasl-stub.c
M /trunk/smtp-commands.c
M /trunk/smtp-mainloop.c
M /trunk/smtp-respond.c
M /trunk/smtp.h
M /trunk/smtpfront-echo=x
M /trunk/smtpfront-qmail.c
M /trunk/smtpfront-qmail=x
M /trunk/smtpfront-reject.c
M /trunk/smtpfront-reject=x
Switched to using external bglibs.
------------------------------------------------------------------------
r122 | bruce | 2002-06-04 20:41:30 -0600 (Tue, 04 Jun 2002) | 2 lines
Changed paths:
M /trunk/TODO
*** empty log message ***
------------------------------------------------------------------------
r121 | bruce | 2002-05-07 23:04:48 -0600 (Tue, 07 May 2002) | 2 lines
Changed paths:
M /trunk/README
A /trunk/imapfront.html
M /trunk/mailfront.html
Added some IMAP documentation.
------------------------------------------------------------------------
r120 | bruce | 2002-05-07 22:23:04 -0600 (Tue, 07 May 2002) | 2 lines
Changed paths:
M /trunk/TODO
*** empty log message ***
------------------------------------------------------------------------
r119 | bruce | 2002-05-07 21:15:51 -0600 (Tue, 07 May 2002) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/TODO
*** empty log message ***
------------------------------------------------------------------------
r118 | bruce | 2002-05-07 20:28:57 -0600 (Tue, 07 May 2002) | 2 lines
Changed paths:
M /trunk/imapfront-auth.c
Added support for the AUTHENTICATE command.
------------------------------------------------------------------------
r117 | bruce | 2002-05-07 20:28:43 -0600 (Tue, 07 May 2002) | 2 lines
Changed paths:
M /trunk/pop3front-auth.c
M /trunk/sasl-auth.c
M /trunk/sasl-auth.h
M /trunk/sasl-stub.c
M /trunk/smtp-commands.c
Updated the SASL interface to allow one or two arguments.
------------------------------------------------------------------------
r116 | bruce | 2002-05-07 19:17:47 -0600 (Tue, 07 May 2002) | 2 lines
Changed paths:
A /trunk/imapfront-auth.c
A /trunk/imapfront-auth=x
Added first try at an IMAP authentication front end.
------------------------------------------------------------------------
r115 | bruce | 2002-05-06 20:55:23 -0600 (Mon, 06 May 2002) | 2 lines
Changed paths:
A /trunk/tests/smtpgreeting
Added test for $SMTPGREETING.
------------------------------------------------------------------------
r114 | bruce | 2002-05-06 20:55:16 -0600 (Mon, 06 May 2002) | 2 lines
Changed paths:
M /trunk/tests.inc
Fixed pop3front-auth function.
------------------------------------------------------------------------
r113 | bruce | 2002-05-06 20:54:57 -0600 (Mon, 06 May 2002) | 2 lines
Changed paths:
M /trunk/TODO
*** empty log message ***
------------------------------------------------------------------------
r112 | bruce | 2002-05-06 20:50:23 -0600 (Mon, 06 May 2002) | 2 lines
Changed paths:
M /trunk/mailfront.html
M /trunk/smtpfront.html
Updated documentation.
------------------------------------------------------------------------
r111 | bruce | 2002-05-06 20:49:42 -0600 (Mon, 06 May 2002) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/smtp-mainloop.c
M /trunk/smtp.h
M /trunk/smtpfront-echo.c
M /trunk/smtpfront-qmail.c
M /trunk/smtpfront-reject.c
Added support for $SMTPGREETING.
------------------------------------------------------------------------
r110 | bruce | 2002-04-17 20:31:28 -0600 (Wed, 17 Apr 2002) | 3 lines
Changed paths:
M /trunk/pop3-mainloop.c
M /trunk/pop3.h
M /trunk/pop3front-auth.c
M /trunk/pop3front-maildir.c
Allow for "sanitized" versions of some commands to be logged, for
example to strip passwords.
------------------------------------------------------------------------
r109 | bruce | 2002-04-17 20:03:43 -0600 (Wed, 17 Apr 2002) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/pop3-mainloop.c
M /trunk/pop3-response.c
M /trunk/pop3.h
Modified pop3front to log all commands, not just errors.
------------------------------------------------------------------------
r108 | bruce | 2002-02-12 22:56:11 -0600 (Tue, 12 Feb 2002) | 2 lines
Changed paths:
M /trunk/NEWS
Typo.
------------------------------------------------------------------------
r107 | bruce | 2002-02-12 22:41:15 -0600 (Tue, 12 Feb 2002) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/README
M /trunk/VERSION
un-bumped version number.
------------------------------------------------------------------------
r106 | bruce | 2002-02-12 22:23:01 -0600 (Tue, 12 Feb 2002) | 2 lines
Changed paths:
M /trunk/README.CVS
M /trunk/TODO
*** empty log message ***
------------------------------------------------------------------------
r105 | bruce | 2002-02-12 22:19:22 -0600 (Tue, 12 Feb 2002) | 2 lines
Changed paths:
M /trunk/pop3front-auth=x
M /trunk/smtpfront-echo=x
M /trunk/smtpfront-qmail=x
Replace use of "socket" library with the "net" library.
------------------------------------------------------------------------
r104 | bruce | 2002-02-12 21:03:07 -0600 (Tue, 12 Feb 2002) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/README
M /trunk/VERSION
*** empty log message ***
------------------------------------------------------------------------
r103 | bruce | 2002-02-12 21:01:33 -0600 (Tue, 12 Feb 2002) | 2 lines
Changed paths:
M /trunk/pop3front-auth.c
Log the username.
------------------------------------------------------------------------
r102 | bruce | 2002-02-12 20:11:16 -0600 (Tue, 12 Feb 2002) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/qmail-validate.c
Fixed one-off bug in badmailfrom handling.
------------------------------------------------------------------------
r101 | bruce | 2002-02-12 20:05:57 -0600 (Tue, 12 Feb 2002) | 3 lines
Changed paths:
D /trunk/log.c
D /trunk/log.h
M /trunk/mailfront.h
M /trunk/qmail-backend.c
M /trunk/smtp-commands.c
M /trunk/smtp-respond.c
M /trunk/smtpfront-echo=x
M /trunk/smtpfront-qmail=x
M /trunk/smtpfront-reject=x
Converted smtpfront to use the msg library, and dropped the custom log
functions.
------------------------------------------------------------------------
r100 | bruce | 2002-02-12 20:05:26 -0600 (Tue, 12 Feb 2002) | 2 lines
Changed paths:
M /trunk/NEWS
*** empty log message ***
------------------------------------------------------------------------
r99 | bruce | 2002-02-12 19:58:46 -0600 (Tue, 12 Feb 2002) | 3 lines
Changed paths:
A /trunk/iobytes.c
M /trunk/pop3=l
M /trunk/pop3front-maildir.c
M /trunk/smtp-mainloop.c
M /trunk/smtp=l
Moved the I/O byte reporting into a common module, and added the hook to
the SMTP front end.
------------------------------------------------------------------------
r98 | bruce | 2002-02-12 19:48:30 -0600 (Tue, 12 Feb 2002) | 2 lines
Changed paths:
M /trunk/tests.inc
*** empty log message ***
------------------------------------------------------------------------
r97 | bruce | 2002-02-12 19:48:18 -0600 (Tue, 12 Feb 2002) | 2 lines
Changed paths:
M /trunk/pop3front-maildir.c
Converted to using msg for errors.
------------------------------------------------------------------------
r96 | bruce | 2002-02-12 17:55:42 -0600 (Tue, 12 Feb 2002) | 2 lines
Changed paths:
M /trunk/TODO
*** empty log message ***
------------------------------------------------------------------------
r95 | bruce | 2002-02-12 17:55:24 -0600 (Tue, 12 Feb 2002) | 3 lines
Changed paths:
M /trunk/NEWS
M /trunk/pop3front-maildir.c
Added an exit hook to pop3front-maildir to print the number of bytes
input and output.
------------------------------------------------------------------------
r94 | bruce | 2002-02-06 18:25:49 -0600 (Wed, 06 Feb 2002) | 2 lines
Changed paths:
M /trunk/tests/pop3front-auth-userpass
A /trunk/tests/pop3front-maildir-flags
A /trunk/tests/pop3front-maildir-last
A /trunk/tests/pop3front-maildir-sort
A /trunk/tests/pop3front-maildir-state
M /trunk/tests.inc
Updated and added tests.
------------------------------------------------------------------------
r93 | bruce | 2002-02-01 17:30:06 -0600 (Fri, 01 Feb 2002) | 2 lines
Changed paths:
M /trunk/pop3front-maildir.c
Use strchr instead of scanning for flags by hand.
------------------------------------------------------------------------
r92 | bruce | 2002-02-01 17:27:38 -0600 (Fri, 01 Feb 2002) | 2 lines
Changed paths:
M /trunk/NEWS
*** empty log message ***
------------------------------------------------------------------------
r91 | bruce | 2002-02-01 17:26:55 -0600 (Fri, 01 Feb 2002) | 2 lines
Changed paths:
M /trunk/pop3front-maildir.c
Implemented the obsolete LAST command.
------------------------------------------------------------------------
r90 | bruce | 2002-02-01 17:07:18 -0600 (Fri, 01 Feb 2002) | 2 lines
Changed paths:
M /trunk/pop3front-maildir.c
Sort the messages in the maildir (by numerical value).
------------------------------------------------------------------------
r89 | bruce | 2002-02-01 04:08:13 -0600 (Fri, 01 Feb 2002) | 2 lines
Changed paths:
M /trunk/pop3front-maildir.c
Scan the messages for a "read" flag.
------------------------------------------------------------------------
r88 | bruce | 2002-02-01 04:01:13 -0600 (Fri, 01 Feb 2002) | 3 lines
Changed paths:
M /trunk/pop3front-maildir.c
Modified the flags handling to properly *add* instead of replacing the
flags.
------------------------------------------------------------------------
r87 | bruce | 2002-01-31 18:25:15 -0600 (Thu, 31 Jan 2002) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/pop3front-maildir.c
Properly tag read messages on QUIT.
------------------------------------------------------------------------
r86 | bruce | 2002-01-31 18:24:28 -0600 (Thu, 31 Jan 2002) | 2 lines
Changed paths:
M /trunk/README
M /trunk/VERSION
Bumped version number.
------------------------------------------------------------------------
r85 | bruce | 2002-01-11 18:54:40 -0600 (Fri, 11 Jan 2002) | 2 lines
Changed paths:
M /trunk/tests/pop3front-auth
M /trunk/tests/pop3front-auth-userpass
Fixed extra period.
------------------------------------------------------------------------
r84 | bruce | 2002-01-11 18:54:29 -0600 (Fri, 11 Jan 2002) | 2 lines
Changed paths:
M /trunk/README
Touched date.
------------------------------------------------------------------------
r83 | bruce | 2002-01-11 04:29:35 -0600 (Fri, 11 Jan 2002) | 3 lines
Changed paths:
M /trunk/pop3-mainloop.c
M /trunk/pop3front.html
M /trunk/smtp-mainloop.c
Added $TIMEOUT handling to the POP3 modules.
Minor adjustment to SMTP $TIMEOUT handling.
------------------------------------------------------------------------
r82 | bruce | 2002-01-11 04:28:02 -0600 (Fri, 11 Jan 2002) | 2 lines
Changed paths:
M /trunk/TODO
*** empty log message ***
------------------------------------------------------------------------
r81 | bruce | 2002-01-09 21:59:26 -0600 (Wed, 09 Jan 2002) | 3 lines
Changed paths:
M /trunk/NEWS
M /trunk/pop3front-maildir.c
DELE needed to add deleted messages to the appropriate counters so STAT
could account for the difference.
------------------------------------------------------------------------
r80 | bruce | 2001-12-28 00:31:52 -0600 (Fri, 28 Dec 2001) | 2 lines
Changed paths:
M /trunk/pop3front.html
Documented the MAX_CUR/NEW_MESSAGES options.
------------------------------------------------------------------------
r79 | bruce | 2001-12-28 00:25:07 -0600 (Fri, 28 Dec 2001) | 3 lines
Changed paths:
M /trunk/pop3front-maildir.c
Minor optimization: only update the count pointer after the loop is
complete.
------------------------------------------------------------------------
r78 | bruce | 2001-12-28 00:23:54 -0600 (Fri, 28 Dec 2001) | 3 lines
Changed paths:
M /trunk/pop3front-maildir.c
Add optional individual count limits on both the cur and new
subdirectories.
------------------------------------------------------------------------
r77 | bruce | 2001-12-27 22:32:41 -0600 (Thu, 27 Dec 2001) | 2 lines
Changed paths:
M /trunk/pop3front-auth=x
M /trunk/pop3front-maildir=x
Added missing msg/msg.a library.
------------------------------------------------------------------------
r76 | bruce | 2001-12-27 22:32:23 -0600 (Thu, 27 Dec 2001) | 2 lines
Changed paths:
M /trunk/pop3-response.c
Output all error responses to the logs.
------------------------------------------------------------------------
r75 | bruce | 2001-12-24 05:38:59 -0600 (Mon, 24 Dec 2001) | 5 lines
Changed paths:
M /trunk/pop3front-maildir.c
Fixed two message corruption bugs in dump_msg:
- periods at the start of a line weren't escaped and
- if the line after the last requested line of the body spanned buffers,
the first part of it would be written.
------------------------------------------------------------------------
r74 | bruce | 2001-12-23 05:53:24 -0600 (Sun, 23 Dec 2001) | 2 lines
Changed paths:
M /trunk/pop3-mainloop.c
Added timeout option.
------------------------------------------------------------------------
r73 | bruce | 2001-12-23 05:52:52 -0600 (Sun, 23 Dec 2001) | 2 lines
Changed paths:
M /trunk/pop3front-auth.c
Fixed some response strings, added program string.
------------------------------------------------------------------------
r72 | bruce | 2001-12-23 05:52:26 -0600 (Sun, 23 Dec 2001) | 2 lines
Changed paths:
M /trunk/pop3front-maildir.c
Fixed some debug strings, add program string.
------------------------------------------------------------------------
r71 | bruce | 2001-12-17 04:35:01 -0600 (Mon, 17 Dec 2001) | 2 lines
Changed paths:
A /trunk/COPYING
M /trunk/README
M /trunk/TODO
M /trunk/VERSION
*** empty log message ***
------------------------------------------------------------------------
r70 | bruce | 2001-12-17 04:30:55 -0600 (Mon, 17 Dec 2001) | 2 lines
Changed paths:
A /trunk/spec
Added missing spec file.
------------------------------------------------------------------------
r69 | bruce | 2001-11-22 23:13:54 -0600 (Thu, 22 Nov 2001) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/pop3front-maildir.c
M /trunk/pop3front.html
Added a maximum accessable message count option.
------------------------------------------------------------------------
r68 | bruce | 2001-10-18 23:20:17 -0600 (Thu, 18 Oct 2001) | 2 lines
Changed paths:
M /trunk/pop3front-maildir=x
This module doesn't need CVM, so don't link against it.
------------------------------------------------------------------------
r67 | bruce | 2001-10-18 23:19:57 -0600 (Thu, 18 Oct 2001) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/pop3front-auth=x
M /trunk/smtpfront-echo=x
M /trunk/smtpfront-qmail=x
Added missing socket.lib linker option.
------------------------------------------------------------------------
r66 | bruce | 2001-10-18 23:13:41 -0600 (Thu, 18 Oct 2001) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/README
M /trunk/VERSION
Bumped up the version number.
------------------------------------------------------------------------
r65 | bruce | 2001-10-17 22:30:12 -0600 (Wed, 17 Oct 2001) | 2 lines
Changed paths:
M /trunk/insthier.c
Added pop3front-* programs.
------------------------------------------------------------------------
r64 | bruce | 2001-09-21 21:35:17 -0600 (Fri, 21 Sep 2001) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/TODO
*** empty log message ***
------------------------------------------------------------------------
r63 | bruce | 2001-09-21 18:33:35 -0600 (Fri, 21 Sep 2001) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/README
*** empty log message ***
------------------------------------------------------------------------
r62 | bruce | 2001-09-21 18:32:13 -0600 (Fri, 21 Sep 2001) | 3 lines
Changed paths:
M /trunk/smtp-commands.c
Log the MAIL and RCPT parameters always, not just when they are
accepted by handle_sender and handle_recipient.
------------------------------------------------------------------------
r61 | bruce | 2001-09-14 22:32:27 -0600 (Fri, 14 Sep 2001) | 2 lines
Changed paths:
A /trunk/tests/pop3front-auth
M /trunk/tests/smtpfront-auth-plain
More testing...
------------------------------------------------------------------------
r60 | bruce | 2001-09-14 21:31:50 -0600 (Fri, 14 Sep 2001) | 2 lines
Changed paths:
A /trunk/tests
A /trunk/tests/pop3front-auth-login
A /trunk/tests/pop3front-auth-plain
A /trunk/tests/pop3front-auth-userpass
A /trunk/tests/smtpfront-auth-login
A /trunk/tests/smtpfront-auth-plain
A /trunk/tests.inc
Added tests of the auth mechanisms.
------------------------------------------------------------------------
r59 | bruce | 2001-09-14 21:31:37 -0600 (Fri, 14 Sep 2001) | 2 lines
Changed paths:
M /trunk/NEWS
*** empty log message ***
------------------------------------------------------------------------
r58 | bruce | 2001-09-14 21:31:30 -0600 (Fri, 14 Sep 2001) | 2 lines
Changed paths:
M /trunk/sasl-auth.c
Abort the authentication if the response string starts with '*'.
------------------------------------------------------------------------
r57 | bruce | 2001-09-14 21:31:06 -0600 (Fri, 14 Sep 2001) | 2 lines
Changed paths:
M /trunk/sasl-auth.c
Properly skip spaces after the mechanism name.
------------------------------------------------------------------------
r56 | bruce | 2001-09-14 21:29:56 -0600 (Fri, 14 Sep 2001) | 3 lines
Changed paths:
M /trunk/smtp-commands.c
Log the sender and recipient addresses.
Provide a success response when authentication succeeds.
------------------------------------------------------------------------
r55 | bruce | 2001-09-14 21:29:15 -0600 (Fri, 14 Sep 2001) | 2 lines
Changed paths:
M /trunk/mailfront.h
M /trunk/smtp.h
Moved several SMTP specific function declarations into smtp.h
------------------------------------------------------------------------
r54 | bruce | 2001-09-14 21:28:49 -0600 (Fri, 14 Sep 2001) | 2 lines
Changed paths:
M /trunk/smtp-respond.c
Use the more efficient putsflush(CRLF) form.
------------------------------------------------------------------------
r53 | bruce | 2001-09-14 05:47:04 -0600 (Fri, 14 Sep 2001) | 2 lines
Changed paths:
M /trunk/README
M /trunk/TODO
M /trunk/VERSION
*** empty log message ***
------------------------------------------------------------------------
r52 | bruce | 2001-09-14 05:45:26 -0600 (Fri, 14 Sep 2001) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/qmail-validate.c
Lowercase domain names before comparing them.
------------------------------------------------------------------------
r51 | bruce | 2001-09-13 00:03:25 -0600 (Thu, 13 Sep 2001) | 2 lines
Changed paths:
M /trunk/README
M /trunk/pop3front-auth=x
M /trunk/pop3front-maildir=x
A /trunk/pop3front.html
M /trunk/smtpfront-echo=x
M /trunk/smtpfront-qmail=x
*** empty log message ***
------------------------------------------------------------------------
r50 | bruce | 2001-09-09 05:35:20 -0600 (Sun, 09 Sep 2001) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/TODO
*** empty log message ***
------------------------------------------------------------------------
r49 | bruce | 2001-09-09 05:29:22 -0600 (Sun, 09 Sep 2001) | 2 lines
Changed paths:
M /trunk/pop3front-maildir.c
Added support for TOP command.
------------------------------------------------------------------------
r48 | bruce | 2001-09-09 05:29:00 -0600 (Sun, 09 Sep 2001) | 2 lines
Changed paths:
M /trunk/pop3front-auth.c
M /trunk/pop3front-auth=x
Added support for the AUTH command.
------------------------------------------------------------------------
r47 | bruce | 2001-09-09 05:28:36 -0600 (Sun, 09 Sep 2001) | 2 lines
Changed paths:
M /trunk/mailfront.html
*** empty log message ***
------------------------------------------------------------------------
r46 | bruce | 2001-09-09 05:28:21 -0600 (Sun, 09 Sep 2001) | 2 lines
Changed paths:
A /trunk/sasl-auth.c
A /trunk/sasl-auth.h
A /trunk/sasl-stub.c
D /trunk/smtp-auth-stub.c
D /trunk/smtp-auth.c
M /trunk/smtp-commands.c
M /trunk/smtp-mainloop.c
M /trunk/smtp.h
M /trunk/smtpfront-echo=x
M /trunk/smtpfront-qmail=x
M /trunk/smtpfront-reject=x
Moved the SMTP specific SASL AUTH code to a new more generic module.
------------------------------------------------------------------------
r45 | bruce | 2001-09-09 05:26:07 -0600 (Sun, 09 Sep 2001) | 2 lines
Changed paths:
M /trunk/pop3-response.c
Use new CRLF constant.
------------------------------------------------------------------------
r44 | bruce | 2001-09-09 05:25:17 -0600 (Sun, 09 Sep 2001) | 2 lines
Changed paths:
A /trunk/constants.h
M /trunk/mailfront.h
M /trunk/pop3.h
M /trunk/smtp.h
Moved a bunch of the character constants into a seperate module.
------------------------------------------------------------------------
r43 | bruce | 2001-09-07 18:13:51 -0600 (Fri, 07 Sep 2001) | 2 lines
Changed paths:
M /trunk/NEWS
*** empty log message ***
------------------------------------------------------------------------
r42 | bruce | 2001-09-07 06:41:57 -0600 (Fri, 07 Sep 2001) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/README
M /trunk/TODO
A /trunk/VERSION
*** empty log message ***
------------------------------------------------------------------------
r41 | bruce | 2001-09-07 06:40:17 -0600 (Fri, 07 Sep 2001) | 2 lines
Changed paths:
M /trunk/smtp-auth.c
Revised to use new cvm-sasl structure.
------------------------------------------------------------------------
r40 | bruce | 2001-09-07 06:39:44 -0600 (Fri, 07 Sep 2001) | 2 lines
Changed paths:
M /trunk/smtp-mainloop.c
Use ibuf_getstr_crlf in favour of smtp_get_line.
------------------------------------------------------------------------
r39 | bruce | 2001-09-07 06:39:26 -0600 (Fri, 07 Sep 2001) | 3 lines
Changed paths:
M /trunk/smtp.h
Redefined the character macros to add type.
Use the new ibuf_getstr_crlf function.
------------------------------------------------------------------------
r38 | bruce | 2001-09-07 06:34:32 -0600 (Fri, 07 Sep 2001) | 2 lines
Changed paths:
A /trunk/pop3=l
*** empty log message ***
------------------------------------------------------------------------
r37 | bruce | 2001-09-07 06:34:11 -0600 (Fri, 07 Sep 2001) | 2 lines
Changed paths:
A /trunk/pop3-mainloop.c
A /trunk/pop3-response.c
A /trunk/pop3.h
A /trunk/pop3front-auth.c
A /trunk/pop3front-auth=x
A /trunk/pop3front-maildir.c
A /trunk/pop3front-maildir=x
Added a new POP3 server pair.
------------------------------------------------------------------------
r36 | bruce | 2001-08-24 20:53:06 -0600 (Fri, 24 Aug 2001) | 2 lines
Changed paths:
M /trunk/smtpfront.html
Added (temporary) link for cvm-sasl.html.
------------------------------------------------------------------------
r35 | bruce | 2001-08-24 20:37:13 -0600 (Fri, 24 Aug 2001) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/README
M /trunk/TODO
*** empty log message ***
------------------------------------------------------------------------
r34 | bruce | 2001-08-24 20:34:12 -0600 (Fri, 24 Aug 2001) | 2 lines
Changed paths:
M /trunk/smtpfront.html
Noted use of SMTP AUTH.
------------------------------------------------------------------------
r33 | bruce | 2001-08-10 22:05:38 -0600 (Fri, 10 Aug 2001) | 2 lines
Changed paths:
M /trunk/NEWS
M /trunk/TODO
*** empty log message ***
------------------------------------------------------------------------
r32 | bruce | 2001-08-10 20:05:57 -0600 (Fri, 10 Aug 2001) | 2 lines
Changed paths:
M /trunk/smtp-respond.c
Renamed NL to LF.
------------------------------------------------------------------------
r31 | bruce | 2001-08-10 20:05:43 -0600 (Fri, 10 Aug 2001) | 2 lines
Changed paths:
M /trunk/README.CVS
M /trunk/TODO
M /trunk/mailfront.html
*** empty log message ***
------------------------------------------------------------------------
r30 | bruce | 2001-08-10 20:05:26 -0600 (Fri, 10 Aug 2001) | 2 lines
Changed paths:
M /trunk/mailfront.h
Added an "authenticated" state variable.
------------------------------------------------------------------------
r29 | bruce | 2001-08-10 20:02:44 -0600 (Fri, 10 Aug 2001) | 2 lines
Changed paths:
M /trunk/smtpfront-qmail.c
Allow authenticated sessions to relay.
------------------------------------------------------------------------
r28 | bruce | 2001-08-10 20:02:08 -0600 (Fri, 10 Aug 2001) | 2 lines
Changed paths:
M /trunk/smtp-commands.c
M /trunk/smtp-mainloop.c
M /trunk/smtp.h
Added hooks for SMTP AUTH.
------------------------------------------------------------------------
r27 | bruce | 2001-08-10 20:01:55 -0600 (Fri, 10 Aug 2001) | 2 lines
Changed paths:
M /trunk/smtpfront-echo=x
M /trunk/smtpfront-qmail=x
Link against the full SMTP AUTH implementation.
------------------------------------------------------------------------
r26 | bruce | 2001-08-10 20:01:38 -0600 (Fri, 10 Aug 2001) | 2 lines
Changed paths:
M /trunk/smtpfront-reject=x
Link against the SMTP AUTH stubs.
------------------------------------------------------------------------
r25 | bruce | 2001-08-10 20:01:11 -0600 (Fri, 10 Aug 2001) | 2 lines
Changed paths:
A /trunk/smtp-auth-stub.c
First check-in of the dummy SMTP AUTH stub functions.
------------------------------------------------------------------------
r24 | bruce | 2001-08-10 20:00:56 -0600 (Fri, 10 Aug 2001) | 2 lines
Changed paths:
A /trunk/smtp-auth.c
First check-in of the main SMTP AUTH support module.
------------------------------------------------------------------------
r23 | bruce | 2001-08-10 19:54:02 -0600 (Fri, 10 Aug 2001) | 2 lines
Changed paths:
M /trunk/qmail-validate.c
Use the new dict_load_list to load the dictionaries.
------------------------------------------------------------------------
r22 | bruce | 2001-08-08 20:12:37 -0600 (Wed, 08 Aug 2001) | 2 lines
Changed paths:
M /trunk/smtpfront-echo=x
M /trunk/smtpfront-qmail=x
M /trunk/smtpfront-reject=x
Added missing iopoll.o object.
------------------------------------------------------------------------
r21 | bruce | 2001-08-08 20:11:15 -0600 (Wed, 08 Aug 2001) | 2 lines
Changed paths:
M /trunk/README
*** empty log message ***
------------------------------------------------------------------------
r20 | bruce | 2001-08-08 20:05:02 -0600 (Wed, 08 Aug 2001) | 2 lines
Changed paths:
A /trunk/makedist.py
Added distribution file.
------------------------------------------------------------------------
r19 | bruce | 2001-08-08 20:04:54 -0600 (Wed, 08 Aug 2001) | 2 lines
Changed paths:
A /trunk/NEWS
A /trunk/README
A /trunk/README.CVS
A /trunk/mailfront.html
A /trunk/qmail-backend.html
A /trunk/qmail-validate.html
A /trunk/smtpfront.html
Added documentation.
------------------------------------------------------------------------
r18 | bruce | 2001-08-08 20:04:36 -0600 (Wed, 08 Aug 2001) | 2 lines
Changed paths:
M /trunk/insthier.c
*** empty log message ***
------------------------------------------------------------------------
r17 | bruce | 2001-08-08 20:01:53 -0600 (Wed, 08 Aug 2001) | 2 lines
Changed paths:
D /trunk/architecture.txt
D /trunk/features.txt
Translated into the HTML documentation and removed.
------------------------------------------------------------------------
r16 | bruce | 2001-08-08 19:59:02 -0600 (Wed, 08 Aug 2001) | 2 lines
Changed paths:
M /trunk/TODO
*** empty log message ***
------------------------------------------------------------------------
r15 | bruce | 2001-08-08 19:58:49 -0600 (Wed, 08 Aug 2001) | 2 lines
Changed paths:
A /trunk/smtpfront-echo.c
A /trunk/smtpfront-echo=x
D /trunk/smtpfront-test.c
D /trunk/smtpfront-test=x
Renamed smtpfront-test to smtpfront-echo.
------------------------------------------------------------------------
r14 | bruce | 2001-08-07 23:19:39 -0600 (Tue, 07 Aug 2001) | 2 lines
Changed paths:
M /trunk/features.txt
M /trunk/smtp-commands.c
Handle RFC 1869 extended RCPT TO: and MAIL FROM: parameters.
------------------------------------------------------------------------
r13 | bruce | 2001-08-07 23:18:36 -0600 (Tue, 07 Aug 2001) | 2 lines
Changed paths:
M /trunk/insthier.c
Adapted to new insthier framework.
------------------------------------------------------------------------
r12 | bruce | 2001-08-07 22:48:17 -0600 (Tue, 07 Aug 2001) | 2 lines
Changed paths:
M /trunk/features.txt
Added badrcptto handling to the qmail backend.
------------------------------------------------------------------------
r11 | bruce | 2001-08-07 22:47:31 -0600 (Tue, 07 Aug 2001) | 2 lines
Changed paths:
M /trunk/qmail-validate.c
Added badrcptto handling.
------------------------------------------------------------------------
r10 | bruce | 2001-08-07 22:47:09 -0600 (Tue, 07 Aug 2001) | 2 lines
Changed paths:
M /trunk/smtpfront-reject.c
Added a missing include.
------------------------------------------------------------------------
r9 | bruce | 2001-08-03 23:16:22 -0600 (Fri, 03 Aug 2001) | 2 lines
Changed paths:
M /trunk/smtpfront-qmail.c
M /trunk/smtpfront-test.c
Fixed up the program names.
------------------------------------------------------------------------
r8 | bruce | 2001-08-03 23:16:12 -0600 (Fri, 03 Aug 2001) | 2 lines
Changed paths:
M /trunk/qmail-validate.c
Renamed an internal function.
------------------------------------------------------------------------
r7 | bruce | 2001-08-03 23:15:42 -0600 (Fri, 03 Aug 2001) | 2 lines
Changed paths:
A /trunk/smtpfront-reject.c
A /trunk/smtpfront-reject=x
Added a simple reject-everything server.
------------------------------------------------------------------------
r6 | bruce | 2001-08-03 23:15:12 -0600 (Fri, 03 Aug 2001) | 2 lines
Changed paths:
D /trunk/smtpfront-qmail-er.c
D /trunk/smtpfront-qmail-er=x
Removed this FutureQuest internal program.
------------------------------------------------------------------------
r5 | bruce | 2001-06-15 21:25:12 -0600 (Fri, 15 Jun 2001) | 2 lines
Changed paths:
M /trunk/qmail-validate.c
M /trunk/smtpfront-qmail-er=x
M /trunk/smtpfront-qmail=x
Added support for verifying addresses against control/morercpthosts.cdb.
------------------------------------------------------------------------
r4 | bruce | 2001-06-15 21:24:48 -0600 (Fri, 15 Jun 2001) | 3 lines
Changed paths:
M /trunk/smtp-commands.c
Totally rewrote the DATA command to handle the message content in fixed
space (as opposed to allocated space for each line).
------------------------------------------------------------------------
r3 | bruce | 2001-06-15 21:23:52 -0600 (Fri, 15 Jun 2001) | 2 lines
Changed paths:
M /trunk/smtp-mainloop.c
M /trunk/smtp.h
Renamed databytes to maxdatabytes.
------------------------------------------------------------------------
r2 | bruce | 2001-06-15 21:23:16 -0600 (Fri, 15 Jun 2001) | 2 lines
Changed paths:
M /trunk/TODO
M /trunk/features.txt
*** empty log message ***
------------------------------------------------------------------------
r1 | bruce | 2001-06-15 19:33:05 -0600 (Fri, 15 Jun 2001) | 2 lines
Changed paths:
A /trunk
A /trunk/TODO
A /trunk/architecture.txt
A /trunk/echo-backend.c
A /trunk/features.txt
A /trunk/insthier.c
A /trunk/log.c
A /trunk/log.h
A /trunk/mailfront.h
A /trunk/qmail-backend.c
A /trunk/qmail-validate.c
A /trunk/qmail.h
A /trunk/qmail=l
A /trunk/responses.c
A /trunk/responses.h
A /trunk/smtp-commands.c
A /trunk/smtp-mainloop.c
A /trunk/smtp-respond.c
A /trunk/smtp.h
A /trunk/smtp=l
A /trunk/smtpfront-qmail-er.c
A /trunk/smtpfront-qmail-er=x
A /trunk/smtpfront-qmail.c
A /trunk/smtpfront-qmail=x
A /trunk/smtpfront-test.c
A /trunk/smtpfront-test=x
Initial revision
------------------------------------------------------------------------
|