1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881
|
;;; VM folder related functions
;;; Copyright (C) 1989-1998 Kyle E. Jones
;;;
;;; This program is free software; you can redistribute it and/or modify
;;; it under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 1, or (at your option)
;;; any later version.
;;;
;;; This program is distributed in the hope that it will be useful,
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with this program; if not, write to the Free Software
;;; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
(provide 'vm-folder)
(defun vm-number-messages (&optional start-point end-point)
"Set the number-of and padded-number-of slots of messages
in vm-message-list.
If non-nil, START-POINT should point to a cons cell in
vm-message-list and the numbering will begin there, else the
numbering will begin at the head of vm-message-list. If
START-POINT is non-nil the reverse-link-of slot of the message in
the cons must be valid and the message pointed to (if any) must
have a non-nil number-of slot, because it is used to determine
what the starting message number should be.
If non-nil, END-POINT should point to a cons cell in
vm-message-list and the numbering will end with the message just
before this cell. A nil value means numbering will be done until
the end of vm-message-list is reached."
(let ((n 1) (message-list (or start-point vm-message-list)))
(if (and start-point (vm-reverse-link-of (car start-point)))
(setq n (1+ (string-to-int
(vm-number-of
(car
(vm-reverse-link-of
(car start-point))))))))
(while (not (eq message-list end-point))
(vm-set-number-of (car message-list) (int-to-string n))
(vm-set-padded-number-of (car message-list) (format "%3d" n))
(setq n (1+ n) message-list (cdr message-list)))
(or end-point (setq vm-ml-highest-message-number (int-to-string (1- n))))
(if vm-summary-buffer
(vm-copy-local-variables vm-summary-buffer
'vm-ml-highest-message-number))))
(defun vm-set-numbering-redo-start-point (start-point)
"Set vm-numbering-redo-start-point to START-POINT if appropriate.
Also mark the current buffer as needing a display update.
START-POINT should be a cons in vm-message-list or just t.
(t means start from the beginning of vm-message-list.)
If START-POINT is closer to the head of vm-message-list than
vm-numbering-redo-start-point or is equal to t, then
vm-numbering-redo-start-point is set to match it."
(intern (buffer-name) vm-buffers-needing-display-update)
(if (eq vm-numbering-redo-start-point t)
nil
(if (and (consp start-point) (consp vm-numbering-redo-start-point))
(let ((mp vm-message-list))
(while (and mp (not (or (eq mp start-point)
(eq mp vm-numbering-redo-start-point))))
(setq mp (cdr mp)))
(if (null mp)
(error "Something is wrong in vm-set-numbering-redo-start-point"))
(if (eq mp start-point)
(setq vm-numbering-redo-start-point start-point)))
(setq vm-numbering-redo-start-point start-point))))
(defun vm-set-numbering-redo-end-point (end-point)
"Set vm-numbering-redo-end-point to END-POINT if appropriate.
Also mark the current buffer as needing a display update.
END-POINT should be a cons in vm-message-list or just t.
(t means number all the way to the end of vm-message-list.)
If END-POINT is closer to the end of vm-message-list or is equal
to t, then vm-numbering-redo-start-point is set to match it.
The number-of slot is used to determine proximity to the end of
vm-message-list, so this slot must be valid in END-POINT's message
and the message in the cons pointed to by vm-numbering-redo-end-point."
(intern (buffer-name) vm-buffers-needing-display-update)
(cond ((eq end-point t)
(setq vm-numbering-redo-end-point t))
((and (consp end-point)
(> (string-to-int
(vm-number-of
(car end-point)))
(string-to-int
(vm-number-of
(car vm-numbering-redo-end-point)))))
(setq vm-numbering-redo-end-point end-point))
((null end-point)
(setq vm-numbering-redo-end-point end-point))))
(defun vm-do-needed-renumbering ()
"Number messages in vm-message-list as specified by
vm-numbering-redo-start-point and vm-numbering-redo-end-point.
vm-numbering-redo-start-point = t means start at the head
of vm-message-list.
vm-numbering-redo-end-point = t means number all the way to the
end of vm-message-list.
Otherwise the variables' values should be conses in vm-message-list
or nil."
(if vm-numbering-redo-start-point
(progn
(vm-number-messages (and (consp vm-numbering-redo-start-point)
vm-numbering-redo-start-point)
vm-numbering-redo-end-point)
(setq vm-numbering-redo-start-point nil
vm-numbering-redo-end-point nil))))
(defun vm-set-summary-redo-start-point (start-point)
"Set vm-summary-redo-start-point to START-POINT if appropriate.
Also mark the current buffer as needing a display update.
START-POINT should be a cons in vm-message-list or just t.
(t means start from the beginning of vm-message-list.)
If START-POINT is closer to the head of vm-message-list than
vm-summary-redo-start-point or is equal to t, then
vm-summary-redo-start-point is set to match it."
(intern (buffer-name) vm-buffers-needing-display-update)
(if (eq vm-summary-redo-start-point t)
nil
(if (and (consp start-point) (consp vm-summary-redo-start-point))
(let ((mp vm-message-list))
(while (and mp (not (or (eq mp start-point)
(eq mp vm-summary-redo-start-point))))
(setq mp (cdr mp)))
(if (null mp)
(error "Something is wrong in vm-set-summary-redo-start-point"))
(if (eq mp start-point)
(setq vm-summary-redo-start-point start-point)))
(setq vm-summary-redo-start-point start-point))))
(defun vm-mark-for-summary-update (m &optional dont-kill-cache)
"Mark message M for a summary update.
Also mark M's buffer as needing a display update. Any virtual
messages of M and their buffers are similarly marked for update.
If M is a virtual message and virtual mirroring is in effect for
M (i.e. attribute-of eq attributes-of M's real message), M's real
message and its buffer are scheduled for an update.
Optional arg DONT-KILL-CACHE non-nil means don't invalidate the
summary-of slot for any messages marked for update. This is
meant to be used by functions that update message information
that is not cached in the summary-of slot, e.g. message numbers
and thread indentation."
(cond ((eq m (vm-real-message-of m))
;; this is a real message.
;; its summary and modeline need to be updated.
(if (not dont-kill-cache)
;; toss the cache. this also tosses the cache of any
;; virtual messages mirroring this message. the summary
;; entry cache must be cleared when an attribute of a
;; message that could appear in the summary has changed.
(vm-set-summary-of m nil))
(if (vm-su-start-of m)
(setq vm-messages-needing-summary-update
(cons m vm-messages-needing-summary-update)))
(intern (buffer-name (vm-buffer-of m))
vm-buffers-needing-display-update)
;; find the virtual messages of this real message that
;; need a summary update.
(let ((m-list (vm-virtual-messages-of m)))
(while m-list
(if (eq (vm-attributes-of m) (vm-attributes-of (car m-list)))
(progn
(and (vm-su-start-of (car m-list))
(setq vm-messages-needing-summary-update
(cons (car m-list)
vm-messages-needing-summary-update)))
(intern (buffer-name (vm-buffer-of (car m-list)))
vm-buffers-needing-display-update)))
(setq m-list (cdr m-list)))))
(t
;; this is a virtual message.
;;
;; if this message has virtual messages then we need to
;; schedule updates for all the virtual messages that
;; share a cache with this message and we need to
;; schedule an update for the underlying real message
;; since we are mirroring it.
;;
;; if there are no virtual messages, then this virtual
;; message is not mirroring its real message so we need
;; only take care of this one message.
(if (vm-virtual-messages-of m)
(let ((m-list (vm-virtual-messages-of m)))
;; schedule updates for all the virtual message who share
;; the same cache as this message.
(while m-list
(if (eq (vm-attributes-of m) (vm-attributes-of (car m-list)))
(progn
(and (vm-su-start-of (car m-list))
(setq vm-messages-needing-summary-update
(cons (car m-list)
vm-messages-needing-summary-update)))
(intern (buffer-name (vm-buffer-of (car m-list)))
vm-buffers-needing-display-update)))
(setq m-list (cdr m-list)))
;; now take care of the real message
(if (not dont-kill-cache)
;; toss the cache. this also tosses the cache of
;; any virtual messages sharing the same cache as
;; this message.
(vm-set-summary-of m nil))
(and (vm-su-start-of (vm-real-message-of m))
(setq vm-messages-needing-summary-update
(cons (vm-real-message-of m)
vm-messages-needing-summary-update)))
(intern (buffer-name (vm-buffer-of (vm-real-message-of m)))
vm-buffers-needing-display-update))
(if (not dont-kill-cache)
(vm-set-virtual-summary-of m nil))
(and (vm-su-start-of m)
(setq vm-messages-needing-summary-update
(cons m vm-messages-needing-summary-update)))
(intern (buffer-name (vm-buffer-of m))
vm-buffers-needing-display-update)))))
(defun vm-force-mode-line-update ()
"Force a mode line update in all frames."
(if (fboundp 'force-mode-line-update)
(force-mode-line-update t)
(save-excursion
(set-buffer (other-buffer))
(set-buffer-modified-p (buffer-modified-p)))))
(defun vm-do-needed-mode-line-update ()
"Do a modeline update for the current folder buffer.
This means setting up all the various vm-ml attribute variables
in the folder buffer and copying necessary variables to the
folder buffer's summary and presentation buffers, and then
forcing Emacs to update all modelines.
If a virtual folder being updated has no messages, then
erase-buffer is called on its buffer.
If any type of folder is empty, erase-buffer is called
on its presentation buffer, if any."
;; XXX This last bit should probably should be moved to
;; XXX vm-expunge-folder.
(if (null vm-message-pointer)
(progn
;; erase the leftover message if the folder is really empty.
(if (eq major-mode 'vm-virtual-mode)
(let ((buffer-read-only nil)
(omodified (buffer-modified-p)))
(unwind-protect
(erase-buffer)
(set-buffer-modified-p omodified))))
(if vm-presentation-buffer
(let ((omodified (buffer-modified-p)))
(unwind-protect
(save-excursion
(set-buffer vm-presentation-buffer)
(let ((buffer-read-only nil))
(erase-buffer)))
(set-buffer-modified-p omodified)))))
;; try to avoid calling vm-su-labels if possible so as to
;; avoid loading vm-summary.el.
(if (vm-labels-of (car vm-message-pointer))
(setq vm-ml-labels (vm-su-labels (car vm-message-pointer)))
(setq vm-ml-labels nil))
(setq vm-ml-message-number (vm-number-of (car vm-message-pointer)))
(setq vm-ml-message-new (vm-new-flag (car vm-message-pointer)))
(setq vm-ml-message-unread (vm-unread-flag (car vm-message-pointer)))
(setq vm-ml-message-read
(and (not (vm-new-flag (car vm-message-pointer)))
(not (vm-unread-flag (car vm-message-pointer)))))
(setq vm-ml-message-edited (vm-edited-flag (car vm-message-pointer)))
(setq vm-ml-message-filed (vm-filed-flag (car vm-message-pointer)))
(setq vm-ml-message-written (vm-written-flag (car vm-message-pointer)))
(setq vm-ml-message-replied (vm-replied-flag (car vm-message-pointer)))
(setq vm-ml-message-forwarded (vm-forwarded-flag (car vm-message-pointer)))
(setq vm-ml-message-redistributed (vm-redistributed-flag (car vm-message-pointer)))
(setq vm-ml-message-deleted (vm-deleted-flag (car vm-message-pointer)))
(setq vm-ml-message-marked (vm-mark-of (car vm-message-pointer))))
(if vm-summary-buffer
(let ((modified (buffer-modified-p)))
(save-excursion
(vm-copy-local-variables vm-summary-buffer
'default-directory
'vm-ml-message-new
'vm-ml-message-unread
'vm-ml-message-read
'vm-ml-message-edited
'vm-ml-message-replied
'vm-ml-message-forwarded
'vm-ml-message-filed
'vm-ml-message-written
'vm-ml-message-deleted
'vm-ml-message-marked
'vm-ml-message-number
'vm-ml-highest-message-number
'vm-folder-read-only
'vm-folder-type
'vm-virtual-folder-definition
'vm-virtual-mirror
'vm-ml-sort-keys
'vm-ml-labels
'vm-spooled-mail-waiting
'vm-message-list)
(set-buffer vm-summary-buffer)
(set-buffer-modified-p modified))))
(if vm-presentation-buffer
(let ((modified (buffer-modified-p)))
(save-excursion
(vm-copy-local-variables vm-presentation-buffer
'default-directory
'vm-ml-message-new
'vm-ml-message-unread
'vm-ml-message-read
'vm-ml-message-edited
'vm-ml-message-replied
'vm-ml-message-forwarded
'vm-ml-message-filed
'vm-ml-message-written
'vm-ml-message-deleted
'vm-ml-message-marked
'vm-ml-message-number
'vm-ml-highest-message-number
'vm-folder-read-only
'vm-folder-type
'vm-virtual-folder-definition
'vm-virtual-mirror
'vm-ml-labels
'vm-spooled-mail-waiting
'vm-message-list)
(set-buffer vm-presentation-buffer)
(set-buffer-modified-p modified))))
(vm-force-mode-line-update))
(defun vm-update-summary-and-mode-line ()
"Update summary and mode line for all VM folder and summary buffers.
Really this updates all the visible status indicators.
Message lists are renumbered.
Summary entries are wiped and regenerated.
Mode lines are updated.
Toolbars are updated."
(save-excursion
(mapatoms (function
(lambda (b)
(setq b (get-buffer (symbol-name b)))
(if b
(progn
(set-buffer b)
(vm-check-for-killed-summary)
(and vm-use-toolbar
(vm-toolbar-support-possible-p)
(vm-toolbar-update-toolbar))
(vm-do-needed-renumbering)
(if vm-summary-buffer
(vm-do-needed-summary-rebuild))
(vm-do-needed-mode-line-update)))))
vm-buffers-needing-display-update)
(fillarray vm-buffers-needing-display-update 0))
(if vm-messages-needing-summary-update
(progn
(mapcar (function vm-update-message-summary)
vm-messages-needing-summary-update)
(setq vm-messages-needing-summary-update nil)))
(vm-force-mode-line-update))
(defun vm-reverse-link-messages ()
"Set reverse links for all messages in vm-message-list."
(let ((mp vm-message-list)
(prev nil))
(while mp
(vm-set-reverse-link-of (car mp) prev)
(setq prev mp mp (cdr mp)))))
(defun vm-match-ordered-header (alist)
"Try to match a header in ALIST and return the matching cell.
This is used by header ordering code.
ALIST looks like this ((\"From\") (\"To\")). This function returns
the alist element whose car matches the header starting at point.
The header ordering code uses the cdr of the element
returned to hold headers to be output later."
(let ((case-fold-search t))
(catch 'match
(while alist
(if (looking-at (car (car alist)))
(throw 'match (car alist)))
(setq alist (cdr alist)))
nil)))
(defun vm-match-header (&optional header-name)
"Match a header and save some state information about the matched header.
Optional first arg HEADER-NAME means match the header only
if it matches HEADER-NAME. HEADER-NAME should be a string
containing a header name. The string should end with a colon if just
that name should be matched. A string that does not end in a colon
will match all headers that begin with that string.
State information is stored in vm-matched-header-vector bound to a vector
of this form.
[ header-start header-end
header-name-start header-name-end
header-contents-start header-contents-end ]
Elements are integers.
There are functions to access and use this info."
(let ((case-fold-search t)
(header-name-regexp "\\([^ \t\n:]+\\):"))
(if (if header-name
(and (looking-at header-name) (looking-at header-name-regexp))
(looking-at header-name-regexp))
(save-excursion
(aset vm-matched-header-vector 0 (point))
(aset vm-matched-header-vector 2 (point))
(aset vm-matched-header-vector 3 (match-end 1))
(goto-char (match-end 0))
;; skip leading whitespace
(skip-chars-forward " \t")
(aset vm-matched-header-vector 4 (point))
(forward-line 1)
(while (looking-at "[ \t]")
(forward-line 1))
(aset vm-matched-header-vector 1 (point))
;; drop the trailing newline
(aset vm-matched-header-vector 5 (1- (point)))))))
(defun vm-matched-header ()
"Returns the header last matched by vm-match-header.
Trailing newline is included."
(vm-buffer-substring-no-properties (aref vm-matched-header-vector 0)
(aref vm-matched-header-vector 1)))
(defun vm-matched-header-name ()
"Returns the name of the header last matched by vm-match-header."
(vm-buffer-substring-no-properties (aref vm-matched-header-vector 2)
(aref vm-matched-header-vector 3)))
(defun vm-matched-header-contents ()
"Returns the contents of the header last matched by vm-match-header.
Trailing newline is not included."
(vm-buffer-substring-no-properties (aref vm-matched-header-vector 4)
(aref vm-matched-header-vector 5)))
(defun vm-matched-header-start ()
"Returns the start position of the header last matched by vm-match-header."
(aref vm-matched-header-vector 0))
(defun vm-matched-header-end ()
"Returns the end position of the header last matched by vm-match-header."
(aref vm-matched-header-vector 1))
(defun vm-matched-header-name-start ()
"Returns the start position of the name of the header last matched
by vm-match-header."
(aref vm-matched-header-vector 2))
(defun vm-matched-header-name-end ()
"Returns the end position of the name of the header last matched
by vm-match-header."
(aref vm-matched-header-vector 3))
(defun vm-matched-header-contents-start ()
"Returns the start position of the contents of the header last matched
by vm-match-header."
(aref vm-matched-header-vector 4))
(defun vm-matched-header-contents-end ()
"Returns the end position of the contents of the header last matched
by vm-match-header."
(aref vm-matched-header-vector 5))
(defun vm-get-folder-type (&optional file start end)
"Return a symbol indicating the folder type of the current buffer.
This function works by examining the beginning of a folder.
If optional arg FILE is present the type of FILE is returned instead.
If optional second and third arg START and END are provided,
vm-get-folder-type will examine the text between those buffer
positions. START and END default to 1 and (buffer-size) + 1.
Returns
nil if folder has no type (empty)
unknown if the type is not known to VM
mmdf for MMDF folders
babyl for BABYL folders
From_ for UNIX From_ folders
If vm-trust-From_-with-Content-Length is non-nil,
From_-with-Content-Length is returned if the first message in the
folder has a Content-Length header and the folder otherwise looks
like a From_ folder."
(let ((temp-buffer nil)
b
(case-fold-search nil))
(unwind-protect
(save-excursion
(if file
(progn
(setq b (vm-get-file-buffer file))
(if b
(set-buffer b)
(setq temp-buffer (generate-new-buffer "*vm-work*"))
(set-buffer temp-buffer)
(if (file-readable-p file)
(condition-case nil
(let ((coding-system-for-read 'binary))
(insert-file-contents file nil 0 4096))
(wrong-number-of-arguments
(call-process "sed" file temp-buffer nil
"-n" "1,/^$/p")))))))
(save-excursion
(save-restriction
(or start (setq start 1))
(or end (setq end (1+ (buffer-size))))
(widen)
(narrow-to-region start end)
(goto-char (point-min))
(cond ((zerop (buffer-size)) nil)
((looking-at "\n*From ")
(if (not vm-trust-From_-with-Content-Length)
'From_
(let ((case-fold-search t))
(re-search-forward vm-content-length-search-regexp
nil t))
(cond ((match-beginning 1)
'From_)
((match-beginning 0)
'From_-with-Content-Length)
(t 'From_))))
((looking-at "\001\001\001\001\n") 'mmdf)
((looking-at "BABYL OPTIONS:") 'babyl)
(t 'unknown)))))
(and temp-buffer (kill-buffer temp-buffer)))))
(defun vm-convert-folder-type (old-type new-type)
"Convert buffer from OLD-TYPE to NEW-TYPE.
OLD-TYPE and NEW-TYPE should be symbols returned from vm-get-folder-type.
This should be called on non-live buffers like crash boxes.
This will confuse VM if called on a folder buffer in vm-mode."
(let ((vm-folder-type old-type)
(pos-list nil)
beg end)
(goto-char (point-min))
(vm-skip-past-folder-header)
(while (vm-find-leading-message-separator)
(setq pos-list (cons (point-marker) pos-list))
(vm-skip-past-leading-message-separator)
(setq pos-list (cons (point-marker) pos-list))
(vm-find-trailing-message-separator)
(setq pos-list (cons (point-marker) pos-list))
(vm-skip-past-trailing-message-separator)
(setq pos-list (cons (point-marker) pos-list)))
(setq pos-list (nreverse pos-list))
(goto-char (point-min))
(vm-convert-folder-header old-type new-type)
(while pos-list
(setq beg (car pos-list))
(goto-char (car pos-list))
(insert-before-markers (vm-leading-message-separator new-type))
(delete-region (car pos-list) (car (cdr pos-list)))
(vm-convert-folder-type-headers old-type new-type)
(setq pos-list (cdr (cdr pos-list)))
(setq end (marker-position (car pos-list)))
(goto-char (car pos-list))
(insert-before-markers (vm-trailing-message-separator new-type))
(delete-region (car pos-list) (car (cdr pos-list)))
(goto-char beg)
(vm-munge-message-separators new-type beg end)
(setq pos-list (cdr (cdr pos-list))))))
(defun vm-convert-folder-header (old-type new-type)
"Convert the folder header form OLD-TYPE to NEW-TYPE.
The folder header is the text at the beginning of a folder that
is a legal part of the folder but is not part of the first
message. This is for dealing with BABYL files."
(if (eq old-type 'babyl)
(save-excursion
(let ((beg (point))
(case-fold-search t))
(cond ((and (looking-at "BABYL OPTIONS:")
(search-forward "\037" nil t))
(delete-region beg (point)))))))
(if (eq new-type 'babyl)
;; insert before markers so that message location markers
;; for the first message get moved forward.
(insert-before-markers "BABYL OPTIONS:\nVersion: 5\n\037")))
(defun vm-skip-past-folder-header ()
"Move point past the folder header.
The folder header is the text at the beginning of a folder that
is a legal part of the folder but is not part of the first
message. This is for dealing with BABYL files."
(cond ((eq vm-folder-type 'babyl)
(search-forward "\037" nil 0))))
(defun vm-convert-folder-type-headers (old-type new-type)
"Convert headers in the message around point from OLD-TYPE to NEW-TYPE.
This means to add/delete Content-Length and any other
headers related to folder-type as needed for folder type
conversions. This function expects point to be at the beginning
of the header section of a message, and it only deals with that
message."
(let (length)
;; get the length now before the content-length headers are
;; removed.
(if (eq new-type 'From_-with-Content-Length)
(let (start)
(save-excursion
(save-excursion
(search-forward "\n\n" nil 0)
(setq start (point)))
(let ((vm-folder-type old-type))
(vm-find-trailing-message-separator))
(setq length (- (point) start)))))
;; chop out content-length header if new format doesn't need
;; it or if the new format computed his own copy.
(if (or (eq old-type 'From_-with-Content-Length)
(eq new-type 'From_-with-Content-Length))
(save-excursion
(while (and (let ((case-fold-search t))
(re-search-forward vm-content-length-search-regexp
nil t))
(null (match-beginning 1))
(progn (goto-char (match-beginning 0))
(vm-match-header vm-content-length-header)))
(delete-region (vm-matched-header-start)
(vm-matched-header-end)))))
;; insert the content-length header if needed
(if (eq new-type 'From_-with-Content-Length)
(save-excursion
(insert vm-content-length-header " " (int-to-string length) "\n")))))
(defun vm-munge-message-separators (folder-type start end)
"Munge message separators of FOLDER-TYPE found between START and END.
This function is used to eliminate message separators for a particular
folder type that happen to occur in a message. \">\" is prepended to such
separators."
(save-excursion
(let ((vm-folder-type folder-type))
(cond ((memq folder-type '(From_ From_-with-Content-Length mmdf babyl))
(setq end (vm-marker end))
(goto-char start)
(while (and (vm-find-leading-message-separator)
(< (point) end))
(insert ">"))
(set-marker end nil))))))
(defun vm-compatible-folder-p (file)
"Return non-nil if FILE is a compatible folder with the current buffer.
The current folder must have vm-folder-type initialized.
FILE is compatible if
- it is empty
- the current folder is empty
- the two folder types are equal"
(let ((type (vm-get-folder-type file)))
(or (not (and vm-folder-type type))
(eq vm-folder-type type))))
(defun vm-leading-message-separator (&optional folder-type message
for-other-folder)
"Returns a leading message separator for the current folder.
Defaults to returning a separator for the current folder type.
Optional first arg FOLDER-TYPE means return a separator for that
folder type instead.
Optional second arg MESSAGE should be a message struct. This is used
generating BABYL separators, because they contain message attributes
and labels that must must be copied from the message.
Optional third arg FOR-OTHER-FOLDER non-nil means that this separator will
be used a `foreign' folder. This means that the `deleted'
attributes should not be copied for BABYL folders."
(let ((type (or folder-type vm-folder-type)))
(cond ((memq type '(From_ From_-with-Content-Length))
(concat "From VM " (current-time-string) "\n"))
((eq type 'mmdf)
"\001\001\001\001\n")
((eq type 'babyl)
(cond (message
(concat "\014\n0,"
(vm-babyl-attributes-string message for-other-folder)
",\n*** EOOH ***\n"))
(t "\014\n0, recent, unseen,,\n*** EOOH ***\n"))))))
(defun vm-trailing-message-separator (&optional folder-type)
"Returns a leading message separator for the current folder.
Defaults to returning a separator for the current folder type.
Optional first arg FOLDER-TYPE means return a separator for that
folder type instead."
(let ((type (or folder-type vm-folder-type)))
(cond ((eq type 'From_) "\n")
((eq type 'From_-with-Content-Length) "")
((eq type 'mmdf) "\001\001\001\001\n")
((eq type 'babyl) "\037"))))
(defun vm-folder-header (&optional folder-type label-obarray)
"Returns a folder header for the current folder.
Defaults to returning a folder header for the current folder type.
Optional first arg FOLDER-TYPE means return a folder header for that
folder type instead.
Optional second arg LABEL-OBARRAY should be an obarray of labels
that have been used in this folder. This is used for BABYL folders."
(let ((type (or folder-type vm-folder-type)))
(cond ((eq type 'babyl)
(let ((list nil))
(if label-obarray
(mapatoms (function
(lambda (sym)
(setq list (cons sym list))))
label-obarray))
(if list
(format "BABYL OPTIONS:\nVersion: 5\nLabels: %s\n\037"
(mapconcat (function symbol-name) list ", "))
"BABYL OPTIONS:\nVersion: 5\n\037")))
(t ""))))
(defun vm-find-leading-message-separator ()
"Find the next leading message separator in a folder.
Returns non-nil if the separator is found, nil otherwise."
(cond
((eq vm-folder-type 'From_)
(let ((reg1 "^From ")
(reg2 "^>From ")
(case-fold-search nil))
(catch 'done
(while (re-search-forward reg1 nil 'no-error)
(goto-char (match-beginning 0))
;; remove the requirement that there be two
;; consecutive newlines (or the beginning of the
;; buffer) before "From ". Hopefully this will not
;; break more than it fixes. (18 August 1995)
(if ;; (and (or (< (point) 3)
;; (equal (char-after (- (point) 2)) ?\n))
(save-excursion
(and (= 0 (forward-line 1))
(or (vm-match-header)
(looking-at reg2))))
;; )
(throw 'done t)
(forward-char 1)))
nil )))
((eq vm-folder-type 'From_-with-Content-Length)
(let ((reg1 "\\(^\\|\n+\\)From ")
(case-fold-search nil))
(if (re-search-forward reg1 nil 'no-error)
(progn (goto-char (match-end 1)) t)
nil )))
((eq vm-folder-type 'mmdf)
(let ((reg1 "^\001\001\001\001")
(case-fold-search nil))
(if (re-search-forward reg1 nil 'no-error)
(progn
(goto-char (match-beginning 0))
t )
nil )))
((eq vm-folder-type 'babyl)
(let ((reg1 "\014\n[01],")
(case-fold-search nil))
(catch 'done
(while (re-search-forward reg1 nil 'no-error)
(goto-char (match-beginning 0))
(if (and (not (bobp)) (= (preceding-char) ?\037))
(throw 'done t)
(forward-char 1)))
nil )))))
(defun vm-find-trailing-message-separator ()
"Find the next trailing message separator in a folder."
(cond
((eq vm-folder-type 'From_)
(vm-find-leading-message-separator)
(forward-char -1))
((eq vm-folder-type 'From_-with-Content-Length)
(let ((reg1 "^From ")
content-length
(start-point (point))
(case-fold-search nil))
(if (and (let ((case-fold-search t))
(re-search-forward vm-content-length-search-regexp nil t))
(null (match-beginning 1))
(progn (goto-char (match-beginning 0))
(vm-match-header vm-content-length-header)))
(progn
(setq content-length
(string-to-int (vm-matched-header-contents)))
;; if search fails, we'll be at point-max
;; if specified content-length is too long, go to point-max
(if (search-forward "\n\n" nil 0)
(if (>= (- (point-max) (point)) content-length)
(forward-char content-length)
(goto-char (point-max))))
;; Some systems seem to add a trailing newline that's
;; not counted in the Content-Length header. Allow
;; any number of them to avoid trouble.
(skip-chars-forward "\n")))
(if (or (eobp) (looking-at reg1))
nil
(goto-char start-point)
(if (re-search-forward reg1 nil 0)
(forward-char -5)))))
((eq vm-folder-type 'mmdf)
(vm-find-leading-message-separator))
((eq vm-folder-type 'babyl)
(vm-find-leading-message-separator)
(forward-char -1))))
(defun vm-skip-past-leading-message-separator ()
"Move point past a leading message separator at point."
(cond
((memq vm-folder-type '(From_ From_-with-Content-Length))
(let ((reg1 "^>From ")
(case-fold-search nil))
(forward-line 1)
(while (looking-at reg1)
(forward-line 1))))
((eq vm-folder-type 'mmdf)
(forward-char 5)
;; skip >From. Either SCO's MMDF implementation leaves this
;; stuff in the message, or many sysadmins have screwed up
;; their mail configuration. Either way I'm tired of getting
;; bug reports about it.
(let ((reg1 "^>From ")
(case-fold-search nil))
(while (looking-at reg1)
(forward-line 1))))
((eq vm-folder-type 'babyl)
(search-forward "\n*** EOOH ***\n" nil 0))))
(defun vm-skip-past-trailing-message-separator ()
"Move point past a trailing message separator at point."
(cond
((eq vm-folder-type 'From_)
(forward-char 1))
((eq vm-folder-type 'From_-with-Content-Length))
((eq vm-folder-type 'mmdf)
(forward-char 5))
((eq vm-folder-type 'babyl)
(forward-char 1))))
(defun vm-build-message-list ()
"Build a chain of message structures, stored them in vm-message-list.
Finds the start and end of each message and fills in the relevant
fields in the message structures.
Also finds the beginning of the header section and the end of the
text section and fills in these fields in the message structures.
vm-text-of and vm-vheaders-of field don't get filled until they
are needed.
If vm-message-list already contained messages, the end of the last
known message is found and then the parsing of new messages begins
there and the message are appended to vm-message-list.
vm-folder-type is initialized here."
(setq vm-folder-type (vm-get-folder-type))
(save-excursion
(let ((tail-cons nil)
(n 0)
;; Just for yucks, make the update interval vary.
(modulus (+ (% (vm-abs (random)) 11) 25))
message last-end)
(if vm-message-list
;; there are already messages, therefore we're supposed
;; to add to this list.
(let ((mp vm-message-list)
(end (point-min)))
;; first we have to find physical end of the folder
;; prior to the new messages that just came in.
(while mp
(if (< end (vm-end-of (car mp)))
(setq end (vm-end-of (car mp))))
(if (not (consp (cdr mp)))
(setq tail-cons mp))
(setq mp (cdr mp)))
(goto-char end))
;; there are no messages so we're building the whole list.
;; start from the beginning of the folder.
(goto-char (point-min))
;; whine about newlines at the beginning of the folder.
;; technically I think this is corruption, but there are
;; too many busted mail-do-fcc's installed out there to
;; do more than whine.
(if (and (memq vm-folder-type '(From_ From_-with-Content-Length))
(= (following-char) ?\n))
(progn
(message "Warning: newline found at beginning of folder, %s"
(or buffer-file-name (buffer-name)))
(sleep-for 2)))
(vm-skip-past-folder-header))
(setq last-end (point))
;; parse the messages, set the markers that specify where
;; things are.
(while (vm-find-leading-message-separator)
(setq message (vm-make-message))
(vm-set-message-type-of message vm-folder-type)
(vm-set-start-of message (vm-marker (point)))
(vm-skip-past-leading-message-separator)
(vm-set-headers-of message (vm-marker (point)))
(vm-find-trailing-message-separator)
(vm-set-text-end-of message (vm-marker (point)))
(vm-skip-past-trailing-message-separator)
(setq last-end (point))
(vm-set-end-of message (vm-marker (point)))
(vm-set-reverse-link-of message tail-cons)
(if (null tail-cons)
(setq vm-message-list (list message)
tail-cons vm-message-list)
(setcdr tail-cons (list message))
(setq tail-cons (cdr tail-cons)))
(vm-increment n)
(if (zerop (% n modulus))
(message "Parsing messages... %d" n)))
(if (>= n modulus)
(message "Parsing messages... done"))
(if (and (not (= last-end (point-max)))
(not (eq vm-folder-type 'unknown)))
(progn
(message "Warning: garbage found at end of folder, %s"
(or buffer-file-name (buffer-name)))
(sleep-for 2))))))
(defun vm-build-header-order-alist (vheaders)
(let ((order-alist (cons nil nil))
list)
(setq list order-alist)
(while vheaders
(setcdr list (cons (cons (car vheaders) nil) nil))
(setq list (cdr list) vheaders (cdr vheaders)))
(cdr order-alist)))
;; Reorder the headers in a message.
;;
;; If a message struct is passed into this function, then we're
;; operating on a message in a folder buffer. Headers are
;; grouped so that the headers that the user wants to see are at
;; the end of the headers section so we can narrow to them. This
;; is done according to the preferences specified in
;; vm-visible-header and vm-invisible-header-regexp. The
;; vheaders field of the message struct is also set. This
;; function is called on demand whenever a vheaders field is
;; discovered to be nil for a particular message.
;;
;; If the message argument is nil, then we are operating on a
;; freestanding message that is not part of a folder buffer. The
;; keep-list and discard-regexp parameters are used in this case.
;; Headers not matched by the keep list or matched by the discard
;; list are stripped from the message. The remaining headers
;; are ordered according to the order of the keep list.
(defun vm-reorder-message-headers (message keep-list discard-regexp)
(save-excursion
(if message
(progn
(set-buffer (vm-buffer-of message))
(setq keep-list vm-visible-headers
discard-regexp vm-invisible-header-regexp)))
(save-excursion
(save-restriction
(widen)
;; if there is a cached regexp that points to the already
;; ordered headers then use it and avoid a lot of work.
(if (and message (vm-vheaders-regexp-of message))
(save-excursion
(goto-char (vm-headers-of message))
(let ((case-fold-search t))
(re-search-forward (vm-vheaders-regexp-of message)
(vm-text-of message) t))
(vm-set-vheaders-of message (vm-marker (match-beginning 0))))
;; oh well, we gotta do it the hard way.
;;
;; header-alist will contain an assoc list version of
;; keep-list. For messages associated with a folder
;; buffer: when a matching header is found, the
;; header's start and end positions are added to its
;; corresponding assoc cell. The positions of unwanted
;; headers are remember also so that they can be copied
;; to the top of the message, to be out of sight after
;; narrowing. Once the positions have all been
;; recorded a new copy of the headers is inserted in
;; the proper order and the old headers are deleted.
;;
;; For free standing messages, unwanted headers are
;; stripped from the message, unremembered.
(vm-save-restriction
(let ((header-alist (vm-build-header-order-alist keep-list))
(buffer-read-only nil)
(work-buffer nil)
(extras nil)
list end-of-header vheader-offset
(folder-buffer (current-buffer))
;; This prevents file locking from occuring. Disabling
;; locking can speed things noticeably if the lock directory
;; is on a slow device. We don't need locking here because
;; in a mail context reordering headers is harmless.
(buffer-file-name nil)
(case-fold-search t)
(unwanted-list nil)
unwanted-tail
new-header-start
old-header-start
(old-buffer-modified-p (buffer-modified-p)))
(unwind-protect
(progn
(if message
(progn
;; for babyl folders, keep an untouched
;; copy of the headers between the
;; attributes line and the *** EOOH ***
;; line.
(if (and (eq vm-folder-type 'babyl)
(null (vm-babyl-frob-flag-of message)))
(progn
(goto-char (vm-start-of message))
(forward-line 2)
(vm-set-babyl-frob-flag-of message t)
(insert-buffer-substring
(current-buffer)
(vm-headers-of message)
(1- (vm-text-of message)))))
(setq work-buffer (generate-new-buffer "*vm-work*"))
(set-buffer work-buffer)
(insert-buffer-substring
folder-buffer
(vm-headers-of message)
(vm-text-of message))
(goto-char (point-min))))
(setq old-header-start (point))
;; as we loop through the headers, skip >From
;; lines. these can occur anywhere in the
;; header section if the message has been
;; manhandled by some dumb delivery agents
;; (SCO and Solaris are the usual suspects.)
;; it's a tough ol' world.
(while (progn (while (looking-at ">From ")
(forward-line))
(and (not (= (following-char) ?\n))
(vm-match-header)))
(setq end-of-header (vm-matched-header-end)
list (vm-match-ordered-header header-alist))
;; don't display/keep this header if
;; keep-list not matched
;; and discard-regexp is nil
;; or
;; discard-regexp is matched
(if (or (and (null list) (null discard-regexp))
(and discard-regexp (looking-at discard-regexp)))
;; delete the unwanted header if not doing
;; work for a folder buffer, otherwise
;; remember the start and end of the
;; unwanted header so we can copy it
;; later.
(if (not message)
(delete-region (point) end-of-header)
(if (null unwanted-list)
(setq unwanted-list
(cons (point) (cons end-of-header nil))
unwanted-tail unwanted-list)
(if (= (point) (car (cdr unwanted-tail)))
(setcar (cdr unwanted-tail)
end-of-header)
(setcdr (cdr unwanted-tail)
(cons (point)
(cons end-of-header nil)))
(setq unwanted-tail (cdr (cdr unwanted-tail)))))
(goto-char end-of-header))
;; got a match
;; stuff the start and end of the header
;; into the cdr of the returned alist
;; element.
(if list
;; reverse point and end-of-header.
;; list will be nreversed later.
(setcdr list (cons end-of-header
(cons (point)
(cdr list))))
;; reverse point and end-of-header.
;; list will be nreversed later.
(setq extras
(cons end-of-header
(cons (point) extras))))
(goto-char end-of-header)))
(setq new-header-start (point))
(while unwanted-list
(insert-buffer-substring (current-buffer)
(car unwanted-list)
(car (cdr unwanted-list)))
(setq unwanted-list (cdr (cdr unwanted-list))))
;; remember the offset of where the visible
;; header start so we can initialize the
;; vm-vheaders-of field later.
(if message
(setq vheader-offset (- (point) new-header-start)))
(while header-alist
(setq list (nreverse (cdr (car header-alist))))
(while list
(insert-buffer-substring (current-buffer)
(car list)
(car (cdr list)))
(setq list (cdr (cdr list))))
(setq header-alist (cdr header-alist)))
;; now the headers that were not explicitly
;; undesirable, if any.
(setq extras (nreverse extras))
(while extras
(insert-buffer-substring (current-buffer)
(car extras)
(car (cdr extras)))
(setq extras (cdr (cdr extras))))
(delete-region old-header-start new-header-start)
;; update the folder buffer if we're supposed to.
;; lock out interrupts.
(if message
(let ((inhibit-quit t))
(set-buffer (vm-buffer-of message))
(goto-char (vm-headers-of message))
(insert-buffer-substring work-buffer)
(delete-region (point) (vm-text-of message))
(set-buffer-modified-p old-buffer-modified-p))))
(and work-buffer (kill-buffer work-buffer)))
(if message
(progn
(vm-set-vheaders-of message
(vm-marker (+ (vm-headers-of message)
vheader-offset)))
;; cache a regular expression that can be used to
;; find the start of the reordered header the next
;; time this folder is visited.
(goto-char (vm-vheaders-of message))
(if (vm-match-header)
(vm-set-vheaders-regexp-of
message
(concat "^" (vm-matched-header-name) ":"))))))))))))
;; Reads the message attributes and cached header information from the
;; header portion of the each message, if our X-VM- attributes header is
;; present. If the header is not present, assume the message is new,
;; unless we are being compatible with Berkeley Mail in which case we
;; also check for a Status header.
;;
;; If a message already has attributes don't bother checking the
;; headers.
;;
;; This function also discovers and stores the position where the
;; message text begins.
;;
;; Totals are gathered for use by vm-emit-totals-blurb.
;;
;; Supports version 4 format of attribute storage, for backward compatibility.
(defun vm-read-attributes (message-list)
(save-excursion
(let ((mp (or message-list vm-message-list))
(vm-new-count 0)
(vm-unread-count 0)
(vm-deleted-count 0)
(vm-total-count 0)
(modulus (+ (% (vm-abs (random)) 11) 25))
(case-fold-search t)
oldpoint data)
(while mp
(vm-increment vm-total-count)
(if (vm-attributes-of (car mp))
()
(goto-char (vm-headers-of (car mp)))
;; find start of text section and save it
(search-forward "\n\n" (vm-text-end-of (car mp)) 0)
(vm-set-text-of (car mp) (point-marker))
;; now look for our header
(goto-char (vm-headers-of (car mp)))
(cond
((re-search-forward vm-attributes-header-regexp
(vm-text-of (car mp)) t)
(goto-char (match-beginning 2))
(condition-case ()
(progn
(setq oldpoint (point)
data (read (current-buffer)))
(if (and (or (not (listp data)) (not (> (length data) 1)))
(not (vectorp data)))
(progn
(error "Bad x-vm-v5-data at %d in buffer %s"
oldpoint (buffer-name))))
data )
(error
(message "Bad x-vm-v5-data header at %d in buffer %s, ignoring"
oldpoint (buffer-name))
(setq data
(list
(make-vector vm-attributes-vector-length nil)
(make-vector vm-cache-vector-length nil)
nil))
;; In lieu of a valid attributes header
;; assume the message is new. avoid
;; vm-set-new-flag because it asks for a
;; summary update.
(vm-set-new-flag-in-vector (car data) t)))
;; support version 4 format
(cond ((vectorp data)
(setq data (vm-convert-v4-attributes data))
;; tink the message modflag so that if the
;; user saves we get rid of the old v4
;; attributes header. otherwise we could be
;; dealing with these things for all eternity.
(vm-set-modflag-of (car mp) t))
(t
;; extend vectors if necessary to accomodate
;; more caching and attributes without alienating
;; other version 5 folders.
(cond ((< (length (car data))
vm-attributes-vector-length)
;; tink the message modflag so that if
;; the user saves we get rid of the old
;; short vector. otherwise we could be
;; dealing with these things for all
;; eternity.
(vm-set-modflag-of (car mp) t)
(setcar data (vm-extend-vector
(car data)
vm-attributes-vector-length))))
(cond ((< (length (car (cdr data)))
vm-cache-vector-length)
;; tink the message modflag so that if
;; the user saves we get rid of the old
;; short vector. otherwise we could be
;; dealing with these things for all
;; eternity.
(vm-set-modflag-of (car mp) t)
(setcar (cdr data)
(vm-extend-vector
(car (cdr data))
vm-cache-vector-length))))))
;; data list might not be long enough for (nth 2 ...) but
;; that's OK because nth returns nil if you overshoot the
;; end of the list.
(vm-set-labels-of (car mp) (nth 2 data))
(vm-set-cache-of (car mp) (car (cdr data)))
(vm-set-attributes-of (car mp) (car data)))
((and vm-berkeley-mail-compatibility
(re-search-forward vm-berkeley-mail-status-header-regexp
(vm-text-of (car mp)) t))
(vm-set-cache-of (car mp) (make-vector vm-cache-vector-length
nil))
(goto-char (match-beginning 1))
(vm-set-attributes-of
(car mp)
(make-vector vm-attributes-vector-length nil))
(vm-set-unread-flag (car mp) (not (looking-at ".*R.*")) t))
(t
(vm-set-cache-of (car mp) (make-vector vm-cache-vector-length
nil))
(vm-set-attributes-of
(car mp)
(make-vector vm-attributes-vector-length nil))
;; In lieu of a valid attributes header
;; assume the message is new. avoid
;; vm-set-new-flag because it asks for a
;; summary update.
(vm-set-new-flag-of (car mp) t)))
;; let babyl attributes override the normal VM
;; attributes header.
(cond ((eq vm-folder-type 'babyl)
(vm-read-babyl-attributes (car mp)))))
(cond ((vm-deleted-flag (car mp))
(vm-increment vm-deleted-count))
((vm-new-flag (car mp))
(vm-increment vm-new-count))
((vm-unread-flag (car mp))
(vm-increment vm-unread-count)))
(if (zerop (% vm-total-count modulus))
(message "Reading attributes... %d" vm-total-count))
(setq mp (cdr mp)))
(if (>= vm-total-count modulus)
(message "Reading attributes... done"))
(if (null message-list)
(setq vm-totals (list vm-modification-counter
vm-total-count
vm-new-count
vm-unread-count
vm-deleted-count))))))
(defun vm-read-babyl-attributes (message)
(let ((case-fold-search t)
(labels nil)
(vect (make-vector vm-attributes-vector-length nil)))
(vm-set-attributes-of message vect)
(save-excursion
(goto-char (vm-start-of message))
;; skip past ^L\n
(forward-char 2)
(vm-set-babyl-frob-flag-of message (if (= (following-char) ?1) t nil))
;; skip past 0,
(forward-char 2)
;; loop, noting attributes as we go.
(while (and (not (eobp)) (not (looking-at ",")))
(cond ((looking-at " unseen,")
(vm-set-unread-flag-of message t))
((looking-at " recent,")
(vm-set-new-flag-of message t))
((looking-at " deleted,")
(vm-set-deleted-flag-of message t))
((looking-at " answered,")
(vm-set-replied-flag-of message t))
((looking-at " forwarded,")
(vm-set-forwarded-flag-of message t))
((looking-at " filed,")
(vm-set-filed-flag-of message t))
((looking-at " redistributed,")
(vm-set-redistributed-flag-of message t))
;; only VM knows about these, as far as I know.
((looking-at " edited,")
(vm-set-forwarded-flag-of message t))
((looking-at " written,")
(vm-set-forwarded-flag-of message t)))
(skip-chars-forward "^,")
(and (not (eobp)) (forward-char 1)))
(and (not (eobp)) (forward-char 1))
(while (looking-at " \\([^\000-\040,\177-\377]+\\),")
(setq labels (cons (vm-buffer-substring-no-properties
(match-beginning 1)
(match-end 1))
labels))
(goto-char (match-end 0)))
(vm-set-labels-of message labels))))
(defun vm-set-default-attributes (message-list)
(let ((mp (or message-list vm-message-list)) attr cache)
(while mp
(setq attr (make-vector vm-attributes-vector-length nil)
cache (make-vector vm-cache-vector-length nil))
(vm-set-cache-of (car mp) cache)
(vm-set-attributes-of (car mp) attr)
;; make message be new by default, but avoid vm-set-new-flag
;; because it asks for a summary update for the message.
(vm-set-new-flag-of (car mp) t)
;; since this function is usually called in lieu of reading
;; attributes from the buffer, the attributes may be
;; untrustworthy. tink the message modflag to force the
;; new attributes out if the user saves.
(vm-set-modflag-of (car mp) t)
(setq mp (cdr mp)))))
(defun vm-emit-totals-blurb ()
(save-excursion
(vm-select-folder-buffer)
(if (not (equal (nth 0 vm-totals) vm-modification-counter))
(let ((mp vm-message-list)
(vm-new-count 0)
(vm-unread-count 0)
(vm-deleted-count 0)
(vm-total-count 0))
(while mp
(vm-increment vm-total-count)
(cond ((vm-deleted-flag (car mp))
(vm-increment vm-deleted-count))
((vm-new-flag (car mp))
(vm-increment vm-new-count))
((vm-unread-flag (car mp))
(vm-increment vm-unread-count)))
(setq mp (cdr mp)))
(setq vm-totals (list vm-modification-counter
vm-total-count
vm-new-count
vm-unread-count
vm-deleted-count))))
(if (equal (nth 1 vm-totals) 0)
(message "No messages.")
(message "%d message%s, %d new, %d unread, %d deleted"
(nth 1 vm-totals) (if (= (nth 1 vm-totals) 1) "" "s")
(nth 2 vm-totals)
(nth 3 vm-totals)
(nth 4 vm-totals)))))
(defun vm-convert-v4-attributes (data)
(list (apply 'vector
(nconc (vm-vector-to-list data)
(make-list (- vm-attributes-vector-length
(length data))
nil)))
(make-vector vm-cache-vector-length nil)))
(defun vm-gobble-last-modified ()
(let ((case-fold-search t)
time lim oldpoint)
(save-excursion
(vm-save-restriction
(widen)
(goto-char (point-min))
(vm-skip-past-folder-header)
(vm-skip-past-leading-message-separator)
(search-forward "\n\n" nil t)
(setq lim (point))
(goto-char (point-min))
(vm-skip-past-folder-header)
(vm-skip-past-leading-message-separator)
(if (re-search-forward vm-last-modified-header-regexp lim t)
(condition-case ()
(progn
(setq oldpoint (point)
time (read (current-buffer)))
(if (not (consp time))
(error "Bad last-modified header at %d in buffer %s"
oldpoint (buffer-name)))
time )
(error
(message "Bad last-modified header at %d in buffer %s, ignoring"
oldpoint (buffer-name))
(setq time '(0 0 0)))))))
time ))
(defun vm-gobble-labels ()
(let ((case-fold-search t)
lim)
(save-excursion
(vm-save-restriction
(widen)
(if (eq vm-folder-type 'babyl)
(progn
(goto-char (point-min))
(vm-skip-past-folder-header)
(setq lim (point))
(goto-char (point-min))
(if (re-search-forward "^Labels:" lim t)
(let (string list)
(setq string (buffer-substring
(point)
(progn (end-of-line) (point)))
list (vm-parse string
"[\000-\040,\177-\377]*\\([^\000-\040,\177-\377]+\\)[\000-\040,\177-\377]*"))
(mapcar (function
(lambda (s)
(intern (downcase s) vm-label-obarray)))
list))))
(goto-char (point-min))
(vm-skip-past-folder-header)
(vm-skip-past-leading-message-separator)
(search-forward "\n\n" nil t)
(setq lim (point))
(goto-char (point-min))
(vm-skip-past-folder-header)
(vm-skip-past-leading-message-separator)
(if (re-search-forward vm-labels-header-regexp lim t)
(let ((oldpoint (point))
list)
(condition-case ()
(progn
(setq list (read (current-buffer)))
(if (not (listp list))
(error "Bad global label list at %d in buffer %s"
oldpoint (buffer-name)))
list )
(error
(message "Bad global label list at %d in buffer %s, ignoring"
oldpoint (buffer-name))
(setq list nil) ))
(vm-startup-apply-labels list))))))
t ))
(defun vm-startup-apply-labels (labels)
(mapcar (function (lambda (s) (intern s vm-label-obarray))) labels))
;; Go to the message specified in a bookmark and eat the bookmark.
;; Returns non-nil if successful, nil otherwise.
(defun vm-gobble-bookmark ()
(let ((case-fold-search t)
(n nil)
lim oldpoint)
(save-excursion
(vm-save-restriction
(widen)
(goto-char (point-min))
(vm-skip-past-folder-header)
(vm-skip-past-leading-message-separator)
(search-forward "\n\n" nil t)
(setq lim (point))
(goto-char (point-min))
(vm-skip-past-folder-header)
(vm-skip-past-leading-message-separator)
(if (re-search-forward vm-bookmark-header-regexp lim t)
(condition-case ()
(progn
(setq oldpoint (point)
n (read (current-buffer)))
(if (not (natnump n))
(error "Bad bookmark at %d in buffer %s"
oldpoint (buffer-name)))
n )
(error
(message "Bad bookmark at %d in buffer %s, ignoring"
oldpoint (buffer-name))
(setq n 1))))))
(vm-startup-apply-bookmark n)
t ))
(defun vm-startup-apply-bookmark (n)
(if n
(vm-record-and-change-message-pointer
vm-message-pointer
(nthcdr (1- n) vm-message-list))))
(defun vm-gobble-pop-retrieved ()
(let ((case-fold-search t)
ob lim oldpoint)
(save-excursion
(vm-save-restriction
(widen)
(goto-char (point-min))
(vm-skip-past-folder-header)
(vm-skip-past-leading-message-separator)
(search-forward "\n\n" nil t)
(setq lim (point))
(goto-char (point-min))
(vm-skip-past-folder-header)
(vm-skip-past-leading-message-separator)
(if (re-search-forward vm-pop-retrieved-header-regexp lim t)
(condition-case ()
(progn
(setq oldpoint (point)
ob (read (current-buffer)))
(if (not (listp ob))
(error "Bad pop-retrieved header at %d in buffer %s"
oldpoint (buffer-name)))
(setq vm-pop-retrieved-messages ob))
(error
(message "Bad pop-retrieved header at %d in buffer %s, ignoring"
oldpoint (buffer-name)))))))
t ))
(defun vm-gobble-visible-header-variables ()
(save-excursion
(vm-save-restriction
(let ((case-fold-search t)
lim)
(widen)
(goto-char (point-min))
(vm-skip-past-folder-header)
(vm-skip-past-leading-message-separator)
(search-forward "\n\n" nil t)
(setq lim (point))
(goto-char (point-min))
(vm-skip-past-folder-header)
(vm-skip-past-leading-message-separator)
(if (re-search-forward vm-vheader-header-regexp lim t)
(let (vis invis (got nil))
(condition-case ()
(setq vis (read (current-buffer))
invis (read (current-buffer))
got t)
(error nil))
(if got
(vm-startup-apply-header-variables vis invis))))))))
(defun vm-startup-apply-header-variables (vis invis)
;; if the variables don't match the values stored when this
;; folder was saved, then we have to discard any cached
;; vheader info so the user will see the right headers.
(and (or (not (equal vis vm-visible-headers))
(not (equal invis vm-invisible-header-regexp)))
(let ((mp vm-message-list))
(message "Discarding visible header info...")
(while mp
(vm-set-vheaders-regexp-of (car mp) nil)
(vm-set-vheaders-of (car mp) nil)
(setq mp (cdr mp))))))
;; Read and delete the header that gives the folder's desired
;; message order.
(defun vm-gobble-message-order ()
(let ((case-fold-search t)
lim order)
(save-excursion
(save-restriction
(widen)
(goto-char (point-min))
(vm-skip-past-folder-header)
(vm-skip-past-leading-message-separator)
(search-forward "\n\n" nil t)
(setq lim (point))
(goto-char (point-min))
(vm-skip-past-folder-header)
(vm-skip-past-leading-message-separator)
(if (re-search-forward vm-message-order-header-regexp lim t)
(let ((oldpoint (point)))
(condition-case nil
(progn
(setq order (read (current-buffer)))
(if (not (listp order))
(error "Bad order header at %d in buffer %s"
oldpoint (buffer-name)))
order )
(error
(message "Bad order header at %d in buffer %s, ignoring"
oldpoint (buffer-name))
(setq order nil)))
(if order
(progn
(message "Reordering messages...")
(vm-startup-apply-message-order order)
(message "Reordering messages... done")))))))))
(defun vm-startup-apply-message-order (order)
(let (list-length v (mp vm-message-list))
(setq list-length (length vm-message-list)
v (make-vector (max list-length (length order)) nil))
(while (and order mp)
(condition-case nil
(aset v (1- (car order)) (car mp))
(args-out-of-range nil))
(setq order (cdr order) mp (cdr mp)))
;; lock out interrupts while the message list is in
;; an inconsistent state.
(let ((inhibit-quit t))
(setq vm-message-list (delq nil (append v mp))
vm-message-order-changed nil
vm-message-order-header-present t
vm-message-pointer (memq (car vm-message-pointer)
vm-message-list))
(vm-set-numbering-redo-start-point t)
(vm-reverse-link-messages))))
;; Read the header that gives the folder's cached summary format
;; If the current summary format is different, then the cached
;; summary lines are discarded.
(defun vm-gobble-summary ()
(let ((case-fold-search t)
summary lim)
(save-excursion
(vm-save-restriction
(widen)
(goto-char (point-min))
(vm-skip-past-folder-header)
(vm-skip-past-leading-message-separator)
(search-forward "\n\n" nil t)
(setq lim (point))
(goto-char (point-min))
(vm-skip-past-folder-header)
(vm-skip-past-leading-message-separator)
(if (re-search-forward vm-summary-header-regexp lim t)
(let ((oldpoint (point)))
(condition-case ()
(setq summary (read (current-buffer)))
(error
(message "Bad summary header at %d in buffer %s, ignoring"
oldpoint (buffer-name))
(setq summary "")))
(vm-startup-apply-summary summary)))))))
(defun vm-startup-apply-summary (summary)
(if (not (equal summary vm-summary-format))
(let ((mp vm-message-list))
(while mp
(vm-set-summary-of (car mp) nil)
;; force restuffing of cache to clear old
;; summary entry cache.
(vm-set-modflag-of (car mp) t)
(setq mp (cdr mp))))))
;; Stuff the message attributes back into the message as headers.
(defun vm-stuff-attributes (m &optional for-other-folder)
(save-excursion
(vm-save-restriction
(widen)
(let ((old-buffer-modified-p (buffer-modified-p))
attributes cache
(case-fold-search t)
(buffer-read-only nil)
;; don't truncate the printing of large Lisp objects
(print-length nil)
opoint
;; This prevents file locking from occuring. Disabling
;; locking can speed things noticeably if the lock
;; directory is on a slow device. We don't need locking
;; here because the user shouldn't care about VM stuffing
;; its own status headers.
(buffer-file-name nil)
(delflag (vm-deleted-flag m)))
(unwind-protect
(progn
;; don't put this folder's summary entry into another folder.
(if for-other-folder
(vm-set-summary-of m nil)
(if (vm-su-start-of m)
;; fill the summary cache if it's not done already.
(vm-su-summary m)))
(setq attributes (vm-attributes-of m)
cache (vm-cache-of m))
(and delflag for-other-folder
(vm-set-deleted-flag-in-vector
(setq attributes (copy-sequence attributes)) nil))
(if (eq vm-folder-type 'babyl)
(vm-stuff-babyl-attributes m for-other-folder))
(goto-char (vm-headers-of m))
(while (re-search-forward vm-attributes-header-regexp
(vm-text-of m) t)
(delete-region (match-beginning 0) (match-end 0)))
(goto-char (vm-headers-of m))
(setq opoint (point))
(insert-before-markers
vm-attributes-header " ("
(let ((print-escape-newlines t))
(prin1-to-string attributes))
"\n\t"
(let ((print-escape-newlines t))
(prin1-to-string cache))
"\n\t"
(let ((print-escape-newlines t))
(prin1-to-string (vm-labels-of m)))
")\n")
(set-marker (vm-headers-of m) opoint)
(cond ((and (eq vm-folder-type 'From_)
vm-berkeley-mail-compatibility)
(goto-char (vm-headers-of m))
(while (re-search-forward
vm-berkeley-mail-status-header-regexp
(vm-text-of m) t)
(delete-region (match-beginning 0) (match-end 0)))
(goto-char (vm-headers-of m))
(cond ((not (vm-new-flag m))
(insert-before-markers
vm-berkeley-mail-status-header
(if (vm-unread-flag m) "" "R")
"O\n")
(set-marker (vm-headers-of m) opoint)))))
(vm-set-modflag-of m nil))
(set-buffer-modified-p old-buffer-modified-p))))))
(defun vm-stuff-folder-attributes (&optional abort-if-input-pending)
(let ((newlist nil) mp)
;; stuff the attributes of messages that need it.
;; build a list of messages that need their attributes stuffed
(setq mp vm-message-list)
(while mp
(if (vm-modflag-of (car mp))
(setq newlist (cons (car mp) newlist)))
(setq mp (cdr mp)))
;; now sort the list by physical order so that we
;; reduce the amount of gap motion induced by modifying
;; the buffer. what we want to avoid is updating
;; message 3, then 234, then 10, then 500, thus causing
;; large chunks of memory to be copied repeatedly as
;; the gap moves to accomodate the insertions.
(let ((vm-key-functions '(vm-sort-compare-physical-order-r)))
(setq mp (sort newlist 'vm-sort-compare-xxxxxx)))
(while (and mp (or (not abort-if-input-pending) (not (input-pending-p))))
(vm-stuff-attributes (car mp))
(setq mp (cdr mp)))
(if mp nil t)))
;; we can be a bit lazy in this function since it's only called
;; from within vm-stuff-attributes. we don't worry about
;; restoring the modified flag, setting buffer-read-only, or
;; about not moving point.
(defun vm-stuff-babyl-attributes (m for-other-folder)
(goto-char (vm-start-of m))
(forward-char 2)
(if (vm-babyl-frob-flag-of m)
(insert "1")
(insert "0"))
(delete-char 1)
(forward-char 1)
(if (looking-at "\\( [^\000-\040,\177-\377]+,\\)+")
(delete-region (match-beginning 0) (match-end 0)))
(if (vm-new-flag m)
(insert " recent, unseen,")
(if (vm-unread-flag m)
(insert " unseen,")))
(if (and (not for-other-folder) (vm-deleted-flag m))
(insert " deleted,"))
(if (vm-replied-flag m)
(insert " answered,"))
(if (vm-forwarded-flag m)
(insert " forwarded,"))
(if (vm-redistributed-flag m)
(insert " redistributed,"))
(if (vm-filed-flag m)
(insert " filed,"))
(if (vm-edited-flag m)
(insert " edited,"))
(if (vm-written-flag m)
(insert " written,"))
(forward-char 1)
(if (looking-at "\\( [^\000-\040,\177-\377]+,\\)+")
(delete-region (match-beginning 0) (match-end 0)))
(mapcar (function (lambda (label) (insert " " label ",")))
(vm-labels-of m)))
(defun vm-babyl-attributes-string (m for-other-folder)
(concat
(if (vm-new-flag m)
" recent, unseen,"
(if (vm-unread-flag m)
" unseen,"))
(if (and (not for-other-folder) (vm-deleted-flag m))
" deleted,")
(if (vm-replied-flag m)
" answered,")
(if (vm-forwarded-flag m)
" forwarded,")
(if (vm-redistributed-flag m)
" redistributed,")
(if (vm-filed-flag m)
" filed,")
(if (vm-edited-flag m)
" edited,")
(if (vm-written-flag m)
" written,")))
(defun vm-babyl-labels-string (m)
(let ((list nil)
(labels (vm-labels-of m)))
(while labels
(setq list (cons "," (cons (car labels) (cons " " list)))
labels (cdr labels)))
(apply 'concat (nreverse list))))
(defun vm-stuff-virtual-attributes (message)
(let ((virtual (vm-virtual-message-p message)))
(if (or (not virtual) (and virtual (vm-virtual-messages-of message)))
(save-excursion
(set-buffer
(vm-buffer-of
(vm-real-message-of message)))
(vm-stuff-attributes (vm-real-message-of message))))))
(defun vm-stuff-labels ()
(if vm-message-pointer
(save-excursion
(vm-save-restriction
(widen)
(let ((old-buffer-modified-p (buffer-modified-p))
(case-fold-search t)
;; don't truncate the printing of large Lisp objects
(print-length nil)
;; This prevents file locking from occuring. Disabling
;; locking can speed things noticeably if the lock
;; directory is on a slow device. We don't need locking
;; here because the user shouldn't care about VM stuffing
;; its own status headers.
(buffer-file-name nil)
(buffer-read-only nil)
lim)
(if (eq vm-folder-type 'babyl)
(progn
(goto-char (point-min))
(vm-skip-past-folder-header)
(delete-region (point) (point-min))
(insert-before-markers (vm-folder-header vm-folder-type
vm-label-obarray))))
(goto-char (point-min))
(vm-skip-past-folder-header)
(vm-find-leading-message-separator)
(vm-skip-past-leading-message-separator)
(search-forward "\n\n" nil t)
(setq lim (point))
(goto-char (point-min))
(vm-skip-past-folder-header)
(vm-find-leading-message-separator)
(vm-skip-past-leading-message-separator)
(while (re-search-forward vm-labels-header-regexp lim t)
(progn (goto-char (match-beginning 0))
(if (vm-match-header vm-labels-header)
(delete-region (vm-matched-header-start)
(vm-matched-header-end)))))
;; To insert or to insert-before-markers, that is the question.
;;
;; If we insert-before-markers we push a header behind
;; vm-headers-of, which is clearly undesirable. So we
;; just insert. This will cause the summary header
;; to be visible if there are no non-visible headers,
;; oh well, no way around this.
(insert vm-labels-header " "
(let ((print-escape-newlines t)
(list nil))
(mapatoms (function
(lambda (sym)
(setq list (cons (symbol-name sym) list))))
vm-label-obarray)
(prin1-to-string list))
"\n")
(set-buffer-modified-p old-buffer-modified-p))))))
;; Insert a bookmark into the first message in the folder.
(defun vm-stuff-bookmark ()
(if vm-message-pointer
(save-excursion
(vm-save-restriction
(widen)
(let ((old-buffer-modified-p (buffer-modified-p))
(case-fold-search t)
;; This prevents file locking from occuring. Disabling
;; locking can speed things noticeably if the lock
;; directory is on a slow device. We don't need locking
;; here because the user shouldn't care about VM stuffing
;; its own status headers.
(buffer-file-name nil)
(buffer-read-only nil)
lim)
(goto-char (point-min))
(vm-skip-past-folder-header)
(vm-find-leading-message-separator)
(vm-skip-past-leading-message-separator)
(search-forward "\n\n" nil t)
(setq lim (point))
(goto-char (point-min))
(vm-skip-past-folder-header)
(vm-find-leading-message-separator)
(vm-skip-past-leading-message-separator)
(if (re-search-forward vm-bookmark-header-regexp lim t)
(progn (goto-char (match-beginning 0))
(if (vm-match-header vm-bookmark-header)
(delete-region (vm-matched-header-start)
(vm-matched-header-end)))))
;; To insert or to insert-before-markers, that is the question.
;;
;; If we insert-before-markers we push a header behind
;; vm-headers-of, which is clearly undesirable. So we
;; just insert. This will cause the bookmark header
;; to be visible if there are no non-visible headers,
;; oh well, no way around this.
(insert vm-bookmark-header " "
(vm-number-of (car vm-message-pointer))
"\n")
(set-buffer-modified-p old-buffer-modified-p))))))
(defun vm-stuff-last-modified ()
(if vm-message-pointer
(save-excursion
(vm-save-restriction
(widen)
(let ((old-buffer-modified-p (buffer-modified-p))
(case-fold-search t)
;; This prevents file locking from occuring. Disabling
;; locking can speed things noticeably if the lock
;; directory is on a slow device. We don't need locking
;; here because the user shouldn't care about VM stuffing
;; its own status headers.
(buffer-file-name nil)
(buffer-read-only nil)
lim)
(goto-char (point-min))
(vm-skip-past-folder-header)
(vm-find-leading-message-separator)
(vm-skip-past-leading-message-separator)
(search-forward "\n\n" nil t)
(setq lim (point))
(goto-char (point-min))
(vm-skip-past-folder-header)
(vm-find-leading-message-separator)
(vm-skip-past-leading-message-separator)
(if (re-search-forward vm-last-modified-header-regexp lim t)
(progn (goto-char (match-beginning 0))
(if (vm-match-header vm-last-modified-header)
(delete-region (vm-matched-header-start)
(vm-matched-header-end)))))
;; To insert or to insert-before-markers, that is the question.
;;
;; If we insert-before-markers we push a header behind
;; vm-headers-of, which is clearly undesirable. So we
;; just insert. This will cause the last-modified header
;; to be visible if there are no non-visible headers,
;; oh well, no way around this.
(insert vm-last-modified-header " "
(prin1-to-string (current-time))
"\n")
(set-buffer-modified-p old-buffer-modified-p))))))
(defun vm-stuff-pop-retrieved ()
(if vm-message-pointer
(save-excursion
(vm-save-restriction
(widen)
(let ((old-buffer-modified-p (buffer-modified-p))
(case-fold-search t)
;; This prevents file locking from occuring. Disabling
;; locking can speed things noticeably if the lock
;; directory is on a slow device. We don't need locking
;; here because the user shouldn't care about VM stuffing
;; its own status headers.
(buffer-file-name nil)
(buffer-read-only nil)
(print-length nil)
(p vm-pop-retrieved-messages)
(curbuf (current-buffer))
lim)
(goto-char (point-min))
(vm-skip-past-folder-header)
(vm-find-leading-message-separator)
(vm-skip-past-leading-message-separator)
(search-forward "\n\n" nil t)
(setq lim (point))
(goto-char (point-min))
(vm-skip-past-folder-header)
(vm-find-leading-message-separator)
(vm-skip-past-leading-message-separator)
(if (re-search-forward vm-pop-retrieved-header-regexp lim t)
(progn (goto-char (match-beginning 0))
(if (vm-match-header vm-pop-retrieved-header)
(delete-region (vm-matched-header-start)
(vm-matched-header-end)))))
;; To insert or to insert-before-markers, that is the question.
;;
;; If we insert-before-markers we push a header behind
;; vm-headers-of, which is clearly undesirable. So we
;; just insert. This will cause the pop-retrieved header
;; to be visible if there are no non-visible headers,
;; oh well, no way around this.
(insert vm-pop-retrieved-header)
(if (null p)
(insert " nil\n")
(insert "\n (\n")
(while p
(insert "\t")
(prin1 (car p) curbuf)
(insert "\n")
(setq p (cdr p)))
(insert " )\n"))
(set-buffer-modified-p old-buffer-modified-p))))))
;; Insert the summary format variable header into the first message.
(defun vm-stuff-summary ()
(if vm-message-pointer
(save-excursion
(vm-save-restriction
(widen)
(let ((old-buffer-modified-p (buffer-modified-p))
(case-fold-search t)
;; don't truncate the printing of large Lisp objects
(print-length nil)
;; This prevents file locking from occuring. Disabling
;; locking can speed things noticeably if the lock
;; directory is on a slow device. We don't need locking
;; here because the user shouldn't care about VM stuffing
;; its own status headers.
(buffer-file-name nil)
(buffer-read-only nil)
lim)
(goto-char (point-min))
(vm-skip-past-folder-header)
(vm-find-leading-message-separator)
(vm-skip-past-leading-message-separator)
(search-forward "\n\n" nil t)
(setq lim (point))
(goto-char (point-min))
(vm-skip-past-folder-header)
(vm-find-leading-message-separator)
(vm-skip-past-leading-message-separator)
(while (re-search-forward vm-summary-header-regexp lim t)
(progn (goto-char (match-beginning 0))
(if (vm-match-header vm-summary-header)
(delete-region (vm-matched-header-start)
(vm-matched-header-end)))))
;; To insert or to insert-before-markers, that is the question.
;;
;; If we insert-before-markers we push a header behind
;; vm-headers-of, which is clearly undesirable. So we
;; just insert. This will cause the summary header
;; to be visible if there are no non-visible headers,
;; oh well, no way around this.
(insert vm-summary-header " "
(let ((print-escape-newlines t))
(prin1-to-string vm-summary-format))
"\n")
(set-buffer-modified-p old-buffer-modified-p))))))
;; stuff the current values of the header variables for future messages.
(defun vm-stuff-header-variables ()
(if vm-message-pointer
(save-excursion
(vm-save-restriction
(widen)
(let ((old-buffer-modified-p (buffer-modified-p))
(case-fold-search t)
(print-escape-newlines t)
lim
;; don't truncate the printing of large Lisp objects
(print-length nil)
(buffer-read-only nil)
;; This prevents file locking from occuring. Disabling
;; locking can speed things noticeably if the lock
;; directory is on a slow device. We don't need locking
;; here because the user shouldn't care about VM stuffing
;; its own status headers.
(buffer-file-name nil))
(goto-char (point-min))
(vm-skip-past-folder-header)
(vm-find-leading-message-separator)
(vm-skip-past-leading-message-separator)
(search-forward "\n\n" nil t)
(setq lim (point))
(goto-char (point-min))
(vm-skip-past-folder-header)
(vm-find-leading-message-separator)
(vm-skip-past-leading-message-separator)
(while (re-search-forward vm-vheader-header-regexp lim t)
(progn (goto-char (match-beginning 0))
(if (vm-match-header vm-vheader-header)
(delete-region (vm-matched-header-start)
(vm-matched-header-end)))))
;; To insert or to insert-before-markers, that is the question.
;;
;; If we insert-before-markers we push a header behind
;; vm-headers-of, which is clearly undesirable. So we
;; just insert. This header will be visible if there
;; are no non-visible headers, oh well, no way around this.
(insert vm-vheader-header " "
(prin1-to-string vm-visible-headers) " "
(prin1-to-string vm-invisible-header-regexp)
"\n")
(set-buffer-modified-p old-buffer-modified-p))))))
;; Insert a header into the first message of the folder that lists
;; the folder's message order.
(defun vm-stuff-message-order ()
(if (cdr vm-message-list)
(save-excursion
(vm-save-restriction
(widen)
(let ((old-buffer-modified-p (buffer-modified-p))
(case-fold-search t)
;; This prevents file locking from occuring. Disabling
;; locking can speed things noticeably if the lock
;; directory is on a slow device. We don't need locking
;; here because the user shouldn't care about VM stuffing
;; its own status headers.
(buffer-file-name nil)
lim n
(buffer-read-only nil)
(mp (copy-sequence vm-message-list)))
(setq mp
(sort mp
(function
(lambda (p q)
(< (vm-start-of p) (vm-start-of q))))))
(goto-char (point-min))
(vm-skip-past-folder-header)
(vm-find-leading-message-separator)
(vm-skip-past-leading-message-separator)
(search-forward "\n\n" nil t)
(setq lim (point))
(goto-char (point-min))
(vm-skip-past-folder-header)
(vm-find-leading-message-separator)
(vm-skip-past-leading-message-separator)
(while (re-search-forward vm-message-order-header-regexp lim t)
(progn (goto-char (match-beginning 0))
(if (vm-match-header vm-message-order-header)
(delete-region (vm-matched-header-start)
(vm-matched-header-end)))))
;; To insert or to insert-before-markers, that is the question.
;;
;; If we insert-before-markers we push a header behind
;; vm-headers-of, which is clearly undesirable. So we
;; just insert. This header will be visible if there
;; are no non-visible headers, oh well, no way around this.
(insert vm-message-order-header "\n\t(")
(setq n 0)
(while mp
(insert (vm-number-of (car mp)))
(setq n (1+ n) mp (cdr mp))
(and mp (insert
(if (zerop (% n 15))
"\n\t "
" "))))
(insert ")\n")
(setq vm-message-order-changed nil
vm-message-order-header-present t)
(set-buffer-modified-p old-buffer-modified-p))))))
;; Remove the message order header.
(defun vm-remove-message-order ()
(if (cdr vm-message-list)
(save-excursion
(vm-save-restriction
(widen)
(let ((old-buffer-modified-p (buffer-modified-p))
(case-fold-search t)
lim
;; This prevents file locking from occuring. Disabling
;; locking can speed things noticeably if the lock
;; directory is on a slow device. We don't need locking
;; here because the user shouldn't care about VM stuffing
;; its own status headers.
(buffer-file-name nil)
(buffer-read-only nil))
(goto-char (point-min))
(vm-skip-past-folder-header)
(vm-skip-past-leading-message-separator)
(search-forward "\n\n" nil t)
(setq lim (point))
(goto-char (point-min))
(vm-skip-past-folder-header)
(vm-skip-past-leading-message-separator)
(while (re-search-forward vm-message-order-header-regexp lim t)
(progn (goto-char (match-beginning 0))
(if (vm-match-header vm-message-order-header)
(delete-region (vm-matched-header-start)
(vm-matched-header-end)))))
(setq vm-message-order-header-present nil)
(set-buffer-modified-p old-buffer-modified-p))))))
(defun vm-read-index-file-maybe ()
(catch 'done
(if (or (not (stringp buffer-file-name))
(not (stringp vm-index-file-suffix)))
(throw 'done nil))
(let ((index-file (concat buffer-file-name vm-index-file-suffix)))
(if (file-readable-p index-file)
(vm-read-index-file index-file)
nil ))))
(defun vm-read-index-file (index-file)
(catch 'done
(condition-case error-data
(let ((work-buffer nil))
(unwind-protect
(let (obj attr-list cache-list location-list label-list
validity-check vis invis folder-type
bookmark summary labels retrieved order
v m (m-list nil) tail)
(message "Reading index file...")
(setq work-buffer (vm-make-work-buffer))
(save-excursion
(set-buffer work-buffer)
(insert-file-contents-literally index-file))
(goto-char (point-min))
;; check version
(setq obj (read work-buffer))
(if (not (eq obj 1))
(error "Unsupported index file version: %s") obj)
;; folder type
(setq folder-type (read work-buffer))
;; validity check
(setq validity-check (read work-buffer))
(if (null (vm-check-index-file-validity validity-check))
(throw 'done nil))
;; bookmark
(setq bookmark (read work-buffer))
;; message order
(setq order (read work-buffer))
;; what summary format was used to produce the
;; folder's summary cache line.
(setq summary (read work-buffer))
;; folder-wide list of labels
(setq labels (read work-buffer))
;; what vm-visible-headers / vm-invisible-header-regexp
;; settings were used to order the headers and to
;; produce the vm-headers-regexp-of slot value.
(setq vis (read work-buffer))
(setq invis (read work-buffer))
;; location offsets
;; attributes list
;; cache list
;; label list
(setq location-list (read work-buffer))
(setq attr-list (read work-buffer))
(setq cache-list (read work-buffer))
(setq label-list (read work-buffer))
(while location-list
(setq v (car location-list)
m (vm-make-message))
(if (null m-list)
(setq m-list (list m)
tail m-list)
(setcdr tail (list m))
(setq tail (cdr tail)))
(vm-set-start-of m (vm-marker (aref v 0)))
(vm-set-headers-of m (vm-marker (aref v 1)))
(vm-set-text-end-of m (vm-marker (aref v 2)))
(vm-set-end-of m (vm-marker (aref v 3)))
(if (null attr-list)
(error "Attribute list is shorter than location list")
(setq v (car attr-list))
(if (< (length v) vm-attributes-vector-length)
(setq v (vm-extend-vector
v vm-attributes-vector-length)))
(vm-set-attributes-of m v))
(if (null cache-list)
(error "Cache list is shorter than location list")
(setq v (car cache-list))
(if (< (length v) vm-cache-vector-length)
(setq v (vm-extend-vector v vm-cache-vector-length)))
(vm-set-cache-of m v))
(if (null label-list)
(error "Label list is shorter than location list")
(vm-set-labels-of m (car label-list)))
(setq location-list (cdr location-list)
attr-list (cdr attr-list)
cache-list (cdr cache-list)
label-list (cdr label-list)))
;; pop retrieved messages
(setq retrieved (read work-buffer))
(setq vm-message-list m-list
vm-folder-type folder-type
vm-pop-retrieved-messages retrieved)
(vm-startup-apply-bookmark bookmark)
(and order (vm-startup-apply-message-order order))
(vm-startup-apply-summary summary)
(vm-startup-apply-labels labels)
(vm-startup-apply-header-variables vis invis)
(message "Reading index file... done")
t )
(and work-buffer (kill-buffer work-buffer))))
(error (message "Index file read of %s signaled: %s"
index-file error-data)
(sleep-for 2)
(message "Ignoring index file...")
(sleep-for 2)))))
(defun vm-check-index-file-validity (blob)
(save-excursion
(widen)
(catch 'done
(cond ((not (consp blob))
(error "Validity check object not a cons: %s"))
((eq (car blob) 'file)
(let (ch time time2)
(setq blob (cdr blob))
(setq time (car blob)
time2 (vm-gobble-last-modified))
(if (> 0 (vm-time-difference time time2))
(throw 'done nil))
(setq blob (cdr blob))
(while blob
(setq ch (char-after (car blob)))
(if (or (null ch) (not (eq (vm-char-to-int ch) (nth 1 blob))))
(throw 'done nil))
(setq blob (cdr (cdr blob)))))
t )
(t (error "Unknown validity check type: %s" (car blob)))))))
(defun vm-generate-index-file-validity-check ()
(save-restriction
(widen)
(let ((step (/ (point-max) 11))
(pos (1- (point-max)))
(lim (point-min))
(blob nil))
(while (>= pos lim)
(setq blob (cons pos (cons (vm-char-to-int (char-after pos)) blob))
pos (- pos step)))
(cons 'file (cons (current-time) blob)))))
(defun vm-write-index-file-maybe ()
(catch 'done
(if (not (stringp buffer-file-name))
(throw 'done nil))
(if (not (stringp vm-index-file-suffix))
(throw 'done nil))
(let ((index-file (concat buffer-file-name vm-index-file-suffix)))
(vm-write-index-file index-file))))
(defun vm-write-index-file (index-file)
(let ((work-buffer nil))
(unwind-protect
(let ((print-escape-newlines t)
(print-length nil)
m-list mp m)
(message "Sorting for index file...")
(setq m-list (sort (copy-sequence vm-message-list)
(function vm-sort-compare-physical-order)))
(message "Stuffing index file...")
(setq work-buffer (vm-make-work-buffer))
(princ ";; index file version\n" work-buffer)
(prin1 1 work-buffer)
(terpri work-buffer)
(princ ";; folder type\n" work-buffer)
(prin1 vm-folder-type work-buffer)
(terpri work-buffer)
(princ
";; timestamp + sample of folder bytes for consistency check\n"
work-buffer)
(prin1 (vm-generate-index-file-validity-check) work-buffer)
(terpri work-buffer)
(princ ";; bookmark\n" work-buffer)
(princ (if vm-message-pointer
(vm-number-of (car vm-message-pointer))
"1")
work-buffer)
(terpri work-buffer)
(princ ";; message order\n" work-buffer)
(let ((n 0) (mp vm-message-list))
(princ "(" work-buffer)
(setq n 0)
(while mp
(if (zerop (% n 15))
(princ "\n\t" work-buffer)
(princ " " work-buffer))
(princ (vm-number-of (car mp)) work-buffer)
(setq n (1+ n) mp (cdr mp)))
(princ "\n)\n" work-buffer))
(princ ";; summary\n" work-buffer)
(prin1 vm-summary-format work-buffer)
(terpri work-buffer)
(princ ";; labels used in this folder\n" work-buffer)
(let ((list nil))
(mapatoms (function
(lambda (sym)
(setq list (cons (symbol-name sym) list))))
vm-label-obarray)
(prin1 list work-buffer))
(terpri work-buffer)
(princ ";; visible headers\n" work-buffer)
(prin1 vm-visible-headers work-buffer)
(terpri work-buffer)
(princ ";; hidden headers\n" work-buffer)
(prin1 vm-invisible-header-regexp work-buffer)
(terpri work-buffer)
(princ ";; location list\n" work-buffer)
(princ "(\n" work-buffer)
(setq mp m-list)
(while mp
(setq m (car mp))
(princ " [" work-buffer)
(prin1 (marker-position (vm-start-of m)) work-buffer)
(princ " " work-buffer)
(prin1 (marker-position (vm-headers-of m)) work-buffer)
(princ " " work-buffer)
(prin1 (marker-position (vm-text-end-of m)) work-buffer)
(princ " " work-buffer)
(prin1 (marker-position (vm-end-of m)) work-buffer)
(princ "]\n" work-buffer)
(setq mp (cdr mp)))
(princ ")\n" work-buffer)
(princ ";; attribute list\n" work-buffer)
(princ "(\n" work-buffer)
(setq mp m-list)
(while mp
(setq m (car mp))
(princ " " work-buffer)
(prin1 (vm-attributes-of m) work-buffer)
(princ "\n" work-buffer)
(setq mp (cdr mp)))
(princ ")\n" work-buffer)
(princ ";; cache list\n" work-buffer)
(princ "(\n" work-buffer)
(setq mp m-list)
(while mp
(setq m (car mp))
(princ " " work-buffer)
(prin1 (vm-cache-of m) work-buffer)
(princ "\n" work-buffer)
(setq mp (cdr mp)))
(princ ")\n" work-buffer)
(princ ";; labels list\n" work-buffer)
(princ "(\n" work-buffer)
(setq mp m-list)
(while mp
(setq m (car mp))
(princ " " work-buffer)
(prin1 (vm-labels-of m) work-buffer)
(princ "\n" work-buffer)
(setq mp (cdr mp)))
(princ ")\n" work-buffer)
(princ ";; retrieved POP messages\n" work-buffer)
(let ((p vm-pop-retrieved-messages))
(if (null p)
(princ "nil\n" work-buffer)
(princ "(\n" work-buffer)
(while p
(princ "\t" work-buffer)
(prin1 (car p) work-buffer)
(princ "\n" work-buffer)
(setq p (cdr p)))
(princ ")\n" work-buffer)))
(princ ";; end of index file\n" work-buffer)
(message "Writing index file...")
(catch 'done
(save-excursion
(set-buffer work-buffer)
(condition-case data
(let ((coding-system-for-write 'binary))
(write-region (point-min) (point-max) index-file))
(error
(message "Write of %s signaled: %s" index-file data)
(sleep-for 2)
(throw 'done nil))))
(vm-error-free-call 'set-file-modes index-file 384) ;; 384 == 0600
(message "Writing index file... done")
t ))
(and work-buffer (kill-buffer work-buffer)))))
(defun vm-delete-index-file ()
(let ((index-file (concat buffer-file-name vm-index-file-suffix)))
(vm-error-free-call 'delete-file index-file)))
(defun vm-change-all-new-to-unread ()
(let ((mp vm-message-list))
(while mp
(if (vm-new-flag (car mp))
(progn
(vm-set-new-flag (car mp) nil)
(vm-set-unread-flag (car mp) t)))
(setq mp (cdr mp)))))
(defun vm-unread-message (&optional count)
"Set the `unread' attribute for the current message. If the message is
already new or unread, then it is left unchanged.
Numeric prefix argument N means to unread the current message plus the
next N-1 messages. A negative N means unread the current message and
the previous N-1 messages.
When invoked on marked messages (via vm-next-command-uses-marks),
all marked messages are affected, other messages are ignored."
(interactive "p")
(or count (setq count 1))
(vm-follow-summary-cursor)
(vm-select-folder-buffer)
(vm-check-for-killed-summary)
(vm-error-if-folder-empty)
(let ((mlist (vm-select-marked-or-prefixed-messages count)))
(while mlist
(if (and (not (vm-unread-flag (car mlist)))
(not (vm-new-flag (car mlist))))
(vm-set-unread-flag (car mlist) t))
(setq mlist (cdr mlist))))
(vm-display nil nil '(vm-unread-message) '(vm-unread-message))
(vm-update-summary-and-mode-line))
(defun vm-quit-just-bury ()
"Bury the current VM folder and summary buffers.
The folder is not altered and Emacs is still visiting it. You
can switch back to it with switch-to-buffer or by using the
Buffer Menu."
(interactive)
(vm-select-folder-buffer)
(if (not (memq major-mode '(vm-mode vm-virtual-mode)))
(error "%s must be invoked from a VM buffer." this-command))
(vm-check-for-killed-summary)
(vm-check-for-killed-presentation)
(save-excursion (run-hooks 'vm-quit-hook))
(vm-garbage-collect-message)
(vm-display nil nil '(vm-quit-just-bury)
'(vm-quit-just-bury quitting))
(if vm-summary-buffer
(vm-display vm-summary-buffer nil nil nil))
(if vm-summary-buffer
(vm-bury-buffer vm-summary-buffer))
(if vm-presentation-buffer-handle
(vm-display vm-presentation-buffer-handle nil nil nil))
(if vm-presentation-buffer-handle
(vm-bury-buffer vm-presentation-buffer-handle))
(vm-display (current-buffer) nil nil nil)
(vm-bury-buffer (current-buffer)))
(defun vm-quit-just-iconify ()
"Iconify the frame and bury the current VM folder and summary buffers.
The folder is not altered and Emacs is still visiting it."
(interactive)
(vm-select-folder-buffer)
(if (not (memq major-mode '(vm-mode vm-virtual-mode)))
(error "%s must be invoked from a VM buffer." this-command))
(vm-check-for-killed-summary)
(vm-check-for-killed-presentation)
(save-excursion (run-hooks 'vm-quit-hook))
(vm-garbage-collect-message)
(vm-display nil nil '(vm-quit-just-iconify)
'(vm-quit-just-iconify quitting))
(let ((summary-buffer vm-summary-buffer)
(pres-buffer vm-presentation-buffer-handle))
(vm-bury-buffer (current-buffer))
(if summary-buffer
(vm-bury-buffer summary-buffer))
(if pres-buffer
(vm-bury-buffer pres-buffer))
(vm-iconify-frame)))
(defun vm-quit-no-change ()
"Quit visiting the current folder without saving changes made to the folder."
(interactive)
(vm-quit t))
(defun vm-quit (&optional no-change)
"Quit visiting the current folder, saving changes. Deleted messages are not expunged."
(interactive)
(vm-select-folder-buffer)
(if (not (memq major-mode '(vm-mode vm-virtual-mode)))
(error "%s must be invoked from a VM buffer." this-command))
(vm-check-for-killed-summary)
(vm-check-for-killed-presentation)
(vm-display nil nil '(vm-quit vm-quit-no-change)
(list this-command 'quitting))
(let ((virtual (eq major-mode 'vm-virtual-mode)))
(cond
((and (not virtual) no-change (buffer-modified-p)
(or buffer-file-name buffer-offer-save)
(not (zerop vm-messages-not-on-disk))
;; Folder may have been saved with C-x C-s and attributes may have
;; been changed after that; in that case vm-messages-not-on-disk
;; would not have been zeroed. However, all modification flag
;; undos are cleared if VM actually modifies the folder buffer
;; (as opposed to the folder's attributes), so this can be used
;; to verify that there are indeed unsaved messages.
(null (assq 'vm-set-buffer-modified-p vm-undo-record-list))
(not
(y-or-n-p
(format
"%d message%s have not been saved to disk, quit anyway? "
vm-messages-not-on-disk
(if (= 1 vm-messages-not-on-disk) "" "s")))))
(error "Aborted"))
((and (not virtual)
no-change
(or buffer-file-name buffer-offer-save)
(buffer-modified-p)
vm-confirm-quit
(not (y-or-n-p "There are unsaved changes, quit anyway? ")))
(error "Aborted"))
((and (eq vm-confirm-quit t)
(not (y-or-n-p "Do you really want to quit? ")))
(error "Aborted")))
(save-excursion (run-hooks 'vm-quit-hook))
(vm-garbage-collect-message)
(vm-garbage-collect-folder)
(vm-virtual-quit)
(if (and (not no-change) (not virtual))
(progn
;; this could take a while, so give the user some feedback
(message "Quitting...")
(or vm-folder-read-only (eq major-mode 'vm-virtual-mode)
(vm-change-all-new-to-unread))))
(if (and (buffer-modified-p)
(or buffer-file-name buffer-offer-save)
(not no-change)
(not virtual))
(vm-save-folder))
(message "")
(let ((summary-buffer vm-summary-buffer)
(pres-buffer vm-presentation-buffer-handle)
(mail-buffer (current-buffer)))
(if summary-buffer
(progn
(vm-display summary-buffer nil nil nil)
(kill-buffer summary-buffer)))
(if pres-buffer
(progn
(vm-display pres-buffer nil nil nil)
(kill-buffer pres-buffer)))
(set-buffer mail-buffer)
(vm-display mail-buffer nil nil nil)
;; vm-display is not supposed to change the current buffer.
;; still it's better to be safe here.
(set-buffer mail-buffer)
(set-buffer-modified-p nil)
(kill-buffer (current-buffer)))
(vm-update-summary-and-mode-line)))
(defun vm-start-itimers-if-needed ()
(cond ((and (not (natnump vm-flush-interval))
(not (natnump vm-auto-get-new-mail))
(not (natnump vm-mail-check-interval))))
((condition-case data
(progn (require 'itimer) t)
(error nil))
(and (natnump vm-flush-interval) (not (get-itimer "vm-flush"))
(start-itimer "vm-flush" 'vm-flush-itimer-function
vm-flush-interval nil))
(and (natnump vm-auto-get-new-mail) (not (get-itimer "vm-get-mail"))
(start-itimer "vm-get-mail" 'vm-get-mail-itimer-function
vm-auto-get-new-mail nil))
(and (natnump vm-mail-check-interval)
(not (get-itimer "vm-check-mail"))
(start-itimer "vm-check-mail" 'vm-check-mail-itimer-function
vm-mail-check-interval nil)))
((condition-case data
(progn (require 'timer) t)
(error nil))
(let (timer)
(and (natnump vm-flush-interval)
(not (vm-timer-using 'vm-flush-itimer-function))
(setq timer (run-at-time vm-flush-interval vm-flush-interval
'vm-flush-itimer-function nil))
(timer-set-function timer 'vm-flush-itimer-function
(list timer)))
(and (natnump vm-mail-check-interval)
(not (vm-timer-using 'vm-check-mail-itimer-function))
(setq timer (run-at-time vm-mail-check-interval
vm-mail-check-interval
'vm-check-mail-itimer-function nil))
(timer-set-function timer 'vm-check-mail-itimer-function
(list timer)))
(and (natnump vm-auto-get-new-mail)
(not (vm-timer-using 'vm-get-mail-itimer-function))
(setq timer (run-at-time vm-auto-get-new-mail
vm-auto-get-new-mail
'vm-get-mail-itimer-function nil))
(timer-set-function timer 'vm-get-mail-itimer-function
(list timer)))))
(t
(setq vm-flush-interval t
vm-auto-get-new-mail t))))
(defun vm-timer-using (fun)
(let ((p timer-list)
(done nil))
(while (and p (not done))
(if (eq (aref (car p) 5) fun)
(setq done t)
(setq p (cdr p))))
p ))
;; support for vm-mail-check-interval
;; if timer argument is present, this means we're using the Emacs
;; 'timer package rather than the 'itimer package.
(defun vm-check-mail-itimer-function (&optional timer)
;; FSF Emacs sets this non-nil, which means the user can't
;; interrupt the check. Bogus.
(setq inhibit-quit nil)
(if (integerp vm-mail-check-interval)
(if timer
(timer-set-time timer (current-time) vm-mail-check-interval)
(set-itimer-restart current-itimer vm-mail-check-interval))
;; user has changed the variable value to something that
;; isn't a number, make the timer go away.
(if timer
(cancel-timer timer)
(set-itimer-restart current-itimer nil)))
(let ((b-list (buffer-list))
(found-one nil)
oldval)
(while (and (not (input-pending-p)) b-list)
(save-excursion
(set-buffer (car b-list))
(if (and (eq major-mode 'vm-mode)
(setq found-one t)
;; to avoid reentrance into the pop code
(not vm-block-new-mail)
;; Don't bother checking if we already know from
;; a previous check that there's mail waiting
;; and the user hasn't retrieved it yet. Not
;; completely accurate, but saves network
;; connection build and tear down which is slow
;; for some users.
(not vm-spooled-mail-waiting))
(progn
(setq oldval vm-spooled-mail-waiting)
(vm-check-for-spooled-mail nil)
(if (not (eq oldval vm-spooled-mail-waiting))
(progn
(intern (buffer-name) vm-buffers-needing-display-update)
(vm-update-summary-and-mode-line))))))
(setq b-list (cdr b-list)))
;; make the timer go away if we didn't encounter a vm-mode buffer.
(if (and (not found-one) (null b-list))
(if timer
(cancel-timer timer)
(set-itimer-restart current-itimer nil)))))
;; support for numeric vm-auto-get-new-mail
;; if timer argument is present, this means we're using the Emacs
;; 'timer package rather than the 'itimer package.
(defun vm-get-mail-itimer-function (&optional timer)
;; FSF Emacs sets this non-nil, which means the user can't
;; interrupt mail retrieval. Bogus.
(setq inhibit-quit nil)
(if (integerp vm-auto-get-new-mail)
(if timer
(timer-set-time timer (current-time) vm-auto-get-new-mail)
(set-itimer-restart current-itimer vm-auto-get-new-mail))
;; user has changed the variable value to something that
;; isn't a number, make the timer go away.
(if timer
(cancel-timer timer)
(set-itimer-restart current-itimer nil)))
(let ((b-list (buffer-list))
(found-one nil))
(while (and (not (input-pending-p)) b-list)
(save-excursion
(set-buffer (car b-list))
(if (and (eq major-mode 'vm-mode)
(setq found-one t)
(not (and (not (buffer-modified-p))
buffer-file-name
(file-newer-than-file-p
(make-auto-save-file-name)
buffer-file-name)))
(not vm-block-new-mail)
(not vm-folder-read-only)
(vm-get-spooled-mail nil)
(vm-assimilate-new-messages t))
(progn
;; don't move the message pointer unless the folder
;; was empty.
(if (and (null vm-message-pointer)
(vm-thoughtfully-select-message))
(vm-preview-current-message)
(vm-update-summary-and-mode-line)))))
(setq b-list (cdr b-list)))
;; make the timer go away if we didn't encounter a vm-mode buffer.
(if (and (not found-one) (null b-list))
(if timer
(cancel-timer timer)
(set-itimer-restart current-itimer nil)))))
;; support for numeric vm-flush-interval
;; if timer argument is present, this means we're using the Emacs
;; 'timer package rather than the 'itimer package.
(defun vm-flush-itimer-function (&optional timer)
(if (integerp vm-flush-interval)
(if timer
(timer-set-time timer (current-time) vm-flush-interval)
(set-itimer-restart current-itimer vm-flush-interval)))
;; if no vm-mode buffers are found, we might as well shut down the
;; flush itimer.
(if (not (vm-flush-cached-data))
(if timer
(cancel-timer timer)
(set-itimer-restart current-itimer nil))))
;; flush cached data in all vm-mode buffers.
;; returns non-nil if any vm-mode buffers were found.
(defun vm-flush-cached-data ()
(save-excursion
(let ((buf-list (buffer-list))
(found-one nil))
(while (and buf-list (not (input-pending-p)))
(set-buffer (car buf-list))
(cond ((and (eq major-mode 'vm-mode) vm-message-list)
(setq found-one t)
(if (not (eq vm-modification-counter
vm-flushed-modification-counter))
(progn
(vm-stuff-summary)
(vm-stuff-labels)
(and vm-message-order-changed
(vm-stuff-message-order))
(and (vm-stuff-folder-attributes t)
(setq vm-flushed-modification-counter
vm-modification-counter))))))
(setq buf-list (cdr buf-list)))
;; if we haven't checked them all return non-nil so
;; the flusher won't give up trying.
(or buf-list found-one) )))
;; This allows C-x C-s to do the right thing for VM mail buffers.
;; Note that deleted messages are not expunged.
(defun vm-write-file-hook ()
(if (and (eq major-mode 'vm-mode) (not vm-inhibit-write-file-hook))
;; The vm-save-restriction isn't really necessary here, since
;; the stuff routines clean up after themselves, but should remain
;; as a safeguard against the time when other stuff is added here.
(vm-save-restriction
(let ((buffer-read-only))
(vm-stuff-folder-attributes nil)
(if vm-message-list
(progn
;; get summary cache up-to-date
(vm-update-summary-and-mode-line)
(vm-stuff-bookmark)
(vm-stuff-pop-retrieved)
(vm-stuff-last-modified)
(vm-stuff-header-variables)
(vm-stuff-labels)
(vm-stuff-summary)
(and vm-message-order-changed
(vm-stuff-message-order))))
nil ))))
(defun vm-save-buffer (prefix)
(interactive "P")
(vm-select-folder-buffer)
(vm-error-if-virtual-folder)
(save-buffer prefix)
(intern (buffer-name) vm-buffers-needing-display-update)
(setq vm-block-new-mail nil)
(vm-display nil nil '(vm-save-buffer) '(vm-save-buffer))
(vm-update-summary-and-mode-line)
(vm-write-index-file-maybe))
(defun vm-write-file ()
(interactive)
(vm-select-folder-buffer)
(vm-error-if-virtual-folder)
(let ((old-buffer-name (buffer-name)))
(save-excursion
(call-interactively 'write-file))
(if (not (equal (buffer-name) old-buffer-name))
(progn
(vm-check-for-killed-summary)
(if vm-summary-buffer
(save-excursion
(let ((name (buffer-name)))
(set-buffer vm-summary-buffer)
(rename-buffer (format "%s Summary" name) t))))
(vm-check-for-killed-presentation)
(if vm-presentation-buffer-handle
(save-excursion
(let ((name (buffer-name)))
(set-buffer vm-presentation-buffer-handle)
(rename-buffer (format "%s Presentation" name) t)))))))
(intern (buffer-name) vm-buffers-needing-display-update)
(setq vm-block-new-mail nil)
(vm-display nil nil '(vm-write-file) '(vm-write-file))
(vm-update-summary-and-mode-line)
(vm-write-index-file-maybe))
(defun vm-unblock-new-mail ()
(setq vm-block-new-mail nil))
(defun vm-save-folder (&optional prefix)
"Save current folder to disk.
Deleted messages are not expunged.
Prefix arg is handled the same as for the command save-buffer.
When applied to a virtual folder, this command runs itself on
each of the underlying real folders associated with the virtual
folder."
(interactive (list current-prefix-arg))
(vm-select-folder-buffer)
(vm-check-for-killed-summary)
(vm-display nil nil '(vm-save-folder) '(vm-save-folder))
(if (eq major-mode 'vm-virtual-mode)
(vm-virtual-save-folder prefix)
(if (buffer-modified-p)
(let (mp (newlist nil))
;; stuff the attributes of messages that need it.
(message "Stuffing attributes...")
(vm-stuff-folder-attributes nil)
;; stuff bookmark and header variable values
(if vm-message-list
(progn
;; get summary cache up-to-date
(vm-update-summary-and-mode-line)
(vm-stuff-bookmark)
(vm-stuff-pop-retrieved)
(vm-stuff-last-modified)
(vm-stuff-header-variables)
(vm-stuff-labels)
(vm-stuff-summary)
(and vm-message-order-changed
(vm-stuff-message-order))))
(message "Saving...")
(let ((vm-inhibit-write-file-hook t))
(save-buffer prefix))
(vm-set-buffer-modified-p nil)
(vm-clear-modification-flag-undos)
(setq vm-messages-not-on-disk 0)
(setq vm-block-new-mail nil)
(vm-write-index-file-maybe)
(vm-update-summary-and-mode-line)
(and (zerop (buffer-size))
vm-delete-empty-folders
buffer-file-name
(or (eq vm-delete-empty-folders t)
(y-or-n-p (format "%s is empty, remove it? "
(or buffer-file-name (buffer-name)))))
(condition-case ()
(progn
(delete-file buffer-file-name)
(vm-delete-index-file)
(clear-visited-file-modtime)
(message "%s removed" buffer-file-name))
;; no can do, oh well.
(error nil))))
(message "No changes need to be saved"))))
(defun vm-save-and-expunge-folder (&optional prefix)
"Expunge folder, then save it to disk.
Prefix arg is handled the same as for the command save-buffer.
Expunge won't be done if folder is read-only.
When applied to a virtual folder, this command works as if you had
run vm-expunge-folder followed by vm-save-folder."
(interactive (list current-prefix-arg))
(vm-select-folder-buffer)
(vm-check-for-killed-summary)
(vm-display nil nil '(vm-save-and-expunge-folder)
'(vm-save-and-expunge-folder))
(if (not vm-folder-read-only)
(progn
(message "Expunging...")
(vm-expunge-folder t)))
(vm-save-folder prefix))
(defun vm-handle-file-recovery-or-reversion (recovery)
(if (and vm-summary-buffer (buffer-name vm-summary-buffer))
(kill-buffer vm-summary-buffer))
(vm-virtual-quit)
;; reset major mode, this will cause vm to start from scratch.
(setq major-mode 'fundamental-mode)
;; If this is a recovery, we can't allow the user to get new
;; mail until a real save is performed. Until then the buffer
;; and the disk don't match.
(if recovery
(setq vm-block-new-mail t))
(vm buffer-file-name))
;; detect if a recover-file is being performed
;; and handle things properly.
(defun vm-handle-file-recovery ()
(if (and (buffer-modified-p)
(eq major-mode 'vm-mode)
vm-message-list
(= (vm-end-of (car vm-message-list)) 1))
(vm-handle-file-recovery-or-reversion t)))
;; detect if a revert-buffer is being performed
;; and handle things properly.
(defun vm-handle-file-reversion ()
(if (and (not (buffer-modified-p))
(eq major-mode 'vm-mode)
vm-message-list
(= (vm-end-of (car vm-message-list)) 1))
(vm-handle-file-recovery-or-reversion nil)))
;; FSF v19.23 revert-buffer doesn't mash all the markers together
;; like v18 and prior v19 versions, so the check in
;; vm-handle-file-reversion doesn't work. However v19.23 has a
;; hook we can use, after-revert-hook.
(defun vm-after-revert-buffer-hook ()
(if (eq major-mode 'vm-mode)
(vm-handle-file-recovery-or-reversion nil)))
(defun vm-help ()
"Display help for various VM activities."
(interactive)
(if (eq major-mode 'vm-summary-mode)
(vm-select-folder-buffer))
(let ((pop-up-windows (and pop-up-windows (eq vm-mutable-windows t)))
(pop-up-frames (and vm-mutable-frames vm-frame-per-help)))
(cond
((eq last-command 'vm-help)
(describe-function major-mode))
((eq vm-system-state 'previewing)
(message "Type SPC to read message, n previews next message (? gives more help)"))
((memq vm-system-state '(showing reading))
(message "SPC and b scroll, (d)elete, (s)ave, (n)ext, (r)eply (? gives more help)"))
((eq vm-system-state 'editing)
(message
(substitute-command-keys
"Type \\[vm-edit-message-end] to end edit, \\[vm-edit-message-abort] to abort with no change.")))
((eq major-mode 'mail-mode)
(message
(substitute-command-keys
"Type \\[vm-mail-send-and-exit] to send message, \\[kill-buffer] to discard this composition")))
(t (describe-mode)))))
(defun vm-spool-move-mail (source destination)
(let ((handler (and (fboundp 'find-file-name-handler)
(condition-case ()
(find-file-name-handler source 'vm-spool-move-mail)
(wrong-number-of-arguments
(find-file-name-handler source)))))
status error-buffer)
(if handler
(funcall handler 'vm-spool-move-mail source destination)
(setq error-buffer
(get-buffer-create
(format "*output of %s %s %s*"
vm-movemail-program source destination)))
(save-excursion
(set-buffer error-buffer)
(erase-buffer))
(setq status
(call-process vm-movemail-program nil error-buffer t
source destination))
(save-excursion
(set-buffer error-buffer)
(if (and (numberp status) (not (= 0 status)))
(insert (format "\n%s exited with code %s\n"
vm-movemail-program status)))
(if (> (buffer-size) 0)
(progn
(vm-display-buffer error-buffer)
(if (and (numberp status) (not (= 0 status)))
(error "Failed getting new mail from %s" source)
(message "Warning: unexpected output from %s"
vm-movemail-program)
(sleep-for 2)))
;; nag, nag, nag.
(kill-buffer error-buffer))
t ))))
(defun vm-gobble-crash-box (crash-box)
(save-excursion
(vm-save-restriction
(widen)
(let ((opoint-max (point-max)) crash-buf
(buffer-read-only nil)
(inbox-buffer-file buffer-file-name)
(inbox-folder-type vm-folder-type)
(inbox-empty (zerop (buffer-size)))
got-mail crash-folder-type
(old-buffer-modified-p (buffer-modified-p)))
(setq crash-buf
;; crash box could contain a letter bomb...
;; force user notification of file variables for v18 Emacses
;; enable-local-variables == nil disables them for newer Emacses
(let ((inhibit-local-variables t)
(enable-local-variables nil)
(coding-system-for-read 'no-conversion))
(find-file-noselect crash-box)))
(save-excursion
(set-buffer crash-buf)
(setq crash-folder-type (vm-get-folder-type))
(if (and crash-folder-type vm-check-folder-types)
(cond ((eq crash-folder-type 'unknown)
(error "crash box %s's type is unrecognized" crash-box))
((eq inbox-folder-type 'unknown)
(error "inbox %s's type is unrecognized"
inbox-buffer-file))
((null inbox-folder-type)
(if vm-default-folder-type
(if (not (eq vm-default-folder-type
crash-folder-type))
(if vm-convert-folder-types
(progn
(vm-convert-folder-type
crash-folder-type
vm-default-folder-type)
;; so that kill-buffer won't ask a
;; question later...
(set-buffer-modified-p nil))
(error "crash box %s mismatches vm-default-folder-type: %s, %s"
crash-box crash-folder-type
vm-default-folder-type)))))
((not (eq inbox-folder-type crash-folder-type))
(if vm-convert-folder-types
(progn
(vm-convert-folder-type crash-folder-type
inbox-folder-type)
;; so that kill-buffer won't ask a
;; question later...
(set-buffer-modified-p nil))
(error "crash box %s mismatches %s's folder type: %s, %s"
crash-box inbox-buffer-file
crash-folder-type inbox-folder-type)))))
;; toss the folder header if the inbox is not empty
(goto-char (point-min))
(if (not inbox-empty)
(progn
(vm-convert-folder-header (or inbox-folder-type
vm-default-folder-type)
nil)
(set-buffer-modified-p nil))))
(goto-char (point-max))
(insert-buffer-substring crash-buf
1 (1+ (save-excursion
(set-buffer crash-buf)
(widen)
(buffer-size))))
(setq got-mail (/= opoint-max (point-max)))
(if (not got-mail)
nil
(write-region opoint-max (point-max) buffer-file-name t t)
(vm-increment vm-modification-counter)
(set-buffer-modified-p old-buffer-modified-p))
(kill-buffer crash-buf)
(if (not (stringp vm-keep-crash-boxes))
(vm-error-free-call 'delete-file crash-box)
(let ((time (decode-time (current-time)))
name)
(setq name
(expand-file-name (format "Z-%02d-%02d-%05d"
(nth 4 time)
(nth 3 time)
(% (vm-abs (random)) 100000))
vm-keep-crash-boxes))
(while (file-exists-p name)
(setq name
(expand-file-name (format "Z-%02d-%02d-%05d"
(nth 4 time)
(nth 3 time)
(% (vm-abs (random)) 100000))
vm-keep-crash-boxes)))
(rename-file crash-box name)))
got-mail ))))
(defun vm-compute-spool-files ()
(let ((fallback-triples nil)
triples)
(cond ((and buffer-file-name
(consp vm-spool-file-suffixes)
(stringp vm-crash-box-suffix))
(setq fallback-triples
(mapcar (function
(lambda (suffix)
(list buffer-file-name
(concat buffer-file-name suffix)
(concat buffer-file-name
vm-crash-box-suffix))))
vm-spool-file-suffixes))))
(cond ((and buffer-file-name
vm-make-spool-file-name vm-make-crash-box-name)
(setq fallback-triples
(nconc fallback-triples
(list (list buffer-file-name
(save-excursion
(funcall vm-make-spool-file-name
buffer-file-name))
(save-excursion
(funcall vm-make-crash-box-name
buffer-file-name))))))))
(cond ((null (vm-spool-files))
(setq triples (list
(list vm-primary-inbox
(concat vm-spool-directory (user-login-name))
vm-crash-box))))
((stringp (car (vm-spool-files)))
(setq triples
(mapcar (function
(lambda (s) (list vm-primary-inbox s vm-crash-box)))
(vm-spool-files))))
((consp (car (vm-spool-files)))
(setq triples (vm-spool-files))))
(setq triples (append triples fallback-triples))
triples ))
(defun vm-spool-check-mail (source)
(let ((handler (and (fboundp 'find-file-name-handler)
(condition-case ()
(find-file-name-handler source 'vm-spool-check-mail)
(wrong-number-of-arguments
(find-file-name-handler source))))))
(if handler
(funcall handler 'vm-spool-check-mail source)
(and (not (equal 0 (nth 7 (file-attributes source))))
(file-readable-p source)))))
(defun vm-movemail-specific-spool-file-p (file)
(string-match "^po:[^:]+$" file))
(defun vm-check-for-spooled-mail (&optional interactive)
(if vm-block-new-mail
nil
(let ((triples (vm-compute-spool-files))
;; since we could accept-process-output here (POP code),
;; a timer process might try to start retrieving mail
;; before we finish. block these attempts.
(vm-block-new-mail t)
(vm-pop-ok-to-ask interactive)
(done nil)
crash in maildrop popdrop
(mail-waiting nil))
(while (and triples (not done))
(setq in (expand-file-name (nth 0 (car triples)) vm-folder-directory)
maildrop (nth 1 (car triples))
crash (nth 2 (car triples)))
(if (vm-movemail-specific-spool-file-p maildrop)
;; spool file is accessible only with movemail
;; so skip it.
nil
(if (eq (current-buffer) (vm-get-file-buffer in))
(progn
(if (file-exists-p crash)
(progn
(setq mail-waiting t
done t))
(setq popdrop (and vm-recognize-pop-maildrops
(string-match vm-recognize-pop-maildrops
maildrop)))
(if (not interactive)
;; allow no error to be signaled
(condition-case nil
(setq mail-waiting
(or mail-waiting
(if popdrop
(vm-pop-check-mail maildrop)
(vm-spool-check-mail maildrop))))
(error nil))
(setq mail-waiting (or mail-waiting
(if popdrop
(vm-pop-check-mail maildrop)
(vm-spool-check-mail maildrop)))))
(if mail-waiting
(setq done t))))))
(setq triples (cdr triples)))
(setq vm-spooled-mail-waiting mail-waiting)
mail-waiting )))
(defun vm-get-spooled-mail (&optional interactive)
(if vm-block-new-mail
(error "Can't get new mail until you save this folder."))
(let ((triples (vm-compute-spool-files))
;; since we could accept-process-output here (POP code),
;; a timer process might try to start retrieving mail
;; before we finish. block these attempts.
(vm-block-new-mail t)
(vm-pop-ok-to-ask interactive)
crash in maildrop popdrop need-movemail
(got-mail nil))
(if (and (not (verify-visited-file-modtime (current-buffer)))
(or (null interactive)
(not (yes-or-no-p
(format
"Folder %s changed on disk, discard those changes? "
(buffer-name (current-buffer)))))))
(progn
(message "Folder %s changed on disk, consider M-x revert-buffer"
(buffer-name (current-buffer)))
(sleep-for 2)
nil )
(while triples
(setq in (expand-file-name (nth 0 (car triples)) vm-folder-directory)
maildrop (nth 1 (car triples))
crash (nth 2 (car triples))
need-movemail (vm-movemail-specific-spool-file-p maildrop))
(if (eq (current-buffer) (vm-get-file-buffer in))
(let (retrieval-function)
(if (file-exists-p crash)
(progn
(message "Recovering messages from %s..." crash)
(setq got-mail (or (vm-gobble-crash-box crash) got-mail))
(message "Recovering messages from %s... done" crash)))
(setq popdrop (and (not need-movemail)
vm-recognize-pop-maildrops
(string-match vm-recognize-pop-maildrops
maildrop)
;; maildrop with password clipped
(vm-safe-popdrop-string maildrop)))
(if (or popdrop need-movemail
(and (not (equal 0 (nth 7 (file-attributes maildrop))))
(file-readable-p maildrop)))
(progn
(setq crash (expand-file-name crash vm-folder-directory))
(cond (need-movemail
(setq retrieval-function 'vm-spool-move-mail))
((not popdrop)
(setq maildrop (expand-file-name maildrop)
retrieval-function 'vm-spool-move-mail))
(t
(setq retrieval-function 'vm-pop-move-mail)))
(if (if got-mail
;; don't allow errors to be signaled unless no
;; mail has been appended to the incore
;; copy of the folder. otherwise the
;; user will wonder where the mail is,
;; since it is not in the crash box or
;; the spool file and doesn't _appear_ to
;; be in the folder either.
(condition-case error-data
(funcall retrieval-function maildrop crash)
(error (message "%s signaled: %s"
(if popdrop
'vm-pop-move-mail
'vm-spool-move-mail)
error-data)
(sleep-for 2)
;; we don't know if mail was
;; put into the crash box or
;; not, so return t just to be
;; safe.
t )
(quit (message "quitting from %s..."
(if popdrop
'vm-pop-move-mail
'vm-spool-move-mail))
(sleep-for 2)
;; we don't know if mail was
;; put into the crash box or
;; not, so return t just to be
;; safe.
t ))
(funcall retrieval-function maildrop crash))
(if (vm-gobble-crash-box crash)
(progn
(setq got-mail t)
(message "Got mail from %s."
(or popdrop maildrop)))))))))
(setq triples (cdr triples)))
;; not really correct, but it is what the user expects to see.
(if got-mail
(setq vm-spooled-mail-waiting nil))
(intern (buffer-name) vm-buffers-needing-display-update)
(vm-update-summary-and-mode-line)
(if got-mail
(run-hooks 'vm-retrieved-spooled-mail-hook))
got-mail )))
(defun vm-safe-popdrop-string (drop)
(or (and (string-match "^\\([^:]+\\):[^:]+:[^:]+:\\([^:]+\\):[^:]+" drop)
(concat (substring drop (match-beginning 2) (match-end 2))
"@"
(substring drop (match-beginning 1) (match-end 1))))
"???"))
(defun vm-get-new-mail (&optional arg)
"Move any new mail that has arrived in any of the spool files for the
current folder into the folder. New mail is appended to the disk
and buffer copies of the folder.
Prefix arg means to gather mail from a user specified folder, instead of
the usual spool files. The file name will be read from the minibuffer.
Unlike when getting mail from a spool file, the source file is left
undisturbed after its messages have been copied.
When applied to a virtual folder, this command runs itself on
each of the underlying real folders associated with this virtual
folder. A prefix argument has no effect when this command is
applied to virtual folder; mail is always gathered from the spool
files."
(interactive "P")
(vm-select-folder-buffer)
(vm-check-for-killed-summary)
(vm-error-if-folder-read-only)
(cond ((eq major-mode 'vm-virtual-mode)
(vm-virtual-get-new-mail))
((not (eq major-mode 'vm-mode))
(error "Can't get mail for a non-VM folder buffer"))
((null arg)
(if (not (eq major-mode 'vm-mode))
(vm-mode))
(if (consp (car (vm-spool-files)))
(message "Checking for new mail for %s..."
(or buffer-file-name (buffer-name)))
(message "Checking for new mail..."))
(let (totals-blurb)
(if (and (vm-get-spooled-mail t) (vm-assimilate-new-messages t))
(progn
;; say this NOW, before the non-previewers read
;; a message, alter the new message count and
;; confuse themselves.
(setq totals-blurb (vm-emit-totals-blurb))
(vm-display nil nil '(vm-get-new-mail) '(vm-get-new-mail))
(if (vm-thoughtfully-select-message)
(vm-preview-current-message)
(vm-update-summary-and-mode-line))
(message totals-blurb))
(if (consp (car (vm-spool-files)))
(message "No new mail for %s"
(or buffer-file-name (buffer-name)))
(message "No new mail."))
(and (interactive-p) (sit-for 4) (message "")))))
(t
(let ((buffer-read-only nil)
folder mcount totals-blurb)
(setq folder (read-file-name "Gather mail from folder: "
vm-folder-directory t))
(if (and vm-check-folder-types
(not (vm-compatible-folder-p folder)))
(error "Folder %s is not the same format as this folder."
folder))
(save-excursion
(vm-save-restriction
(widen)
(goto-char (point-max))
(let ((coding-system-for-read 'binary))
(insert-file-contents folder))))
(setq mcount (length vm-message-list))
(if (vm-assimilate-new-messages)
(progn
;; say this NOW, before the non-previewers read
;; a message, alter the new message count and
;; confuse themselves.
(setq totals-blurb (vm-emit-totals-blurb))
(vm-display nil nil '(vm-get-new-mail) '(vm-get-new-mail))
(if (vm-thoughtfully-select-message)
(vm-preview-current-message)
(vm-update-summary-and-mode-line))
(message totals-blurb)
;; The gathered messages are actually still on disk
;; unless the user deletes the folder himself.
;; However, users may not understand what happened if
;; the messages go away after a "quit, no save".
(setq vm-messages-not-on-disk
(+ vm-messages-not-on-disk
(- (length vm-message-list)
mcount))))
(message "No messages gathered."))))))
;; returns non-nil if there were any new messages
(defun vm-assimilate-new-messages (&optional
dont-read-attributes
gobble-order
labels)
(let ((tail-cons (vm-last vm-message-list))
b-list new-messages)
(save-excursion
(vm-save-restriction
(widen)
(vm-build-message-list)
(if (or (null tail-cons) (cdr tail-cons))
(progn
(setq vm-ml-sort-keys nil)
(if dont-read-attributes
(vm-set-default-attributes (cdr tail-cons))
(vm-read-attributes (cdr tail-cons)))
;; Yuck. This has to be done here instead of in the
;; vm function because this needs to be done before
;; any initial thread sort (so that if the thread
;; sort matches the saved order the folder won't be
;; modified) but after the message list is created.
;; Since thread sorting is done here this has to be
;; done here too.
(if gobble-order
(vm-gobble-message-order))
(if vm-thread-obarray
(vm-build-threads (cdr tail-cons))))))
(setq new-messages (if tail-cons (cdr tail-cons) vm-message-list))
(vm-set-numbering-redo-start-point new-messages)
(vm-set-summary-redo-start-point new-messages))
;; copy the new-messages list because sorting might scramble
;; it. Also something the user does when
;; vm-arrived-message-hook is run might affect it.
;; vm-assimilate-new-messages returns this value so it must
;; not be mangled.
(setq new-messages (copy-sequence new-messages))
;; add the labels
(if (and labels vm-burst-digest-messages-inherit-labels)
(let ((mp new-messages))
(while mp
(vm-set-labels-of (car mp) (copy-sequence labels))
(setq mp (cdr mp)))))
(if vm-summary-show-threads
(progn
;; get numbering and summary of new messages done now
;; so that the sort code only has to worry about the
;; changes it needs to make.
(vm-update-summary-and-mode-line)
(vm-sort-messages "thread")))
(if (and vm-arrived-message-hook
new-messages
;; tail-cons == nil means vm-message-list was empty.
;; Thus new-messages == vm-message-list. In this
;; case, run the hooks only if this is not the first
;; time vm-assimilate-new-messages has been called
;; in this folder. gobble-order non-nil is a good
;; indicator that this is the first time because the
;; order is gobbled only once per visit and always
;; the first time vm-assimilate-new-messages is
;; called.
(or tail-cons (null gobble-order)))
(let ((new-messages new-messages))
;; seems wise to do this so that if the user runs VM
;; command here they start with as much of a clean
;; slate as we can provide, given we're currently deep
;; in the guts of VM.
(vm-update-summary-and-mode-line)
(while new-messages
(vm-run-message-hook (car new-messages) 'vm-arrived-message-hook)
(setq new-messages (cdr new-messages)))))
(vm-update-summary-and-mode-line)
(run-hooks 'vm-arrived-messages-hook)
(if (and new-messages vm-virtual-buffers)
(save-excursion
(setq b-list vm-virtual-buffers)
(while b-list
;; buffer might be dead
(if (buffer-name (car b-list))
(let (tail-cons)
(set-buffer (car b-list))
(setq tail-cons (vm-last vm-message-list))
(vm-build-virtual-message-list new-messages)
(if (or (null tail-cons) (cdr tail-cons))
(progn
(setq vm-ml-sort-keys nil)
(if vm-thread-obarray
(vm-build-threads (cdr tail-cons)))
(vm-set-summary-redo-start-point
(or (cdr tail-cons) vm-message-list))
(vm-set-numbering-redo-start-point
(or (cdr tail-cons) vm-message-list))
(if (null vm-message-pointer)
(progn (setq vm-message-pointer vm-message-list
vm-need-summary-pointer-update t)
(if vm-message-pointer
(vm-preview-current-message))))
(if vm-summary-show-threads
(progn
(vm-update-summary-and-mode-line)
(vm-sort-messages "thread")))))))
(setq b-list (cdr b-list)))))
new-messages ))
;; return a list of all marked messages or the messages indicated by a
;; prefix argument.
(defun vm-select-marked-or-prefixed-messages (prefix)
(let (mlist)
(if (eq last-command 'vm-next-command-uses-marks)
(setq mlist (vm-marked-messages))
(let ((direction (if (< prefix 0) 'backward 'forward))
(count (vm-abs prefix))
(vm-message-pointer vm-message-pointer))
(if (not (eq vm-circular-folders t))
(vm-check-count prefix))
(while (not (zerop count))
(setq mlist (cons (car vm-message-pointer) mlist))
(vm-decrement count)
(if (not (zerop count))
(vm-move-message-pointer direction))))
(nreverse mlist))))
(defun vm-display-startup-message ()
(if (sit-for 5)
(let ((lines vm-startup-message-lines))
(message "VM %s, Copyright (C) 1998 Kyle E. Jones; type ? for help"
vm-version)
(setq vm-startup-message-displayed t)
(while (and (sit-for 4) lines)
(message (substitute-command-keys (car lines)))
(setq lines (cdr lines)))))
(message ""))
(defun vm-load-init-file (&optional interactive)
(interactive "p")
(if (or (not vm-init-file-loaded) interactive)
(progn
(and vm-init-file
(load vm-init-file (not interactive) (not interactive) t))
(and vm-preferences-file (load vm-preferences-file t t t))))
(setq vm-init-file-loaded t)
(vm-display nil nil '(vm-load-init-file) '(vm-load-init-file)))
(defun vm-session-initialization ()
;; If this is the first time VM has been run in this Emacs session,
;; do some necessary preparations.
(if (or (not (boundp 'vm-session-beginning))
vm-session-beginning)
(progn
(random t)
(vm-load-init-file)
(if (not vm-window-configuration-file)
(setq vm-window-configurations vm-default-window-configuration)
(or (vm-load-window-configurations vm-window-configuration-file)
(setq vm-window-configurations vm-default-window-configuration)))
(setq vm-buffers-needing-display-update (make-vector 29 0))
(setq vm-session-beginning nil))))
(defun vm-toggle-read-only ()
(interactive)
(vm-select-folder-buffer)
(setq vm-folder-read-only (not vm-folder-read-only))
(intern (buffer-name) vm-buffers-needing-display-update)
(message "Folder is now %s"
(if vm-folder-read-only "read-only" "modifiable"))
(vm-display nil nil '(vm-toggle-read-only) '(vm-toggle-read-only))
(vm-update-summary-and-mode-line))
(defvar scroll-in-place)
;; this does the real major mode scutwork.
(defun vm-mode-internal ()
(widen)
(make-local-variable 'require-final-newline)
;; don't kill local variables, as there is some state we'd like to
;; keep. rather than non-portably marking the variables we
;; want to keep, just avoid calling kill-local-variables and
;; reset everything that needs to be reset.
(setq
major-mode 'vm-mode
mode-line-format vm-mode-line-format
mode-name "VM"
;; must come after the setting of major-mode
mode-popup-menu (and vm-use-menus vm-popup-menu-on-mouse-3
(vm-menu-support-possible-p)
(vm-menu-mode-menu))
buffer-read-only t
;; If the user quits a vm-mode buffer, the default action is
;; to kill the buffer. Make a note that we should offer to
;; save this buffer even if it has no file associated with it.
;; We have no idea of the value of the data in the buffer
;; before it was put into vm-mode.
buffer-offer-save t
require-final-newline nil
vm-thread-obarray nil
vm-thread-subject-obarray nil
vm-label-obarray (make-vector 29 0)
vm-last-message-pointer nil
vm-modification-counter 0
vm-message-list nil
vm-message-pointer nil
vm-message-order-changed nil
vm-message-order-header-present nil
vm-pop-retrieved-messages nil
vm-summary-buffer nil
vm-system-state nil
vm-undo-record-list nil
vm-undo-record-pointer nil
vm-virtual-buffers (vm-link-to-virtual-buffers)
vm-folder-type (vm-get-folder-type))
(use-local-map vm-mode-map)
;; if the user saves after M-x recover-file, let them get new
;; mail again.
(add-hook 'after-save-hook 'vm-unblock-new-mail)
(and (vm-menu-support-possible-p)
(vm-menu-install-menus))
(add-hook 'kill-buffer-hook 'vm-garbage-collect-folder)
(add-hook 'kill-buffer-hook 'vm-garbage-collect-message)
;; avoid the XEmacs file dialog box.
(defvar use-dialog-box)
(make-local-variable 'use-dialog-box)
(setq use-dialog-box nil)
;; mail folders are precious. protect them by default.
(make-local-variable 'file-precious-flag)
(setq file-precious-flag t)
;; scroll in place messes with scroll-up and this loses
(make-local-variable 'scroll-in-place)
(setq scroll-in-place nil)
(run-hooks 'vm-mode-hook)
;; compatibility
(run-hooks 'vm-mode-hooks))
(defun vm-link-to-virtual-buffers ()
(let ((b-list (buffer-list))
(vbuffers nil)
(folder-buffer (current-buffer))
folders clauses)
(save-excursion
(while b-list
(set-buffer (car b-list))
(cond ((eq major-mode 'vm-virtual-mode)
(setq clauses (cdr vm-virtual-folder-definition))
(while clauses
(setq folders (car (car clauses)))
(while folders
(if (eq folder-buffer (vm-get-file-buffer
(expand-file-name
(car folders)
vm-folder-directory)))
(setq vbuffers (cons (car b-list) vbuffers)
vm-real-buffers (cons folder-buffer
vm-real-buffers)
folders nil
clauses nil))
(setq folders (cdr folders)))
(setq clauses (cdr clauses)))))
(setq b-list (cdr b-list)))
vbuffers )))
(defun vm-change-folder-type (type)
"Change folder type to TYPE.
TYPE may be one of the following symbol values:
From_
From_-with-Content-Length
mmdf
babyl
Interactively TYPE will be read from the minibuffer."
(interactive
(let ((this-command this-command)
(last-command last-command)
(types vm-supported-folder-types))
(vm-select-folder-buffer)
(vm-error-if-virtual-folder)
(setq types (vm-delqual (symbol-name vm-folder-type)
(copy-sequence types)))
(list (intern (vm-read-string "Change folder to type: " types)))))
(vm-select-folder-buffer)
(vm-check-for-killed-summary)
(vm-error-if-virtual-folder)
(vm-error-if-folder-empty)
(if (not (memq type '(From_ From_-with-Content-Length mmdf babyl)))
(error "Unknown folder type: %s" type))
(if (or (null vm-folder-type)
(eq vm-folder-type 'unknown))
(error "Current folder's type is unknown, can't change it."))
(let ((mp vm-message-list)
(buffer-read-only nil)
(old-type vm-folder-type)
;; no interruptions
(inhibit-quit t)
(n 0)
;; Just for laughs, make the update interval vary.
(modulus (+ (% (vm-abs (random)) 11) 5))
text-end opoint)
(save-excursion
(vm-save-restriction
(widen)
(setq vm-folder-type type)
(goto-char (point-min))
(vm-convert-folder-header old-type type)
(while mp
(goto-char (vm-start-of (car mp)))
(setq opoint (point))
(insert (vm-leading-message-separator type (car mp)))
(if (> (vm-headers-of (car mp)) (vm-start-of (car mp)))
(delete-region (point) (vm-headers-of (car mp)))
(set-marker (vm-headers-of (car mp)) (point))
;; if headers-of == start-of then so could vheaders-of
;; and text-of. clear them to force a recompute.
(vm-set-vheaders-of (car mp) nil)
(vm-set-text-of (car mp) nil))
(vm-convert-folder-type-headers old-type type)
(goto-char (vm-text-end-of (car mp)))
(setq text-end (point))
(insert-before-markers (vm-trailing-message-separator type))
(delete-region (vm-text-end-of (car mp)) (vm-end-of (car mp)))
(set-marker (vm-text-end-of (car mp)) text-end)
(goto-char (vm-headers-of (car mp)))
(vm-munge-message-separators type (vm-headers-of (car mp))
(vm-text-end-of (car mp)))
(vm-set-byte-count-of (car mp) nil)
(vm-set-babyl-frob-flag-of (car mp) nil)
(vm-set-message-type-of (car mp) type)
;; Technically we should mark each message for a
;; summary update since the message byte counts might
;; have changed. But I don't think anyone cares that
;; much and the summary regeneration would make this
;; process slower.
(setq mp (cdr mp) n (1+ n))
(if (zerop (% n modulus))
(message "Converting... %d" n))))))
(vm-clear-modification-flag-undos)
(intern (buffer-name) vm-buffers-needing-display-update)
(vm-update-summary-and-mode-line)
(message "Conversion complete.")
;; message separator strings may have leaked into view
(if (> (point-max) (vm-text-end-of (car vm-message-pointer)))
(narrow-to-region (point-min) (vm-text-end-of (car vm-message-pointer))))
(vm-display nil nil '(vm-change-folder-type) '(vm-change-folder-type)))
(defun vm-garbage-collect-folder ()
(save-excursion
(while vm-folder-garbage-alist
(condition-case nil
(funcall (cdr (car vm-folder-garbage-alist))
(car (car vm-folder-garbage-alist)))
(error nil))
(setq vm-folder-garbage-alist (cdr vm-folder-garbage-alist)))))
(defun vm-garbage-collect-message ()
(save-excursion
(while vm-message-garbage-alist
(condition-case nil
(funcall (cdr (car vm-message-garbage-alist))
(car (car vm-message-garbage-alist)))
(error nil))
(setq vm-message-garbage-alist (cdr vm-message-garbage-alist)))))
(if (not (memq 'vm-write-file-hook write-file-hooks))
(setq write-file-hooks
(cons 'vm-write-file-hook write-file-hooks)))
(if (not (memq 'vm-handle-file-recovery find-file-hooks))
(setq find-file-hooks
(nconc find-file-hooks
'(vm-handle-file-recovery
vm-handle-file-reversion))))
;; after-revert-hook is new to FSF v19.23
(defvar after-revert-hook)
(if (boundp 'after-revert-hook)
(setq after-revert-hook
(cons 'vm-after-revert-buffer-hook after-revert-hook))
(setq after-revert-hook (list 'vm-after-revert-buffer-hook)))
|