1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561
|
/* -*- indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
Components.utils.import("resource:///modules/FeedUtils.jsm");
Components.utils.import("resource:///modules/gloda/dbview.js");
Components.utils.import("resource:///modules/MailConsts.js");
Components.utils.import("resource:///modules/mailServices.js");
Components.utils.import("resource:///modules/MailUtils.js");
Components.utils.import("resource://gre/modules/Services.jsm");
Components.utils.import("resource://gre/modules/PluralForm.jsm");
var ADDR_DB_LARGE_COMMIT = 1;
var kClassicMailLayout = 0;
var kWideMailLayout = 1;
var kVerticalMailLayout = 2;
var kMailLayoutCommandMap =
{
"cmd_viewClassicMailLayout": kClassicMailLayout,
"cmd_viewWideMailLayout": kWideMailLayout,
"cmd_viewVerticalMailLayout": kVerticalMailLayout
};
// Per message header flags to keep track of whether the user is allowing remote
// content for a particular message.
// if you change or add more values to these constants, be sure to modify
// the corresponding definitions in nsMsgContentPolicy.cpp
var kNoRemoteContentPolicy = 0;
var kBlockRemoteContent = 1;
var kAllowRemoteContent = 2;
// Timer to mark read, if the user has configured the app to mark a message as
// read if it is viewed for more than n seconds.
var gMarkViewedMessageAsReadTimer = null;
// the user preference,
// if HTML is not allowed. I assume, that the user could have set this to a
// value > 1 in his prefs.js or user.js, but that the value will not
// change during runtime other than through the MsgBody*() functions below.
var gDisallow_classes_no_html = 1;
// Disable the new account menu item if the account preference is locked.
// The other affected areas are the account central, the account manager
// dialog, and the account provisioner window.
function menu_new_init()
{
// If the account provisioner is pref'd off, we shouldn't display the menu
// item.
ShowMenuItem("newCreateEmailAccountMenuItem",
Services.prefs.getBoolPref("mail.provider.enabled"));
// If we don't have a gFolderDisplay, just get out of here and leave the menu
// as it is.
if (!gFolderDisplay)
return;
let folder = gFolderDisplay.displayedFolder;
if (!folder)
return;
if (Services.prefs.prefIsLocked("mail.disable_new_account_addition"))
document.getElementById("newAccountMenuItem").setAttribute("disabled", "true");
const nsMsgFolderFlags = Components.interfaces.nsMsgFolderFlags;
var isInbox = folder.isSpecialFolder(nsMsgFolderFlags.Inbox);
var showNew = (folder.canCreateSubfolders ||
(isInbox && !(folder.flags & nsMsgFolderFlags.Virtual))) &&
(document.getElementById("cmd_newFolder").getAttribute("disabled") != "true");
ShowMenuItem("menu_newFolder", showNew);
ShowMenuItem("menu_newVirtualFolder", showNew);
EnableMenuItem("menu_newFolder", folder.server.type != "imap" || MailOfflineMgr.isOnline());
if (showNew)
{
var bundle = document.getElementById("bundle_messenger");
// Change "New Folder..." menu according to the context.
SetMenuItemLabel("menu_newFolder", bundle.getString(
(folder.isServer || isInbox) ? "newFolderMenuItem" : "newSubfolderMenuItem"));
}
goUpdateCommand("cmd_newMessage");
}
function goUpdateMailMenuItems(commandset)
{
for (var i = 0; i < commandset.childNodes.length; i++)
{
var commandID = commandset.childNodes[i].getAttribute("id");
if (commandID)
goUpdateCommand(commandID);
}
updateCheckedStateForIgnoreAndWatchThreadCmds();
}
/**
* Update the ignore (sub)thread, and watch thread commands so the menus
* using them get the checked state set up properly.
*/
function updateCheckedStateForIgnoreAndWatchThreadCmds() {
document.getElementById("cmd_killThread")
.setAttribute("checked", gFolderDisplay.selectedMessageThreadIgnored);
document.getElementById("cmd_killSubthread")
.setAttribute("checked", gFolderDisplay.selectedMessageSubthreadIgnored);
document.getElementById("cmd_watchThread")
.setAttribute("checked", gFolderDisplay.selectedMessageThreadWatched);
}
function file_init()
{
document.commandDispatcher.updateCommands('create-menu-file');
}
function InitEditMessagesMenu()
{
goSetMenuValue('cmd_delete', 'valueDefault');
goSetAccessKey('cmd_delete', 'valueDefaultAccessKey');
document.commandDispatcher.updateCommands('create-menu-edit');
// initialize the favorite Folder checkbox in the edit menu
let favoriteFolderMenu = document.getElementById('menu_favoriteFolder');
if (!favoriteFolderMenu.hasAttribute("disabled")) {
let folders = gFolderTreeView.getSelectedFolders();
if (folders.length == 1 && !folders[0].isServer) {
const kFavoriteFlag = Components.interfaces.nsMsgFolderFlags.Favorite;
// Adjust the checked state on the menu item.
favoriteFolderMenu.setAttribute("checked", folders[0].getFlag(kFavoriteFlag));
favoriteFolderMenu.hidden = false;
} else {
favoriteFolderMenu.hidden = true;
}
}
}
function InitAppFolderViewsMenu()
{
goSetMenuValue('cmd_delete', 'valueDefault');
goSetAccessKey('cmd_delete', 'valueDefaultAccessKey');
document.commandDispatcher.updateCommands('create-menu-edit');
// initialize the favorite Folder checkbox in the appmenu menu
let favoriteAppFolderMenu = document.getElementById('appmenu_favoriteFolder');
if (!favoriteAppFolderMenu.hasAttribute("disabled")) {
let folders = gFolderTreeView.getSelectedFolders();
if (folders.length == 1 && !folders[0].isServer) {
const kFavoriteFlag = Components.interfaces.nsMsgFolderFlags.Favorite;
// Adjust the checked state on the menu item.
favoriteAppFolderMenu.setAttribute("checked", folders[0].getFlag(kFavoriteFlag));
favoriteAppFolderMenu.hidden = false;
} else {
favoriteAppFolderMenu.hidden = true;
}
}
}
function InitGoMessagesMenu()
{
document.commandDispatcher.updateCommands('create-menu-go');
}
/**
* This is called every time the view menu popup is displayed. It is
* responsible for updating the menu items' state to reflect reality.
*/
function view_init()
{
let isFeed = gFolderDisplay &&
((gFolderDisplay.displayedFolder &&
gFolderDisplay.displayedFolder.server.type == "rss") ||
gFolderDisplay.selectedMessageIsFeed);
let accountCentralDisplayed = gFolderDisplay.isAccountCentralDisplayed;
let messagePaneMenuItem = document.getElementById("menu_showMessage");
if (!messagePaneMenuItem.hidden) { // Hidden in the standalone msg window.
messagePaneMenuItem.setAttribute("checked",
accountCentralDisplayed ? false : gMessageDisplay.visible);
messagePaneMenuItem.disabled = accountCentralDisplayed;
}
let messagePaneAppMenuItem = document.getElementById("appmenu_showMessage");
if (!messagePaneAppMenuItem.hidden) { // Hidden in the standalone msg window.
messagePaneAppMenuItem.setAttribute("checked",
accountCentralDisplayed ? false : gMessageDisplay.visible);
messagePaneAppMenuItem.disabled = accountCentralDisplayed;
}
let folderPaneMenuItem = document.getElementById("menu_showFolderPane");
if (!folderPaneMenuItem.hidden) { // Hidden in the standalone msg window.
folderPaneMenuItem.setAttribute("checked", gFolderDisplay.folderPaneVisible);
}
let folderPaneAppMenuItem = document.getElementById("appmenu_showFolderPane");
if (!folderPaneAppMenuItem.hidden) { // Hidden in the standalone msg window.
folderPaneAppMenuItem.setAttribute("checked", gFolderDisplay.folderPaneVisible);
}
let colsEnabled = Services.prefs.getBoolPref("mail.folderpane.showColumns");
let folderPaneColsMenuItem = document.getElementById("menu_showFolderPaneCols");
if (!folderPaneColsMenuItem.hidden) { // Hidden in the standalone msg window.
folderPaneColsMenuItem.setAttribute("checked", colsEnabled);
}
folderPaneColsMenuItem = document.getElementById("appmenu_showFolderPaneCols");
if (!folderPaneColsMenuItem.hidden) { // Hidden in the standalone msg window.
folderPaneColsMenuItem.setAttribute("checked", colsEnabled);
}
// Disable some menus if account manager is showing
document.getElementById("viewSortMenu").disabled = accountCentralDisplayed;
let appmenuViewSort = document.getElementById("appmenu_viewSortMenu");
if (appmenuViewSort)
appmenuViewSort.disabled = accountCentralDisplayed;
document.getElementById("viewMessageViewMenu").disabled = accountCentralDisplayed;
let appmenuViewMessageView = document.getElementById("appmenu_viewMessageViewMenu");
if (appmenuViewMessageView)
appmenuViewMessageView.disabled = accountCentralDisplayed;
document.getElementById("viewMessagesMenu").disabled = accountCentralDisplayed;
let appmenuViewMessagesMenu = document.getElementById("appmenu_viewMessagesMenu");
if (appmenuViewMessagesMenu)
appmenuViewMessagesMenu.disabled = accountCentralDisplayed;
// Hide the views menu item if the user doesn't have the views toolbar button
// visible.
var viewsToolbarButton = document.getElementById("mailviews-container");
document.getElementById('viewMessageViewMenu').hidden = !viewsToolbarButton;
// Initialize the Message Body menuitem
document.getElementById('viewBodyMenu').hidden = isFeed;
let appmenuViewBodyMenu = document.getElementById('appmenu_viewBodyMenu');
if (appmenuViewBodyMenu)
appmenuViewBodyMenu.hidden = isFeed;
// Initialize the Show Feed Summary menu
let viewFeedSummary = document.getElementById('viewFeedSummary');
viewFeedSummary.hidden = !isFeed;
let appmenuViewFeedSummary = document.getElementById('appmenu_viewFeedSummary');
if (appmenuViewFeedSummary)
appmenuViewFeedSummary.hidden = !isFeed;
let viewRssMenuItemIds = ["bodyFeedGlobalWebPage",
"bodyFeedGlobalSummary",
"bodyFeedPerFolderPref"];
let checked = FeedMessageHandler.onSelectPref;
for (let [index, id] of viewRssMenuItemIds.entries()) {
document.getElementById(id)
.setAttribute("checked", index == checked);
}
// Initialize the View Attachment Inline menu
var viewAttachmentInline = Services.prefs.getBoolPref("mail.inline_attachments");
document.getElementById("viewAttachmentsInlineMenuitem")
.setAttribute("checked", viewAttachmentInline);
let viewAttachmentInlineMenu =
document.getElementById("appmenu_viewAttachmentsInlineMenuitem");
if (viewAttachmentInlineMenu)
viewAttachmentInlineMenu.setAttribute("checked", viewAttachmentInline);
document.commandDispatcher.updateCommands('create-menu-view');
// Disable the charset item if there's nothing to enable
document.getElementById("charsetMenu")
.setAttribute("disabled", !gMessageDisplay.displayedMessage);
let appmenuCharset = document.getElementById("appmenu_charsetMenu");
if (appmenuCharset)
appmenuCharset.setAttribute("disabled", !gMessageDisplay.displayedMessage);
}
function InitViewLayoutStyleMenu(event)
{
var paneConfig = Services.prefs.getIntPref("mail.pane_config.dynamic");
var layoutStyleMenuitem = event.target.childNodes[paneConfig];
if (layoutStyleMenuitem)
layoutStyleMenuitem.setAttribute("checked", "true");
}
/**
* Initialize (check) appropriate folder mode under the View |Â Folder menu.
*/
function InitViewFolderViewsMenu(event)
{
let selected = event.target.querySelector("[value=" + gFolderTreeView.baseMode() + "]");
if (selected) {
selected.setAttribute("checked", "true");
}
}
function setSortByMenuItemCheckState(id, value)
{
var menuitem = document.getElementById(id);
if (menuitem)
menuitem.setAttribute("checked", value);
}
/**
* Called when showing the menu_viewSortPopup menupopup, so it should always
* be up-to-date.
*/
function InitViewSortByMenu()
{
var sortType = gFolderDisplay.view.primarySortType;
setSortByMenuItemCheckState("sortByDateMenuitem", (sortType == nsMsgViewSortType.byDate));
setSortByMenuItemCheckState("sortByReceivedMenuitem", (sortType == nsMsgViewSortType.byReceived));
setSortByMenuItemCheckState("sortByFlagMenuitem", (sortType == nsMsgViewSortType.byFlagged));
setSortByMenuItemCheckState("sortByOrderReceivedMenuitem", (sortType == nsMsgViewSortType.byId));
setSortByMenuItemCheckState("sortByPriorityMenuitem", (sortType == nsMsgViewSortType.byPriority));
setSortByMenuItemCheckState("sortBySizeMenuitem", (sortType == nsMsgViewSortType.bySize));
setSortByMenuItemCheckState("sortByStatusMenuitem", (sortType == nsMsgViewSortType.byStatus));
setSortByMenuItemCheckState("sortBySubjectMenuitem", (sortType == nsMsgViewSortType.bySubject));
setSortByMenuItemCheckState("sortByUnreadMenuitem", (sortType == nsMsgViewSortType.byUnread));
setSortByMenuItemCheckState("sortByTagsMenuitem", (sortType == nsMsgViewSortType.byTags));
setSortByMenuItemCheckState("sortByJunkStatusMenuitem", (sortType == nsMsgViewSortType.byJunkStatus));
setSortByMenuItemCheckState("sortByFromMenuitem", (sortType == nsMsgViewSortType.byAuthor));
setSortByMenuItemCheckState("sortByRecipientMenuitem", (sortType == nsMsgViewSortType.byRecipient));
setSortByMenuItemCheckState("sortByAttachmentsMenuitem", (sortType == nsMsgViewSortType.byAttachments));
setSortByMenuItemCheckState("sortByCorrespondentMenuitem", (sortType == nsMsgViewSortType.byCorrespondent));
var sortOrder = gFolderDisplay.view.primarySortOrder;
var sortTypeSupportsGrouping = isSortTypeValidForGrouping(sortType);
setSortByMenuItemCheckState("sortAscending", (sortOrder == nsMsgViewSortOrder.ascending));
setSortByMenuItemCheckState("sortDescending", (sortOrder == nsMsgViewSortOrder.descending));
var grouped = gFolderDisplay.view.showGroupedBySort;
var threaded = gFolderDisplay.view.showThreaded;
var sortThreadedMenuItem = document.getElementById("sortThreaded");
var sortUnthreadedMenuItem = document.getElementById("sortUnthreaded");
sortThreadedMenuItem.setAttribute("checked", threaded);
sortUnthreadedMenuItem.setAttribute("checked", !threaded && !grouped);
var groupBySortOrderMenuItem = document.getElementById("groupBySort");
groupBySortOrderMenuItem.setAttribute("disabled", !sortTypeSupportsGrouping);
groupBySortOrderMenuItem.setAttribute("checked", grouped);
}
function InitAppViewSortByMenu()
{
let sortType = gFolderDisplay.view.primarySortType;
setSortByMenuItemCheckState("appmenu_sortByDateMenuitem", (sortType == nsMsgViewSortType.byDate));
setSortByMenuItemCheckState("appmenu_sortByReceivedMenuitem", (sortType == nsMsgViewSortType.byReceived));
setSortByMenuItemCheckState("appmenu_sortByFlagMenuitem", (sortType == nsMsgViewSortType.byFlagged));
setSortByMenuItemCheckState("appmenu_sortByOrderReceivedMenuitem", (sortType == nsMsgViewSortType.byId));
setSortByMenuItemCheckState("appmenu_sortByPriorityMenuitem", (sortType == nsMsgViewSortType.byPriority));
setSortByMenuItemCheckState("appmenu_sortBySizeMenuitem", (sortType == nsMsgViewSortType.bySize));
setSortByMenuItemCheckState("appmenu_sortByStatusMenuitem", (sortType == nsMsgViewSortType.byStatus));
setSortByMenuItemCheckState("appmenu_sortBySubjectMenuitem", (sortType == nsMsgViewSortType.bySubject));
setSortByMenuItemCheckState("appmenu_sortByUnreadMenuitem", (sortType == nsMsgViewSortType.byUnread));
setSortByMenuItemCheckState("appmenu_sortByTagsMenuitem", (sortType == nsMsgViewSortType.byTags));
setSortByMenuItemCheckState("appmenu_sortByJunkStatusMenuitem", (sortType == nsMsgViewSortType.byJunkStatus));
setSortByMenuItemCheckState("appmenu_sortByFromMenuitem", (sortType == nsMsgViewSortType.byAuthor));
setSortByMenuItemCheckState("appmenu_sortByRecipientMenuitem", (sortType == nsMsgViewSortType.byRecipient));
setSortByMenuItemCheckState("appmenu_sortByAttachmentsMenuitem", (sortType == nsMsgViewSortType.byAttachments));
let sortOrder = gFolderDisplay.view.primarySortOrder;
let sortTypeSupportsGrouping = isSortTypeValidForGrouping(sortType);
setSortByMenuItemCheckState("appmenu_sortAscending", (sortOrder == nsMsgViewSortOrder.ascending));
setSortByMenuItemCheckState("appmenu_sortDescending", (sortOrder == nsMsgViewSortOrder.descending));
let grouped = gFolderDisplay.view.showGroupedBySort;
let threaded = gFolderDisplay.view.showThreaded;
let sortThreadedMenuItem = document.getElementById("appmenu_sortThreaded");
let sortUnthreadedMenuItem = document.getElementById("appmenu_sortUnthreaded");
sortThreadedMenuItem.setAttribute("checked", threaded);
sortUnthreadedMenuItem.setAttribute("checked", !threaded && !grouped);
let groupBySortOrderMenuItem = document.getElementById("appmenu_groupBySort");
groupBySortOrderMenuItem.setAttribute("disabled", !sortTypeSupportsGrouping);
groupBySortOrderMenuItem.setAttribute("checked", grouped);
}
function isSortTypeValidForGrouping(sortType)
{
return Boolean(sortType == nsMsgViewSortType.byAccount ||
sortType == nsMsgViewSortType.byAttachments ||
sortType == nsMsgViewSortType.byAuthor ||
sortType == nsMsgViewSortType.byCorrespondent ||
sortType == nsMsgViewSortType.byDate ||
sortType == nsMsgViewSortType.byFlagged ||
sortType == nsMsgViewSortType.byLocation ||
sortType == nsMsgViewSortType.byPriority ||
sortType == nsMsgViewSortType.byReceived ||
sortType == nsMsgViewSortType.byRecipient ||
sortType == nsMsgViewSortType.byStatus ||
sortType == nsMsgViewSortType.bySubject ||
sortType == nsMsgViewSortType.byTags ||
sortType == nsMsgViewSortType.byCustom);
}
function InitViewMessagesMenu()
{
document.getElementById("viewAllMessagesMenuItem").setAttribute("checked",
!gFolderDisplay.view.showUnreadOnly &&
!gFolderDisplay.view.specialView);
document.getElementById("viewUnreadMessagesMenuItem").setAttribute("checked",
gFolderDisplay.view.showUnreadOnly);
document.getElementById("viewThreadsWithUnreadMenuItem").setAttribute("checked",
gFolderDisplay.view.specialViewThreadsWithUnread);
document.getElementById("viewWatchedThreadsWithUnreadMenuItem").setAttribute("checked",
gFolderDisplay.view.specialViewWatchedThreadsWithUnread);
document.getElementById("viewIgnoredThreadsMenuItem").setAttribute("checked",
gFolderDisplay.view.showIgnored);
}
function InitAppmenuViewMessagesMenu()
{
document.getElementById("appmenu_viewAllMessagesMenuItem").setAttribute("checked",
!gFolderDisplay.view.showUnreadOnly &&
!gFolderDisplay.view.specialView);
document.getElementById("appmenu_viewUnreadMessagesMenuItem").setAttribute("checked",
gFolderDisplay.view.showUnreadOnly);
document.getElementById("appmenu_viewThreadsWithUnreadMenuItem").setAttribute("checked",
gFolderDisplay.view.specialViewThreadsWithUnread);
document.getElementById("appmenu_viewWatchedThreadsWithUnreadMenuItem").setAttribute("checked",
gFolderDisplay.view.specialViewWatchedThreadsWithUnread);
document.getElementById("appmenu_viewIgnoredThreadsMenuItem").setAttribute("checked",
gFolderDisplay.view.showIgnored);
}
function InitMessageMenu()
{
var selectedMsg = gFolderDisplay.selectedMessage;
var isNews = gFolderDisplay.selectedMessageIsNews;
var isFeed = gFolderDisplay.selectedMessageIsFeed;
// We show reply to Newsgroups only for news messages.
document.getElementById("replyNewsgroupMainMenu").hidden = !isNews;
// For mail messages we say reply. For news we say ReplyToSender.
document.getElementById("replyMainMenu").hidden = isNews;
document.getElementById("replySenderMainMenu").hidden = !isNews;
document.getElementById("menu_cancel").hidden = !isNews;
// Disable the move and copy menus if there are no messages selected or if
// the message is a dummy - e.g. opening a message in the standalone window.
let messageStoredInternally = selectedMsg && !gMessageDisplay.isDummy;
// Disable the move menu if we can't delete msgs from the folder.
let canMove = messageStoredInternally &&
gFolderDisplay.canDeleteSelectedMessages;
document.getElementById("moveMenu").disabled = !canMove;
// Also disable copy when no folder is loaded (like for .eml files).
let canCopy = selectedMsg && (!gMessageDisplay.isDummy ||
window.arguments[0].scheme == "file");
document.getElementById("copyMenu").disabled = !canCopy;
initMoveToFolderAgainMenu(document.getElementById("moveToFolderAgain"));
// Disable the Forward As menu item if no message is selected.
document.getElementById("forwardAsMenu").disabled = !selectedMsg;
// Disable the Tag menu item if no message is selected or when we're
// not in a folder.
document.getElementById("tagMenu").disabled = !messageStoredInternally;
// Initialize the Open Message menuitem
var winType = document.documentElement.getAttribute('windowtype');
if (winType == "mail:3pane")
document.getElementById('openMessageWindowMenuitem').hidden = isFeed;
// Initialize the Open Feed Message handler menu
let index = FeedMessageHandler.onOpenPref;
document.getElementById("menu_openFeedMessage")
.childNodes[index].setAttribute("checked", true);
let openRssMenu = document.getElementById("openFeedMessage");
openRssMenu.hidden = !isFeed;
if (winType != "mail:3pane")
openRssMenu.hidden = true;
// Disable mark menu when we're not in a folder.
document.getElementById("markMenu").disabled = gMessageDisplay.isDummy;
document.commandDispatcher.updateCommands('create-menu-message');
}
function InitAppMessageMenu()
{
let selectedMsg = gFolderDisplay.selectedMessage;
let isNews = gFolderDisplay.selectedMessageIsNews;
let isFeed = gFolderDisplay.selectedMessageIsFeed;
// We show reply to Newsgroups only for news messages.
document.getElementById("appmenu_replyNewsgroupMainMenu").hidden = !isNews;
// For mail messages we say reply. For news we say ReplyToSender.
document.getElementById("appmenu_replyMainMenu").hidden = isNews;
document.getElementById("appmenu_replySenderMainMenu").hidden = !isNews;
document.getElementById("appmenu_cancel").hidden = !isNews;
// Disable the move and copy menus if there are no messages selected or if
// the message is a dummy - e.g. opening a message in the standalone window.
let messageStoredInternally = selectedMsg && !gMessageDisplay.isDummy;
// Disable the move menu if we can't delete msgs from the folder.
let canMove = messageStoredInternally &&
gFolderDisplay.canDeleteSelectedMessages;
document.getElementById("appmenu_moveMenu").disabled = !canMove;
// Also disable copy when no folder is loaded (like for .eml files).
let canCopy = selectedMsg && (!gMessageDisplay.isDummy ||
window.arguments[0].scheme == "file");
document.getElementById("appmenu_copyMenu").disabled = !canCopy;
initMoveToFolderAgainMenu(document.getElementById("appmenu_moveToFolderAgain"));
// Disable the Forward As menu item if no message is selected.
document.getElementById("appmenu_forwardAsMenu").disabled = !selectedMsg;
// Disable the Tag menu item if no message is selected or when we're
// not in a folder.
document.getElementById("appmenu_tagMenu").disabled = !messageStoredInternally;
// Initialize the Open Message menuitem
let winType = document.documentElement.getAttribute('windowtype');
if (winType == "mail:3pane")
document.getElementById('appmenu_openMessageWindowMenuitem').hidden = isFeed;
// Initialize the Open Feed Message handler menu
let index = FeedMessageHandler.onOpenPref;
document.getElementById("appmenu_openFeedMessagePopup")
.childNodes[index]
.setAttribute("checked", true);
let openRssMenu = document.getElementById("appmenu_openFeedMessage");
openRssMenu.hidden = !isFeed;
if (winType != "mail:3pane")
openRssMenu.hidden = true;
// Disable mark menu when we're not in a folder.
document.getElementById("appmenu_markMenu").disabled = gMessageDisplay.isDummy;
document.commandDispatcher.updateCommands('create-menu-message');
}
/**
* Initializes the menu item aMenuItem to show either "Move" or "Copy" to
* folder again, based on the value of mail.last_msg_movecopy_target_uri.
* The menu item label and accesskey are adjusted to include the folder name.
*
* @param aMenuItem the menu item to adjust
*/
function initMoveToFolderAgainMenu(aMenuItem)
{
var lastFolderURI = Services.prefs.getCharPref("mail.last_msg_movecopy_target_uri");
var isMove = Services.prefs.getBoolPref("mail.last_msg_movecopy_was_move");
if (lastFolderURI)
{
var destMsgFolder = MailUtils.getFolderForURI(lastFolderURI);
var bundle = document.getElementById("bundle_messenger");
var stringName = isMove ? "moveToFolderAgain" : "copyToFolderAgain";
aMenuItem.label = bundle.getFormattedString(stringName,
[destMsgFolder.prettyName], 1);
// This gives us moveToFolderAgainAccessKey and copyToFolderAgainAccessKey.
aMenuItem.accesskey = bundle.getString(stringName + "AccessKey");
}
}
function InitViewHeadersMenu()
{
const dt = Components.interfaces.nsMimeHeaderDisplayTypes;
var headerchoice = Services.prefs.getIntPref("mail.show_headers");
document.getElementById("cmd_viewAllHeader")
.setAttribute("checked", headerchoice == dt.AllHeaders);
document.getElementById("cmd_viewNormalHeader")
.setAttribute("checked", headerchoice == dt.NormalHeaders);
document.commandDispatcher.updateCommands("create-menu-mark");
}
/**
* @param headermode {Ci.nsMimeHeaderDisplayTypes}
*/
function AdjustHeaderView(headermode)
{
const all = Components.interfaces.nsMimeHeaderDisplayTypes.AllHeaders;
document.getElementById("expandedHeaderView")
.setAttribute("show_header_mode", headermode == all ? "all" : "normal");
}
function InitViewBodyMenu()
{
// Separate render prefs not implemented for feeds, bug 458606. Show the
// checked item for feeds as for the regular pref.
// let html_as = Services.prefs.getIntPref("rss.display.html_as");
// let prefer_plaintext = Services.prefs.getBoolPref("rss.display.prefer_plaintext");
// let disallow_classes = Services.prefs.getIntPref("rss.display.disallow_mime_handlers");
let html_as = Services.prefs.getIntPref("mailnews.display.html_as");
let prefer_plaintext = Services.prefs.getBoolPref("mailnews.display.prefer_plaintext");
let disallow_classes = Services.prefs.getIntPref("mailnews.display.disallow_mime_handlers");
let isFeed = gFolderDisplay.selectedMessageIsFeed;
const defaultIDs = ["bodyAllowHTML",
"bodySanitized",
"bodyAsPlaintext",
"bodyAllParts"];
const rssIDs = ["bodyFeedSummaryAllowHTML",
"bodyFeedSummarySanitized",
"bodyFeedSummaryAsPlaintext"];
let menuIDs = isFeed ? rssIDs : defaultIDs;
if (disallow_classes > 0)
gDisallow_classes_no_html = disallow_classes;
// else gDisallow_classes_no_html keeps its inital value (see top)
let AllowHTML_menuitem = document.getElementById(menuIDs[0]);
let Sanitized_menuitem = document.getElementById(menuIDs[1]);
let AsPlaintext_menuitem = document.getElementById(menuIDs[2]);
let AllBodyParts_menuitem = menuIDs[3] ? document.getElementById(menuIDs[3])
: null;
document.getElementById("bodyAllParts").hidden =
! Services.prefs.getBoolPref("mailnews.display.show_all_body_parts_menu");
if (!prefer_plaintext && !html_as && !disallow_classes &&
AllowHTML_menuitem)
AllowHTML_menuitem.setAttribute("checked", true);
else if (!prefer_plaintext && html_as == 3 && disallow_classes > 0 &&
Sanitized_menuitem)
Sanitized_menuitem.setAttribute("checked", true);
else if (prefer_plaintext && html_as == 1 && disallow_classes > 0 &&
AsPlaintext_menuitem)
AsPlaintext_menuitem.setAttribute("checked", true);
else if (!prefer_plaintext && html_as == 4 && !disallow_classes &&
AllBodyParts_menuitem)
AllBodyParts_menuitem.setAttribute("checked", true);
// else (the user edited prefs/user.js) check none of the radio menu items
if (isFeed) {
AllowHTML_menuitem.hidden = !FeedMessageHandler.gShowSummary;
Sanitized_menuitem.hidden = !FeedMessageHandler.gShowSummary;
AsPlaintext_menuitem.hidden = !FeedMessageHandler.gShowSummary;
document.getElementById("viewFeedSummarySeparator").hidden = !FeedMessageHandler.gShowSummary;
}
}
function InitAppmenuViewBodyMenu()
{
let html_as = Services.prefs.getIntPref("mailnews.display.html_as");
let prefer_plaintext = Services.prefs.getBoolPref("mailnews.display.prefer_plaintext");
let disallow_classes = Services.prefs.getIntPref("mailnews.display.disallow_mime_handlers");
let isFeed = gFolderDisplay.selectedMessageIsFeed;
const kDefaultIDs = ["appmenu_bodyAllowHTML",
"appmenu_bodySanitized",
"appmenu_bodyAsPlaintext",
"appmenu_bodyAllParts"];
const kRssIDs = ["appmenu_bodyFeedSummaryAllowHTML",
"appmenu_bodyFeedSummarySanitized",
"appmenu_bodyFeedSummaryAsPlaintext"];
let menuIDs = isFeed ? kRssIDs : kDefaultIDs;
if (disallow_classes > 0)
gDisallow_classes_no_html = disallow_classes;
// else gDisallow_classes_no_html keeps its inital value (see top)
let AllowHTML_menuitem = document.getElementById(menuIDs[0]);
let Sanitized_menuitem = document.getElementById(menuIDs[1]);
let AsPlaintext_menuitem = document.getElementById(menuIDs[2]);
let AllBodyParts_menuitem = menuIDs[3] ? document.getElementById(menuIDs[3])
: null;
document.getElementById("appmenu_bodyAllParts").hidden =
!Services.prefs.getBoolPref("mailnews.display.show_all_body_parts_menu");
if (!prefer_plaintext && !html_as && !disallow_classes &&
AllowHTML_menuitem)
AllowHTML_menuitem.setAttribute("checked", true);
else if (!prefer_plaintext && html_as == 3 && disallow_classes > 0 &&
Sanitized_menuitem)
Sanitized_menuitem.setAttribute("checked", true);
else if (prefer_plaintext && html_as == 1 && disallow_classes > 0 &&
AsPlaintext_menuitem)
AsPlaintext_menuitem.setAttribute("checked", true);
else if (!prefer_plaintext && html_as == 4 && !disallow_classes &&
AllBodyParts_menuitem)
AllBodyParts_menuitem.setAttribute("checked", true);
// else (the user edited prefs/user.js) check none of the radio menu items
if (isFeed) {
AllowHTML_menuitem.hidden = !gShowFeedSummary;
Sanitized_menuitem.hidden = !gShowFeedSummary;
AsPlaintext_menuitem.hidden = !gShowFeedSummary;
document.getElementById("appmenu_viewFeedSummarySeparator").hidden = !gShowFeedSummary;
}
}
/**
* Expand or collapse the folder pane.
*/
function MsgToggleFolderPane()
{
// Bail without doing anything if we are not a folder tab.
let currentTabInfo = document.getElementById("tabmail").currentTabInfo;
if (currentTabInfo.mode.name != "folder")
return;
togglePaneSplitter("folderpane_splitter");
}
/**
* Expand or collapse the message preview pane.
*/
function MsgToggleMessagePane()
{
// Bail without doing anything if we are not a folder tab.
let currentTabInfo = document.getElementById("tabmail").currentTabInfo;
if (currentTabInfo.mode.name != "folder")
return;
togglePaneSplitter("threadpane-splitter");
ChangeMessagePaneVisibility(IsMessagePaneCollapsed());
SetFocusThreadPaneIfNotOnMessagePane();
}
function SetMenuItemLabel(menuItemId, customLabel)
{
var menuItem = document.getElementById(menuItemId);
if (menuItem)
menuItem.setAttribute('label', customLabel);
}
/**
* Update the tooltip of the "Get messages" button to indicate which accounts
* (usernames) will be fetched if clicked.
*/
function SetGetMsgButtonTooltip()
{
var msgButton = document.getElementById("button-getmsg");
// The button is not found in the document if isn't on the toolbar but available
// in the Customize palette. In that case we do not need to update its tooltip.
if (!msgButton)
return;
var selectedFolders = GetSelectedMsgFolders();
var folders;
if (selectedFolders.length)
folders = selectedFolders;
else
folders = [ GetDefaultAccountRootFolder() ];
var bundle = document.getElementById("bundle_messenger");
var listSeparator = bundle.getString("getMsgButtonTooltip.listSeparator");
// Push the usernames through a Set() to remove duplicates.
var names = new Set(folders.map(v => v.server.prettyName));
var tooltipNames = Array.from(names).join(listSeparator);
msgButton.tooltipText = bundle.getFormattedString("getMsgButtonTooltip",
[ tooltipNames ]);
}
function RemoveAllMessageTags()
{
var selectedMessages = gFolderDisplay.selectedMessages;
if (!selectedMessages.length)
return;
var messages = Components.classes["@mozilla.org/array;1"]
.createInstance(Components.interfaces.nsIMutableArray);
let tagArray = MailServices.tags.getAllTags({});
var allKeys = "";
for (var j = 0; j < tagArray.length; ++j)
{
if (j)
allKeys += " ";
allKeys += tagArray[j].key;
}
var prevHdrFolder = null;
// this crudely handles cross-folder virtual folders with selected messages
// that spans folders, by coalescing consecutive messages in the selection
// that happen to be in the same folder. nsMsgSearchDBView does this better,
// but nsIMsgDBView doesn't handle commands with arguments, and untag takes a
// key argument. Furthermore, we only delete legacy labels and known tags,
// keeping other keywords like (non)junk intact.
for (var i = 0; i < selectedMessages.length; ++i)
{
var msgHdr = selectedMessages[i];
msgHdr.label = 0; // remove legacy label
if (prevHdrFolder != msgHdr.folder)
{
if (prevHdrFolder)
prevHdrFolder.removeKeywordsFromMessages(messages, allKeys);
messages.clear();
prevHdrFolder = msgHdr.folder;
}
messages.appendElement(msgHdr, false);
}
if (prevHdrFolder)
prevHdrFolder.removeKeywordsFromMessages(messages, allKeys);
OnTagsChange();
}
/**
* Toggle the state of a message tag on the selected messages (based on the
* state of the first selected message, like for starring).
*
* @param keyNumber the number (1 through 9) associated with the tag
*/
function ToggleMessageTagKey(keyNumber)
{
let msgHdr = gFolderDisplay.selectedMessage;
if (!msgHdr)
return;
let tagArray = MailServices.tags.getAllTags({});
if (keyNumber > tagArray.length)
return;
let key = tagArray[keyNumber - 1].key;
let curKeys = msgHdr.getStringProperty("keywords").split(" ");
if (msgHdr.label)
curKeys.push("$label" + msgHdr.label);
let addKey = !curKeys.includes(key);
ToggleMessageTag(key, addKey);
}
function ToggleMessageTagMenu(target)
{
var key = target.getAttribute("value");
var addKey = target.getAttribute("checked") == "true";
ToggleMessageTag(key, addKey);
}
function ToggleMessageTag(key, addKey)
{
var messages = Components.classes["@mozilla.org/array;1"]
.createInstance(Components.interfaces.nsIMutableArray);
var msg = Components.classes["@mozilla.org/array;1"]
.createInstance(Components.interfaces.nsIMutableArray);
var selectedMessages = gFolderDisplay.selectedMessages;
var toggler = addKey ? "addKeywordsToMessages" : "removeKeywordsFromMessages";
var prevHdrFolder = null;
// this crudely handles cross-folder virtual folders with selected messages
// that spans folders, by coalescing consecutive msgs in the selection
// that happen to be in the same folder. nsMsgSearchDBView does this
// better, but nsIMsgDBView doesn't handle commands with arguments,
// and (un)tag takes a key argument.
for (var i = 0; i < selectedMessages.length; ++i)
{
var msgHdr = selectedMessages[i];
if (msgHdr.label)
{
// Since we touch all these messages anyway, migrate the label now.
// If we don't, the thread tree won't always show the correct tag state,
// because resetting a label doesn't update the tree anymore...
msg.clear();
msg.appendElement(msgHdr, false);
msgHdr.folder.addKeywordsToMessages(msg, "$label" + msgHdr.label);
msgHdr.label = 0; // remove legacy label
}
if (prevHdrFolder != msgHdr.folder)
{
if (prevHdrFolder)
prevHdrFolder[toggler](messages, key);
messages.clear();
prevHdrFolder = msgHdr.folder;
}
messages.appendElement(msgHdr, false);
}
if (prevHdrFolder)
prevHdrFolder[toggler](messages, key);
OnTagsChange();
}
function AddTag()
{
var args = {result: "", okCallback: AddTagCallback};
var dialog = window.openDialog("chrome://messenger/content/newTagDialog.xul",
"",
"chrome,titlebar,modal",
args);
}
function ManageTags()
{
openOptionsDialog("paneDisplay", "tagTab");
}
function AddTagCallback(name, color)
{
MailServices.tags.addTag(name, color, '');
try
{
ToggleMessageTag(MailServices.tags.getKeyForTag(name), true);
}
catch(ex)
{
return false;
}
return true;
}
function SetMessageTagLabel(menuitem, index, name)
{
// if a <key> is defined for this tag, use its key as the accesskey
// (the key for the tag at index n needs to have the id key_tag<n>)
let shortcutkey = document.getElementById("key_tag" + index);
let accesskey = shortcutkey ? shortcutkey.getAttribute("key") : " ";
if (accesskey != " ") {
menuitem.setAttribute("accesskey", accesskey);
menuitem.setAttribute("acceltext", accesskey);
}
let label = document.getElementById("bundle_messenger")
.getFormattedString("mailnews.tags.format",
[accesskey, name]);
menuitem.setAttribute("label", label);
}
function InitMessageTags(menuPopup)
{
let tagArray = MailServices.tags.getAllTags({});
var tagCount = tagArray.length;
// Remove any existing non-static entries... (clear tags list before rebuilding it)
// "5" is the number of menu items (including separators) on the top of the menu
// that should not be cleared.
for (let i = menuPopup.childNodes.length; i > 5; --i)
menuPopup.lastChild.remove();
// create label and accesskey for the static remove item
var tagRemoveLabel = document.getElementById("bundle_messenger")
.getString("mailnews.tags.remove");
SetMessageTagLabel(menuPopup.lastChild.previousSibling, 0, tagRemoveLabel);
// now rebuild the list
var msgHdr = gFolderDisplay.selectedMessage;
var curKeys = msgHdr.getStringProperty("keywords");
if (msgHdr.label)
curKeys += " $label" + msgHdr.label;
for (var i = 0; i < tagCount; ++i)
{
var taginfo = tagArray[i];
let removeKey = (" " + curKeys + " ").includes(" " + taginfo.key + " ");
if (taginfo.ordinal.includes("~AUTOTAG") && !removeKey)
continue;
// TODO we want to either remove or "check" the tags that already exist
var newMenuItem = document.createElement("menuitem");
SetMessageTagLabel(newMenuItem, i + 1, taginfo.tag);
newMenuItem.setAttribute("value", taginfo.key);
newMenuItem.setAttribute("type", "checkbox");
newMenuItem.setAttribute('checked', removeKey);
newMenuItem.setAttribute('oncommand', 'ToggleMessageTagMenu(event.target);');
var color = taginfo.color;
if (color)
newMenuItem.setAttribute("class", "lc-" + color.substr(1));
menuPopup.appendChild(newMenuItem);
}
}
function InitRecentlyClosedTabsPopup(menuPopup)
{
let tabs = document.getElementById("tabmail").recentlyClosedTabs;
// show Popup only when there are restorable tabs.
if( !tabs.length )
return false;
// Clear the list before rebulding it.
while (menuPopup.hasChildNodes())
menuPopup.lastChild.remove();
// Rebuild the recently closed tab list
for (let i = 0; i < tabs.length; i++ ) {
let menuItem = document.createElement("menuitem");
menuItem.setAttribute("label",tabs[i].title);
menuItem.setAttribute('oncommand',
'document.getElementById("tabmail").undoCloseTab('+i+');');
if (i==0)
menuItem.setAttribute('key',"key_undoCloseTab");
menuPopup.appendChild(menuItem);
}
// "Restore All Tabs" with only one entry does not make sense
if (tabs.length > 1) {
menuPopup.appendChild(document.createElement("menuseparator"));
let menuItem = document.createElement("menuitem");
menuItem.setAttribute("label", document.getElementById("bundle_messenger")
.getString("restoreAllTabs"));
menuItem.setAttribute("oncommand","goRestoreAllTabs();");
menuPopup.appendChild(menuItem);
}
return true;
}
function goRestoreAllTabs()
{
let tabmail = document.getElementById("tabmail");
let len = tabmail.recentlyClosedTabs.length;
while(len--)
document.getElementById("tabmail").undoCloseTab();
}
function backToolbarMenu_init(menuPopup)
{
populateHistoryMenu(menuPopup, true);
}
function getMsgToolbarMenu_init()
{
document.commandDispatcher.updateCommands('create-menu-getMsgToolbar');
}
var gNavDebug = false;
function navDebug(str)
{
if (gNavDebug)
dump(str);
}
function populateHistoryMenu(menuPopup, isBackMenu)
{
// remove existing entries
while (menuPopup.hasChildNodes())
menuPopup.lastChild.remove();
var curPos = new Object;
var numEntries = new Object;
var historyEntries = new Object;
messenger.getNavigateHistory(curPos, numEntries, historyEntries);
curPos.value = curPos.value * 2;
navDebug("curPos = " + curPos.value + " numEntries = " + numEntries.value + "\n");
var historyArray = historyEntries.value;
var folder;
var newMenuItem;
if (gFolderDisplay.selectedMessage)
{
if (!isBackMenu)
curPos.value += 2;
else
curPos.value -= 2;
}
// For populating the back menu, we want the most recently visited
// messages first in the menu. So we go backward from curPos to 0.
// For the forward menu, we want to go forward from curPos to the end.
var relPos = 0;
for (var i = curPos.value; (isBackMenu) ? i >= 0 : i < historyArray.length; i += ((isBackMenu) ? -2 : 2))
{
navDebug("history[" + i + "] = " + historyArray[i] + "\n");
navDebug("history[" + i + "] = " + historyArray[i + 1] + "\n");
folder = MailUtils.getFolderForURI(historyArray[i + 1]);
navDebug("folder URI = " + folder.URI + "pretty name " + folder.prettyName + "\n");
var menuText = "";
// If the message was not being displayed via the current folder, prepend
// the folder name. We do not need to check underlying folders for
// virtual folders because 'folder' is the display folder, not the
// underlying one.
if (folder != gFolderDisplay.displayedFolder)
menuText = folder.prettyName + " - ";
var msgHdr = messenger.msgHdrFromURI(historyArray[i]);
var subject = "";
if (msgHdr.flags & Components.interfaces.nsMsgMessageFlags.HasRe)
subject = "Re: ";
if (msgHdr.mime2DecodedSubject)
subject += msgHdr.mime2DecodedSubject;
if (subject)
menuText += subject + " - ";
menuText += msgHdr.mime2DecodedAuthor;
newMenuItem = document.createElement('menuitem');
newMenuItem.setAttribute('label', menuText);
relPos += isBackMenu ? -1 : 1;
newMenuItem.setAttribute('value', relPos);
newMenuItem.folder = folder;
newMenuItem.setAttribute('oncommand', 'NavigateToUri(event.target); event.stopPropagation();');
menuPopup.appendChild(newMenuItem);
if (! (relPos % 20))
break;
}
}
/**
* This is triggered by the history navigation menu options, as created by
* populateHistoryMenu above.
*/
function NavigateToUri(target)
{
var historyIndex = target.getAttribute('value');
var msgUri = messenger.getMsgUriAtNavigatePos(historyIndex);
var folder = target.folder;
var msgHdr = messenger.msgHdrFromURI(msgUri);
navDebug("navigating from " + messenger.navigatePos + " by " + historyIndex + " to " + msgUri + "\n");
// this "- 0" seems to ensure that historyIndex is treated as an int, not a string.
messenger.navigatePos += (historyIndex - 0);
if (gFolderDisplay.displayedFolder != folder) {
if (gFolderTreeView)
gFolderTreeView.selectFolder(folder);
else
gFolderDisplay.show(folder);
}
gFolderDisplay.selectMessage(msgHdr);
}
function forwardToolbarMenu_init(menuPopup)
{
populateHistoryMenu(menuPopup, false);
}
function InitMessageMark()
{
document.getElementById("cmd_markAsFlagged")
.setAttribute("checked", SelectedMessagesAreFlagged());
document.commandDispatcher.updateCommands('create-menu-mark');
}
function UpdateJunkToolbarButton()
{
var junkButtonDeck = document.getElementById("junk-deck");
if (junkButtonDeck)
junkButtonDeck.selectedIndex = SelectedMessagesAreJunk() ? 1 : 0;
}
/**
* Should the reply command/button be enabled?
*
* @return whether the reply command/button should be enabled.
*/
function IsReplyEnabled()
{
// If we're in an rss item, we never want to Reply, because there's
// usually no-one useful to reply to.
return !gFolderDisplay.selectedMessageIsFeed;
}
/**
* Should the reply-all command/button be enabled?
*
* @return whether the reply-all command/button should be enabled.
*/
function IsReplyAllEnabled()
{
if (gFolderDisplay.selectedMessageIsNews)
// If we're in a news item, we always want ReplyAll, because we can
// reply to the sender and the newsgroup.
return true;
if (gFolderDisplay.selectedMessageIsFeed)
// If we're in an rss item, we never want to ReplyAll, because there's
// usually no-one useful to reply to.
return false;
let msgHdr = gFolderDisplay.selectedMessage;
let addresses = msgHdr.author + "," + msgHdr.recipients + "," + msgHdr.ccList;
// If we've got any BCCed addresses (because we sent the message), add
// them as well.
if ("bcc" in currentHeaderData)
addresses += currentHeaderData.bcc.headerValue;
// Check to see if my email address is in the list of addresses.
let myEmail = getIdentityForHeader(msgHdr).email;
// We aren't guaranteed to have an email address, so guard against that.
let imInAddresses = myEmail && (addresses.toLowerCase().includes(
myEmail.toLowerCase()));
// Now, let's get the number of unique addresses.
let uniqueAddresses = MailServices.headerParser.removeDuplicateAddresses(addresses, "");
let emailAddresses = {};
let numAddresses = MailServices.headerParser.parseHeadersWithArray(uniqueAddresses,
emailAddresses, {}, {});
// I don't want to count my address in the number of addresses to reply
// to, since I won't be emailing myself.
if (imInAddresses)
numAddresses--;
// ReplyAll is enabled if there is more than 1 person to reply to.
return numAddresses > 1;
}
/**
* Should the reply-list command/button be enabled?
*
* @return whether the reply-list command/button should be enabled.
*/
function IsReplyListEnabled()
{
// ReplyToList is enabled if there is a List-Post header
// with the correct format.
let listPost = currentHeaderData["list-post"];
if (!listPost)
return false;
// XXX: Once Bug 496914 provides a parser, we should use that instead.
// Until then, we need to keep the following regex in sync with the
// listPost parsing in nsMsgCompose.cpp's
// QuotingOutputStreamListener::OnStopRequest.
return /<mailto:.+>/.test(listPost["headerValue"]);
}
/**
* Update the enabled/disabled states of the Reply, Reply-All, and
* Reply-List buttons. (After this function runs, one of the buttons
* should be shown, and the others should be hidden.)
*/
function UpdateReplyButtons()
{
// If we have no message, because we're being called from
// MailToolboxCustomizeDone before someone selected a message, then just
// return.
if (!gFolderDisplay.selectedMessage)
return;
let buttonToShow;
if (gFolderDisplay.selectedMessageIsNews)
{
// News messages always default to the "followup" dual-button.
buttonToShow = "followup";
}
else if (gFolderDisplay.selectedMessageIsFeed)
{
// RSS items hide all the reply buttons.
buttonToShow = null;
}
else
{
// Mail messages show the "reply" button (not the dual-button) and
// possibly the "reply all" and "reply list" buttons.
if (IsReplyListEnabled())
buttonToShow = "replyList";
else if (IsReplyAllEnabled())
buttonToShow = "replyAll";
else
buttonToShow = "reply";
}
let smartReplyButton = document.getElementById("hdrSmartReplyButton");
if (smartReplyButton)
{
let replyButton = document.getElementById("hdrReplyButton");
let replyAllButton = document.getElementById("hdrReplyAllButton");
let replyListButton = document.getElementById("hdrReplyListButton");
let followupButton = document.getElementById("hdrFollowupButton");
replyButton.hidden = (buttonToShow != "reply");
replyAllButton.hidden = (buttonToShow != "replyAll");
replyListButton.hidden = (buttonToShow != "replyList");
followupButton.hidden = (buttonToShow != "followup");
}
let replyToSenderButton = document.getElementById("hdrReplyToSenderButton");
if (replyToSenderButton)
{
if (gFolderDisplay.selectedMessageIsFeed)
replyToSenderButton.hidden = true;
else if (smartReplyButton)
replyToSenderButton.hidden = (buttonToShow == "reply");
else
replyToSenderButton.hidden = false;
}
goUpdateCommand("button_reply");
goUpdateCommand("button_replyall");
goUpdateCommand("button_replylist");
goUpdateCommand("button_followup");
}
function UpdateDeleteToolbarButton()
{
var deleteButtonDeck = document.getElementById("delete-deck");
if (!deleteButtonDeck)
return;
// Never show "Undelete" in the 3-pane for folders, when delete would
// apply to the selected folder.
if (gFolderDisplay.focusedPane == document.getElementById("folderTree") &&
gFolderDisplay.selectedCount == 0)
deleteButtonDeck.selectedIndex = 0;
else
deleteButtonDeck.selectedIndex = SelectedMessagesAreDeleted() ? 1 : 0;
}
function UpdateDeleteCommand()
{
var value = "value";
if (SelectedMessagesAreDeleted())
value += "IMAPDeleted";
if (gFolderDisplay.selectedCount < 2)
value += "Message";
else
value += "Messages";
goSetMenuValue("cmd_delete", value);
goSetAccessKey("cmd_delete", value + "AccessKey");
}
function SelectedMessagesAreDeleted()
{
let firstSelectedMessage = gFolderDisplay.selectedMessage;
return firstSelectedMessage &&
(firstSelectedMessage.flags &
Components.interfaces.nsMsgMessageFlags.IMAPDeleted);
}
function SelectedMessagesAreJunk()
{
try {
var junkScore = gFolderDisplay.selectedMessage.getStringProperty("junkscore");
return (junkScore != "") && (junkScore != "0");
}
catch (ex) {
return false;
}
}
function SelectedMessagesAreRead()
{
let messages = gFolderDisplay.selectedMessages;
if (messages.length == 0)
return undefined;
if (messages.every(function(msg) { return msg.isRead; }))
return true;
if (messages.every(function(msg) { return !msg.isRead; }))
return false;
return undefined;
}
function SelectedMessagesAreFlagged()
{
let firstSelectedMessage = gFolderDisplay.selectedMessage;
return firstSelectedMessage && firstSelectedMessage.isFlagged;
}
function GetFirstSelectedMsgFolder()
{
try {
var selectedFolders = GetSelectedMsgFolders();
} catch (e) {
logException(e);
}
return (selectedFolders.length > 0) ? selectedFolders[0] : null;
}
function GetInboxFolder(server)
{
try {
var rootMsgFolder = server.rootMsgFolder;
// Now find the Inbox.
const nsMsgFolderFlags = Components.interfaces.nsMsgFolderFlags;
return rootMsgFolder.getFolderWithFlags(nsMsgFolderFlags.Inbox);
}
catch (ex) {
dump(ex + "\n");
}
return null;
}
function GetMessagesForInboxOnServer(server)
{
var inboxFolder = GetInboxFolder(server);
// If the server doesn't support an inbox it could be an RSS server or some
// other server type. Just use the root folder and the server implementation
// can figure out what to do.
if (!inboxFolder)
inboxFolder = server.rootFolder;
GetNewMsgs(server, inboxFolder);
}
function MsgGetMessage()
{
// if offline, prompt for getting messages
if (MailOfflineMgr.isOnline() || MailOfflineMgr.getNewMail())
GetFolderMessages();
}
function MsgGetMessagesForAllServers(defaultServer)
{
// now log into any server
try
{
var allServers = accountManager.allServers;
// Array of arrays of servers for a particular folder.
var pop3DownloadServersArray = [];
// Parallel array of folders to download to...
var localFoldersToDownloadTo = [];
var pop3Server;
for (var i = 0; i < allServers.length; ++i)
{
var currentServer = allServers.queryElementAt(i, Components.interfaces.nsIMsgIncomingServer);
if (currentServer.protocolInfo.canLoginAtStartUp &&
currentServer.loginAtStartUp)
{
if (defaultServer && defaultServer.equals(currentServer) &&
!defaultServer.isDeferredTo &&
defaultServer.rootFolder == defaultServer.rootMsgFolder)
{
// skip, already opened
}
else if (currentServer.type == "pop3" && currentServer.downloadOnBiff)
{
CoalesceGetMsgsForPop3ServersByDestFolder(currentServer,
pop3DownloadServersArray, localFoldersToDownloadTo);
pop3Server = currentServer.QueryInterface(Components.interfaces.nsIPop3IncomingServer);
}
else
{
// Check to see if there are new messages on the server
currentServer.performBiff(msgWindow);
}
}
}
for (var i = 0; i < pop3DownloadServersArray.length; ++i)
{
// Any ol' pop3Server will do - the serversArray specifies which servers
// to download from.
pop3Server.downloadMailFromServers(pop3DownloadServersArray[i],
pop3DownloadServersArray[i].length,
msgWindow,
localFoldersToDownloadTo[i],
null);
}
}
catch(ex)
{
dump(ex + "\n");
}
}
/**
* Get messages for all those accounts which have the capability
* of getting messages and have session password available i.e.,
* curretnly logged in accounts.
* if offline, prompt for getting messages.
*/
function MsgGetMessagesForAllAuthenticatedAccounts()
{
if (MailOfflineMgr.isOnline() || MailOfflineMgr.getNewMail())
GetMessagesForAllAuthenticatedAccounts();
}
/**
* Get messages for the account selected from Menu dropdowns.
* if offline, prompt for getting messages.
*
* @param aFolder (optional) a folder in the account for which messages should
* be retrieved. If null, all accounts will be used.
*/
function MsgGetMessagesForAccount(aFolder)
{
if (!aFolder) {
goDoCommand('cmd_getNewMessages');
return;
}
if (MailOfflineMgr.isOnline() || MailOfflineMgr.getNewMail()) {
var server = aFolder.server;
GetMessagesForInboxOnServer(server);
}
}
// if offline, prompt for getNextNMessages
function MsgGetNextNMessages()
{
if (MailOfflineMgr.isOnline() || MailOfflineMgr.getNewMail())
GetNextNMessages(GetFirstSelectedMsgFolder());
}
function MsgDeleteMessage(reallyDelete, fromToolbar)
{
// If from the toolbar, return right away if this is a news message
// only allow cancel from the menu: "Edit | Cancel / Delete Message".
if (fromToolbar && gFolderDisplay.view.isNewsFolder)
return;
gFolderDisplay.hintAboutToDeleteMessages();
if (reallyDelete)
gDBView.doCommand(nsMsgViewCommandType.deleteNoTrash);
else
gDBView.doCommand(nsMsgViewCommandType.deleteMsg);
}
/**
* Copies the selected messages to the destination folder
* @param aDestFolder the destination folder
*/
function MsgCopyMessage(aDestFolder)
{
if (gMessageDisplay.isDummy) {
let file = window.arguments[0].QueryInterface(Components.interfaces
.nsIFileURL).file;
MailServices.copy.CopyFileMessage(file, aDestFolder, null, false,
Components.interfaces.nsMsgMessageFlags.Read,
"", null, msgWindow);
}
else
gDBView.doCommandWithFolder(nsMsgViewCommandType.copyMessages, aDestFolder);
Services.prefs.setCharPref("mail.last_msg_movecopy_target_uri", aDestFolder.URI);
Services.prefs.setBoolPref("mail.last_msg_movecopy_was_move", false);
}
/**
* Moves the selected messages to the destination folder
* @param aDestFolder the destination folder
*/
function MsgMoveMessage(aDestFolder)
{
gFolderDisplay.hintAboutToDeleteMessages();
gDBView.doCommandWithFolder(nsMsgViewCommandType.moveMessages, aDestFolder);
Services.prefs.setCharPref("mail.last_msg_movecopy_target_uri", aDestFolder.URI);
Services.prefs.setBoolPref("mail.last_msg_movecopy_was_move", true);
}
/**
* Calls the ComposeMessage function with the desired type, and proper default
* based on the event that fired it.
*
* @param aCompType the nsIMsgCompType to pass to the function
* @param aEvent (optional) the event that triggered the call
*/
function composeMsgByType(aCompType, aEvent) {
// If we're the hidden window, then we're not going to have a gFolderDisplay
// to work out existing folders, so just use null.
let msgFolder = gFolderDisplay ? GetFirstSelectedMsgFolder() : null;
let msgUris = gFolderDisplay ? gFolderDisplay.selectedMessageUris : null;
if (aEvent && aEvent.shiftKey) {
ComposeMessage(aCompType,
Components.interfaces.nsIMsgCompFormat.OppositeOfDefault,
msgFolder, msgUris);
}
else {
ComposeMessage(aCompType, Components.interfaces.nsIMsgCompFormat.Default,
msgFolder, msgUris);
}
}
function MsgNewMessage(event)
{
composeMsgByType(Components.interfaces.nsIMsgCompType.New, event);
}
function MsgReplyMessage(event)
{
if (gFolderDisplay.selectedMessageIsNews)
MsgReplyGroup(event);
else
MsgReplySender(event);
}
function MsgReplySender(event)
{
composeMsgByType(Components.interfaces.nsIMsgCompType.ReplyToSender, event);
}
function MsgReplyGroup(event)
{
composeMsgByType(Components.interfaces.nsIMsgCompType.ReplyToGroup, event);
}
function MsgReplyToAllMessage(event)
{
composeMsgByType(Components.interfaces.nsIMsgCompType.ReplyAll, event);
}
function MsgReplyToListMessage(event)
{
composeMsgByType(Components.interfaces.nsIMsgCompType.ReplyToList, event);
}
// Message Archive function
function BatchMessageMover() {
this._batches = {};
this._currentKey = null;
this._dstFolderParent = null;
this._dstFolderName = null;
}
BatchMessageMover.prototype = {
archiveMessages: function (aMsgHdrs) {
if (!aMsgHdrs.length)
return;
gFolderDisplay.hintMassMoveStarting();
for (let i = 0; i < aMsgHdrs.length; i++) {
let msgHdr = aMsgHdrs[i];
let server = msgHdr.folder.server;
let rootFolder = server.rootFolder;
// Convert date to JS date object.
let msgDate = new Date(msgHdr.date / 1000);
let msgYear = msgDate.getFullYear().toString();
let monthFolderName = msgDate.toLocaleFormat("%Y-%m");
let archiveFolderURI;
let archiveGranularity;
let archiveKeepFolderStructure;
if (server.type == "rss") {
// RSS servers don't have an identity, so we need to figure this out
// based on the default identity prefs.
let enabled = Services.prefs.getBoolPref(
"mail.identity.default.archive_enabled"
);
if (!enabled)
continue;
archiveFolderURI = server.serverURI + "/Archives";
archiveGranularity = Services.prefs.getIntPref(
"mail.identity.default.archive_granularity"
);
archiveKeepFolderStructure = Services.prefs.getBoolPref(
"mail.identity.default.archive_keep_folder_structure"
);
}
else {
let identity = getIdentityForHeader(msgHdr);
if (!identity.archiveEnabled)
continue;
archiveFolderURI = identity.archiveFolder;
archiveGranularity = identity.archiveGranularity;
archiveKeepFolderStructure = identity.archiveKeepFolderStructure;
}
let copyBatchKey = msgHdr.folder.URI;
if (archiveGranularity >= Components.interfaces.nsIMsgIdentity
.perYearArchiveFolders)
copyBatchKey += '\0' + msgYear;
if (archiveGranularity >= Components.interfaces.nsIMsgIdentity
.perMonthArchiveFolders)
copyBatchKey += '\0' + monthFolderName;
if (archiveKeepFolderStructure)
copyBatchKey += msgHdr.folder.URI;
// Add a key to copyBatchKey
if (!(copyBatchKey in this._batches)) {
this._batches[copyBatchKey] = {
srcFolder: msgHdr.folder,
archiveFolderURI: archiveFolderURI,
granularity: archiveGranularity,
keepFolderStructure: archiveKeepFolderStructure,
yearFolderName: msgYear,
monthFolderName: monthFolderName,
messages: [],
};
}
this._batches[copyBatchKey].messages.push(msgHdr);
}
MailServices.mfn.addListener(this, MailServices.mfn.folderAdded);
// Now we launch the code iterating over all message copies, one in turn.
this.processNextBatch();
},
processNextBatch: function () {
// get the first defined key and value
for (let key in this._batches) {
this._currentBatch = this._batches[key];
delete this._batches[key];
return this.filterBatch();
}
this._batches = null;
gFolderDisplay.hintMassMoveCompleted();
MailServices.mfn.removeListener(this);
// all done
return;
},
filterBatch: function () {
let batch = this._currentBatch;
let filterArray = Components.classes["@mozilla.org/array;1"]
.createInstance(Components.interfaces.nsIMutableArray);
for (let message of batch.messages) {
filterArray.appendElement(message, false);
}
// Apply filters to this batch.
MailServices.filters.applyFilters(
Components.interfaces.nsMsgFilterType.Archive,
filterArray, batch.srcFolder, msgWindow, this);
return; // continues with onStopOperation
},
onStopOperation: function (aResult) {
if (!Components.isSuccessCode(aResult))
{
Components.utils.reportError("Archive filter failed: " + aResult);
// We don't want to effectively disable archiving because a filter
// failed, so we'll continue after reporting the error.
}
// Now do the default archive processing
this.continueBatch();
},
// continue processing of default archive operations
continueBatch: function () {
const Ci = Components.interfaces;
let batch = this._currentBatch;
let srcFolder = batch.srcFolder;
let archiveFolderURI = batch.archiveFolderURI;
let archiveFolder = MailUtils.getFolderForURI(archiveFolderURI, false);
let dstFolder = archiveFolder;
let moveArray = Components.classes["@mozilla.org/array;1"]
.createInstance(Ci.nsIMutableArray);
// Don't move any items that the filter moves or deleted
for (let item of batch.messages) {
if (srcFolder.msgDatabase.ContainsKey(item.messageKey) &&
!(srcFolder.getProcessingFlags(item.messageKey) &
Components.interfaces.nsMsgProcessingFlags.FilterToMove)) {
moveArray.appendElement(item, false);
}
}
if (moveArray.length == 0)
return this.processNextBatch(); // continue processing
// For folders on some servers (e.g. IMAP), we need to create the
// sub-folders asynchronously, so we chain the urls using the listener
// called back from createStorageIfMissing. For local,
// createStorageIfMissing is synchronous.
let isAsync = archiveFolder.server.protocolInfo.foldersCreatedAsync;
if (!archiveFolder.parent) {
archiveFolder.setFlag(Ci.nsMsgFolderFlags.Archive);
archiveFolder.createStorageIfMissing(this);
if (isAsync)
return; // continues with OnStopRunningUrl
}
let granularity = batch.granularity;
let forceSingle = !archiveFolder.canCreateSubfolders;
if (!forceSingle && (archiveFolder.server instanceof
Ci.nsIImapIncomingServer))
forceSingle = archiveFolder.server.isGMailServer;
if (forceSingle)
granularity = Ci.nsIMsgIncomingServer.singleArchiveFolder;
if (granularity >= Ci.nsIMsgIdentity.perYearArchiveFolders) {
archiveFolderURI += "/" + batch.yearFolderName;
dstFolder = MailUtils.getFolderForURI(archiveFolderURI, false);
if (!dstFolder.parent) {
dstFolder.createStorageIfMissing(this);
if (isAsync)
return; // continues with OnStopRunningUrl
}
}
if (granularity >= Ci.nsIMsgIdentity.perMonthArchiveFolders) {
archiveFolderURI += "/" + batch.monthFolderName;
dstFolder = MailUtils.getFolderForURI(archiveFolderURI, false);
if (!dstFolder.parent) {
dstFolder.createStorageIfMissing(this);
if (isAsync)
return; // continues with OnStopRunningUrl
}
}
// Create the folder structure in Archives.
// For imap folders, we need to create the sub-folders asynchronously,
// so we chain the actions using the listener called back from
// createSubfolder. For local, createSubfolder is synchronous.
if (archiveFolder.canCreateSubfolders && batch.keepFolderStructure) {
// Collect in-order list of folders of source folder structure,
// excluding top-level INBOX folder
let folderNames = [];
let rootFolder = srcFolder.server.rootFolder;
let inboxFolder = GetInboxFolder(srcFolder.server);
let folder = srcFolder;
while (folder != rootFolder && folder != inboxFolder) {
folderNames.unshift(folder.name);
folder = folder.parent;
}
// Determine Archive folder structure.
for (let i = 0; i < folderNames.length; ++i) {
let folderName = folderNames[i];
if (!dstFolder.containsChildNamed(folderName)) {
// Create Archive sub-folder (IMAP: async).
if (isAsync) {
this._dstFolderParent = dstFolder;
this._dstFolderName = folderName;
}
dstFolder.createSubfolder(folderName, msgWindow);
if (isAsync)
return; // continues with folderAdded
}
dstFolder = dstFolder.getChildNamed(folderName);
}
}
if (dstFolder != srcFolder) {
// If the source folder doesn't support deleting messages, we
// make archive a copy, not a move.
MailServices.copy.CopyMessages(
srcFolder, moveArray, dstFolder,
srcFolder.canDeleteMessages, this, msgWindow, true
);
return; // continues with OnStopCopy
}
return this.processNextBatch(); // next batch
},
OnStartRunningUrl: function(url) {},
OnStopRunningUrl: function(url, exitCode) {
// this will always be a create folder url, afaik.
if (Components.isSuccessCode(exitCode))
this.continueBatch();
else {
Components.utils.reportError("Archive failed to create folder: " + exitCode);
this._batches = null;
this.processNextBatch(); // for cleanup and exit
}
},
// also implements nsIMsgCopyServiceListener, but we only care
// about the OnStopCopy
OnStartCopy: function() {},
OnProgress: function(aProgress, aProgressMax) {},
SetMessageKey: function(aKey) {},
GetMessageId: function() {},
OnStopCopy: function(aStatus) {
if (Components.isSuccessCode(aStatus))
return this.processNextBatch();
// stop on error
Components.utils.reportError("Archive failed to copy: " + aStatus);
this._batches = null;
this.processNextBatch(); // for cleanup and exit
},
// This also implements nsIMsgFolderListener, but we only care about the
// folderAdded (createSubfolder callback).
folderAdded: function(aFolder) {
// Check that this is the folder we're interested in.
if (aFolder.parent == this._dstFolderParent &&
aFolder.name == this._dstFolderName) {
this._dstFolderParent = null;
this._dstFolderName = null;
this.continueBatch();
}
},
QueryInterface: function(iid) {
if (!iid.equals(Components.interfaces.nsIUrlListener) &&
!iid.equals(Components.interfaces.nsIMsgCopyServiceListener) &&
!iid.equals(Components.interfaces.nsIMsgOperationListener) &&
!iid.equals(Components.interfaces.nsISupports))
throw Components.results.NS_ERROR_NO_INTERFACE;
return this;
}
}
/**
* Archives the selected messages
*
* @param event the event that caused us to call this function
*/
function MsgArchiveSelectedMessages(event)
{
let batchMover = new BatchMessageMover();
batchMover.archiveMessages(gFolderDisplay.selectedMessages);
}
function MsgForwardMessage(event)
{
var forwardType = 0;
try {
forwardType = Services.prefs.getIntPref("mail.forward_message_mode");
}
catch (ex) {
dump("failed to retrieve pref mail.forward_message_mode");
}
// mail.forward_message_mode could be 1, if the user migrated from 4.x
// 1 (forward as quoted) is obsolete, so we treat is as forward inline
// since that is more like forward as quoted then forward as attachment
if (forwardType == 0)
MsgForwardAsAttachment(event);
else
MsgForwardAsInline(event);
}
function MsgForwardAsAttachment(event)
{
composeMsgByType(Components.interfaces.nsIMsgCompType.ForwardAsAttachment, event);
}
function MsgForwardAsInline(event)
{
composeMsgByType(Components.interfaces.nsIMsgCompType.ForwardInline, event);
}
function MsgEditMessageAsNew()
{
composeMsgByType(Components.interfaces.nsIMsgCompType.Template);
}
function MsgComposeDraftMessage()
{
ComposeMessage(Components.interfaces.nsIMsgCompType.Draft,
Components.interfaces.nsIMsgCompFormat.Default,
gFolderDisplay.displayedFolder,
gFolderDisplay.selectedMessageUris);
}
function MsgCreateFilter()
{
// retrieve Sender direct from selected message's headers
var msgHdr = gFolderDisplay.selectedMessage;
let emailAddress = MailServices.headerParser.extractHeaderAddressMailboxes(msgHdr.author);
if (emailAddress)
top.MsgFilters(emailAddress, msgHdr.folder);
}
function MsgNewFolder(callBackFunctionName)
{
var preselectedFolder = GetFirstSelectedMsgFolder();
var dualUseFolders = true;
var server = null;
var destinationFolder = null;
if (preselectedFolder)
{
try {
server = preselectedFolder.server;
if (server)
{
destinationFolder = getDestinationFolder(preselectedFolder, server);
var imapServer =
server.QueryInterface(Components.interfaces.nsIImapIncomingServer);
if (imapServer)
dualUseFolders = imapServer.dualUseFolders;
}
} catch (e) {
dump ("Exception: dualUseFolders = true\n");
}
}
window.openDialog("chrome://messenger/content/newFolderDialog.xul", "",
"chrome,titlebar,modal",
{folder: destinationFolder, dualUseFolders: dualUseFolders,
okCallback:callBackFunctionName});
}
function getDestinationFolder(preselectedFolder, server)
{
var destinationFolder = null;
if (!preselectedFolder.canCreateSubfolders)
{
destinationFolder = server.rootMsgFolder;
var verifyCreateSubfolders = null;
if (destinationFolder)
verifyCreateSubfolders = destinationFolder.canCreateSubfolders;
// In case the server cannot have subfolders, get default account and set
// its incoming server as parent folder.
if (!verifyCreateSubfolders)
{
try {
var defaultFolder = GetDefaultAccountRootFolder();
var checkCreateSubfolders = null;
if (defaultFolder)
checkCreateSubfolders = defaultFolder.canCreateSubfolders;
if (checkCreateSubfolders)
destinationFolder = defaultFolder;
} catch (e) {
dump ("Exception: defaultAccount Not Available\n");
}
}
}
else
destinationFolder = preselectedFolder;
return destinationFolder;
}
/** Open subscribe window. */
function MsgSubscribe()
{
var preselectedFolder = GetFirstSelectedMsgFolder();
if (preselectedFolder && preselectedFolder.server.type == "rss")
openSubscriptionsDialog(preselectedFolder); // open feed subscription dialog
else
Subscribe(preselectedFolder); // open imap/nntp subscription dialog
}
/**
* Show a confirmation dialog - check if the user really want to unsubscribe
* from the given newsgroup/s.
* @folders an array of newsgroup folders to unsubscribe from
* @return true if the user said it's ok to unsubscribe
*/
function ConfirmUnsubscribe(folders)
{
var bundle = document.getElementById("bundle_messenger");
var titleMsg = bundle.getString("confirmUnsubscribeTitle");
var dialogMsg = (folders.length == 1) ?
bundle.getFormattedString("confirmUnsubscribeText", [folders[0].name], 1) :
bundle.getString("confirmUnsubscribeManyText");
return Services.prompt.confirm(window, titleMsg, dialogMsg);
}
/**
* Unsubscribe from selected or passed in newsgroup/s.
* @param newsgroups (optional param) the newsgroup folders to unsubscribe from
*/
function MsgUnsubscribe(newsgroups)
{
var folders = newsgroups || gFolderTreeView.getSelectedFolders();
if (!ConfirmUnsubscribe(folders))
return;
for (let i = 0; i < folders.length; i++) {
let subscribableServer = folders[i].server.QueryInterface(
Components.interfaces.nsISubscribableServer);
subscribableServer.unsubscribe(folders[i].name);
subscribableServer.commitSubscribeChanges();
}
}
function ToggleFavoriteFolderFlag()
{
var folder = GetFirstSelectedMsgFolder();
folder.toggleFlag(Components.interfaces.nsMsgFolderFlags.Favorite);
}
function MsgSaveAsFile()
{
SaveAsFile(gFolderDisplay.selectedMessageUris);
}
function MsgSaveAsTemplate()
{
if (gFolderDisplay.selectedCount == 1)
SaveAsTemplate(gFolderDisplay.selectedMessageUris[0]);
}
function CreateToolbarTooltip(document, event)
{
event.stopPropagation();
var tn = document.tooltipNode;
if (tn.localName != "tab")
return false; // Not a tab, so cancel the tooltip.
if ("mOverCloseButton" in tn && tn.mOverCloseButton) {
event.target.setAttribute("label", tn.getAttribute("closetabtext"));
return true;
}
if (tn.hasAttribute("label")) {
event.target.setAttribute("label", tn.getAttribute("label"));
return true;
}
return false;
}
function MsgOpenNewWindowForFolder(folderURI, msgKeyToSelect)
{
if (folderURI) {
window.openDialog("chrome://messenger/content/", "_blank",
"chrome,all,dialog=no", folderURI, msgKeyToSelect);
return;
}
// If there is a right-click happening, gFolderTreeView.getSelectedFolders()
// will tell us about it (while the selection's currentIndex would reflect
// the node that was selected/displayed before the right-click.)
let selectedFolders = gFolderTreeView.getSelectedFolders();
for (let i = 0; i < selectedFolders.length; i++) {
window.openDialog("chrome://messenger/content/", "_blank",
"chrome,all,dialog=no",
selectedFolders[i].URI, msgKeyToSelect);
}
}
/**
* UI-triggered command to open the currently selected folder(s) in new tabs.
* @param aBackground [optional] if true, then the folder tab is opened in the
* background. If false or not given, then the folder tab is
* opened in the foreground.
*/
function MsgOpenNewTabForFolder(aBackground)
{
// If there is a right-click happening, gFolderTreeView.getSelectedFolders()
// will tell us about it (while the selection's currentIndex would reflect
// the node that was selected/displayed before the right-click.)
let selectedFolders = gFolderTreeView.getSelectedFolders();
for (let i = 0; i < selectedFolders.length; i++) {
document.getElementById("tabmail").openTab("folder",
{folder: selectedFolders[i], background: aBackground});
}
}
function MsgOpenSelectedMessages()
{
// Toggle message body (feed summary) and content-base url in message pane or
// load in browser, per pref, otherwise open summary or web page in new window
// or tab, per that pref.
if (gFolderDisplay.treeSelection && gFolderDisplay.treeSelection.count == 1 &&
gFolderDisplay.selectedMessageIsFeed) {
let msgHdr = gFolderDisplay.selectedMessage;
if (document.documentElement.getAttribute("windowtype") == "mail:3pane" &&
FeedMessageHandler.onOpenPref == FeedMessageHandler.kOpenToggleInMessagePane) {
let showSummary = FeedMessageHandler.shouldShowSummary(msgHdr, true);
FeedMessageHandler.setContent(msgHdr, showSummary);
return;
}
if (FeedMessageHandler.onOpenPref == FeedMessageHandler.kOpenLoadInBrowser) {
setTimeout(FeedMessageHandler.loadWebPage, 20, msgHdr, {browser:true});
return;
}
}
// This is somewhat evil. If we're in a 3pane window, we'd have a tabmail
// element and would pass it in here, ensuring that if we open tabs, we use
// this tabmail to open them. If we aren't, then we wouldn't, so
// displayMessages would look for a 3pane window and open tabs there.
MailUtils.displayMessages(gFolderDisplay.selectedMessages,
gFolderDisplay.view,
document.getElementById("tabmail"));
}
function MsgOpenFromFile()
{
const nsIFilePicker = Components.interfaces.nsIFilePicker;
var fp = Components.classes["@mozilla.org/filepicker;1"]
.createInstance(nsIFilePicker);
var bundle = document.getElementById("bundle_messenger");
var filterLabel = bundle.getString("EMLFiles");
var windowTitle = bundle.getString("OpenEMLFiles");
fp.init(window, windowTitle, nsIFilePicker.modeOpen);
fp.appendFilter(filterLabel, "*.eml");
// Default or last filter is "All Files".
fp.appendFilters(nsIFilePicker.filterAll);
try {
var ret = fp.show();
if (ret == nsIFilePicker.returnCancel)
return;
}
catch (ex) {
dump("filePicker.chooseInputFile threw an exception\n");
return;
}
var uri = fp.fileURL.QueryInterface(Components.interfaces.nsIURL);
uri.query = "type=application/x-message-display";
window.openDialog("chrome://messenger/content/messageWindow.xul", "_blank",
"all,chrome,dialog=no,status,toolbar", uri);
}
function MsgOpenNewWindowForMessage(aMsgHdr)
{
// no message header provided? get the selected message (this will give us
// the right-click selected message if that's what is going down.)
if (!aMsgHdr)
aMsgHdr = gFolderDisplay.selectedMessage;
// (there might not have been a selected message, so check...)
if (aMsgHdr)
// we also need to tell the window about our current view so that it can
// clone it. This enables advancing through the messages, etc.
window.openDialog("chrome://messenger/content/messageWindow.xul", "_blank",
"all,chrome,dialog=no,status,toolbar",
aMsgHdr, gFolderDisplay.view);
}
/**
* Display the given message in an existing folder tab.
*
* @param aMsgHdr The message header to display.
*/
function MsgDisplayMessageInFolderTab(aMsgHdr)
{
// Look for a folder tab
let tabmail = document.getElementById("tabmail");
let folderTab = tabmail.getTabInfoForCurrentOrFirstModeInstance(
tabmail.tabModes["folder"]);
let folderDisplay = folderTab.folderDisplay;
let folder = gFolderTreeView.getFolderForMsgHdr(aMsgHdr);
// XXX Yuck. We really need to have the tabmail be able to handle an extra
// param with data to send to showTab, and to have the folder display have
// a |selectFolderAndMessage| method that handles most of the messiness.
folderDisplay.selectMessageComingUp();
// Switch to the tab
tabmail.switchToTab(folderTab);
// We don't want to drop view filters at first
if (folderDisplay.view.getViewIndexForMsgHdr(aMsgHdr, false) !=
nsMsgViewIndex_None) {
folderDisplay.selectMessage(aMsgHdr);
}
else {
if (folderDisplay.displayedFolder != folder ||
folderDisplay.view.isVirtual) {
// Force select the folder
folderDisplay.show(folder);
gFolderTreeView.selectFolder(folder, true);
}
// Force select the message
folderDisplay.selectMessage(aMsgHdr, true);
}
}
function MsgJunk()
{
MsgJunkMailInfo(true);
JunkSelectedMessages(!SelectedMessagesAreJunk());
}
/**
* Update the "mark as junk" button in the message header area.
*/
function UpdateJunkButton()
{
// The junk message should slave off the selected message, as the preview pane
// may not be visible
let hdr = gFolderDisplay.selectedMessage;
// But only the message display knows if we are dealing with a dummy.
if (!hdr || gMessageDisplay.isDummy) // .eml file
return;
let junkScore = hdr.getStringProperty("junkscore");
let hideJunk = (junkScore == Components.interfaces.nsIJunkMailPlugin.IS_SPAM_SCORE);
if (!gFolderDisplay.getCommandStatus(nsMsgViewCommandType.junk))
hideJunk = true;
if (document.getElementById('hdrJunkButton')) {
document.getElementById('hdrJunkButton').disabled = hideJunk;
}
}
/**
* Checks if the selected messages can be marked as read or unread
*
* @param markingRead true if trying to mark messages as read, false otherwise
* @return true if the chosen operation can be performed
*/
function CanMarkMsgAsRead(markingRead)
{
return gFolderDisplay.selectedCount > 0 &&
SelectedMessagesAreRead() != markingRead;
}
/**
* Marks the selected messages as read or unread
*
* @param read true if trying to mark messages as read, false if marking unread,
* undefined if toggling the read status
*/
function MsgMarkMsgAsRead(read)
{
if (read == undefined)
read = !gFolderDisplay.selectedMessage.isRead;
MarkSelectedMessagesRead(read);
}
function MsgMarkAsFlagged()
{
MarkSelectedMessagesFlagged(!SelectedMessagesAreFlagged());
}
function MsgMarkReadByDate()
{
window.openDialog("chrome://messenger/content/markByDate.xul","",
"chrome,modal,titlebar,centerscreen",
gFolderDisplay.displayedFolder);
}
function MsgMarkAllRead()
{
let folders = gFolderTreeView.getSelectedFolders();
for (let i = 0; i < folders.length; i++)
folders[i].markAllMessagesRead(msgWindow);
}
/**
* Opens the filter list.
* If an email address was passed, first a new filter is offered for creation
* with the data prefilled.
*
* @param emailAddress An email address to use as value in the first search term.
* @param folder The filter will be created in this folder's filter list.
* @param fieldName Search field string, from nsMsgSearchTerm.cpp::SearchAttribEntryTable.
*/
function MsgFilters(emailAddress, folder, fieldName)
{
if (!folder)
{
// Try to determine the folder from the selected message.
if (gDBView)
{
/*
* Here we face a decision. If the message has been moved to a
* different account, then a single filter cannot work for both
* manual and incoming scope. So we will create the filter based
* on its existing location, which will make it work properly in
* manual scope. This is the best solution for POP3 with global
* inbox (as then both manual and incoming filters work correctly),
* but may not be what IMAP users who filter to a local folder
* really want.
*/
try
{
folder = gFolderDisplay.selectedMessage.folder;
}
catch (ex) {}
}
if (!folder)
folder = GetFirstSelectedMsgFolder();
}
var args;
if (emailAddress)
{
// We have to do prefill filter so we are going to launch the
// filterEditor dialog and prefill that with the emailAddress.
args = { filterList: folder.getEditableFilterList(msgWindow),
filterName: emailAddress };
// Set the field name to prefill in the filter, if one was specified.
if (fieldName)
args.fieldName = fieldName;
window.openDialog("chrome://messenger/content/FilterEditor.xul", "",
"chrome, modal, resizable,centerscreen,dialog=yes", args);
// If the user hits OK in the filterEditor dialog we set args.refresh=true
// there and we check this here in args to show filterList dialog.
// We also received the filter created via args.newFilter.
if ("refresh" in args && args.refresh)
{
args = { refresh: true, folder: folder, filter: args.newFilter };
MsgFilterList(args);
}
}
else // just launch filterList dialog
{
args = { refresh: false, folder: folder };
MsgFilterList(args);
}
}
function MsgApplyFilters()
{
let preselectedFolder = GetFirstSelectedMsgFolder();
let selectedFolders = Components.classes["@mozilla.org/array;1"]
.createInstance(Components.interfaces.nsIMutableArray);
selectedFolders.appendElement(preselectedFolder, false);
let curFilterList = preselectedFolder.getFilterList(msgWindow);
// create a new filter list and copy over the enabled filters to it.
// We do this instead of having the filter after the fact code ignore
// disabled filters because the Filter Dialog filter after the fact
// code would have to clone filters to allow disabled filters to run,
// and we don't support cloning filters currently.
let tempFilterList = MailServices.filters.getTempFilterList(preselectedFolder);
let numFilters = curFilterList.filterCount;
// make sure the temp filter list uses the same log stream
tempFilterList.logStream = curFilterList.logStream;
tempFilterList.loggingEnabled = curFilterList.loggingEnabled;
let newFilterIndex = 0;
for (let i = 0; i < numFilters; i++)
{
let curFilter = curFilterList.getFilterAt(i);
// only add enabled, UI visibile filters that are in the manual context
if (curFilter.enabled && !curFilter.temporary &&
(curFilter.filterType & Components.interfaces.nsMsgFilterType.Manual))
{
tempFilterList.insertFilterAt(newFilterIndex, curFilter);
newFilterIndex++;
}
}
MailServices.filters.applyFiltersToFolders(tempFilterList, selectedFolders, msgWindow);
}
function MsgApplyFiltersToSelection()
{
// bail if we're dealing with a dummy header
if (gMessageDisplay.isDummy)
return;
var selectedMessages = gFolderDisplay.selectedMessages;
if (selectedMessages.length) {
MailServices.filters.applyFilters(Components.interfaces.nsMsgFilterType.Manual,
toXPCOMArray(selectedMessages,
Components.interfaces.nsIMutableArray),
gFolderDisplay.displayedFolder,
msgWindow);
}
}
function ChangeMailLayout(newLayout)
{
Services.prefs.setIntPref("mail.pane_config.dynamic", newLayout);
}
function ChangeMailLayoutForCommand(aCommand)
{
ChangeMailLayout(kMailLayoutCommandMap[aCommand]);
}
function MsgViewAllHeaders()
{
const mode = Components.interfaces.nsMimeHeaderDisplayTypes.AllHeaders;
Services.prefs.setIntPref("mail.show_headers", mode); // 2
AdjustHeaderView(mode);
ReloadMessage();
}
function MsgViewNormalHeaders()
{
const mode = Components.interfaces.nsMimeHeaderDisplayTypes.NormalHeaders;
Services.prefs.setIntPref("mail.show_headers", mode); // 1
AdjustHeaderView(mode);
ReloadMessage();
}
function MsgBodyAllowHTML()
{
Services.prefs.setBoolPref("mailnews.display.prefer_plaintext", false);
Services.prefs.setIntPref("mailnews.display.html_as", 0);
Services.prefs.setIntPref("mailnews.display.disallow_mime_handlers", 0);
ReloadMessage();
}
function MsgBodySanitized()
{
Services.prefs.setBoolPref("mailnews.display.prefer_plaintext", false);
Services.prefs.setIntPref("mailnews.display.html_as", 3);
Services.prefs.setIntPref("mailnews.display.disallow_mime_handlers",
gDisallow_classes_no_html);
ReloadMessage();
}
function MsgBodyAsPlaintext()
{
Services.prefs.setBoolPref("mailnews.display.prefer_plaintext", true);
Services.prefs.setIntPref("mailnews.display.html_as", 1);
Services.prefs.setIntPref("mailnews.display.disallow_mime_handlers",
gDisallow_classes_no_html);
ReloadMessage();
}
function MsgBodyAllParts()
{
Services.prefs.setBoolPref("mailnews.display.prefer_plaintext", false);
Services.prefs.setIntPref("mailnews.display.html_as", 4);
Services.prefs.setIntPref("mailnews.display.disallow_mime_handlers", 0);
ReloadMessage();
}
function MsgFeedBodyRenderPrefs(plaintext, html, mime)
{
// Separate render prefs not implemented for feeds, bug 458606.
// Services.prefs.setBoolPref("rss.display.prefer_plaintext", plaintext);
// Services.prefs.setIntPref("rss.display.html_as", html);
// Services.prefs.setIntPref("rss.display.disallow_mime_handlers", mime);
Services.prefs.setBoolPref("mailnews.display.prefer_plaintext", plaintext);
Services.prefs.setIntPref("mailnews.display.html_as", html);
Services.prefs.setIntPref("mailnews.display.disallow_mime_handlers", mime);
// Reload only if showing rss summary; menuitem hidden if web page..
ReloadMessage();
}
function ToggleInlineAttachment(target)
{
var viewAttachmentInline = !Services.prefs.getBoolPref("mail.inline_attachments");
Services.prefs.setBoolPref("mail.inline_attachments", viewAttachmentInline)
target.setAttribute("checked", viewAttachmentInline ? "true" : "false");
ReloadMessage();
}
function PrintEnginePrintInternal(doPrintPreview, msgType)
{
var messageList = gFolderDisplay.selectedMessageUris;
if (!messageList) {
dump("PrintEnginePrintInternal(): No messages selected.\n");
return;
}
window.openDialog("chrome://messenger/content/msgPrintEngine.xul", "",
"chrome,dialog=no,all,centerscreen",
messageList.length, messageList, statusFeedback,
doPrintPreview, msgType);
}
function PrintEnginePrint()
{
return PrintEnginePrintInternal(false,
Components.interfaces.nsIMsgPrintEngine.MNAB_PRINT_MSG);
}
function PrintEnginePrintPreview()
{
return PrintEnginePrintInternal(true,
Components.interfaces.nsIMsgPrintEngine.MNAB_PRINTPREVIEW_MSG);
}
function IsMailFolderSelected()
{
var selectedFolders = GetSelectedMsgFolders();
var folder = selectedFolders.length ? selectedFolders[0] : null;
return folder && folder.server.type != "nntp";
}
function IsGetNewMessagesEnabled()
{
let allServers = accountManager.allServers;
for (let i = 0; i < allServers.length; ++i) {
let server = allServers.queryElementAt(i, Components.interfaces.nsIMsgIncomingServer);
if (server.type == "none")
continue;
return true;
}
return false;
}
function IsGetNextNMessagesEnabled()
{
var selectedFolders = GetSelectedMsgFolders();
var folder = selectedFolders.length ? selectedFolders[0] : null;
var menuItem = document.getElementById("menu_getnextnmsg");
if (folder && !folder.isServer &&
folder.server instanceof Components.interfaces.nsINntpIncomingServer) {
menuItem.label = PluralForm.get(folder.server.maxArticles,
document.getElementById("bundle_messenger")
.getString("getNextNewsMessages"))
.replace("#1", folder.server.maxArticles);
menuItem.removeAttribute("hidden");
return true;
}
menuItem.setAttribute("hidden","true");
return false;
}
function MsgSynchronizeOffline()
{
window.openDialog("chrome://messenger/content/msgSynchronize.xul", "",
"centerscreen,chrome,modal,titlebar,resizable=yes",
{msgWindow:msgWindow});
}
function SpaceHit(event)
{
// If focus is in chrome, we want to scroll the content window, unless
// the focus is on an important chrome button like the otherActionsButton
// popup; if focus is on a non-link content element like a button, bail so we
// don't scroll when the element is going to do something else.
var contentWindow = document.commandDispatcher.focusedWindow;
let focusedElement = document.commandDispatcher.focusedElement;
if (!gMessageDisplay.singleMessageDisplay) {
contentWindow = document.getElementById("multimessage").contentWindow;
} else if (contentWindow.top == window) {
// These elements should always take priority over scrolling.
const importantElements = ["otherActionsButton", "attachmentToggle"];
contentWindow = window.content;
if (focusedElement && importantElements.includes(focusedElement.id))
return;
}
else if (focusedElement && !hRefForClickEvent(event))
return;
if (!contentWindow)
return;
var rssiframe = contentWindow.document.getElementById('_mailrssiframe');
// If we are displaying an RSS article, we really want to scroll
// the nested iframe.
if (contentWindow == window.content && rssiframe)
contentWindow = rssiframe.contentWindow;
if (event && event.shiftKey) {
// if at the start of the message, go to the previous one
if (contentWindow.scrollY > 0)
contentWindow.scrollByPages(-1);
else if (Services.prefs.getBoolPref("mail.advance_on_spacebar"))
goDoCommand("cmd_previousUnreadMsg");
}
else {
// if at the end of the message, go to the next one
if (contentWindow.scrollY < contentWindow.scrollMaxY)
contentWindow.scrollByPages(1);
else if (Services.prefs.getBoolPref("mail.advance_on_spacebar"))
goDoCommand("cmd_nextUnreadMsg");
}
}
function IsAccountOfflineEnabled()
{
var selectedFolders = GetSelectedMsgFolders();
if (selectedFolders && (selectedFolders.length == 1))
return selectedFolders[0].supportsOffline;
return false;
}
function GetDefaultAccountRootFolder()
{
try {
var account = accountManager.defaultAccount;
var defaultServer = account.incomingServer;
var defaultFolder = defaultServer.rootMsgFolder;
return defaultFolder;
}
catch (ex) {
}
return null;
}
/**
* Check for new messages for all selected folders, or for the default account
* in case no folders are selected.
*/
function GetFolderMessages()
{
var selectedFolders = GetSelectedMsgFolders();
var defaultAccountRootFolder = GetDefaultAccountRootFolder();
// if no default account, get msg isn't going do anything anyways
// so bail out
if (!defaultAccountRootFolder)
return;
// if nothing selected, use the default
var folders = (selectedFolders.length) ? selectedFolders : [defaultAccountRootFolder];
for (var i = 0; i < folders.length; i++) {
var serverType = folders[i].server.type;
if (folders[i].isServer && (serverType == "nntp")) {
// If we're doing "get msgs" on a news server,
// update unread counts on this server.
folders[i].server.performExpand(msgWindow);
}
else if (serverType == "none") {
// If "Local Folders" is selected and the user does "Get Msgs" and
// LocalFolders is not deferred to, get new mail for the default account
//
// XXX TODO
// Should shift click get mail for all (authenticated) accounts?
// see bug #125885.
if (!folders[i].server.isDeferredTo)
GetNewMsgs(defaultAccountRootFolder.server, defaultAccountRootFolder);
else
GetNewMsgs(folders[i].server, folders[i]);
}
else {
GetNewMsgs(folders[i].server, folders[i]);
}
}
}
/**
* Gets new messages for the given server, for the given folder.
* @param server which nsIMsgIncomingServer to check for new messages
* @param folder which nsIMsgFolder folder to check for new messages
*/
function GetNewMsgs(server, folder)
{
// Note that for Global Inbox folder.server != server when we want to get
// messages for a specific account.
const nsIMsgFolder = Components.interfaces.nsIMsgFolder;
// Whenever we do get new messages, clear the old new messages.
folder.biffState = nsIMsgFolder.nsMsgBiffState_NoMail;
folder.clearNewMessages();
server.getNewMessages(folder, msgWindow, null);
}
function SendUnsentMessages()
{
let msgSendlater = Components.classes["@mozilla.org/messengercompose/sendlater;1"]
.getService(Components.interfaces.nsIMsgSendLater);
let allIdentities = MailServices.accounts.allIdentities;
let identitiesCount = allIdentities.length;
for (let i = 0; i < identitiesCount; i++) {
let currentIdentity = allIdentities.queryElementAt(i, Components.interfaces.nsIMsgIdentity);
let msgFolder = msgSendlater.getUnsentMessagesFolder(currentIdentity);
if (msgFolder) {
let numMessages = msgFolder.getTotalMessages(false /* include subfolders */);
if (numMessages > 0) {
msgSendlater.sendUnsentMessages(currentIdentity);
// Right now, all identities point to the same unsent messages
// folder, so to avoid sending multiple copies of the
// unsent messages, we only call messenger.SendUnsentMessages() once.
// See bug #89150 for details.
break;
}
}
}
}
function CoalesceGetMsgsForPop3ServersByDestFolder(currentServer,
pop3DownloadServersArray,
localFoldersToDownloadTo)
{
var outNumFolders = new Object();
const kInboxFlag = Components.interfaces.nsMsgFolderFlags.Inbox;
var inboxFolder = currentServer.rootMsgFolder.getFolderWithFlags(kInboxFlag);
// coalesce the servers that download into the same folder...
var index = localFoldersToDownloadTo.indexOf(inboxFolder);
if (index == -1)
{
if (inboxFolder)
{
inboxFolder.biffState = Components.interfaces.nsIMsgFolder.nsMsgBiffState_NoMail;
inboxFolder.clearNewMessages();
}
localFoldersToDownloadTo.push(inboxFolder);
index = pop3DownloadServersArray.length;
pop3DownloadServersArray.push([]);
}
pop3DownloadServersArray[index].push(currentServer);
}
function GetMessagesForAllAuthenticatedAccounts()
{
// now log into any server
try
{
var allServers = accountManager.allServers;
// array of isupportsarrays of servers for a particular folder
var pop3DownloadServersArray = [];
// parallel array of folders to download to...
var localFoldersToDownloadTo = [];
var pop3Server;
for (var i = 0; i < allServers.length; ++i)
{
var currentServer = allServers.queryElementAt(i, Components.interfaces.nsIMsgIncomingServer);
if (currentServer.protocolInfo.canGetMessages &&
!currentServer.passwordPromptRequired)
{
if (currentServer.type == "pop3")
{
CoalesceGetMsgsForPop3ServersByDestFolder(currentServer,
pop3DownloadServersArray, localFoldersToDownloadTo);
pop3Server = currentServer.QueryInterface(Components.interfaces.nsIPop3IncomingServer);
}
else
// get new messages on the server for imap or rss
GetMessagesForInboxOnServer(currentServer);
}
}
for (var i = 0; i < pop3DownloadServersArray.length; ++i)
{
// any ol' pop3Server will do - the serversArray specifies which servers to download from
pop3Server.downloadMailFromServers(pop3DownloadServersArray[i],
pop3DownloadServersArray[i].length,
msgWindow,
localFoldersToDownloadTo[i],
null);
}
}
catch(ex)
{
dump(ex + "\n");
}
}
function CommandUpdate_UndoRedo()
{
EnableMenuItem("menu_undo", SetupUndoRedoCommand("cmd_undo"));
EnableMenuItem("menu_redo", SetupUndoRedoCommand("cmd_redo"));
}
function SetupUndoRedoCommand(command)
{
// If we have selected a server, and are viewing account central
// there is no loaded folder.
var loadedFolder = gFolderDisplay.displayedFolder;
if (!loadedFolder || !loadedFolder.server.canUndoDeleteOnServer)
return false;
var canUndoOrRedo;
var txnType;
if (command == "cmd_undo")
{
canUndoOrRedo = messenger.canUndo();
txnType = messenger.getUndoTransactionType();
}
else
{
canUndoOrRedo = messenger.canRedo();
txnType = messenger.getRedoTransactionType();
}
if (canUndoOrRedo)
{
var commands =
['valueDefault', 'valueDeleteMsg', 'valueMoveMsg', 'valueCopyMsg', 'valueUnmarkAllMsgs'];
goSetMenuValue(command, commands[txnType]);
}
else
{
goSetMenuValue(command, 'valueDefault');
}
return canUndoOrRedo;
}
/**
* Triggered by the global JunkStatusChanged notification, we handle updating
* the message display if our displayed message might have had its junk status
* change. This primarily entails updating the notification bar (that thing
* that appears above the message and says "this message might be junk") and
* (potentially) reloading the message because junk status affects the form of
* HTML display used (sanitized vs not).
* When our tab implementation is no longer multiplexed (reusing the same
* display widget), this must be moved into the MessageDisplayWidget or
* otherwise be scoped to the tab.
*/
function HandleJunkStatusChanged(folder)
{
// We have nothing to do (and should bail) if:
// - There is no currently displayed message.
// - The displayed message is an .eml file from disk or an attachment.
// - The folder that has had a junk change is not backing the display folder.
// This might be the stand alone window, open to a message that was
// and attachment (or on disk), in which case, we want to ignore it.
if (!gMessageDisplay.displayedMessage ||
gMessageDisplay.isDummy ||
gFolderDisplay.displayedFolder != folder)
return;
// If multiple message are selected and we change the junk status
// we don't want to show the junk bar (since the message pane is blank).
let msgHdr = gFolderDisplay.selectedCount == 1 ?
gMessageDisplay.displayedMessage : null;
let junkBarWasDisplayed = gMessageNotificationBar.isShowingJunkNotification();
gMessageNotificationBar.setJunkMsg(msgHdr);
// Only reload message if junk bar display state has changed.
if (msgHdr && junkBarWasDisplayed != gMessageNotificationBar.isShowingJunkNotification())
{
// We may be forcing junk mail to be rendered with sanitized html.
// In that scenario, we want to reload the message if the status has just
// changed to not junk.
var sanitizeJunkMail = Services.prefs.getBoolPref("mail.spam.display.sanitize");
// Only bother doing this if we are modifying the html for junk mail....
if (sanitizeJunkMail)
{
let junkScore = msgHdr.getStringProperty("junkscore");
let isJunk = (junkScore == Components.interfaces.nsIJunkMailPlugin.IS_SPAM_SCORE);
// If the current row isn't going to change, reload to show sanitized or
// unsanitized. Otherwise we wouldn't see the reloaded version anyway.
// 1) When marking as non-junk from the Junk folder, the msg would move
// back to the Inbox -> no reload needed
// When marking as non-junk from a folder other than the Junk folder,
// the message isn't moved back to Inbox -> reload needed
// (see nsMsgDBView::DetermineActionsForJunkChange)
// 2) When marking as junk, the msg will move or delete, if manualMark is set.
// 3) Marking as junk in the junk folder just changes the junk status.
const nsMsgFolderFlags = Components.interfaces.nsMsgFolderFlags;
if ((!isJunk && !folder.isSpecialFolder(nsMsgFolderFlags.Junk)) ||
(isJunk && !folder.server.spamSettings.manualMark) ||
(isJunk && folder.isSpecialFolder(nsMsgFolderFlags.Junk)))
ReloadMessage();
}
}
}
/**
* Object to handle message related notifications that are showing in a
* notificationbox above the message content.
*/
var gMessageNotificationBar =
{
get stringBundle() {
delete this.stringBundle;
return this.stringBundle = document.getElementById("bundle_messenger");
},
get brandBundle() {
delete this.brandBundle;
return this.brandBundle = document.getElementById("brand_bundle");
},
get msgNotificationBar() {
delete this.msgNotificationBar;
return this.msgNotificationBar = document.getElementById("msgNotificationBar");
},
setJunkMsg: function(aMsgHdr)
{
goUpdateCommand("button_junk");
let brandName = this.brandBundle.getString("brandShortName");
let junkBarMsg = this.stringBundle.getFormattedString("junkBarMessage",
[brandName]);
let junkScore = aMsgHdr ? aMsgHdr.getStringProperty("junkscore") : "";
if ((junkScore == "") ||
(junkScore == Components.interfaces.nsIJunkMailPlugin.IS_HAM_SCORE)) {
// not junk -> just close the notificaion then, if one was showing
let item = this.msgNotificationBar.getNotificationWithValue("junkContent");
if (item)
this.msgNotificationBar.removeNotification(item, true);
return;
}
let buttons = [{
label: this.stringBundle.getString("junkBarInfoButton"),
accessKey: this.stringBundle.getString("junkBarInfoButtonKey"),
popup: null,
callback: function(aNotification, aButton) {
MsgJunkMailInfo(false);
return true; // keep notification open
}
},
{
label: this.stringBundle.getString("junkBarButton"),
accessKey: this.stringBundle.getString("junkBarButtonKey"),
popup: null,
callback: function(aNotification, aButton) {
JunkSelectedMessages(false);
// Return true (=don't close) since changing junk status will fire a
// JunkStatusChanged notification which will make the junk bar go away
// for this message -> no notifcation to close anymore -> trying to
// close would just fail.
return true;
}
}];
if (!this.isShowingJunkNotification()) {
this.msgNotificationBar.appendNotification(junkBarMsg, "junkContent",
"chrome://messenger/skin/icons/junk.png",
this.msgNotificationBar.PRIORITY_WARNING_HIGH,
buttons);
}
},
isShowingJunkNotification: function() {
return !!this.msgNotificationBar.getNotificationWithValue("junkContent");
},
setRemoteContentMsg: function(aMsgHdr, aContentURI)
{
// update the allow remote content for sender string
let emailAddress = MailServices.headerParser.extractHeaderAddressMailboxes(aMsgHdr.author);
var desc = document.getElementById("bundle_messenger")
.getFormattedString("alwaysLoadRemoteContentForSender2",
[emailAddress ? emailAddress : aMsgHdr.author]);
let displayName = MailServices.headerParser.extractHeaderAddressName(aMsgHdr.author);
let brandName = this.brandBundle.getString("brandShortName");
let remoteContentMsg = this.stringBundle.getFormattedString("remoteContentBarMessage",
[brandName]);
let buttonLabel = this.stringBundle.getString(Application.platformIsWindows ?
"remoteContentPrefLabel" : "remoteContentPrefLabelUnix");
let buttonAccesskey = this.stringBundle.getString(Application.platformIsWindows ?
"remoteContentPrefAccesskey" : "remoteContentPrefAccesskeyUnix");
let buttons = [{
label: buttonLabel,
accessKey: buttonAccesskey,
popup: "remoteContentOptions",
callback: function() { }
}];
if (!this.isShowingRemoteContentNotification()) {
this.msgNotificationBar.appendNotification(remoteContentMsg, "remoteContent",
"chrome://messenger/skin/icons/remote-blocked.png",
this.msgNotificationBar.PRIORITY_WARNING_MEDIUM,
buttons);
}
// The popup value is a space separated list of all the blocked origins.
let popup = document.getElementById("remoteContentOptions");
let principal = Services.scriptSecurityManager
.createCodebasePrincipal(aContentURI, {});
let origins = popup.value ? popup.value.split(" ") : [];
if (!origins.includes(principal.origin))
origins.push(principal.origin);
popup.value = origins.join(" ");
},
isShowingRemoteContentNotification: function() {
return !!this.msgNotificationBar.getNotificationWithValue("remoteContent");
},
setPhishingMsg: function()
{
let phishingMsgNote = this.stringBundle.getString("phishingBarMessage");
let buttonLabel = this.stringBundle.getString(Application.platformIsWindows ?
"phishingBarPrefLabel" : "phishingBarPrefLabelUnix");
let buttonAccesskey = this.stringBundle.getString(Application.platformIsWindows ?
"phishingBarPrefAccesskey" : "phishingBarPrefAccesskeyUnix");
let buttons = [
{
label: buttonLabel,
accessKey: buttonAccesskey,
popup: "phishingOptions",
callback: function(aNotification, aButton) { }
}];
if (!this.isShowingPhishingNotification()) {
this.msgNotificationBar.appendNotification(phishingMsgNote, "maybeScam",
"chrome://messenger/skin/icons/phishing.png",
this.msgNotificationBar.PRIORITY_CRITICAL_MEDIUM,
buttons);
}
},
isShowingPhishingNotification: function() {
return !!this.msgNotificationBar.getNotificationWithValue("maybeScam");
},
setMDNMsg: function(aMdnGenerator, aMsgHeader, aMimeHdr)
{
this.mdnGenerator = aMdnGenerator;
// Return receipts can be RFC 3798 or not.
let mdnHdr = aMimeHdr.extractHeader("Disposition-Notification-To", false) ||
aMimeHdr.extractHeader("Return-Receipt-To", false); // not
let fromHdr = aMimeHdr.extractHeader("From", false);
let mdnAddr = MailServices.headerParser.extractHeaderAddressMailboxes(mdnHdr);
let fromAddr = MailServices.headerParser.extractHeaderAddressMailboxes(fromHdr);
let authorName = MailServices.headerParser.extractHeaderAddressName(
aMsgHeader.mime2DecodedAuthor) || aMsgHeader.author;
// If the return receipt doesn't go to the sender address, note that in the
// notification.
let mdnBarMsg = (mdnAddr != fromAddr) ?
this.stringBundle.getFormattedString("mdnBarMessageAddressDiffers",
[authorName, mdnAddr]) :
this.stringBundle.getFormattedString("mdnBarMessageNormal", [authorName]);
let buttons = [{
label: this.stringBundle.getString("mdnBarSendReqButton"),
accessKey: this.stringBundle.getString("mdnBarSendReqButtonKey"),
popup: null,
callback: function(aNotification, aButton) {
SendMDNResponse();
return false; // close notification
}
},
{
label: this.stringBundle.getString("mdnBarIgnoreButton"),
accessKey: this.stringBundle.getString("mdnBarIgnoreButtonKey"),
popup: null,
callback: function(aNotification, aButton) {
IgnoreMDNResponse();
return false; // close notification
}
}];
this.msgNotificationBar.appendNotification(mdnBarMsg, "mdnRequested",
null, this.msgNotificationBar.PRIORITY_INFO_MEDIUM, buttons);
},
setDraftEditMessage: function() {
let msgHdr = gFolderDisplay.selectedMessage;
if (!msgHdr || !msgHdr.folder)
return;
const nsMsgFolderFlags = Components.interfaces.nsMsgFolderFlags;
if (msgHdr.folder.isSpecialFolder(nsMsgFolderFlags.Drafts, true))
{
let draftMsgNote = this.stringBundle.getString("draftMessageMsg");
let buttons = [{
label: this.stringBundle.getString("draftMessageButton"),
accessKey: this.stringBundle.getString("draftMessageButtonKey"),
popup: null,
callback: function(aNotification, aButton) {
MsgComposeDraftMessage();
return true; // keep notification open
}
}];
this.msgNotificationBar.appendNotification(draftMsgNote, "draftMsgContent",
null, this.msgNotificationBar.PRIORITY_INFO_HIGH, buttons);
}
},
clearMsgNotifications: function()
{
this.msgNotificationBar.removeAllNotifications(true);
}
};
/**
* LoadMsgWithRemoteContent
* Reload the current message, allowing remote content
*/
function LoadMsgWithRemoteContent()
{
// we want to get the msg hdr for the currently selected message
// change the "remoteContentBar" property on it
// then reload the message
setMsgHdrPropertyAndReload("remoteContentPolicy", kAllowRemoteContent);
window.content.focus();
}
/**
* Populate the remote content options for the current message.
*/
function onRemoteContentOptionsShowing(aEvent) {
let origins = aEvent.target.value ? aEvent.target.value.split(" ") : [];
let addresses = {};
MailServices.headerParser.parseHeadersWithArray(
gMessageDisplay.displayedMessage.author, addresses, {}, {});
let adrCount = addresses.value[0] ? 1 : 0;
// If there is an author's email, put it also in the menu.
if (adrCount > 0) {
let authorEmailAddress = addresses.value[0];
let authorEmailAddressURI = Services.io.newURI(
"chrome://messenger/content/?email=" + authorEmailAddress, null, null);
let mailPrincipal = Services.scriptSecurityManager
.createCodebasePrincipal(authorEmailAddressURI, {});
origins.push(mailPrincipal.origin);
}
let messengerBundle = document.getElementById("bundle_messenger");
// Out with the old...
let childNodes = aEvent.target.childNodes;
for (let i = childNodes.length - 1; i >= 0; i--) {
if (childNodes[i].getAttribute("class") == "allow-remote-uri")
childNodes[i].remove();
}
let urlSepar = document.getElementById("remoteContentAllMenuSeparator");
// ... and in with the new.
for (let origin of origins) {
let menuitem = document.createElement("menuitem");
menuitem.setAttribute("label",
messengerBundle.getFormattedString("remoteAllowResource",
[origin.replace("chrome://messenger/content/?email=", "")]));
menuitem.setAttribute("value", origin);
menuitem.setAttribute("class", "allow-remote-uri");
menuitem.setAttribute("oncommand", "allowRemoteContentForURI(this.value);");
if (origin.startsWith("chrome://messenger/content/?email="))
aEvent.target.appendChild(menuitem);
else
aEvent.target.insertBefore(menuitem, urlSepar);
}
let URLcount = origins.length - adrCount;
let allowAllItem = document.getElementById("remoteContentOptionAllowAll");
let allURLLabel = messengerBundle.getString("remoteAllowAll");
allowAllItem.label = PluralForm.get(URLcount, allURLLabel).replace("#1", URLcount);
allowAllItem.collapsed = (URLcount < 2);
document.getElementById("remoteContentOriginsMenuSeparator").collapsed =
urlSepar.collapsed = allowAllItem.collapsed && (adrCount == 0);
}
/**
* Add privileges to display remote content for the given uri.
*
* @param aUriSpec |String| uri for the site to add permissions for.
* @param aReload Reload the message display after allowing the URI.
*/
function allowRemoteContentForURI(aUriSpec, aReload = true) {
let uri = Services.io.newURI(aUriSpec, null, null);
Services.perms.add(uri, "image", Services.perms.ALLOW_ACTION);
if (aReload)
ReloadMessage();
}
/**
* Add privileges to display remote content for the given uri.
*
* @param aListNode The menulist element containing the URIs to allow.
*/
function allowRemoteContentForAll(aListNode) {
let uriNodes = aListNode.querySelectorAll(".allow-remote-uri");
for (let uriNode of uriNodes) {
if (!uriNode.value.startsWith("chrome://messenger/content/?email="))
allowRemoteContentForURI(uriNode.value, false);
}
ReloadMessage();
}
/**
* Displays fine-grained, per-site preferences for remote content.
*/
function editRemoteContentSettings() {
openOptionsDialog("panePrivacy");
if(!Services.prefs.getBoolPref("browser.preferences.instantApply"))
ReloadMessage();
}
/**
* Set the msg hdr flag to ignore the phishing warning and reload the message.
*/
function IgnorePhishingWarning()
{
// This property should really be called skipPhishingWarning or something
// like that, but it's too late to change that now.
// This property is used to supress the phishing bar for the message.
setMsgHdrPropertyAndReload("notAPhishMessage", 1);
}
/**
* Open the preferences dialog to allow disabling the scam feature.
* The dialog window will take care of reloading the message when
* invoked in instantApply mode.
*/
function OpenPhishingSettings()
{
openOptionsDialog("paneSecurity", "phishingTab");
if(!Services.prefs.getBoolPref("browser.preferences.instantApply"))
ReloadMessage();
}
function setMsgHdrPropertyAndReload(aProperty, aValue)
{
// we want to get the msg hdr for the currently selected message
// change the appropiate property on it then reload the message
var msgHdr = gMessageDisplay.displayedMessage;
if (msgHdr)
{
msgHdr.setUint32Property(aProperty, aValue);
ReloadMessage();
}
}
/**
* Mark a specified message as read.
* @param msgHdr header (nsIMsgDBHdr) of the message to mark as read
*/
function MarkMessageAsRead(msgHdr)
{
ClearPendingReadTimer();
var headers = Components.classes["@mozilla.org/array;1"]
.createInstance(Components.interfaces.nsIMutableArray);
headers.appendElement(msgHdr, false);
msgHdr.folder.markMessagesRead(headers, true);
}
function ClearPendingReadTimer()
{
if (gMarkViewedMessageAsReadTimer)
{
clearTimeout(gMarkViewedMessageAsReadTimer);
gMarkViewedMessageAsReadTimer = null;
}
}
// this is called when layout is actually finished rendering a
// mail message. OnMsgLoaded is called when libmime is done parsing the message
function OnMsgParsed(aUrl)
{
// browser doesn't do this, but I thought it could be a useful thing to test out...
// If the find bar is visible and we just loaded a new message, re-run
// the find command. This means the new message will get highlighted and
// we'll scroll to the first word in the message that matches the find text.
var findBar = document.getElementById("FindToolbar");
if (!findBar.hidden)
findBar.onFindAgainCommand(false);
// Run the phishing detector on the message if it hasn't been marked as not
// a scam already.
var msgHdr = gMessageDisplay.displayedMessage;
if (msgHdr && !msgHdr.getUint32Property("notAPhishMessage"))
gPhishingDetector.analyzeMsgForPhishingURLs(aUrl);
// Notify anyone (e.g., extensions) who's interested in when a message is loaded.
let selectedMessageUris = gFolderDisplay.selectedMessageUris;
let msgURI = selectedMessageUris ? selectedMessageUris[0] : null;
Services.obs.notifyObservers(msgWindow.msgHeaderSink, "MsgMsgDisplayed", msgURI);
// Scale any overflowing images, exclude http content.
let browser = getMessagePaneBrowser();
let doc = browser && browser.contentDocument ? browser.contentDocument : null;
let imgs = doc && !doc.URL.startsWith("http") ? doc.images : [];
for (let img of imgs)
{
if (img.clientWidth - doc.body.offsetWidth >= 0 &&
(img.clientWidth <= img.naturalWidth || !img.naturalWidth))
img.setAttribute("overflowing", "true");
// This is the default case for images when a message is loaded.
img.setAttribute("shrinktofit", "true");
}
}
function OnMsgLoaded(aUrl)
{
if (!aUrl || gMessageDisplay.isDummy)
return;
var msgHdr = gMessageDisplay.displayedMessage;
var wintype = document.documentElement.getAttribute('windowtype');
gMessageNotificationBar.setJunkMsg(msgHdr);
goUpdateCommand('button_delete');
var markReadAutoMode = Services.prefs.getBoolPref("mailnews.mark_message_read.auto");
// We just finished loading a message. If messages are to be marked as read
// automatically, set a timer to mark the message is read after n seconds
// where n can be configured by the user.
if (msgHdr && !msgHdr.isRead && markReadAutoMode)
{
let markReadOnADelay = Services.prefs.getBoolPref("mailnews.mark_message_read.delay");
// Only use the timer if viewing using the 3-pane preview pane and the
// user has set the pref.
if (markReadOnADelay && wintype == "mail:3pane") // 3-pane window
{
ClearPendingReadTimer();
let markReadDelayTime = Services.prefs.getIntPref("mailnews.mark_message_read.delay.interval");
if (markReadDelayTime == 0)
MarkMessageAsRead(msgHdr);
else
gMarkViewedMessageAsReadTimer = setTimeout(MarkMessageAsRead,
markReadDelayTime * 1000,
msgHdr);
}
else // standalone msg window
{
MarkMessageAsRead(msgHdr);
}
}
// See if MDN was requested but has not been sent.
HandleMDNResponse(aUrl);
// Reset the blocked hosts so we can populate it again for this message.
document.getElementById("remoteContentOptions").value = "";
}
/**
* This function handles all mdn response generation (ie, imap and pop).
* For pop the msg uid can be 0 (ie, 1st msg in a local folder) so no
* need to check uid here. No one seems to set mimeHeaders to null so
* no need to check it either.
*/
function HandleMDNResponse(aUrl)
{
if (!aUrl)
return;
var msgFolder = aUrl.folder;
var msgHdr = gFolderDisplay.selectedMessage;
if (!msgFolder || !msgHdr || gFolderDisplay.selectedMessageIsNews)
return;
// if the message is marked as junk, do NOT attempt to process a return receipt
// in order to better protect the user
if (SelectedMessagesAreJunk())
return;
var mimeHdr;
try {
mimeHdr = aUrl.mimeHeaders;
} catch (ex) {
return;
}
// If we didn't get the message id when we downloaded the message header,
// we cons up an md5: message id. If we've done that, we'll try to extract
// the message id out of the mime headers for the whole message.
var msgId = msgHdr.messageId;
if (msgId.startsWith("md5:"))
{
var mimeMsgId = mimeHdr.extractHeader("Message-Id", false);
if (mimeMsgId)
msgHdr.messageId = mimeMsgId;
}
// After a msg is downloaded it's already marked READ at this point so we must check if
// the msg has a "Disposition-Notification-To" header and no MDN report has been sent yet.
if (msgHdr.flags & Components.interfaces.nsMsgMessageFlags.MDNReportSent)
return;
var DNTHeader = mimeHdr.extractHeader("Disposition-Notification-To", false);
var oldDNTHeader = mimeHdr.extractHeader("Return-Receipt-To", false);
if (!DNTHeader && !oldDNTHeader)
return;
// Everything looks good so far, let's generate the MDN response.
var mdnGenerator = Components.classes["@mozilla.org/messenger-mdn/generator;1"]
.createInstance(Components.interfaces.nsIMsgMdnGenerator);
const MDN_DISPOSE_TYPE_DISPLAYED = 0;
let askUser = mdnGenerator.process(MDN_DISPOSE_TYPE_DISPLAYED, msgWindow, msgFolder,
msgHdr.messageKey, mimeHdr, false);
if (askUser)
gMessageNotificationBar.setMDNMsg(mdnGenerator, msgHdr, mimeHdr);
}
function SendMDNResponse()
{
gMessageNotificationBar.mdnGenerator.userAgreed();
}
function IgnoreMDNResponse()
{
gMessageNotificationBar.mdnGenerator.userDeclined();
}
function QuickSearchFocus()
{
let tabmail = document.getElementById('tabmail');
// If we're currently viewing a Gloda tab, drill down to find the
// built-in search input, and select that.
if (tabmail
&& tabmail.currentTabInfo.mode.name == "glodaFacet") {
let searchInput = tabmail.currentTabInfo
.panel
.querySelector(".remote-gloda-search");
if (searchInput)
searchInput.select();
return;
}
if (tabmail && tabmail.currentTabInfo.mode.name == "chat") {
let searchInput = document.getElementById("IMSearchInput");
if (searchInput)
searchInput.select();
return;
}
var quickSearchTextBox = document.getElementById('searchInput');
if (quickSearchTextBox)
quickSearchTextBox.select();
}
/**
* Opens a search window with the given folder, or the displayed one if none is
* chosen.
*
* @param [aFolder] the folder to open the search window for, if different from
* the displayed one
*/
function MsgSearchMessages(aFolder)
{
// We always open a new search dialog for each search command
window.openDialog("chrome://messenger/content/SearchDialog.xul", "_blank",
"chrome,resizable,status,centerscreen,dialog=no",
{ folder: aFolder || gFolderDisplay.displayedFolder });
}
function MsgJunkMailInfo(aCheckFirstUse)
{
if (aCheckFirstUse) {
if (!Services.prefs.getBoolPref("mailnews.ui.junk.firstuse"))
return;
Services.prefs.setBoolPref("mailnews.ui.junk.firstuse", false);
// check to see if this is an existing profile where the user has started using
// the junk mail feature already
if (MailServices.junk.userHasClassified)
return;
}
var desiredWindow = Services.wm.getMostRecentWindow("mailnews:junkmailinfo");
if (desiredWindow)
desiredWindow.focus();
else
window.openDialog("chrome://messenger/content/junkMailInfo.xul",
"mailnews:junkmailinfo",
"centerscreen,resizeable=no,titlebar,chrome,modal", null);
}
function MsgSearchAddresses()
{
var args = { directory: null };
OpenOrFocusWindow(args, "mailnews:absearch", "chrome://messenger/content/ABSearchDialog.xul");
}
function MsgFilterList(args)
{
OpenOrFocusWindow(args, "mailnews:filterlist", "chrome://messenger/content/FilterListDialog.xul");
}
function OpenOrFocusWindow(args, windowType, chromeURL)
{
var desiredWindow = Services.wm.getMostRecentWindow(windowType);
if (desiredWindow) {
desiredWindow.focus();
if ("refresh" in args && args.refresh)
desiredWindow.refresh(args);
}
else
window.openDialog(chromeURL, "", "chrome,resizable,status,centerscreen,dialog=no", args);
}
function initAppMenuPopup(aMenuPopup, aEvent)
{
file_init();
view_init();
InitGoMessagesMenu();
menu_new_init();
CommandUpdate_UndoRedo();
InitAppFolderViewsMenu();
document.commandDispatcher.updateCommands('create-menu-tasks');
// If the onpopupshowing event's target is on one of the splitmenu
// menuitem popups, stash that popup in aMenuPopup (the menupopup one
// level up) so that splitmenu knows which popup to close when it opens
// up it's popupmenu.
if (aEvent.target.parentNode.parentNode.parentNode.parentNode == aMenuPopup)
aMenuPopup._currentPopup = aEvent.target;
}
|