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
|
# $Header$
###########################################################################
#
#
# TkMail -- A Tk/Tcl interface to Mail
# by Paul Raines (raines@slac.stanford.edu)
#
###########################################################################
# -*- Mode: tcl-mode -*-
global mf mfp
# TYPES OF USER SETTINGS
# N Number
# S Short string (edit in entry widget)
# L Long string (edit in text widget)
# K Key sequence for bind command
# B Boolean
# T Tcl command
# F File which must exist
# f File with does not have to exist
# D Directory which must exist
# U Unix command
# C Text tag configure line
# k Code string or keyword (will be trimmed and lowercased)
# a Font configurable specification
# 1 A list where each item is a single entity
# 2 A list where each item is a pair of entities
# c A choice of short string options
# default user settings dynamically configurable
proc mfv:default-set {} {
global mf mfp mfd env mfch
# MAIL SETTINGS
set mfd(mail-deliver) {U The UNIX command to deliver mail (reads standard input for address and text) }
set mf(mail-deliver) "[mfv:find-sendmail] -bm -odb -oi -t"
set mfd(mail-system) {f Pathname of file your mail is spooled to by your mail handler }
set mf(mail-system) [mfv_set mailspool]/$mfp(user)
set mfd(mail-mbox) {f Pathname of folder you want opened by default at startup. Most often this is the same as your mail spool file. }
set mf(mail-mbox) $mf(mail-system)
set mfd(mail-directory) {D Pathname to directory contain your main cache of folders. Used for creating menus and for root of <Sender> files. }
set mf(mail-directory) $mfp(homedir)/Mail
set mfd(mail-tmpdir) {D Pathname of directory for temporary files }
set mf(mail-tmpdir) /usr/tmp
set mfd(mail-interval) {N Number of milliseconds between new mail and append checks }
set mf(mail-interval) 10000
set mfd(mail-autosave) {N Number of milliseconds between autosaves to \#folder\# file. Use number < 1 to disable. }
set mf(mail-autosave) 600000
set mfd(mail-auto-incorp) {B When using mbox model, whether to incorporate mail automatically when detected }
set mf(mail-auto-incorp) 0
set mfd(mail-debug) {B print usually ignored error messages to stderr}
set mf(mail-debug) 0
set mfd(mail-read-ask) {B Whether to ask to continue when reading in large messages }
set mf(mail-read-ask) 0
set mfd(mail-read-max) {N Maximum number of lines before asking to how much to fetch }
set mf(mail-read-max) 1000
set mfd(mail-alias-file) {f Name of file to read aliases from. Do a "Reread Alias File" after changing. Also set mail-alias-type correctly. }
set mf(mail-alias-file) $mfp(homedir)/.mailrc
set mfd(mail-alias-type) {c Type of alias file format - "bsd" or "elm". Do a "Reread Alias File" after changing. Also set mail-alias-file correctly. }
set mfch(mail-alias-type) {bsd elm pine}
set mf(mail-alias-type) {bsd}
set mfd(mail-alias-case) {B Whether aliases are case sensitive}
set mf(mail-alias-case) 1
set mfd(mail-remove-empty) {B Whether to delete zero-length folders when closing them}
set mf(mail-remove-empty) 1
set mfd(mail-archive-folder) {f Name of default folder for archiving messages}
set mf(mail-archive-folder) {@mfv:sender-default-hook 1}
# VIEWER SETTTINGS
set mfd(viewer-print) {U Printing command where %F is a placeholder for file to print, %D the mesg date, %S the subject, %W the From: field }
set mf(viewer-print) "lpr %F"
set mfd(viewer-bitmap-nomail) {F Bitmap to display when there is no new mail }
set mf(viewer-bitmap-nomail) "/usr/include/X11/bitmaps/flagdown"
set mfd(viewer-bitmap-mail) {F Bitmap to display when there is new mail }
set mf(viewer-bitmap-mail) "/usr/include/X11/bitmaps/flagup"
set mfd(viewer-beep-new) {T Tcl command to eval for new mail (in case you have a better one like blt_bell) }
set mf(viewer-beep-new) {bell}
set mfd(viewer-beep-empty) {T Tcl command to eval for emtpy mailbox }
set mf(viewer-beep-empty) {}
set mfd(viewer-beep-error) {T Tcl command to eval for error notifications }
set mf(viewer-beep-error) {bell}
set mfd(viewer-state) {c Set to either 'normal' or 'disabled' to allow message window editing }
set mfch(viewer-state) {normal disabled}
set mf(viewer-state) disabled
set mfd(viewer-pipe-dir) {D Pathname of directory to run piped UNIX commands in }
set mf(viewer-pipe-dir) $mfp(homedir)
set mfd(viewer-geom) {k Default geometry for mail viewers }
set mf(viewer-geom) {}
set mfd(viewer-start-locked) {B Whether new viewers should be created locked. }
set mf(viewer-start-locked) 0
# HEADER LISTBOX
set mfd(headlist-sort) {k Field name to sort summary list. Use 'normal' for no sort. Examples: sm-from, fullname, subject}
set mf(headlist-sort) normal
set mfd(headlist-reverse) {B Whether sorting should be done in reverse order }
set mf(headlist-reverse) 0
set mfd(headlist-reverse-moveup) {B Whether current mesg should move up after a delete }
set mf(headlist-reverse-moveup) 1
set mfd(headlist-height) {N Number messages lines displayed in header listbox }
set mf(headlist-height) 8
set mfd(headlist-format) {S Format of summary line in header listbox }
set mf(headlist-format) {%-20.20F %3m %2d %-5.5h %4l %-45.45s}
set mfd(headlist-deleted-hide) {B Whether deleted messages should be hidden from list }
set mf(headlist-deleted-hide) 0
set mfd(headlist-deleted-config) {C Text properties to configure deleted message summary lines with. }
set mf(headlist-deleted-config) "-foreground red"
# ISPELL SETTINGS
set mfd(ispell-present) {B Whether your system has ispell }
set mf(ispell-present) 1
set mfd(ispell-binary) {f Name of ispell binary. Give full path if needed. Blank uses installed default}
set mf(ispell-binary) {}
set mfd(ispell-main-dictionary) {f Filename of main dictionary to use. Use "default" for default. }
set mf(ispell-main-dictionary) {default}
set mfd(ispell-personal-dictionary) {f Filename of personal dictionary to use. Use "default" for default. }
set mf(ispell-personal-dictionary) {default}
set mfd(ispell-addopts) {S Addition options to pass to ispell process.}
set mf(ispell-addopts) {}
# COMPOSE WINDOW SETTINGS
set mfd(compose-icon-bitmap) {F Bitmap to display as icon for compose windows }
set mf(compose-icon-bitmap) "/usr/include/X11/bitmaps/letters"
set mfd(compose-geom) {k Default geometry of compose window }
set mf(compose-geom) {}
set mfd(compose-show-cc) {B Whether to show the Cc and Bcc fields in compose even if a simple Reply or they are empty}
set mf(compose-show-cc) 1
set mfd(compose-save-send) {B Whether to store a copy of the last sent message for possible restore }
set mf(compose-save-send) 1
set mfd(compose-alt-editor) {U Alternate editor command. If it is not an X windows editor, you must use xterm (i.e. xterm -e vi %F). %F is file name placeholder }
set mf(compose-alt-editor) "emacs %F"
set mfd(compose-alt-auto) {B Whether to startup alternate editor automatically }
set mf(compose-alt-auto) 0
set mfd(compose-alternates) {1 Alternate email addresses to strip from Cc and Bcc }
set mf(compose-alternates) ""
set mfd(compose-addr-postfix) {S Possible postfix to add to addresses that don't include a @machine part. You must include the '@' character in the string }
set mf(compose-addr-postfix) ""
set mfd(compose-require-subject) {B Whether a subject should be required or not on outgoing messages }
set mf(compose-require-subject) 1
set mfd(compose-from-field) {S Text to include on From: line. Your sendmail must be configured to allow this. }
set mf(compose-from-field) {}
set mfd(compose-fcc-folder) {f Pathname to file to record outgoing messages in with FCC }
set mf(compose-fcc-folder) {}
set mfd(compose-fcc-swap) {B Whether to record outgoing messages in FCC file as originating from the address you sent it to so that you see this address in the header list }
set mf(compose-fcc-swap) 0
set mfd(compose-fcc-forward) {B Whether forwarded mail should be recorded in FCC file }
set mf(compose-fcc-forward) {1}
# INSERTION OF MESSAGE SETTINGS
set mfd(insert-prefix) {S String used to prefix included messages and files }
set mf(insert-prefix) ">> "
set mfd(insert-cite-format) {S Format for the cite string at top of included messages, i.e "%F says:" }
set mf(insert-cite-format) {}
set mfd(insert-forward-format) {S Format of line to place at top of forwarded messages }
set mf(insert-forward-format) "---------- Forwarded message from %f on %D -----------"
set mfd(insert-headers) {L Text to automatically put at top of every composition }
set mf(insert-headers) {}
set mfd(insert-signature) {f Name of .signature file to put at end of messages }
set mf(insert-signature) $mfp(homedir)/.signature
set mfd(insert-auto-sign) {B Whether to automatically append signature file when compose window is created}
set mf(insert-auto-sign) 1
set mfd(insert-always-sign) {B Whether to always append signature file before a message is sent if it hasn't been appended already and exists.}
set mf(insert-always-sign) 1
set mfd(insert-prefix-sig) {L Text to put before the signature file. Note that a final linefeed is important. }
set mf(insert-prefix-sig) "--\n"
set mfd(insert-encoder) {U Program to encode inserted files }
set mf(insert-encoder) uuencode
set mfd(insert-strip) {B Whether to automatically strip header of included messages }
set mf(insert-strip) 1
set mfd(insert-compress) {U Program to use to compress inserted files }
set mf(insert-compress) compress
set mfd(insert-compress-suffix) {S Suffix the compress program appends to compressed files }
set mf(insert-compress-suffix) Z
# MAIL HEADER SETTINGS
set mfd(header-retain) {1 Header fields to retain in display. Overrides Headers to Strip }
set mf(header-retain) {}
set mfd(header-strip) {1 Header fields to strip out of viewed messages. }
set mf(header-strip) {Received Status Message-Id}
set mfd(header-config) {C Text properties to configure headers with in viewer display. }
set mf(header-config) "-underline 1"
# MENU SETTINGS
set mfd(menu-folders-max) {N Maximum number of folders listed in menus. Do a "Rebuild Folder Menus" after changing. }
set mf(menu-folders-max) 25
set mfd(menu-depth-max) {N Maximum depth of pull right menus for folders. Do a "Rebuild Folder Menus" after changing. }
set mf(menu-depth-max) 5
set mfd(menu-folders-ignore) {1 Filenames in mf(mail-directory) directory to not put in menus. Shell glob sytax accepted. Do a "Rebuild Folder Menus" after changing.}
set mf(menu-folders-ignore) {}
set mfd(menu-quick-send) {1 List of common addresses for composing to put in menu. Set to @aliases to use your alias list. }
set mf(menu-quick-send) {}
set mfd(menu-recent-max) {N Maximum number of folders to put in Recent menus }
set mf(menu-recent-max) 8
set mfd(menu-recent-exclusive) {B Whether folders in mf(mail-directory) should be excluded from Recent menus }
set mf(menu-recent-exclusive) 0
# BIND
set mfd(bind-alt-key) {K Key to press in order to access menu accelarators when Alt can't be used. TkMail must be restarted. }
set mf(bind-alt-key) <Control-c>
# MISC
set mfd(disp-left-scroll) {B Whether to place scrollbars on left side of scrollable windows. Will only affect new windows till restart. }
set mf(disp-left-scroll) 1
set mfd(disp-horiz-scroll) {B Whether to display horizontal scrollbars. }
set mf(disp-horiz-scroll) 1
set mfd(notify-popup) {B Whether to popup a window listing new messages when they arrive }
set mf(notify-popup) 0
set mfd(notify-format) {S Format of summary line in notify popup listbox }
set mf(notify-format) {%-16.16F %4l %-45.45s}
set mfd(notify-geom) {k Default geometry of notify popup window}
set mf(notify-geom) {}
set mfd(disp-font-default) {a X11 font use in Text widgets not showing MIME}
set mf(disp-font-default) {-*-helvetica-medium-r-normal-*-12-*}
set mfd(disp-font-fixed) {a X11 font to use for showing non-MIME fixed text in Text widgets}
set mf(disp-font-fixed) {fixed}
set mfd(disp-default-fixed) {B Whether to use fixed font by default in viewer and compose}
set mf(disp-default-fixed) 0
set mfd(option-editor-geom) {k Default geometry of option editor window }
set mf(option-editor-geom) {}
# MIME
set mfd(mime-parse) {B Whether to do MIME parsing }
set mf(mime-parse) 0
set mfd(mime-compose) {B Whether message inclusion in compose should be done as MIME rfc822 attachments }
set mf(mime-compose) 0
set mfd(mime-external-default) {S Default command to run on mime parts not handled internally}
set mf(mime-external-default) {metamail -b -d -q -x -f %A -s %S -m tkmail -c %T}
set mfd(mime-external-viewers) {2 List of content-type / program pairs}
set mf(mime-external-viewers) { \
{Audio {cat %F > /dev/audio}} \
{Application/PostScript ghostview} \
{Application @prompt} }
set mfd(mime-font-default) {a Font as {foundry family fntsize} for deriving fonts for mime}
set mf(mime-font-default) {adobe helvetica 12}
set mfd(mime-font-fixed) {a Font as {foundry family fntsize} for deriving fixed fonts for mime}
set mf(mime-font-fixed) {adobe courier 12}
# HOOKS
global mfhk
set mfhk(mail-check-hook) [list mfv:mail-check-hook]
set mfhk(viewer-new-hook) [list mfv:viewer-hook]
set mfhk(viewer-detach-hook) [list mfv:detach-hook]
set mfhk(compose-new-hook) [list mfv:compose-hook]
set mfhk(compose-send-hook) [list mfv:send-hook]
set mfhk(bind-hook) [list mfv:bind-hook]
set mfhk(disp-mesg-hook) [list mfv:display-mesg-hook]
}
proc mfv:find-sendmail {} {
foreach dir {/usr/lib /usr/sbin /usr/ucblib} {
if [file executable $dir/sendmail] { return $dir/sendmail }
}
return /usr/lib/sendmail
}
###############################################################
# DO NOT EDIT BELOW THIS LINE
# Private program variables
set mfp(user) [mfv_util user]
set mfp(homedir) [mfv_util fullpath [mfv_util home]]
set mfp(hostname) [mfv_util host]
if $mfp(debug) {
puts stderr "Starting source of viewer.tcl"
flush stderr
}
# the current toplevel widget (any type)
set mfp(curtop) .mf0
# the current viewer widget
set mfp(curview) .mf0
# temp text processing widget
set mfp(tmptxt) .tmptxt
# list of toplevel viewers
set mfp(viewlist) {}
# header list holding & displaying widget
set mfp(head) head.list
# message holding & displaying widget
set mfp(mesg) mesg.txt
# header status label
set mfp(hstat) stat.folder
# message status label
set mfp(mstat) stat.mesg
# save of text of last sent message
set mfp(savesendtxt) .savesend
set mfp(savesendto) ""
set mfp(savesendsubj) ""
set mfp(savesendcc) ""
set mfp(savesendbcc) ""
set mfp(savesendsign) ""
# settings for file insertion
set mfp(ins_compress) 0
set mfp(ins_prefix) 0
set mfp(ins_encode) 0
# list of folders in Recent menus
set mfp(recentlist) ""
# index of last permanent item in Folder menu
set mfp(fmenulast) 0
set mfp(fmenusender) -1
# index of last permanent item in Mail menu
set mfp(mmenulast) 0
# list of widgets to put watch in for waiton and waitoff
set mfp(waitlist) {}
# whether mailbox is empty
set mfp(nomail) 1
# number messages auto-incorped with no mbox opened
set mfp(auto-incorped) 0
# prefix to Escape for cancels (need by emacs users)
set mfp(cancel) ""
# additional alternate address to remove beyond user setting
set mfp(add-alt) {}
# whether to skip print prompting
set mfp(print-noprompt) 0
# whether to print messages on separated pages
set mfp(print-separate) 0
# keeps track of last read message in each open folder
set mfp(last-mesg) {}
# need this one mfopt variable here
set mfopt(modified) 0
# inform procedures they should not prompt user
set mfp(noask) 0
# inform we are in a trap exit
set mfp(trap-exit) 0
# mbox model
set mfp(mbox-model) 0
# MIME
# list of attachable types
set mfp(mime-attach-types) {text application image audio video}
set mfp(mime-subtypes,text) {plain enriched}
set mfp(mime-subtypes,application) {octet-stream postscript}
set mfp(mime-subtypes,image) {gif jpeg}
set mfp(mime-subtypes,audio) {basic}
set mfp(mime-subtypes,video) {mpeg}
# have a blank bitmap for spacers
image create bitmap blank -data {
#define blank_width 15
#define blank_height 15
static char blank_bits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
}
global mfopt
set mfopt(choices) [list General Aliases Archive Bitmaps Compose \
Fonts Headers Insert Ispell Menu MIME \
Send Signature \
Sounds Summary User Utilities Viewer]
set mfopt(last) 0
set mfopt(list) {}
set mfopt(text) {}
set mfopt(modified) 0
### CONVENIENCE ROUTINES FOR LATER REMOVAL TO LIBRARY ######
if {[catch "infox version"]} {
proc lempty { l } { return [expr ![string length $l]] }
proc keylget { lvar key {rvar 0} } {
upvar $lvar klist
set check 0
if {$rvar != 0} {
set check 1
if {[string length $rvar]} {upvar $rvar ret}
}
foreach pair $klist {
if {[lindex $pair 0] == $key} {
if [catch {lindex $pair 1} ret] {
set ret [string trim [string range $pair [string length $key] end]]
if {[string index $ret 0] == "\{"} {
set ret [string trim $ret "{}"]
}
}
if {$check} { return 1 } else {return $ret}
}
}
if {$check} {
return 0
} else { error "No key named $key in $lvar" }
}
proc keylset { lvar key val } {
upvar $lvar klist
set ndx 0
if {[info exists klist]} {
foreach pair $klist {
if {[lindex $pair 0] == $key} {
set klist [lreplace $klist $ndx $ndx "$key {$val}"]
return {}
}
incr ndx
}
}
lappend klist "$key {$val}"
return {}
}
}
proc llast {list} {
return [expr [llength $list]-1]
}
proc quotespecial { str } {
regsub -all {\"} $str {\"} str
return $str
}
proc unquotespecial { str } {
regsub -all {\\\"} $str {"} str
return $str
}
# get temp file
proc tmpfile { {pfx tkmail} {dir ""} } {
return [mfv_util tmpfile $pfx $dir]
}
# return current selection
proc selection_if_any {} {
if {[catch {selection get} s]} {return ""} {return $s}
}
# returns 1 if arguments are the same file, 0 otherwise
proc samefile {file1 file2} {
set err 0
if [catch {file stat $file1 stat1}] {incr err}
if [catch {file stat $file2 stat2}] {incr err}
if {$err == 1} {return 0}
if {$err == 2} {
if {[mfv_util fullpath $file1] == [mfv_util fullpath $file2]} {
return 1
} else { return 0 }
}
if { $stat1(ino) == $stat2(ino) && $stat1(dev) == $stat2(dev)} { return 1 }
return 0
}
proc tkButtonUp3 w {
global tkPriv
if {$w == $tkPriv(buttonWindow)} {
set tkPriv(buttonWindow) ""
$w config -relief $tkPriv(relief)
}
}
# replace default grouping Menu commands
proc tkMbMotion {w upDown rootx rooty} {
global tkPriv
if {$tkPriv(inMenubutton) == $w} {
return
}
set new [winfo containing $rootx $rooty]
if {($new != $tkPriv(inMenubutton)) && (($new == "")
|| ([winfo toplevel $new] == [winfo toplevel $w]))} {
if {$tkPriv(inMenubutton) != ""} {
tkMbLeave $tkPriv(inMenubutton)
}
if {($new != "") && ([winfo class $new] == "Menubutton")
&& ([$new cget -indicatoron] == 0)} {
if {[bind $new <Motion>] == "break"} return
if {$upDown == "down"} {
tkMbPost $new $rootx $rooty
} else {
tkMbEnter $new
}
}
}
}
proc tkMbSingleEnter w {
global tkPriv
if {$tkPriv(inMenubutton) != ""} return
set tkPriv(inMenubutton) $w
if {[$w cget -state] != "disabled"} {
$w configure -state active
}
}
proc tkMbSingleLeave w {
global tkPriv
if {$tkPriv(inMenubutton) != $w} return
set tkPriv(inMenubutton) {}
if ![winfo exists $w] {
return
}
if {[$w cget -state] == "active"} {
$w configure -state normal
}
}
proc tkMbMakeSingle w {
global tkPriv
bind $w <Enter> { tkMbSingleEnter %W; break }
bind $w <Leave> { tkMbSingleLeave %W; break }
bind $w <1> {tkMbPost %W %X %Y}
bind $w <Motion> break
bind $w <B1-Motion> break
lappend tkPriv(menuSingle) $w
}
############################################################
proc mfv:noop { args } {
# do nothing. Returns <args> as string separated by spaces
return [join $args " "]
}
proc mfv:see-stack-trace {{w {}}} {
global mfp errorInfo
if [lempty $w] {
set w [ut:simpletext -title "TkMail: Stack Trace" \
-text $errorInfo]
} else {
$w.txt delete 1.0 end
$w.txt insert end $errorInfo
}
focus $w.txt
return 0
}
proc mfv:current-top {} {
global mfp
if [string length [set top [focus]]] {
return [winfo toplevel $top]
} elseif [winfo exists $mfp(curtop)] {
return $mfp(curtop)
} else {
return [lindex $mfp(viewlist) 0]
}
}
proc mfv:error-mesg { str {master {}} } {
# popup a error message using <str> and eval mf(viewer-beep-error.
# if <master> given, use it to place dialog
global mf mfp
eval $mf(viewer-beep-error)
if {![winfo exists $master]} { set master [mfv:current-top] }
mfv:log-mesg {} "ERROR: $str"
mfv:wait-off
if {[winfo exists $master]} {
if {[string first "\n" $str] > -1} {
# set mfp(stack-trace) [mfv:stack-trace 1]
set w [ut:simpletext -title "TkMail: ERROR" -text $str \
-buttons {{OK} {{Stack Trace} mfv:see-stack-trace %W}} \
-grab 1 -master $master]
$w.txt configure -height 8
focus $w.txt
tkwait window $w
} else {
if {![ut:getok -title "TkMail: ERROR" -prompt $str -bitmap error \
-nolabel "Stack Trace" -master $master]} {
mfv:see-stack-trace
}
}
} else {
puts stderr "ERROR: $str"
}
}
proc mfv:disable-hook {hooks hook} {
global mfhk
set ndx [lsearch -exact $mfhk($hooks) $hook]
set mf($hooks) [lreplace $mfhk($hooks) $ndx $ndx]
return 1
}
proc mfv:run-hooks { hooks args } {
global mf mfhk
if {![info exists mfhk($hooks)]} {
mfv:error-mesg "A hook list $hooks does not exist"
return
}
foreach hook $mfhk($hooks) {
if {[info proc $hook]!=""} {
if [catch [concat $hook $args] res] {
eval $mf(viewer-beep-error)
set buttons [list [list {Disable Hook} mfv:disable-hook $hooks $hook]]
lappend buttons {{Stack Trace} mfv:see-stack-trace %W}
lappend buttons {Ignore}
set w [ut:simpletext -text "ERROR running $hook: $res" \
-buttons $buttons -title {Hook Error!} -grab 1 \
-master [mfv:current-top]]
$w.txt configure -height 8
focus $w.txt
tkwait window $w
}
}
}
}
proc mfv:check-old-settings { } {
global mf mfp
set warnmesg {}
if [info exists mf(mail-record)] {
append warnmesg " mf(mail-record) -> mf(compose-fcc-folder)\n"
}
if [info exists mf(compose-fcc-default)] {
append warnmesg " mf(compose-fcc-default) -> mf(compose-fcc-folder)\n"
}
if [info exists mf(compose-fcc-list)] {
append warnmesg " mf(compose-fcc-list) ~> mf(compose-fcc-folder)\n"
}
if [info exists mf(compose-fcc-bysender)] {
append warnmesg " mf(compose-fcc-bysender) ~> mf(compose-fcc-folder)\n"
}
if [info exists mf(compose-fcc-directory)] {
append warnmesg " mf(compose-fcc-directory) ~> mf(compose-fcc-folder)\n"
}
if [info exists mf(mail-record-swap)] {
append warnmesg " mf(mail-record-swap) -> mf(compose-fcc-swap)\n"
}
if [info exists mf(mail-record-forward)] {
append warnmesg " mf(mail-record-forward) -> mf(compose-fcc-forward)\n"
}
if [info exists mf(compose-quick-forward)] {
append warnmesg " mf(compose-quick-forward) is no longer supported\n"
}
if [info exists mf(menu-sender-full)] {
append warnmesg " mf(menu-sender-full) ~> mf(mail-archive-folder)\n"
}
if [info exists mf(menu-sender-list)] {
append warnmesg " mf(menu-sender-list) ~> mf(mail-archive-folder)\n"
}
if [info exists mf(menu-default-new)] {
append warnmesg " mf(menu-default-new) is no longer supported. Use Lock.\n"
}
if [info exists mf(bind-emacs)] {
append warnmesg " mf(bind-emacs) is no longer supported. Use ~/.tkbindrc.\n"
}
if [info exists mf(bind-use-meta)] {
append warnmesg " mf(bind-use-meta) is no longer supported. Use ~/.tkbindrc.\n"
}
if [info exists mf(bind-use-esc)] {
append warnmesg " mf(bind-use-esc) is no longer supported. Use ~/.tkbindrc.\n"
}
if [string length $warnmesg] {
mfv:error-mesg "The following old settings need to be updated or removed from your $mfp(setfile) file:\n\n$warnmesg"
}
}
proc mfv:reset-viewer { top } {
global mf mfp
keylset mfp($top) fid mfv:nofolder
keylset mfp($top) file {}
$top.$mfp(hstat) configure -text {No folder}
mfv:empty-viewer $top
}
proc mfv:empty-viewer { top } {
global mf mfp
keylset mfp($top) curnum 0
keylset mfp($top) mesgnum 0
set mfp($top.$mfp(mesg)) {}
$top.$mfp(head) delete 0 end
$top.$mfp(mesg) configure -state normal
$top.$mfp(mesg) delete 1.0 end
tkTextUndoSetup $top.$mfp(mesg)
$top.$mfp(mesg) configure -state $mf(viewer-state)
$top.$mfp(mstat) configure -text "Message 0 out of 0"
}
proc mfv:folder-crash {fid} {
global mfp
puts stderr "\nFOLDER-CRASH:"
set lvl [expr [info level]-1]
while {$lvl > 0} {
puts stderr [info level $lvl]
incr lvl -1
}
catch {mfv_close $fid}
if ![info exists mfp($fid)] return
if [keylget mfp($fid) viewers vlist] {
foreach viewer $vlist { catch {mfv:reset-viewer $viewer} }
}
unset mfp($fid)
catch "unset mfp($fid,delmesg)"
}
proc mfv:checklist-add {file} {
global mfp mf_check
set file [mfv_util fullpath $file]
if {![info exists mf_check($file)]} {
if {[file exists $file] &&
![catch {file stat $file stat}]} {
set mf_check($file) $stat(size)
} else {
set mf_check($file) 0
}
}
}
proc mfv:checklist-remove {file} {
global mfp mf_check
set file [mfv_util fullpath $file]
if {$file == $mfp(mbox) || $file == $mfp(inbox)} return
if {[info exists mf_check($file)]} {
unset mf_check($file)
}
}
proc mfv:check-new-mail {} {
global mf mfp mf_check
mfv:run-hooks mail-check-hook
foreach fid [mfv_util list] {
set newm [mfv:check-append $fid]
if {$newm > 0} {
mfv:newlist-add [$fid info dir]/[$fid info name]
}
}
set mfid [mfv_util folderid $mfp(mbox)]
foreach file [array names mf_check] {
if {[file exists $file] &&
![catch {file stat $file stat}]} {
set fid [mfv_util folderid $file]
if [string length $fid] {
# skip check, was done above
} else {
if {$stat(size) > $mf_check($file)} {
eval $mf(viewer-beep-new)
set name [file tail $file]
mfv:log-mesg {} "New mail messages have arrived in $name!" 1
if {$mfp(mbox-model) && $file == $mfp(inbox) &&
[string length $mfid]} {
mfv:newlist-add $mfp(mbox)
if $mf(mail-auto-incorp) {
if [catch mfv:incorp cnt] {
mfv:error-mesg $cnt
}
if {$cnt > 0} {
if [keylget mfp($mfid) viewers vlist] {
foreach viewer $vlist {mfv:iconic-new-mail $viewer}
}
}
} else {
if [keylget mfp($mfid) viewers vlist] {
foreach viewer $vlist {
catch {wm iconbitmap $viewer "@$mf(viewer-bitmap-mail)"}
}
}
}
} else {
mfv:newlist-add $file
}
}
}
set mf_check($file) $stat(size)
} else {
set mf_check($file) 0
}
}
# check if person thought it was for seconds and not milliseconds
if {$mf(mail-interval) < 1000} {set mf(mail-interval) [expr $mf(mail-interval)*1000]}
after $mf(mail-interval) mfv:check-new-mail
}
# argument file should be full path
proc mfv:get-file-abbrev {file {max 30}} {
global mf mfp
set efile $file
if [catch {set maildir [mfv_util fullpath $mf(mail-directory)]}] {
set maildir XXXX
}
if {$file == $mfp(inbox)} {
set efile InBox
} elseif {$file == $mfp(mbox)} {
set efile MBox
} elseif {[string first $maildir $file] > -1} {
set len [string length $maildir]
set efile +[string range $efile [string length $maildir] end]
} elseif {[string first $mfp(homedir) $file] > -1} {
set len [string length $maildir]
set efile ~[string range $efile [string length $mfp(homedir)] end]
}
while {[string length $efile] > $max && [string first "/" $efile] > -1} {
set efile [string range $efile 4 end]
set efile [string range $efile [string first "/" $efile] end]
set efile "...$efile"
}
return $efile
}
proc mfv:newlist-add {file} {
global mf mfp mf_newlist
set file [mfv_util fullpath $file]
if [info exists mf_newlist($file)] {return $mf_newlist($file)}
set efile [mfv:get-file-abbrev $file]
set mf_newlist($file) $efile
foreach top $mfp(viewlist) {
if [winfo exists $top.bb.newm.m] {
if {$efile == "InBox"} {
$top.bb.newm.m insert 1 command -label $efile -command \
"mfv:goto-new-mail \$mfp(inbox) $top"
} else {
$top.bb.newm.m add command -label $efile -command \
[list mfv:goto-new-mail $file $top]
}
$top.bb.newm configure -state normal
}
}
return $efile
}
proc mfv:newlist-remove {file} {
global mf mfp mf_newlist
if ![info exists mf_newlist($file)] return
foreach top $mfp(viewlist) {
if [winfo exists $top.bb.newm.m] {
if ![catch {$top.bb.newm.m index $mf_newlist($file)} ndx] {
$top.bb.newm.m delete $ndx
}
if {[$top.bb.newm.m index end] < 1} {
$top.bb.newm configure -state disabled
}
}
}
unset mf_newlist($file)
}
proc mfv:goto-new-mail {file top} {
global mf mfp
if ![string length $file] {
set file [keylget mfp($top) file]
}
set func mfv:goto-newest
if {$mfp(mbox-model) &&
([samefile $file $mfp(inbox)] || [samefile $file $mfp(mbox)])} {
if {[file exists $mfp(inbox)] && [file size $mfp(inbox)]} {
set func mfv:mbox
}
set file $mfp(mbox)
}
set fid [mfv_util folderid $file]
if {[string length $fid]
&& [keylget mfp($fid) viewers vlist] && [llength $vlist]} {
if {[keylget mfp($top) fid] != $fid} {
foreach viewer [concat $vlist [lindex $vlist 0]] {
if [winfo ismapped $viewer] break
}
} else {
set viewer $top
}
wm deiconify $viewer
raise $viewer
$func $viewer
if $mfp($viewer,newmail) {mfv:cancel-new-mail $viewer}
} else {
mfv:explicit-open $top $file -1
if {$func == "mfv:mbox"} { mfv:mbox $top }
}
}
proc mfv:cancel-new-mail {top} {
global mfp mf
set fid [keylget mfp($top) fid]
if {$mfp(mbox-model)} {
if {$fid == [mfv_util folderid $mfp(mbox)]} {
if {[file exists $mfp(inbox)] && [file size $mfp(inbox)]} {
return
}
}
}
keylget mfp($fid) viewers vlist
foreach viewer $vlist {
catch {wm iconbitmap $viewer "@$mf(viewer-bitmap-nomail)"}
set mfp($viewer,newmail) 0
tkBindRemoveTag $viewer NewMail
}
}
bind NewMail <Map> {
# mfv:goto-new-mail {} %W
mfv:goto-newest %W
mfv:cancel-new-mail %W
}
proc mfv:iconic-new-mail {viewer {force 0}} {
global mf mfp
if {($force || ![winfo ismapped $viewer]) &&
[file exists $mf(viewer-bitmap-mail)] &&
[file exists $mf(viewer-bitmap-nomail)]} {
wm iconbitmap $viewer "@$mf(viewer-bitmap-mail)"
set mfp($viewer,newmail) 1
if {[lsearch -exact [bindtags $viewer] NewMail] < 0} {
bindtags $viewer [concat NewMail [bindtags $viewer]]
}
}
}
proc mfv:check-append {fid} {
global mf mfp
if {[catch {$fid info max} oldmax]} {return -1}
if {[catch {$fid check} appm]} {
mfv:folder-crash $fid
mfv:error-mesg $appm
return -1
}
if {$appm < 1} {return 0}
set newlist {}
foreach msg [$fid info new] {
if {$msg > $oldmax} { lappend newlist $msg }
}
set newm [llength $newlist]
set oldm [expr $appm-$newm]
set name [$fid info name]
if {$oldm > 0} {
mfv:log-mesg {} "$oldm old mail messages have been appended to $name!"
}
if {$newm > 0} {
eval $mf(viewer-beep-new)
mfv:log-mesg {} "$newm new mail messages have arrived in $name!" 1
}
if {$appm > 0} {
if [keylget mfp($fid) viewers vlist] {
foreach viewer $vlist {
# TODO: update viewer listing better
mfv:reset-summary $viewer
if {$newm > 0} {mfv:iconic-new-mail $viewer}
}
}
} else {
eval $mf(viewer-beep-empty)
}
return $newm
}
proc mfv:folder-lock {fid} {
global mf mfp
while {[set res [$fid lock]] < 0} {
if {$res == -2} {
if $mfp(noask) {
set mfp(last-error) "[$fid info name] locked by another process."
return 1
} else {
set res [tk_dialog .tmp_dlg "File Locked" \
"Folder [$fid info name] is locked by another process." \
error 2 Override {Try Again} Cancel]
if {$res == 2} {return 2}
if {$res == 0} {$fid unlock}
}
} else {
set mfp(last-error) "Cannot lock folder [$fid info name]. Got error: [mfv_util lockerror]"
return 1
}
}
return 0
}
proc mfv:folder-unlock {fid} {
global mfp
if [$fid unlock] {
set mfp(last-error) [mfv_util lockerror]
return 1
}
return 0
}
proc mfv:file-lock {filename} {
global mf mfp errorCode
set tid [mfv_util folderid $filename]
if [string length $tid] {
return [mfv:folder-lock $tid]
} else {
set dotlock [mfv_set lock dotlock]
set retries [mfv_set lock retries]
set tout [mfv_set lock timeout]
if {[mfv_util fullpath $filename] == $mfp(inbox)} {
set lockcmd "exec $dotlock -s -r $retries -t $tout -p [pid]"
set unlockcmd "exec $dotlock -u -s"
} else {
set lockcmd "exec $dotlock -r $retries -t $tout $filename -p [pid]"
set unlockcmd "exec $dotlock -u $filename"
}
while {[catch $lockcmd res]} {
if {[lindex $errorCode 2] != 2} {
set mfp(last-error) $res
return 1
}
set res [tk_dialog .tmp_dlg "File Locked" \
"Folder [file tail $filename] is locked by another process." \
error 2 Override {Try Again} Cancel]
if {$res == 2} {return 2}
if {$res == 0} {
if [catch $unlockcmd res] {
set mfp(last-error) "Could not remove dotlock on $filename\n$res"
return 1
}
}
}
}
return 0
}
proc mfv:file-unlock {filename} {
global mf mfp
set tid [mfv_util folderid $filename]
if [string length $tid] {
return [mfv:folder-unlock $tid]
} else {
set dotlock [mfv_set lock dotlock]
if {[mfv_util fullpath $filename] == $mfp(inbox)} {
set unlockcmd "exec $dotlock -u -s"
} else {
set unlockcmd "exec $dotlock -u $filename"
}
if {[catch $unlockcmd res]} {
set mfp(last-error) $res
return 1
}
}
return 0
}
proc mfv:folder-safe-save {fid args} {
global mf mfp
if [catch "$fid save $args" res] {
set mfp(last-error) $res
if {[string first folderID $res] > -1} {
mfv:folder-crash $fid
}
return 1
}
return 0
}
proc mfv:compose-list-tops { } {
set clist {}
foreach child [winfo children .] {
if {[winfo class $child] == "MailCompose"} {
lappend clist $child
}
}
return $clist
}
proc mfv:folder-backup { fid } {
global mf mfp env mf_autofile
if [catch "$fid info count"] {
error "$fid in no longer a valid open folder"
}
if {![$fid info readonly] && [$fid info count] &&
[$fid info modified] != [keylget mfp($fid) modified]} {
set bdir [$fid info directory]
set afile "$bdir/\#[$fid info name]\#"
if [file writable $bdir] {
if [ catch {$fid save $afile} res] {
if {[string first folderID $res] > -1} {
mfv:folder-crash $fid
}
error $res
} else {
keylset mfp($fid) modified [$fid info modified]
set mf_autofile($fid) $afile
}
}
}
}
proc mfv:autosave { } {
global mf mfp env
if {$mf(mail-autosave) < 1} return
if ![llength $mfp(viewlist)] return
if ![winfo exists $mfp(curview)] { set mfp(curview) [lindex $mfp(viewlist) 0] }
set savetext [lindex [$mfp(curview).$mfp(mstat) configure -text] 4]
$mfp(curview).$mfp(mstat) configure -text "Autosaving ..."
mfv:wait-on
set err {}
foreach fid [mfv_util list] {
if [catch "mfv:folder-backup $fid" res] {
append err $res\n\n
}
}
foreach mfc [mfv:compose-list-tops] {
if [scan $mfc ".mfc%d" num] {
catch {mfv:text-to-file $mfc.comp.txt $env(HOME)/letter$mfc 1}
}
}
$mfp(curview).$mfp(mstat) configure -text $savetext
mfv:wait-off
if [string length $err] { mfv:error-mesg $err }
# check if person thought it was for seconds and not milliseconds
if {$mf(mail-autosave) < 1000} {set mf(mail-autosave) [expr $mf(mail-autosave)*1000]}
after $mf(mail-autosave) "mfv:autosave"
}
proc mfv:reset-summary { viewer {goto 1}} {
global mf mfp
set fid [keylget mfp($viewer) fid]
set lndx [$viewer.$mfp(head) cursingle]
set msg [mfv:head-to-num $viewer $lndx]
set force 0
if {[$fid info count] < 1} {
mfv:empty-viewer $viewer
return
}
$viewer.$mfp(head) delete 0 end
set sortkeys $mfp($viewer,sort)
if {$sortkeys == "user-defined"} {
set sortkeys $mf(headlist-sort)
}
if $mfp($viewer,reverse) {
set ndx 0
} else { set ndx end }
if $mfp($viewer,hidedel) {
set lastmsg -1
foreach m [$fid sort $sortkeys] {
if [$fid message flag $m deleted] {
if {$msg == $m} { set msg -3; set force 1 }
} else {
if {$msg == -3} { set msg $m }
$viewer.$mfp(head) insert $ndx [$fid message summary $m]
set lastmsg $m
}
}
if {$msg == -3} { set msg $lastmsg }
} else {
foreach m [$fid sort $sortkeys] {
$viewer.$mfp(head) insert $ndx [$fid message summary $m]
if {[$fid message flag $m deleted]} {
eval "$viewer.$mfp(head) item configure $ndx $mf(headlist-deleted-config)"
}
}
}
if $goto {
if {[string length $msg] && $msg > 0} {
mfv:goto-mesg $viewer $msg $force
$viewer.$mfp(head) see [$viewer.$mfp(head) cursingle]
} elseif [$fid info count] {
if {$lndx >= [$viewer.$mfp(head) size]} {
set lndx [$viewer.$mfp(head) index end]
}
set msg [mfv:head-to-num $viewer $lndx]
if {[string length $msg] && $msg > 0} {
mfv:goto-mesg $viewer $msg
} else {
mfv:goto-mesg $viewer [mfv:head-to-num $viewer 0]
}
}
}
if ![string length [$fid info new]] {
mfv:newlist-remove [$fid info dir]/[$fid info name]
}
}
proc mfv:openlist-add {file} {
global mf mfp mf_openlist
set file [mfv_util fullpath $file]
if [info exists mf_openlist($file)] {return $mf_openlist($file)}
set efile [mfv:get-file-abbrev $file 22]
set mf_openlist($file) $efile
set olist [array names mf_openlist]
set max $mf(menu-recent-max)
if {$max < 10} { set max 10 }
if {[llength $olist] > $max} {
set top [lindex $mfp(viewlist) 0]
set last [$top.$mfp(hstat).m entrycget [$top.$mfp(hstat).m index end] -label]
foreach ofile $olist {
if {$mf_openlist($ofile) == $last} {
unset mf_openlist($ofile)
break
}
}
set trim 1
} else {
set trim 0
}
foreach top $mfp(viewlist) {
if [winfo exists $top.$mfp(hstat).m] {
if {$efile == "InBox"} {
$top.$mfp(hstat).m insert 1 command -label $efile -command \
"mfv:explicit-open $top \$mfp(inbox) {} 0 0"
} else {
$top.$mfp(hstat).m insert 2 command -label $efile -command \
[list mfv:explicit-open $top $file {} 0 0]
}
if $trim { $top.$mfp(hstat).m delete end }
}
}
return $efile
}
proc mfv:close-folder { top } {
global mfp mf_autofile
keylget mfp($top) fid fid
if {![string length $fid] || $fid == "mfv:nofolder"} {
return 0
}
keylget mfp($fid) viewers oldlist
set newlist {}
foreach viewer $oldlist {
if {$viewer != $top} { lappend newlist $viewer }
}
keylset mfp($top) fid mfv:nofolder
keylset mfp($top.$mfp(mesg)) fid mfv:nofolder
if {[llength $newlist] == 0} {
if {[llength [$fid info modified]]} {
if [set res [mfv:folder-safe-save $fid]] {
if {$res != 2} {
mfv:error-mesg $mfp(last-error) $top
}
return 1
}
}
if [catch "mfv_close $fid" res] {
mfv:error-mesg $res $top
return 1
} else {
unset mfp($fid)
catch "unset mfp($fid,delmesg)"
if [info exists mf_autofile($fid)] {
exec rm -rf $mf_autofile($fid)
unset mf_autofile($fid)
}
}
} else {
keylset mfp($fid) viewers $newlist
}
return 0
}
proc mfv:nofolder {args} {
error "Oops. There is no folder opened in this viewer. Cannot continue."
}
proc mfv:setup-folder { top folder {ndx {}}} {
# Open up <folder> in viewer <top> and set view to message at <ndx>
# Close old folder associated with viewer if not shared with another
global mf mfp
pdebug "mfv:setup-folder called with $top $folder $ndx\n"
if {[lempty $folder]} { return 1}
mfv:wait-on
# close previous folder in viewer
if [mfv:close-folder $top] {
mfv:wait-off
return 1
}
if {[catch {mfv_open $folder} fid]} {
mfv:reset-viewer $top
mfv:error-mesg $fid $top
mfv:wait-off
return 1
}
set folder [$fid info directory]/[$fid info name]
if [samefile $folder $mfp(mbox)] {
wm iconname $top $mfp(user)
} else {
wm iconname $top [file tail $folder]
}
pdebug "Folder $folder opened\n"
keylset mfp($top) fid $fid
if [info exists mfp($fid)] {
keylget mfp($fid) viewers vlist
} else {
keylset mfp($fid) modified {}
}
lappend vlist $top
keylset mfp($fid) viewers $vlist
mfv:reset-summary $top 0
# set new viewer specific database items
keylset mfp($top) file $folder
keylset mfp($top) curnum 0
set mesgnum [$top.$mfp(head) size]
keylset mfp($top) mesgnum $mesgnum
$top.$mfp(mesg) configure -state normal
$top.$mfp(mesg) delete 1.0 end
tkTextUndoSetup $top.$mfp(mesg)
$top.$mfp(mesg) configure -state $mf(viewer-state)
$top.$mfp(hstat) configure -text [mfv:openlist-add $folder]
pdebug "$mesgnum messages\n"
if {$mesgnum==0} {
$top.$mfp(mstat) configure -text "Message 0 out of 0"
mfv:wait-off
return 0
}
set nmsgs [$fid info new]
if {[llength $nmsgs] && [samefile $folder $mfp(mbox)]} {
eval $mf(viewer-beep-new)
$top.$mfp(mstat) configure -text "[file tail $folder] has New Mail"
mfv:iconic-new-mail $top
if [lempty $ndx] { set ndx -1 }
}
if {[lempty $ndx] && [keylget mfp(last-mesg) $folder lastmesg]
&& $lastmesg <= $mesgnum} {
mfv:goto-mesg $top $lastmesg
} else {
if {[lempty $ndx]} { set ndx [mfv:head-to-num $top 0] }
if { $ndx < 1 } {
mfv:goto-newest $top
} else {
mfv:goto-mesg $top $ndx
}
}
catch {$top.$mfp(head) see [mfv:cursingle $top]}
mfv:wait-off
return 0
}
proc mfv:goto-newest { viewer {S N}} {
global mf mfp
if {$mfp($viewer,reverse)} {
set ndx [$viewer.$mfp(head)_text search -regexp -backwards \
"^ \[$S\] *\[0-9\]+" end 1.0]
} else {
set ndx [$viewer.$mfp(head)_text search -regexp \
"^ \[$S\] *\[0-9\]+" 1.0 end]
}
if [string length $ndx] {
set ndx [expr [lindex [split $ndx .] 0]-1]
if {$ndx > -1} {
mfv:select-mesg $viewer from $ndx
}
} else {
if {$S == "N"} {
return [mfv:goto-newest $viewer U]
} else {
mfv:select-mesg $viewer from [$viewer.$mfp(head) index end]
}
}
}
proc mfv:goto-mesg { viewer msg {goto 1} } {
global mf mfp
set ndx [$viewer.$mfp(head)_text search -regexp \
"^>*\[NDAFU* \]*$msg " 1.0 end]
if {$ndx == 0.0} {
mfv:select-mesg $viewer from 0
} else {
set ndx [expr [lindex [split $ndx .] 0]-1]
if {$goto} {
mfv:select-mesg $viewer from $ndx
} else {
$viewer.$mfp(head) selection clear
$viewer.$mfp(head) selection set $ndx
}
}
}
proc mfv:insert-mesg-contents {top tw fid msg} {
global mf mfp
mfv:wait-on
$tw insert insert [$fid message headers $msg] headers
$tw insert insert \n {}
set type [$fid message mimepart $msg type 0]
if {[lsearch -exact [list multipart application message image \
audio video text] $type] < 0} {
set type {}
}
if {![string length $type] || !$mf(mime-parse)} {
$tw insert insert [$fid message body $msg]
} else {
# TODO: MIME
mfv:mime-show-part $top $tw $fid $msg [$fid message mimelist $msg]
}
mfv:run-hooks disp-mesg-hook $top $tw
mfv:wait-off
}
proc mfv:display-mesg { top msg } {
# Display message <msg> from folder associated with viewer <top>
# <button> is button associated with selection if any
global mf mfp
pdebug "Displaying message $msg in $top\n"
set fid [keylget mfp($top) fid]
set tw $top.$mfp(mesg)
keylset mfp($tw) fid $fid
keylset mfp($tw) msg $msg
$tw configure -state normal
$tw delete 1.0 end
tkTextUndoSetup $tw
if {![string length $msg] || $msg < 1} {
$top.$mfp(mstat) configure -text "No messages"
unset mfp($tw)
keylset mfp($top) curnum 0
$tw configure -state $mf(viewer-state)
return 1
}
# verify msg is valid
if [catch {$fid message lines $msg} msglines] {
$top.$mfp(mstat) configure \
-text "Message $msg does not exist"
$tw configure -state $mf(viewer-state)
unset mfp($tw)
keylset mfp($top) curnum 0
return 1
}
keylset mfp($top) curnum $msg
mfv:mesg-set-sender $top
set msglines [$fid message lines $msg]
if {$mf(mail-read-ask) && $mf(mail-read-max) < $msglines} {
set fromline UNKNOWN
set subjline UNKNOWN
set fromline [$fid message field $msg from]
set subjline [$fid message field $msg subject]
$tw insert 1.0 "From: $fromline\n"
$tw insert 2.0 "Subject: $subjline\n\n"
$tw insert 4.0 " Message is $msglines lines long. Click here to view whole message."
$tw tag add seelong 4.5 "4.5 lineend"
$tw tag bind seelong <1> \
"mfv:wait-on; mfv:simple-display-mesg $top.$mfp(mesg) $msg; mfv:wait-off"
} else {
$tw mark set insert 1.0
mfv:insert-mesg-contents $top $tw $fid $msg
}
$tw mark set insert 1.0
# check if no more new message in folder
if {[llength [$fid info new]] == 0} {
mfv:newlist-remove [$fid info dir]/[$fid info name]
}
# notify user of message read
$top.$mfp(mstat) configure \
-text "Message $msg out of [$fid info count]"
$tw configure -state $mf(viewer-state)
# remove possible unread status symbol from listbox
set tndx [expr [mfv:cursingle $top]+1]
if {$tndx > 0} {
set stat [$top.$mfp(head)_text get $tndx.1]
if {$stat == "U" || $stat == "N"} {
$top.$mfp(head)_text insert $tndx.2 " "
$top.$mfp(head)_text delete $tndx.1
}
}
return 0
}
proc mfv:extract-address { field {num 0} } {
set field [mfv_util simplify $field]
if {[string first , $field] != -1} {
set field [lindex [split $field ,] $num]
}
if {[regexp {<([^, <>]+)>} $field trash res]} {
set field $res
}
if {[string first ":" $field] != -1} {
set field [lrange [split $field ":"] 1 end]
}
return [string trim $field]
}
proc mfv:get-from { tw {strip 1}} {
# Return the user addresss from From: field of text widget <tw>
# Actually tries Return-Path, then Reply-To, then From, then sm-from
global mf mfp
set curfrom ""
if {[info exists mfp($tw)] && [keylget mfp($tw) fid fid]
&& [keylget mfp($tw) msg msg]} {
foreach field { reply-to from return-path sm-from } {
set curfrom [$fid message field $msg $field]
if {![lempty $curfrom]} break
}
if $strip {
set curfrom [mfv_util simplify $curfrom]
if {[regexp {<([^, <>]+)>} $curfrom trash res]} {
set curfrom $res
}
}
}
return $curfrom
}
proc mfv:viewer-get-field { top fieldlist {def {}}} {
global mf mfp
set res $def
set fid [keylget mfp($top) fid]
set msg [keylget mfp($top) curnum]
if {![$fid message exists $msg]} return {}
foreach field $fieldlist {
set field [string tolower $field]
set res [$fid message field $msg $field]
if {![lempty $res]} break
}
return $res
}
proc mfv:mesg-set-sender {top} {
global mf mfp
if {[string range $mf(mail-archive-folder) 0 0] == "@"} {
set archproc [string range $mf(mail-archive-folder) 1 end]
if [catch "set mfp($top,sender) \[$archproc $top\]" res] {
mfv:error-mesg "ERROR running $archproc: $res\n\nFeature disabled." $top
set mfp($top,sender) {}
}
} else {
set mfp($top,sender) $mf(mail-archive-folder)
}
if [lempty $mfp($top,sender)] {
set mfp($top,sender) [mfv:sender-default-hook 1 $top]
}
set ftail [file tail $mfp($top,sender)]
if {![string length $ftail]} { set ftail "<None>" }
$top.menu.mesg.m.move entryconfigure 3 -label $ftail
$top.bb.move.m entryconfigure 3 -label $ftail
$top.menu.mesg.m.copy entryconfigure 3 -label $ftail
if {$mfp(fmenusender) > $mfp(fmenulast)} {
$top.menu.folder.m entryconfigure $mfp(fmenusender) -label $ftail
}
}
proc mfv:sender-default-hook {short top} {
global mf mfp
set fromname [mfv:viewer-get-field $top \
{reply-to from return-path sm-from}]
set fromname [string tolower [mfv:extract-address $fromname 0]]
if {$short} {
return [lindex [split $fromname "@"] 0]
}
return $fromname
}
proc mfv:show-full-headers { top } {
global mf mfp
set tw $top.$mfp(mesg)
set fid [keylget mfp($top) fid]
set range [$tw tag nextrange headers 1.0]
set start [lindex $range 0]
set stop [lindex $range 1]
keylget mfp($top) curnum msg
$tw configure -state normal
$tw delete $start $stop
$tw mark set insert $start
$tw insert $start [$fid message headers $msg full]
$tw tag add headers $start insert
$tw configure -state $mf(viewer-state)
return 1
}
proc mfv:strip-comment { txt {keepq 1} } {
if !$keepq { return [mfv_util simplify -stripq $txt]}
return [mfv_util simplify $txt]
}
proc mfv:cursingle { top } {
global mfp
set ndx [$top.$mfp(head) cursingle]
if {[lempty $ndx]} {
set ndx [keylget mfp($top) curnum]
incr ndx -1
if {$ndx > [$top.$mfp(head) size]} {return -1}
}
return $ndx
}
proc mfv:simple-display-mesg {tw msg} {
# Simple placement of message <msg> in viewer <top>
global mf mfp
set top [winfo toplevel $tw]
set fid [keylget mfp($top) fid]
keylset mfp($tw) fid $fid
keylset mfp($tw) msg $msg
$tw configure -state normal
$tw delete 1.0 end
mfv:insert-mesg-contents $top $tw $fid $msg
$tw mark set insert 1.0
$tw configure -state $mf(viewer-state)
}
proc mfv:reload-mesg { top } {
global mf mfp
set fid [keylget mfp($top) fid]
set newcur [mfv:head-to-num $top [mfv:cursingle $top]]
if {![$fid message exists $newcur]} {
set newcur [keylget mfp($top) curnum]
if {![$fid message exists $newcur]} {return 0}
}
mfv:display-mesg $top $newcur
catch "$top.$mfp(head) see [mfv:cursingle $top]"
mfv:viewer-focus $top
return 1
}
proc mfv:select-mesg { top mode tndx {force 0} {def 0}} {
# Select message at index <tndx> in the header list of <top>.
# if <mode> is "from" or "at", the actual selection is done in the listbox
global mf mfp
if {![string length $tndx]} { set tndx $def }
if [string length $mode] {
if {$mode == "from"} {
$top.$mfp(head) selection clear
}
if $force {
$top.$mfp(head) selection at $tndx
} else {
$top.$mfp(head) selection set $tndx
}
}
if {![string length [$top.$mfp(head) cursingle]]} {
$top.$mfp(head) selection clear
$top.$mfp(head) selection set $tndx
}
set newcur [mfv:head-to-num $top [mfv:cursingle $top]]
if {!$newcur} {return 0}
# primary selection has changed
if {$newcur != [keylget mfp($top) curnum] || $force} {
$top.$mfp(head) activate $tndx
mfv:display-mesg $top $newcur
keylset mfp($top) curnum $newcur
$top.$mfp(head) see $tndx
}
mfv:viewer-focus $top
return 1
}
proc mfv:head-to-num { top tndx } {
# Translate header list index <tndx> of <top> to message number
global mf mfp
if {[lempty $tndx]} {return 0}
if {[regexp {[0-9][0-9]*} \
[$top.$mfp(head) get $tndx] ndx]} {
return [string trim $ndx]
} else {
return 0
}
}
proc mfv:wait-on { } {
# Set cursor to watch bitmap for windows in mfp(waitlist)
global mf mfp
set cnt 0
foreach w $mfp(waitlist) {
if {[winfo ismapped [winfo toplevel $w]]} {
if {[set tcur [lindex [$w configure -cursor] 4]] != "watch"} {
set mfp($w,cursor) $tcur
$w configure -cursor watch
incr cnt
}
}
}
if {$cnt} {
update idletasks
after idle mfv:wait-off-really
}
}
proc mfv:wait-off { } { # dummy }
proc mfv:wait-off-really { } {
# Set cursor to default for windows in mfp(waitlist)
global mf mfp
set cnt 0
foreach w $mfp(waitlist) {
if {[winfo ismapped [winfo toplevel $w]]} { incr cnt }
if {$mfp($w,cursor) != ""} {
$w configure -cursor $mfp($w,cursor)
}
}
if {$cnt} {update idletasks}
}
# parse user alias file
proc mfv:parse-alias-file { } {
# parse user's alias file mf(mail-alias-file) according to mf(mail-alias-type)
global mf mfp env
set mfp(aliasfiles) {}
set mfp(aliasnames) {}
set mfp(aliasdesc) {}
set mfp(aliasaddr) {}
if {[lempty $mf(mail-alias-file)]} { return 0}
set cwd [pwd]
foreach afile $mf(mail-alias-file) {
if {[file exists $afile]} {
cd $mfp(homedir)
switch -regexp -- $mf(mail-alias-type) {
{^bsd$} { mfv:parse-bsd-aliases $afile }
{^elm$} { mfv:parse-elm-aliases $afile }
{^pine$} { mfv:parse-pine-aliases $afile }
default {
mfv:error-mesg \
"Unknown alias file type: $mf(mail-alias-type)!"
return 1
}
}
}
}
cd $cwd
return 0
}
proc mfv:parse-bsd-aliases { afile } {
# parse BSD style alias file <afile>
global mf mfp env
if {![string length $afile] || ![file exists $afile]} return
if {[mfv:file-to-var $afile filetext]} {
mfv:error-mesg $mfp(last-error)
return 1
}
file stat $afile fstat
set key $fstat(dev)@$fstat(ino)
if {[lsearch -exact $mfp(aliasfiles) $key] > -1} {
puts stderr "Already parsed $afile"
return 1
}
lappend mfp(aliasfiles) $key
# concat continued lines (ones that end with backslash)
regsub -all "\\\\\[ \t\]*\n\[ \t\]*" $filetext { } filetext
foreach tline [split $filetext \n] {
set line [string trim $tline]
set tmp [lindex $line 0]
switch -regexp -- $tmp {
{^(a|alias|g|group)$} {
lappend mfp(aliasnames) [lindex $line 1]
lappend mfp(aliasdesc) {}
set realaddr [string trim [lrange $line 2 end]]
if [regexp {^['"](.*)['"]$} $realaddr trash stripped] {
lappend mfp(aliasaddr) $stripped
} else {
lappend mfp(aliasaddr) $realaddr
}
}
{^(alt|alternates)$} {
# set mf(compose-alternates) [lrange $line 2 end]
}
{^cd$} {
if [catch {cd [lrange $line 1 end]}] {
puts stderr "Cannot change directory to [lrange $line 1 end]"
}
}
{^source$} {
if [mfv:parse-bsd-aliases [lrange $line 1 end]] {
puts stderr "Cannot read file [lrange $line 1 end]"
}
}
}
}
return 0
}
# parse an elm alias
proc mfv:parse-elm-aliases { afile } {
# parse Elm style alias file <afile>
global mf mfp env
if {![file exists $afile]} return
if {[mfv:file-to-var $afile filetext]} {
mfv:error-mesg $mfp(last-error)
return 1
}
# concat continued lines (ones that start with space or tab)
regsub -all "\n\[ \t\]+" $filetext { } filetext
foreach tline [split $filetext \n] {
set line [string trim $tline]
if {[string index $line 0] == "#"} continue
# strip space around equals signs:
if {[regsub -all { *= *} $line {=} line]} {
set topfields [split $line {=}]
# Position 0 -- aliases
# Position 1 -- description
# Position 2 -- email addresses
regsub -all {[, ]+} [lindex $topfields 0] { } anamelist
foreach aname $anamelist {
lappend mfp(aliasnames) $aname
lappend mfp(aliasdesc) [lindex $topfields 1]
lappend mfp(aliasaddr) [join [lrange $topfields 2 end] =]
}
}
}
return 0
}
# parse a pine addressbook
proc mfv:parse-pine-aliases { afile } {
# parse Pine style alias file <afile>
global mf mfp env
if {![file exists $afile]} return
if {[mfv:file-to-var $afile filetext]} {
mfv:error-mesg $mfp(last-error)
return 1
}
# concat continued lines (ones that start with space or tab)
regsub -all "\n\[ \t\]+" $filetext { } filetext
foreach tline [split $filetext \n] {
set line [string trim $tline]
if {[string length $line] < 4} continue
if {[string index $line 0] == "#"} continue
# strip space around equals signs:
set topfields [split $line \t]
# Position 0 -- aliases
# Position 1 -- description
# Position 2 -- email addresses
lappend mfp(aliasnames) [lindex $topfields 0]
lappend mfp(aliasdesc) [lindex $topfields 1]
set addrs [string trim [lindex $topfields 2]]
set len [expr [string length $addrs]-1]
if {[string index $addrs 0] == "\(" &&
[string index $addrs $len] == "\)"} {
set addrs [string range $addrs 1 [expr $len-1]]
}
lappend mfp(aliasaddr) $addrs
}
return 0
}
proc mfv:menu-create { m } {
# create new menu <m> only if it doesn't already exist
if {[winfo exists $m]} {
$m delete 0 last
} else {menu $m}
}
proc mfv:bind-file-complete { w } {
bind $w <Key-Tab> {
set f [%W get]; %W delete 0 end
%W insert end [j:expand_filename $f]
}
}
proc mfv:get-filename { args } {
global mf mfp
j:parse_args { \
{prompt "File: "} \
{callback ""} \
{cbargs ""} \
{cancelvalue ""} \
{master ""} \
{dir ""} }
if {![winfo exists $master] && [winfo exists $mfp(curtop)]} { set master $mfp(curtop) }
return [ut:fsbox -master $master -grab 1 -prompt $prompt \
-title "TkMail v$mfp(version) FileSelector" \
-quick "{Mail $mf(mail-directory)}" -cancelvalue $cancelvalue \
-callback $callback -cbargs $cbargs -dir $dir]
}
proc mfv:folder-menu-sender { op top } {
# Run procedure <op> using <top> and <Sender> folder name as arguments
global mf mfp
if {$mfp($top,sender) != ""} {
if {[regexp {^/} $mfp($top,sender)] || [regexp {^\./} $mfp($top,sender)]} {
if {![file exists $mfp($top,sender)]} {mfv:add-recent $mfp($top,sender)}
$op $top $mfp($top,sender)
} else {
if {![file exists $mf(mail-directory)/$mfp($top,sender)]} {
mfv:add-recent $mf(mail-directory)/$mfp($top,sender)
}
$op $top $mf(mail-directory)/$mfp($top,sender)
}
} else {
mfv:error-mesg "Could not determine filename based on sender for operation." $top
}
}
proc mfv:rebuild-folder-menus { {vlist ""} } {
global mf
if {[file isdirectory $mf(mail-directory)]} {
mfv:get-mail-dirs $mf(mail-directory)
}
return [mfv:build-folder-menus $vlist]
}
proc mfv:build-folder-menus { {vlist ""} } {
# Rebuild folder menus for viewers in <vlist>. Default is all.
global mf mfp
if {[lempty $vlist]} {
set vlist $mfp(viewlist)
}
mfv:wait-on
foreach top $vlist {
# setup menus of folders in user's folder directory
if {$mfp(fmenulast) != [$top.menu.folder.m index last]} {
$top.menu.folder.m delete [expr $mfp(fmenulast)+1] last
}
mfv:menu-create $top.menu.mesg.m.copy
mfv:menu-create $top.menu.mesg.m.move
mfv:menu-create $top.bb.move.m
if {$mf(menu-recent-max) > 0} {
mfv:menu-create $top.menu.folder.m.recent
mfv:menu-create $top.menu.mesg.m.copy.recent
mfv:menu-create $top.menu.mesg.m.move.recent
mfv:menu-create $top.bb.move.m.recent
$top.menu.folder.m add cascade -label {Recent} \
-menu $top.menu.folder.m.recent
$top.menu.mesg.m.copy add cascade -label {Recent} \
-menu $top.menu.mesg.m.copy.recent
$top.menu.mesg.m.move add cascade -label {Recent} \
-menu $top.menu.mesg.m.move.recent
$top.bb.move.m add cascade -label {Recent} \
-menu $top.bb.move.m.recent
}
$top.menu.folder.m add command -label {Other . . .} \
-command "mfv:explicit-open $top \[mfv:get-filename -master $top\]"
$top.menu.mesg.m.move add command -label {Other . . .} \
-command "mfv:explicit-move $top \[mfv:get-filename -master $top\]"
$top.bb.move.m add command -label {Other . . .} \
-command "mfv:explicit-move $top \[mfv:get-filename -master $top\]"
$top.menu.mesg.m.copy add command -label {Other . . .} \
-command "mfv:explicit-copy $top \[mfv:get-filename -master $top\]"
if {[file isdirectory $mf(mail-directory)]} {
$top.menu.folder.m add command -label {<Sender>} \
-command "mfv:folder-menu-sender mfv:explicit-open $top"
set mfp(fmenusender) [$top.menu.folder.m index last]
$top.menu.mesg.m.move add command -label {<Sender>} \
-command "mfv:folder-menu-sender mfv:explicit-move $top"
$top.menu.mesg.m.move add separator
$top.bb.move.m add command -label {<Sender>} \
-command "mfv:folder-menu-sender mfv:explicit-move $top"
$top.bb.move.m add separator
$top.menu.mesg.m.copy add command -label {<Sender>} \
-command "mfv:folder-menu-sender mfv:explicit-copy $top"
$top.menu.mesg.m.copy add separator
if {$mf(menu-folders-max) > 0} {
$top.menu.folder.m add separator
mfv:set-folder-menus $top $mf(mail-directory) "" -1
}
} else {
set mfp(fmenusender) -1
}
# append mf(menu-quick-send) contents to Mesg menu
if {$mfp(mmenulast) != [$top.menu.mail.m index last]} {
$top.menu.mail.m delete [expr $mfp(mmenulast)+1] last
}
if {[llength $mf(menu-quick-send)]} {
$top.menu.mail.m add separator
if {$mf(menu-quick-send) == "@aliases"} {
foreach addr $mfp(aliasnames) {
$top.menu.mail.m add command -label $addr \
-command "mfv:compose -viewer $top -sendto {$addr}"
}
} else {
foreach addr $mf(menu-quick-send) {
$top.menu.mail.m add command -label $addr \
-command "mfv:compose -viewer $top -sendto {$addr}"
}
}
}
mfv:add-recent-to-top $top
}
mfv:wait-off
}
proc mfv:set-folder-menus-create { top mfold extmenu mcnt } {
mfv:menu-create $top.menu.folder.m${extmenu}.f$mcnt
$top.menu.folder.m$extmenu add cascade \
-label $mfold \
-menu $top.menu.folder.m${extmenu}.f$mcnt
mfv:menu-create $top.menu.mesg.m.copy${extmenu}.f$mcnt
$top.menu.mesg.m.copy$extmenu add cascade \
-label $mfold \
-menu $top.menu.mesg.m.copy${extmenu}.f$mcnt
mfv:menu-create $top.menu.mesg.m.move${extmenu}.f$mcnt
$top.menu.mesg.m.move$extmenu add cascade \
-label $mfold \
-menu $top.menu.mesg.m.move${extmenu}.f$mcnt
mfv:menu-create $top.bb.move.m${extmenu}.f$mcnt
$top.bb.move.m$extmenu add cascade \
-label $mfold \
-menu $top.bb.move.m${extmenu}.f$mcnt
}
proc mfv:set-folder-menus { top dir extmenu depth } {
# Build a folder menu for viewer <top> from directory <dir> as part
# of menu <extmenu> at <depth>
global mf mfp mfpd
pdebug "Setting up menu for $dir\n"
incr depth
set mcnt 0
set icnt 0
foreach entry $mfpd($dir/) {
set mfold [lindex $entry 1]
incr icnt
if {$icnt > $mf(menu-folders-max)} {
mfv:set-folder-menus-create $top <<MORE>> $extmenu $mcnt
set extmenu ${extmenu}.f$mcnt
set mcnt 0
set icnt 0
}
if {[lindex $entry 0]} {
if {$depth < $mf(menu-depth-max)} {
mfv:set-folder-menus-create $top $mfold $extmenu $mcnt
mfv:set-folder-menus $top $dir/$mfold ${extmenu}.f$mcnt $depth
incr mcnt
}
} else {
$top.menu.folder.m$extmenu add command -label $mfold \
-command "mfv:explicit-open $top {$dir/$mfold} {} 0 0"
$top.menu.mesg.m.copy$extmenu add command -label $mfold \
-command "mfv:mesg-copy $top {$dir/$mfold}"
$top.menu.mesg.m.move$extmenu add command -label $mfold \
-command "mfv:mesg-move $top {$dir/$mfold}"
$top.bb.move.m$extmenu add command -label $mfold \
-command "mfv:mesg-move $top {$dir/$mfold}"
}
}
}
proc mfv:get-mail-dirs { dir {rdir ""}} {
global mf mfp mfpd
set fdir $mf(mail-directory)/${rdir}
set mfpd($fdir) [list]
set cwd [pwd]
cd $dir
set files [lsort [glob -nocomplain *]]
foreach file $files {
set skipit 0
if {[string match *.lock $file]} continue
if {[string match *.bak $file]} continue
if {[string match *~ $file]} continue
if {[string match \#*\# $file]} continue
foreach ifold $mf(menu-folders-ignore) {
if {[string match $ifold ${rdir}$file]} { set skipit 1; break }
if {[string match $ifold $mf(mail-directory)/${rdir}$file]} { set skipit 1; break }
}
if {$skipit} continue
set type [file type $file]
if {$type == "link"} {
set lfile $file
while {$type == "link"} {
set lfile [file readlink $lfile]
catch {file type $lfile} type
}
}
if {$type == "file"} {
lappend mfpd($fdir) [list 0 $file]
lappend mfpd(full) ${rdir}${file}
} elseif {$type == "directory"} {
lappend mfpd($fdir) [list 1 $file]
mfv:get-mail-dirs $file ${rdir}${file}/
}
}
cd $cwd
}
proc mfv:add-recent { file } {
# Add <file> to the Recent folder menu item for all viewers
global mf mfp mfpd
if [catch {mfv_util fullpath $file} file] return
if {$mf(menu-recent-exclusive)} {
if { [samefile $file $mfp(mbox)] || \
$file == $mfp(inbox)} {return 0}
if ![catch {set maildir [mfv_util fullpath $mf(mail-directory)]}] {
if {[string first $maildir $file] > -1} {
global mfpd
set rfile [string range $file [expr [string length $maildir]+1] end]
if {[lsearch -exact $mfpd(full) $rfile] > -1} {
return 0
}
}
}
}
if {[set ndx [lsearch $mfp(recentlist) $file]] > -1} {
set mfp(recentlist) [lreplace $mfp(recentlist) $ndx $ndx]
}
set mfp(recentlist) [lrange [linsert $mfp(recentlist) 0 $file] \
0 [expr $mf(menu-recent-max)-1]]
foreach top $mfp(viewlist) {
mfv:add-recent-to-top $top
}
}
proc mfv:add-recent-to-top { top } {
# Add <file> to Recent folder menu of viewer <top>
global mf mfp
if {![winfo exists $top.menu.folder.m.recent]} {return 0}
$top.menu.folder.m.recent delete 0 last
$top.menu.mesg.m.copy.recent delete 0 last
$top.menu.mesg.m.move.recent delete 0 last
$top.bb.move.m.recent delete 0 last
foreach folder $mfp(recentlist) {
set mfold [file tail $folder]
$top.menu.folder.m.recent add command -label $mfold \
-command "mfv:add-recent {$folder}; mfv:explicit-open $top {$folder} {} 0 0"
$top.menu.mesg.m.copy.recent add command -label $mfold \
-command "mfv:add-recent {$folder}; mfv:mesg-copy $top {$folder}"
$top.menu.mesg.m.move.recent add command -label $mfold \
-command "mfv:add-recent {$folder}; mfv:mesg-move $top {$folder}"
$top.bb.move.m.recent add command -label $mfold \
-command "mfv:add-recent {$folder}; mfv:mesg-move $top {$folder}"
}
}
set mfp(logwindow) ".NONE"
proc mfv:log-mesg { top str {all 0}} {
# Log message <str> showing pre-colon part in status label of <top>
global mf mfp
if { ![winfo exists $mfp(logwindow)] } {
set mfp(logwindow) [ut:simpletext -title "TkMail: Message Log" \
-buttons {{{Clear} mfv:log-clear %W} {Dismiss}} \
-keep 1 -text $str -master $top]
wm withdraw $mfp(logwindow)
pdebug "Created log window $mfp(logwindow)\n"
} else {
$mfp(logwindow).txt configure -state normal
$mfp(logwindow).txt insert end "$str\n"
$mfp(logwindow).txt configure -state disabled
}
if $all {
set vlist $mfp(viewlist)
} else { set vlist $top }
foreach viewer $vlist {
if {[winfo exists $viewer.$mfp(mstat)]} {
$viewer.$mfp(mstat) configure -text [lindex [split $str :] 0]
}
}
}
proc mfv:log-clear { top } {
$top.txt configure -state normal
$top.txt delete 1.0 end
$top.txt configure -state disabled
return 0
}
proc mfv:show-log { top } {
global mf mfp
if {[winfo exists $mfp(logwindow)]} {
wm geometry $mfp(logwindow) +[winfo rootx $top]+40
wm deiconify $mfp(logwindow)
raise $mfp(logwindow)
}
}
proc mfv:clear-text-mem { tw } {
# Cleanup memory associated with text widget <tw>
global mfp
if {[info exists mfp($tw)]} {unset mfp($tw)}
tkTextUndoSetup $tw
return 1
}
proc mfv:toggle-video { args } {
foreach tw $args {
set backgr [lindex [$tw configure -background] 4]
$tw configure -background \
[lindex [$tw configure -foreground] 4]
$tw configure -foreground $backgr
if {[lsearch [$tw tag names] headers] > -1} {
set backgr [lindex [$tw tag configure headers -background] 4]
$tw tag configure headers -background \
[lindex [$tw tag configure headers -foreground] 4]
$tw tag configure headers -foreground $backgr
}
}
}
proc mfv:toggle-fixed-font { top tw } {
global mf mfp
if $mfp($top,fixed) {
if [catch {$tw configure -font $mf(disp-font-fixed)}] {
$tw configure -font fixed
}
} else {
if [catch {$tw configure -font $mf(disp-font-default)}] {
if [catch {$tw configure -font -*-helvetica-medium-r-normal-*-12-*}] {
$tw configure -font [lindex [$mfp(tmptxt) configure -font] 4]
}
}
}
}
proc mfv:close-viewer { top } {
# Close viewer <top> possible closing the folder associated with it if
# no other viewers are using it
global mf mfp
if $mfp(trap-exit) return
if {[set ndx [lsearch -exact $mfp(viewlist) $top]] > -1} {
set mfp(viewlist) [lreplace $mfp(viewlist) $ndx $ndx]
if {[llength $mfp(viewlist)] < 1} {
mfv:quit
lappend mfp(viewlist) $top
return 2
}
if [mfv:close-folder $top] {
return 1
}
set filename [keylget mfp($top) file]
keylset mfp(last-mesg) $filename [mfv:head-to-num $top [mfv:cursingle $top]]
unset mfp($top)
foreach opt {fixed sort reverse sender lock newmail revvid horiz} {
unset mfp($top,$opt)
}
mfv:clear-text-mem $top.$mfp(mesg)
mfv:clear-text-mem $top.mesg2.txt
while {[set ndx [lsearch -glob $mfp(waitlist) $top.*]] != -1} {
set mfp(waitlist) [lreplace $mfp(waitlist) $ndx $ndx]
}
if {[winfo exists ${top}_search]} {
unset mfp($top,search,case)
unset mfp($top,search,regexp)
unset mfp($top,search,back)
unset mfp($top,search,where)
destroy ${top}_search
}
}
if {$mfp(curtop) == $top} {set mfp(curtop) [lindex $mfp(viewlist) 0]}
if {$mfp(curview) == $top} {set mfp(curview) [lindex $mfp(viewlist) 0]}
catch "destroy $top"
return 0
}
proc mfv:new-viewer { filename {iconic 0} {msgndx {}}} {
# Open up new viewer for folder <filename>. If <isman>, this is master viewer
global mf mfp env tkBind mf_newlist mf_openlist
set cnt 0
while {[winfo exists .mf${cnt}]} {incr cnt}
set top .mf${cnt}
lappend mfp(viewlist) $top
set mfp($top,fixed) $mf(disp-default-fixed)
set mfp($top,sort) user-defined
set mfp($top,reverse) $mf(headlist-reverse)
set mfp($top,hidedel) $mf(headlist-deleted-hide)
set mfp($top,sender) {}
set mfp($top,lock) $mf(viewer-start-locked)
set mfp($top,newmail) 0
set mfp($top,revvid) 0
set mfp($top,horiz) $mf(disp-horiz-scroll)
set mfp($top) {}
keylset mfp($top) fid mfv:nofolder
keylset mfp($top) file {}
keylset mfp($top) curnum 0
keylset mfp($top) mesgnum 0
toplevel $top -class MailView
wm iconname $top "TkMail"
wm title $top "TkMail v$mfp(version)"
wm minsize $top 400 400
wm protocol $top WM_DELETE_WINDOW "mfv:close-viewer $top"
wm withdraw $top
bind $top <FocusIn> {
set mfp(curtop) [winfo toplevel %W]
set mfp(curview) [winfo toplevel %W]
mfv:viewer-focus [winfo toplevel %W]
}
frame $top.menu -relief raised
menubutton $top.menu.folder -text {Folder} -menu $top.menu.folder.m -underline 0
menubutton $top.menu.edit -text {Edit} -menu $top.menu.edit.m -underline 0
menubutton $top.menu.mesg -text {Mesg} -menu $top.menu.mesg.m -underline 3
menubutton $top.menu.mail -text {Compose} -menu $top.menu.mail.m -underline 0
menubutton $top.menu.view -text {View} -menu $top.menu.view.m -underline 0
menubutton $top.menu.opt -text {Options} -menu $top.menu.opt.m -underline 0
menubutton $top.menu.help -text {Help} -menu $top.menu.help.m -underline 0
menu $top.menu.folder.m
$top.menu.folder.m add command -label {Open . . .} -accelerator {[o]} -underline 0 \
-command "mfv:explicit-open $top \[mfv:get-filename -master $top\] {} 0 1"
$top.menu.folder.m add command -label {Save} -underline 0 \
-command "mfv:save-folder $top 0"
$top.menu.folder.m add command -label {Save Sorted} -underline 0 \
-command "mfv:save-folder $top 1"
$top.menu.folder.m add command -label {Close} -accelerator {[w]} -underline 0 \
-command "mfv:close-viewer $top"
$top.menu.folder.m add command -label {Quit} -accelerator {[q]} -underline 0 \
-command "mfv:quit"
$top.menu.folder.m add separator
$top.menu.folder.m add command -label {Main Box} -accelerator {[b]} -underline 5 \
-command "mfv:explicit-open $top \$mfp(mbox) {} 0 0"
$top.menu.folder.m add command -label {Force Autosave Now} -underline 12 \
-command "mfv:folder-backup \[keylget mfp($top) fid\]"
$top.menu.folder.m add command -label {Force New Mail Check} -underline 12 \
-command "mfv:check-append \[keylget mfp($top) fid\]"
$top.menu.folder.m add separator
set mfp(fmenulast) [$top.menu.folder.m index last]
menu $top.menu.edit.m
$top.menu.edit.m add command -label {Cut} -underline 2 \
-command "tkTextCut $top.mesg.txt"
$top.menu.edit.m add command -label {Copy} -underline 0 \
-command "tkTextCopy $top.mesg.txt"
$top.menu.edit.m add command -label {Paste} -underline 0 \
-command "tkTextYankPop $top.mesg.txt"
$top.menu.edit.m add command -label {Select All} -underline 2 \
-command "tkTextMarkRegion $top.mesg.txt"
$top.menu.edit.m add separator
$top.menu.edit.m add command -label {Search . . .} -underline 0 \
-command "mfv:search-prompt $top"
$top.menu.edit.m add command -label {Search Again} -underline 7 \
-command "mfv:search $top ${top}_search"
$top.menu.edit.m add separator
$top.menu.edit.m add command -label {Save X Selection . . .} -underline 2 \
-command "mfv:write $top \[mfv:get-filename -master $top\] xsel"
$top.menu.edit.m add command -label {Print X Selection . . .} -underline 6 \
-command "mfv:print $top xsel"
$top.menu.edit.m add command -label {TCL Evaluate X Sel} -underline 4 \
-command "mfv:tcl-eval-sel"
$top.menu.edit.m add command -label {UNIX Pipe X Sel . . .} -underline 0 \
-command "mfv:pipe $top xsel $top.mesg.txt 0"
if {!$tkBind(emacs)} {
$top.menu.edit.m entryconfigure {Cut} -accelerator {[x]}
$top.menu.edit.m entryconfigure {Copy} -accelerator {[c]}
$top.menu.edit.m entryconfigure {Paste} -accelerator {[v]}
$top.menu.edit.m entryconfigure {Search . . .} -accelerator {[f]}
$top.menu.edit.m entryconfigure {Search Again} -accelerator {[g]}
}
menu $top.menu.mesg.m
$top.menu.mesg.m add command -label {Read} \
-command "mfv:reload-mesg $top" -underline 0
$top.menu.mesg.m add command -label {Unread} \
-command "mfv:mesg-mark-unread $top"
$top.menu.mesg.m add separator
$top.menu.mesg.m add cascade -label {Copy} \
-menu $top.menu.mesg.m.copy -underline 0
$top.menu.mesg.m add cascade -label {Move} \
-menu $top.menu.mesg.m.move -underline 0
$top.menu.mesg.m add command -label {Delete} -accelerator {[d]} \
-command "mfv:mesg-delete $top" -underline 0
$top.menu.mesg.m add command -label {Undelete} -accelerator {[u]} -underline 0 \
-command "mfv:mesg-undelete $top"
$top.menu.mesg.m add command -label {Select All} \
-command "$top.$mfp(head) selection set 0 end" -underline 1
$top.menu.mesg.m add separator
$top.menu.mesg.m add command -label {Write Body . . .} -accelerator {[s]} -underline 0 \
-command "mfv:explicit-write $top \[mfv:get-filename -master $top\] mesg"
$top.menu.mesg.m add command -label {Print . . .} -accelerator {[p]} \
-command "mfv:print $top mesg" -underline 4
$top.menu.mesg.m add command -label {UNIX Pipe . . .} -underline 3 \
-command "mfv:pipe $top mesg $top.mesg.txt 0"
$top.menu.mesg.m add separator
$top.menu.mesg.m add command -label {Show Full Headers} \
-command "mfv:show-full-headers $top" -underline 1
$top.menu.mesg.m add separator
$top.menu.mesg.m add command -label {Detach} -command "mfv:detach-mesg $top" -underline 5
$top.menu.mesg.m add command -label {Split/Unsplit} -underline 3 \
-command "mfv:split-mesg-view $top"
$top.menu.mesg.m add command -label {Quick Decode} -underline 0 \
-command "mfv:quick-decode $top.mesg.txt"
$top.menu.mesg.m add command -label {Alias Current} -underline 11 \
-command "mfv:alias-current $top"
menu $top.menu.mail.m
$top.menu.mail.m add command -label {New . . .} -accelerator {[m]} \
-command "mfv:compose -viewer $top" -underline 0
$top.menu.mail.m add command -label {Reply . . .} -accelerator {[r]} \
-command "mfv:reply $top 0 0" -underline 0
$top.menu.mail.m add command -label {Reply All . . .} -accelerator {[t]} \
-command "mfv:reply $top 0 1" -underline 6
$top.menu.mail.m add command -label {Forward . . .} -accelerator {[k]} \
-command "mfv:forward $top 3" -underline 0
$top.menu.mail.m add separator
$top.menu.mail.m add command -label {Restore Last . . .} -underline 8 \
-command "mfv:restore-last \[mfv:compose -viewer $top\]"
$top.menu.mail.m add separator
$top.menu.mail.m add command -label {TkMail Support . . .} -underline 7 -command {
global mf mfp
$mfp(tmptxt) delete 1.0 end
catch {$mfp(tmptxt) insert end "Machine/OS: [exec uname -a]\n"}
catch {$mfp(tmptxt) insert end "Tk Version: $tk_patchLevel\n"}
catch {$mfp(tmptxt) insert end "TkMail Version: $mfp(version)\n\n"}
catch {$mfp(tmptxt) insert end "Mfv Version: [mfv_util version]\n\n"}
foreach name [lsort [array names mf]] {
$mfp(tmptxt) insert end " mf($name) {$mf($name)}\n"
}
$mfp(tmptxt) insert end "------------------------------------\n"
$mfp(tmptxt) insert end "NOTE: Please insert your $mfp(setfile) file unless you think it isn't relevant.\n\n"
mfv:compose -sendto raines@slac.stanford.edu \
-subject "TkMail Beta Support" -incmesg 2
}
set mfp(mmenulast) [$top.menu.mail.m index last]
menu $top.menu.view.m
$top.menu.view.m add radiobutton -label "Sort Normal" -underline 5 \
-command "mfv:reset-headlist $top" -variable mfp($top,sort) -value normal
$top.menu.view.m add radiobutton -label "Sort From Addr" -underline 5 \
-command "mfv:reset-headlist $top" -variable mfp($top,sort) -value sm-from
$top.menu.view.m add radiobutton -label "Sort Full Name" -underline 6 \
-command "mfv:reset-headlist $top" -variable mfp($top,sort) -value fullname
$top.menu.view.m add radiobutton -label "Sort Subject" -underline 7 \
-command "mfv:reset-headlist $top" -variable mfp($top,sort) -value subject
$top.menu.view.m add radiobutton -label "Sort Time Received" -underline 5 \
-command "mfv:reset-headlist $top" -variable mfp($top,sort) -value received
$top.menu.view.m add radiobutton -label "User Defined" -underline 5 \
-command "mfv:reset-headlist $top" -variable mfp($top,sort) -value user-defined
$top.menu.view.m add separator
$top.menu.view.m add checkbutton -label "Hide Deleted" -underline 2 \
-variable mfp($top,hidedel) \
-command "mfv:reset-summary $top"
$top.menu.view.m add checkbutton -label "Fixed-spaced font" -underline 2 \
-variable mfp($top,fixed) \
-command "mfv:toggle-fixed-font $top $top.mesg.txt"
$top.menu.view.m add checkbutton -label "Reverse Order" -underline 0 \
-variable mfp($top,reverse) -command "mfv:reset-headlist $top"
$top.menu.view.m add checkbutton -label "Reverse Video" -underline 2 \
-variable mfp($top,revvid) \
-command "mfv:toggle-video $top.$mfp(head)_text $top.$mfp(mesg)"
$top.menu.view.m add checkbutton -label "Horizontal Scrollbar" -underline 0 \
-variable mfp($top,horiz) -command "mfv:toggle-horiz $top"
menu $top.menu.opt.m
$top.menu.opt.m add command -label "Edit Global Settings . . ." -underline 5 \
-command "mfv:opt-master"
$top.menu.opt.m add command -label "Edit Aliases . . ." -underline 5 \
-command "mfv:edit-alias-file $top"
$top.menu.opt.m add separator
$top.menu.opt.m add command -label {Rebuild Folder Menus} -underline 8 \
-command "mfv:rebuild-folder-menus; mfv:mesg-set-sender $top"
$top.menu.opt.m add command -label {Reread Alias File} -underline 7 \
-command "mfv:parse-alias-file"
$top.menu.opt.m add separator
if $mfp(mbox-model) {
$top.menu.opt.m add checkbutton -label "Auto-Incorporate" -underline 5 \
-variable mf(mail-auto-incorp) -command "global mfopt; set mfopt(modified) 1"
}
$top.menu.opt.m add checkbutton -label "Popup Notice of New Mail" -underline 0 \
-variable mf(notify-popup) -command "global mfopt; set mfopt(modified) 1" \
-state disabled
$top.menu.opt.m add checkbutton -label "Ask to Continue on Long Mesg" -underline 2 \
-variable mf(mail-read-ask) -command "global mfopt; set mfopt(modified) 1"
$top.menu.opt.m add checkbutton -label "Strip Header on Insert" -underline 6 \
-variable mf(insert-strip) -command "global mfopt; set mfopt(modified) 1"
$top.menu.opt.m add checkbutton -label "Parse MIME messages" -underline 6 \
-variable mf(mime-parse) -command "mfv:reload-mesg $top"
$top.menu.opt.m add separator
$top.menu.opt.m add command -label "Save Settings" -underline 0 \
-command "mfv:opt-save .mf_dummy 0"
# SETUP HELP MENU
menu $top.menu.help.m
$top.menu.help.m add command -label {Intro} -command "mfv:display-help $top TOP" \
-accelerator {[h]} -underline 0
set mfp(readme) [list "GENERAL USAGE" "ALIASES" \
"MOUSE BINDINGS" "KEY BINDINGS" "VIEWER MENU" "COMPOSE MENU" \
"PRINTING" "HEADER FIELD STRIPPING" "SUMMARY LISTBOX FORMAT" \
"CC:, BCC: and FCC:" "SIGNATURE" "MIME" "USER SETTINGS" "WIDGET CONFIGURATION" \
"USEFUL METHODS" "BUGS" "FAQ" "FUTURE" "COPYRIGHT" "DISCLAIMER"]
foreach topic $mfp(readme) {
$top.menu.help.m add command -label [string tolower $topic] \
-command "mfv:display-help $top \{$topic\}" -underline 0
}
$top.menu.help.m add separator
$top.menu.help.m add command -label {Show Log} -underline 5 \
-command "mfv:show-log $top"
# PACK MENU
pack $top.menu.folder $top.menu.edit $top.menu.mesg \
$top.menu.mail $top.menu.view $top.menu.opt -side left
pack $top.menu.help -side right
if $mfp(print-noprompt) {
$top.menu.mesg.m entryconfigure {Print*} -label Print
$top.edit.mesg.m entryconfigure {Print X*} -label {Print X Selection}
}
pdebug " Menu\n"
# HEADLIST STATUS LINE
frame $top.stat
menubutton $top.stat.folder -text Unknown -menu $top.stat.folder.m \
-relief raised -indicatoron 1 -bd 2 -padx 4p -pady 1p \
-highlightthickness 2 -anchor c
tkMbMakeSingle $top.stat.folder
# label $top.stat.folder -relief raised -anchor w -width 22
label $top.stat.mesg -relief raised -width 36 -pady 1p
checkbutton $top.stat.lock -text "Lock " \
-variable mfp($top,lock) -relief raised -pady 1p
pack $top.stat.lock -side left
pack $top.stat.folder -side left
pack $top.stat.mesg -side left -expand true -fill x
# HEADLIST LISTBOX
frame $top.head
scrollbar $top.head.yscroll -command "$top.$mfp(head) yview" \
-relief raised
fancylistbox $top.$mfp(head) -yscroll "$top.head.yscroll set" \
-relief sunken -selectmode extended
bindtags $top.$mfp(head) "Flb_Bind Listbox $top.$mfp(head) $top all"
foreach evt {ButtonRelease-1 Return Select} {
bind $top.$mfp(head) <$evt> \
"mfv:select-mesg $top {} \[%W cursingle\]"
}
bind $top.$mfp(head) <ButtonRelease-3> \
"mfv:select-mesg $top at \[%W nearest %y\] 1"
bind $top.$mfp(head) <Return> \
"tkListboxBeginSelect %W \[%W index active\]; \
mfv:select-mesg $top {} \[%W cursingle\]"
bind $top.$mfp(head) <KeyPress-n> "mfv:select-next $top"
bind $top.$mfp(head) <KeyPress-p> "mfv:select-prev $top"
bind $top.$mfp(head) <KeyPress-o> "$top.menu.folder.m invoke {Open*}"
bind $top.$mfp(head) <KeyPress-g> "$top.menu.folder.m invoke {Open*}"
bind $top.$mfp(head) <KeyPress-w> "$top.menu.folder.m invoke {Close*}"
bind $top.$mfp(head) <KeyPress-x> "$top.menu.folder.m invoke {Save}"
bind $top.$mfp(head) <KeyPress-q> "$top.menu.folder.m invoke {Quit}"
bind $top.$mfp(head) <KeyPress-b> "$top.menu.folder.m invoke {Main*}"
bind $top.$mfp(head) <KeyPress-i> "$top.menu.folder.m invoke {Incor*}"
bind $top.$mfp(head) <KeyPress-d> "$top.menu.mesg.m invoke {Delete}"
bind $top.$mfp(head) <KeyPress-u> "$top.menu.mesg.m invoke {Undelete}"
bind $top.$mfp(head) <KeyPress-s> "$top.menu.mesg.m invoke {Save*}"
bind $top.$mfp(head) <KeyPress-bar> "$top.menu.mesg.m invoke {UNIX Pipe*}"
bind $top.$mfp(head) <KeyPress-c> "$top.menu.mail.m invoke {New*}"
bind $top.$mfp(head) <KeyPress-r> "$top.menu.mail.m invoke {Reply*}"
bind $top.$mfp(head) <KeyPress-R> "$top.menu.mail.m invoke {Reply All*}"
bind $top.$mfp(head) <KeyPress-f> "$top.menu.mail.m invoke {Forward*}"
bind $top.$mfp(head) <KeyPress-y> "$top.menu.mesg.m invoke {Print*}"
bind $top.$mfp(head) <KeyPress-h> "$top.menu.help.m invoke 0"
# BUTTONBAR
frame $top.bb
menubutton $top.bb.newm -text {New Mail} -menu $top.bb.newm.m \
-relief raised -bd 2 -padx 8p -pady 4p -highlightthickness 2 -anchor c
tkMbMakeSingle $top.bb.newm
if $mfp(mbox-model) {
button $top.bb.mbox -text "Mbox" -command "mfv:mbox $top"
}
menubutton $top.bb.move -text {Move} -menu $top.bb.move.m \
-relief raised -bd 2 -padx 8p -pady 4p -highlightthickness 2 -anchor c
tkMbMakeSingle $top.bb.move
button $top.bb.del -text "Delete" -command "$top.menu.mesg.m invoke Delete*"
button $top.bb.comp -text "Compose" -command "$top.menu.mail.m invoke New*"
button $top.bb.reply -text "Reply" -command "$top.menu.mail.m invoke Reply*"
button $top.bb.detach -text "Split" -command "$top.menu.mesg.m invoke Split*"
button $top.bb.close -text "Close" -command "$top.menu.folder.m invoke Close*"
bind Button <2> {tkButtonDown %W}
bind Button <ButtonRelease-2> {tkButtonUp3 %W}
bind Button <3> {tkButtonDown %W}
bind Button <ButtonRelease-3> {tkButtonUp3 %W}
menu $top.bb.newm.m
foreach cfile [set newflist [array names mf_newlist]] {
set efile $mf_newlist($cfile)
if {$efile == "InBox"} {
$top.bb.newm.m insert 1 command -label $efile -command \
"mfv:goto-new-mail \$mfp(inbox) $top"
} else {
$top.bb.newm.m add command -label $efile -command \
[list mfv:goto-new-mail $cfile $top]
}
}
if {![llength $newflist]} { $top.bb.newm configure -state disabled }
menu $top.$mfp(hstat).m
foreach cfile [array names mf_openlist] {
set efile $mf_openlist($cfile)
if {$efile == "InBox"} {
$top.$mfp(hstat).m insert 1 command -label $efile -command \
"mfv:explicit-open $top \$mfp(inbox) {} 0 0"
} else {
$top.$mfp(hstat).m add command -label $efile -command \
[list mfv:explicit-open $top $cfile {} 0 0]
}
}
# include message with no prefix, no address
bind $top.bb.comp <ButtonRelease-2> "mfv:forward $top 3"
# include message with no prefix, with address
bind $top.bb.reply <ButtonRelease-2> "mfv:reply $top 3"
# detach current message
bind $top.bb.detach <ButtonRelease-2> "$top.menu.mesg.m invoke Detach*"
# include message with prefix, no address
bind $top.bb.comp <ButtonRelease-3> "mfv:forward $top 1"
# undelete current message
bind $top.bb.del <ButtonRelease-3> "$top.menu.mesg.m invoke Undelete"
# include message with prefix, with address
bind $top.bb.reply <ButtonRelease-3> "mfv:reply $top 1"
# unsplit current viewer
bind $top.bb.detach <ButtonRelease-3> "$top.menu.mesg.m invoke Split*"
# save folder
bind $top.bb.close <ButtonRelease-3> "$top.menu.folder.m invoke Save"
pack $top.bb.newm $top.bb.move $top.bb.del \
$top.bb.comp $top.bb.reply $top.bb.detach $top.bb.close \
-side left -expand true -fill x
if [winfo exists $top.bb.mbox] {
pack $top.bb.mbox -after $top.bb.newm -side left -expand true -fill x
}
pdebug " ButtonBar\n"
# TEXT WIDGETS
frame $top.mesg
scrollbar $top.mesg.yscroll -command "$top.mesg.txt yview" \
-relief raised
frame $top.hbar
scrollbar $top.hbar.xscroll -command "$top.mesg.txt xview" \
-relief raised -orient horizontal
button $top.hbar.spacer -width [$top.mesg.yscroll cget -width] \
-image blank -relief flat -borderwidth 0 -state disabled
text $top.mesg.txt -yscroll "$top.mesg.yscroll set" \
-relief sunken -bd 2 -wrap none -xscroll "$top.hbar.xscroll set"
$top.mesg.txt tag configure seelong -borderwidth 2 -relief raised \
-background [lindex [$top.bb.close configure -background] 4] \
-font [lindex [$top.bb.close configure -font] 4]
mfv:toggle-fixed-font $top $top.mesg.txt
if {$tkBind(emacs)} {
mfv:bind-menu-key $top.mesg.txt o "$top.menu.folder.m invoke {Open*}"
mfv:bind-menu-key $top.mesg.txt n "$top.menu.view.m invoke {New*}"
mfv:bind-menu-key $top.mesg.txt w "$top.menu.folder.m invoke {Close*}"
mfv:bind-menu-key $top.mesg.txt q "$top.menu.folder.m invoke {Quit}"
mfv:bind-menu-key $top.mesg.txt b "$top.menu.folder.m invoke {Main*}"
mfv:bind-menu-key $top.mesg.txt i "$top.menu.folder.m invoke {Incor*}"
mfv:bind-menu-key $top.mesg.txt Down "mfv:select-next $top"
mfv:bind-menu-key $top.mesg.txt Up "mfv:select-prev $top"
mfv:bind-menu-key $top.mesg.txt d "$top.menu.mesg.m invoke {Delete}"
mfv:bind-menu-key $top.mesg.txt u "$top.menu.mesg.m invoke {Undelete}"
mfv:bind-menu-key $top.mesg.txt s "$top.menu.mesg.m invoke {Save*}"
mfv:bind-menu-key $top.mesg.txt p "$top.menu.mesg.m invoke {Print*}"
mfv:bind-menu-key $top.mesg.txt m "$top.menu.mail.m invoke {New*}"
mfv:bind-menu-key $top.mesg.txt r "$top.menu.mail.m invoke {Reply*}"
mfv:bind-menu-key $top.mesg.txt t "$top.menu.mail.m invoke {Reply All*}"
mfv:bind-menu-key $top.mesg.txt k "$top.menu.mail.m invoke {Forward*}"
mfv:bind-menu-key $top.mesg.txt h "$top.menu.help.m invoke 0"
} else {
bind $top.mesg.txt <Control-o> "$top.menu.folder.m invoke {Open*}"
bind $top.mesg.txt <Control-n> "$top.menu.view.m invoke {New*}"
bind $top.mesg.txt <Control-w> "$top.menu.folder.m invoke {Close*}"
bind $top.mesg.txt <Control-q> "$top.menu.folder.m invoke {Quit}"
bind $top.mesg.txt <Control-b> "$top.menu.folder.m invoke {Main*}"
bind $top.mesg.txt <Control-i> "$top.menu.folder.m invoke {Incor*}"
bind $top.mesg.txt <Control-Down> "mfv:select-next $top"
bind $top.mesg.txt <Control-Up> "mfv:select-prev $top"
bind $top.mesg.txt <Control-d> "$top.menu.mesg.m invoke {Delete}"
bind $top.mesg.txt <Control-u> "$top.menu.mesg.m invoke {Undelete}"
bind $top.mesg.txt <Control-s> "$top.menu.mesg.m invoke {Save*}"
bind $top.mesg.txt <Control-p> "$top.menu.mesg.m invoke {Print*}"
bind $top.mesg.txt <Control-m> "$top.menu.mail.m invoke {New*}"
bind $top.mesg.txt <Control-r> "$top.menu.mail.m invoke {Reply*}"
bind $top.mesg.txt <Control-t> "$top.menu.mail.m invoke {Reply All*}"
bind $top.mesg.txt <Control-k> "$top.menu.mail.m invoke {Forward*}"
bind $top.mesg.txt <Control-h> "$top.menu.help.m invoke 0"
}
# configure second text widget for splits
frame $top.mesg2
scrollbar $top.mesg2.yscroll -command "$top.mesg2.txt yview" \
-relief raised
frame $top.hbar2
scrollbar $top.hbar2.xscroll -command "$top.mesg2.txt xview" \
-relief raised -orient horizontal
button $top.hbar2.spacer -width [$top.mesg2.yscroll cget -width] \
-image blank -relief flat -borderwidth 0 -state disabled
text $top.mesg2.txt -yscroll "$top.mesg2.yscroll set" \
-relief sunken -bd 2 -wrap none -xscroll "$top.hbar2.xscroll set"
$top.mesg2.txt configure -font [lindex [$top.$mfp(mesg) configure -font] 4]
# configure pane handle below summary list
frame $top.sep1 -relief flat -height 11 -bd 1
frame $top.line1 -relief sunken -height 2 -bd 1
frame $top.handle1 -relief raised -bd 2 -cursor crosshair \
-width 9 -height 9
bind $top.handle1 <ButtonPress-1> "mfv:sash-begin $top $top.$mfp(head) 1"
bind $top.handle1 <B1-Motion> "mfv:sash-draw $top %Y 1"
bind $top.handle1 <ButtonRelease-1> "mfv:sash-end $top"
place configure $top.line1 -in $top.sep1 -relx 0.03 -rely 0.4 \
-relwidth 0.95
place configure $top.handle1 -in $top.sep1 -relx 0.8 -rely 0.4 \
-anchor center
pack $top.menu $top.stat $top.head $top.bb $top.sep1 -side top -fill x
if $mfp($top,horiz) {
pack $top.hbar -side bottom -fill x
$top.mesg.txt configure -wrap none
} else {
$top.mesg.txt configure -wrap word
}
pack $top.mesg -side bottom -expand true -fill both
# configure pane handle between text widgets
frame $top.sep2 -relief flat -height 11 -bd 1
frame $top.line2 -relief sunken -height 2 -bd 1
frame $top.handle2 -relief raised -bd 2 -cursor crosshair \
-width 9 -height 9
bind $top.handle2 <ButtonPress-1> "mfv:sash-begin $top $top.$mfp(mesg) 2"
bind $top.handle2 <B1-Motion> "mfv:sash-draw $top %Y 2"
bind $top.handle2 <ButtonRelease-1> "mfv:sash-split-end $top"
# configure widgets to user settings
$top.$mfp(head) configure -height $mf(headlist-height)
eval "$top.$mfp(mesg) tag configure headers $mf(header-config)"
if {$mf(disp-left-scroll)} { set sside left } { set sside right }
pack $top.head.yscroll -side $sside -fill y
pack $top.$mfp(head) -side left -expand true -fill both
pack $top.mesg.yscroll -side $sside -fill y
pack $top.mesg.txt -side left -expand true -fill both
pack $top.hbar.spacer -side $sside
pack $top.hbar.xscroll -side $sside -expand true -fill x
pack $top.mesg2.yscroll -side $sside -fill y
pack $top.mesg2.txt -side left -expand true -fill both
pack $top.hbar2.spacer -side $sside
pack $top.hbar2.xscroll -side $sside -expand true -fill x
pdebug " Scroll\n"
# build folder list menus
mfv:build-folder-menus $top
# source users mfv:viewer-hook procedure if defined
mfv:run-hooks viewer-new-hook $top
lappend mfp(waitlist) $top.$mfp(head) $top.$mfp(mesg)
set mfp($top.$mfp(head),cursor) {}
set mfp($top.$mfp(mesg),cursor) {}
wm geometry $top [string trim $mf(viewer-geom)]
if {[file exists $mf(viewer-bitmap-nomail)]} {
wm iconbitmap $top "@$mf(viewer-bitmap-nomail)"
}
if {$iconic} {
wm iconify $top
} else {
wm deiconify $top; raise $top
}
mfv:viewer-focus $top
update idletasks
pdebug " Folder setup\n"
mfv:setup-folder $top $filename $msgndx
return $top
}
proc mfv:viewer-focus { top } {
global mf mfp
if {$mf(viewer-state) == "disabled"} {
focus $top.$mfp(head)
} else {
focus $top.$mfp(mesg)
}
}
proc mfv:init-bindings { } {
# Initialize viewers in general. Called once.
global mf mfp env tkBind ut_glob
if {[info proc tkBindDefVar]==""} {
foreach key [bind Text] { bind Text $key {} }
foreach key [bind Entry] { bind Entry $key {} }
source $mfp(bindlib)/bindxtnd.tcl
source $mfp(bindlib)/text.tcl
source $mfp(bindlib)/entry.tcl
}
if $tkBind(emacs) {
if {$tkBind(useEsc)} {
set mfp(cancel) Control-
set ut_glob(cancel) Control-
}
bind Text <Control-Shift-Y> "mfv:prefix-sel %W emacs"
bind Text <Shift-Control-S> "mfv:search-prompt %W"
bind Text <Control-s> "mfv:search %W \[winfo toplevel %W\]_search"
} else {
bind Text <Control-Shift-V> "mfv:prefix-sel %W emacs"
bind Text <Control-f> "mfv:search-prompt %W"
bind Text <Control-g> "mfv:search %W \[winfo toplevel %W\]_search"
}
bind Text <Shift-$tkBind(meta)-ButtonRelease-2> "mfv:prefix-sel %W xsel; break"
proc mfv:menu-key { k } {global mf; return <Mod4-$k>}
if {$tkBind(emacs) && ($tkBind(meta) == "Meta" || $tkBind(meta) == "Alt")} {
if {[string range $mf(bind-alt-key) 0 0] == "<"} {
proc mfv:bind-menu-key {w k cmd} {
global mf
bind $w $mf(bind-alt-key) {tkBindSetStateKey %W Menu%W M-; break}
bind Menu$w <$k> $cmd
}
} else {
proc mfv:bind-menu-key { w k cmd} {
global mf; bind $w <$mf(bind-alt-key)-$k> $cmd
}
}
} else {
proc mfv:bind-menu-key {w k cmd} {bind $w <Meta-$k> $cmd}
}
set ut_glob(key-hook) mfv:bind-menu-key
# source users mfv:bind-hook procedure if defined
mfv:run-hooks bind-hook
# set binding options
set tkBind(bell) $mf(viewer-beep-error)
}
proc mfv:tkmail-init { } {
# called by server once ~/.tkmailrc is sourced to initialize WISH side
global mf mfp
set mfp(inbox) [mfv_util fullpath $mf(mail-system)]
set mfp(mbox) [mfv_util fullpath $mf(mail-mbox)]
if ![samefile $mfp(inbox) $mfp(mbox)] {
set mfp(mbox-model) 1
}
# make default bindings
mfv:init-bindings
# create temp text widget for use
text $mfp(tmptxt)
text $mfp(savesendtxt)
# transfer appropriate options to MFV
mfv_set sumformat "%1S%3n $mf(headlist-format)"
if [string length $mf(header-retain)] {
mfv_set retain $mf(header-retain)
} else {
mfv_set strip $mf(header-strip)
}
if [catch {mfv_set tmpdir $mf(mail-tmpdir)} res] {
puts stderr "Error setting tmpdir to $mf(mail-tmpdir). $res"
mfv:quit
}
mfv_set noempty $mf(mail-remove-empty)
mfv_set lock dotlock $mfp(dotlock)
# Check that tmpdir is writable by user
if {![file writable $mf(mail-tmpdir)]} {
puts stderr "FATAL: temporary directory $mf(mail-tmpdir) not writable!"
puts stderr " You can change this with mf(mail-tmpdir) in your resource file."
mfv:quit
}
if {![string length $mf(bind-alt-key)]} {
puts stderr "WARNING: empty mf(bind-alt-key)! Setting to <Control-c>."
set mf(bind-alt-key) <Control-c>
}
mfv:parse-alias-file
if {[file isdirectory $mf(mail-directory)]} {
mfv:get-mail-dirs $mf(mail-directory)
}
if ![llength $mfp(firstfile)] { set mfp(firstfile) $mfp(mbox) }
pdebug "Starting with folder $mfp(firstfile)\n"
pdebug "Viewer initializing ...\n"
set inboxopened 0
foreach file $mfp(firstfile) {
mfv:new-viewer $file $mfp(starticonic)
mfv:add-recent $file
set inboxopened [samefile $mfp(inbox) $file]
}
mfv:checklist-add $mfp(inbox)
if $mfp(mbox-model) { mfv:checklist-add $mfp(mbox) }
mfv:openlist-add $mfp(mbox)
# if inbox wasn't opened, check if it has real new mail
if !$inboxopened {
set tfid [mfv_open $mfp(inbox)]
if {[llength [$tfid info new]] > 0} {
eval $mf(viewer-beep-new)
mfv:log-mesg {} "New mail messages present in InBox!" 1
mfv:newlist-add $mfp(inbox)
if $mfp(mbox-model) {
if [string length [set mfid [mfv_util folderid $mfp(mbox)]]] {
if [keylget mfp($mfid) viewers vlist] {
foreach viewer $vlist {
catch {wm iconbitmap $viewer "@$mf(viewer-bitmap-mail)"}
}
}
}
}
}
mfv_close $tfid
}
# check if person thought it was for seconds and not milliseconds
if {$mf(mail-interval) < 1000} {set mf(mail-interval) [expr $mf(mail-interval)*1000]}
after $mf(mail-interval) mfv:check-new-mail
if {$mf(mail-autosave) < 1000} {set mf(mail-autosave) [expr $mf(mail-autosave)*1000]}
if {$mf(mail-autosave) > 0} { after $mf(mail-autosave) "mfv:autosave" }
if [file isdirectory $mf(mail-directory)] {
cd $mf(mail-directory)
}
mfv:check-old-settings
}
proc mfv:close-all { } {
global mf mfp mf_autofile
set stat 0
set mfp(last-error) {}
foreach mfc [mfv:compose-list-tops] {
if $mfp(noask) {
if [scan $mfc ".mfc%d" num] {
catch {mfv:text-to-file $mfc.comp.txt $env(HOME)/letter$mfc 1}
}
} else {
eval $mf(viewer-beep-error)
if ![ut:getok -prompt "Cancel composition to \"[$mfc.to.ent get]\"" \
-title "WARNING!" -bitmap warning -oklabel Yes \
-nolabel No -master [mfv:current-top]] {
return 2
}
}
}
foreach fid [mfv_util list] {
if {[llength [$fid info modified]]} {
if [catch "$fid save" res] {
append mfp(last-error) "\n$res\n"
set stat 1
} else {
if [info exists mf_autofile($fid)] {
exec rm -rf $mf_autofile($fid)
unset mf_autofile($fid)
}
}
}
if [catch "mfv_close $fid" res] {
append mfp(last-error) $res\n\n
set stat 1
}
}
return $stat
}
proc mfv:quit { {force 0} } {
global mfp
if $force { set mfp(noask) 1 }
set stat [mfv:close-all]
if {$stat == 2 && !$force} {return 1}
if {$stat} {
if $force {
if [info exists mfp(trap-fid)] {
puts $mfp(trap-fid) $mfp(last-error)
} else {
puts stderr $mfp(last-error)
}
} else {
mfv:error-mesg $mfp(last-error)
}
} else {
if [info exists mfp(trap-fid)] {
puts $mfp(trap-fid) "No, should be fine."
close $mfp(trap-fid)
catch {exec rm -f $mfp(homedir)/tkmail.CRASH}
}
}
exit
}
proc mfv:trap-signal { signal } {
global mfp
set buttons [list Continue]
# lappend buttons [list Error mfv:signal-error %W]
lappend buttons [list Quit after idle mfv:quit 1]
lappend buttons [list Kill exit]
set w [ut:simpletext -title "Caught $signal signal" \
-buttons $buttons -grab 1 -text "
Caught a $signal signal. You may:
Continue Ignore signal
Quit Try to cleanly quit tkmail
Kill Kill tkmail"]
focus $w.txt
tkwait window $w
}
proc mfv:term-signal { signal } {
global mfp
set mfp(trap-exit) 1
set mfp(trap-fid) [open $mfp(homedir)/tkmail.CRASH w]
if [catch {puts $mfp(trap-fid) "TkMail: caught $signal ... trying to quit cleanly, but if"}] {
unset mfp(trap-fid)
puts stderr "TkMail: caught $signal ... trying to quit cleanly"
} else {
puts $mfp(trap-fid) "this file exists, something might have gone wrong.\n\n"
}
after idle mfv:quit 1
}
if {[lsearch [info commands] signal] > -1} {
signal trap SIGINT {mfv:term-signal %S}
signal trap SIGTERM {mfv:term-signal %S}
signal trap SIGQUIT {mfv:term-signal %S}
signal trap SIGHUP {mfv:term-signal %S}
signal error SIGUSR1
signal trap SIGUSR2 {mfv:trap-signal %S}
signal ignore SIGALRM
}
if {$mfp(debug)} {puts stderr "VIEWER: viewer.tcl has been loaded"}
# Local Variables: ***
# mode:tcl ***
# End: ***
|