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
|
;;; imap.el --- imap library -*- lexical-binding:t -*-
;; Copyright (C) 1998-2025 Free Software Foundation, Inc.
;; Author: Simon Josefsson <simon@josefsson.org>
;; Keywords: mail
;; This file is part of GNU Emacs.
;; GNU Emacs is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; GNU Emacs is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;; imap.el is an elisp library providing an interface for talking to
;; IMAP servers.
;;
;; imap.el is roughly divided in two parts, one that parses IMAP
;; responses from the server and storing data into buffer-local
;; variables, and one for utility functions which send commands to
;; server, waits for an answer, and return information. The latter
;; part is layered on top of the previous.
;;
;; The imap.el API consist of the following functions, other functions
;; in this file should not be called directly and the result of doing
;; so are at best undefined.
;;
;; Global commands:
;;
;; imap-open, imap-opened, imap-authenticate, imap-close,
;; imap-capability, imap-namespace, imap-error-text
;;
;; Mailbox commands:
;;
;; imap-mailbox-get, imap-mailbox-map, imap-current-mailbox,
;; imap-current-mailbox-p, imap-search, imap-mailbox-select,
;; imap-mailbox-examine, imap-mailbox-unselect, imap-mailbox-expunge
;; imap-mailbox-close, imap-mailbox-create, imap-mailbox-delete
;; imap-mailbox-rename, imap-mailbox-lsub, imap-mailbox-list
;; imap-mailbox-subscribe, imap-mailbox-unsubscribe, imap-mailbox-status
;; imap-mailbox-acl-get, imap-mailbox-acl-set, imap-mailbox-acl-delete
;;
;; Message commands:
;;
;; imap-fetch-asynch, imap-fetch,
;; imap-current-message, imap-list-to-message-set,
;; imap-message-get, imap-message-map
;; imap-message-envelope-date, imap-message-envelope-subject,
;; imap-message-envelope-from, imap-message-envelope-sender,
;; imap-message-envelope-reply-to, imap-message-envelope-to,
;; imap-message-envelope-cc, imap-message-envelope-bcc
;; imap-message-envelope-in-reply-to, imap-message-envelope-message-id
;; imap-message-body, imap-message-flag-permanent-p
;; imap-message-flags-set, imap-message-flags-del
;; imap-message-flags-add, imap-message-copyuid
;; imap-message-copy, imap-message-appenduid
;; imap-message-append, imap-envelope-from
;; imap-body-lines
;;
;; It is my hope that these commands should be pretty self
;; explanatory for someone who knows IMAP. All functions have
;; additional documentation on how to invoke them.
;;
;; imap.el supports RFC1730/2060/RFC3501 (IMAP4/IMAP4rev1). The implemented
;; IMAP extensions are RFC2195 (CRAM-MD5), RFC2086 (ACL), RFC2342
;; (NAMESPACE), RFC2359 (UIDPLUS), the IMAP-part of RFC2595 (STARTTLS,
;; LOGINDISABLED), and the GSSAPI / Kerberos V4 sections of RFC1731
;; (with use of external program `imtest'), and RFC2971 (ID). It also
;; takes advantage of the UNSELECT extension in Cyrus IMAPD.
;;
;; Without the work of John McClary Prevost and Jim Radford this library
;; would not have seen the light of day. Many thanks.
;;
;; This is a transcript of a short interactive session for demonstration
;; purposes.
;;
;; (imap-open "my.mail.server")
;; => " *imap* my.mail.server:0"
;;
;; The rest are invoked with current buffer as the buffer returned by
;; `imap-open'. It is possible to do it all without this, but it would
;; look ugly here since `buffer' is always the last argument for all
;; imap.el API functions.
;;
;; (imap-authenticate "myusername" "mypassword")
;; => auth
;;
;; (imap-mailbox-lsub "*")
;; => ("INBOX.sentmail" "INBOX.private" "INBOX.draft" "INBOX.spam")
;;
;; (imap-mailbox-list "INBOX.n%")
;; => ("INBOX.namedroppers" "INBOX.nnimap" "INBOX.ntbugtraq")
;;
;; (imap-mailbox-select "INBOX.nnimap")
;; => "INBOX.nnimap"
;;
;; (imap-mailbox-get 'exists)
;; => 166
;;
;; (imap-mailbox-get 'uidvalidity)
;; => "908992622"
;;
;; (imap-search "FLAGGED SINCE 18-DEC-98")
;; => (235 236)
;;
;; (imap-fetch 235 "RFC822.PEEK" 'RFC822)
;; => "X-Sieve: cmu-sieve 1.3^M\nX-Username: <jas@pdc.kth.se>^M\r...."
;;
;; Todo:
;;
;; o Parse UIDs as strings? We need to overcome the 28 bit limit somehow.
;; Use IEEE floats (which are effectively exact)? -- fx
;; o Don't use `read' at all (important places already fixed)
;; o Accept list of articles instead of message set string in most
;; imap-message-* functions.
;; o Send strings as literal if they contain, e.g., ".
;;
;; Revision history:
;;
;; - 19991218 added starttls/digest-md5 patch,
;; by Daiki Ueno <ueno@ueda.info.waseda.ac.jp>
;; NB! you need SLIM for starttls.el and digest-md5.el
;; - 19991023 committed to pgnus
;;
;;; Code:
;;; Dependencies
(eval-when-compile (require 'cl-lib))
(require 'utf7)
(require 'rfc2104)
;; Hmm... digest-md5 is not part of Emacs.
;; FIXME: Should/can we use sasl-digest.el instead?
(declare-function digest-md5-parse-digest-challenge "ext:digest-md5")
(declare-function digest-md5-digest-response "ext:digest-md5")
(declare-function digest-md5-digest-uri "ext:digest-md5")
(declare-function digest-md5-challenge "ext:digest-md5")
;;; User variables
(defgroup imap nil
"Low-level IMAP issues."
:version "21.1"
:group 'mail)
(defcustom imap-kerberos4-program '("imtest -m kerberos_v4 -u %l -p %p %s"
"imtest -kp %s %p")
"List of strings containing commands for Kerberos 4 authentication.
%s is replaced with server hostname, %p with port to connect to, and
%l with the value of `imap-default-user'. The program should accept
IMAP commands on stdin and return responses to stdout. Each entry in
the list is tried until a successful connection is made."
:type '(repeat string))
(defcustom imap-gssapi-program (list
(concat "gsasl %s %p "
"--mechanism GSSAPI "
"--authentication-id %l")
"imtest -m gssapi -u %l -p %p %s")
"List of strings containing commands for GSSAPI (krb5) authentication.
%s is replaced with server hostname, %p with port to connect to, and
%l with the value of `imap-default-user'. The program should accept
IMAP commands on stdin and return responses to stdout. Each entry in
the list is tried until a successful connection is made."
:type '(repeat string))
(defcustom imap-shell-program '("ssh %s imapd"
"ssh %g ssh %s imapd")
"A list of strings, containing commands for IMAP connection.
Within a string, %s is replaced with the server address, %p with port
number on server, %g with `imap-shell-host', and %l with
`imap-default-user'. The program should read IMAP commands from stdin
and write IMAP response to stdout. Each entry in the list is tried
until a successful connection is made."
:type '(repeat string)
:version "29.1")
(defcustom imap-process-connection-type nil
"Value for `process-connection-type' to use for Kerberos4, GSSAPI, shell and SSL.
The `process-connection-type' variable controls the type of device
used to communicate with subprocesses. Values are nil to use a
pipe, or t or `pty' to use a pty. The value has no effect if the
system has no ptys or if all ptys are busy: then a pipe is used
in any case. The value takes effect when an IMAP server is
opened; changing it after that has no effect."
:version "22.1"
:type 'boolean)
(defcustom imap-use-utf7 t
"If non-nil, do utf7 encoding/decoding of mailbox names.
Since the UTF7 decoding currently only decodes into ISO-8859-1
characters, you may disable this decoding if you need to access UTF7
encoded mailboxes which doesn't translate into ISO-8859-1."
:type 'boolean)
(defcustom imap-log nil
"If non-nil, an imap session trace is placed in `imap-log-buffer'.
Note that username, passwords and other privacy sensitive
information (such as e-mail) may be stored in the buffer.
It is not written to disk, however. Do not enable this
variable unless you are comfortable with that.
See also `imap-debug'."
:type 'boolean)
(defcustom imap-debug nil
"If non-nil, trace imap- functions into `imap-debug-buffer'.
Uses `trace-function-background', so you can turn it off with,
say, `untrace-all'.
Note that username, passwords and other privacy sensitive
information (such as e-mail) may be stored in the buffer.
It is not written to disk, however. Do not enable this
variable unless you are comfortable with that.
This variable only takes effect when loading the `imap' library.
See also `imap-log'."
:type 'boolean)
(defcustom imap-shell-host "gateway"
"Hostname of SSH proxy."
:type 'string)
(defcustom imap-default-user (user-login-name)
"Default username to use."
:type 'string)
(defcustom imap-read-timeout (if (memq system-type '(windows-nt cygwin))
1.0
0.1)
"How long to wait between checking for the end of output.
Shorter values mean quicker response, but is more CPU intensive."
:type 'number)
(defcustom imap-store-password nil
"If non-nil, store session password without prompting."
:type 'boolean)
;;; Various variables
(defvar imap-fetch-data-hook nil
"Hooks called after receiving each FETCH response.")
(defvar imap-streams '(gssapi kerberos4 starttls tls ssl network shell)
"Priority of streams to consider when opening connection to server.")
(defvar imap-stream-alist
'((gssapi imap-gssapi-stream-p imap-gssapi-open)
(kerberos4 imap-kerberos4-stream-p imap-kerberos4-open)
(tls imap-tls-p imap-tls-open)
(ssl imap-tls-p imap-tls-open)
(network imap-network-p imap-network-open)
(shell imap-shell-p imap-shell-open)
(starttls imap-starttls-p imap-starttls-open))
"Definition of network streams.
\(NAME CHECK OPEN)
NAME names the stream, CHECK is a function returning non-nil if the
server support the stream and OPEN is a function for opening the
stream.")
(defvar imap-authenticators '(gssapi
kerberos4
digest-md5
cram-md5
;;sasl
login
anonymous)
"Priority of authenticators to consider when authenticating to server.")
(defvar imap-authenticator-alist
'((gssapi imap-gssapi-auth-p imap-gssapi-auth)
(kerberos4 imap-kerberos4-auth-p imap-kerberos4-auth)
(sasl imap-sasl-auth-p imap-sasl-auth)
(cram-md5 imap-cram-md5-p imap-cram-md5-auth)
(login imap-login-p imap-login-auth)
(anonymous imap-anonymous-p imap-anonymous-auth)
(digest-md5 imap-digest-md5-p imap-digest-md5-auth))
"Definition of authenticators.
\(NAME CHECK AUTHENTICATE)
NAME names the authenticator. CHECK is a function returning non-nil if
the server support the authenticator and AUTHENTICATE is a function
for doing the actual authentication.")
(defvar imap-error nil
"Error codes from the last command.")
(defvar imap-logout-timeout nil
"Close server immediately if it can't logout in this number of seconds.
If it is nil, never close server until logout completes. Normally,
the value of this variable will be bound to a certain value to which
an application program that uses this module specifies on a per-server
basis.")
;;; Internal constants
;; Change these and die.
(defconst imap-default-port 143)
(defconst imap-default-ssl-port 993)
(defconst imap-default-tls-port 993)
(defconst imap-default-stream 'network)
(defconst imap-coding-system-for-read 'binary)
(defconst imap-coding-system-for-write 'binary)
(defconst imap-local-variables '(imap-server
imap-port
imap-client-eol
imap-server-eol
imap-auth
imap-stream
imap-username
imap-password
imap-current-mailbox
imap-current-target-mailbox
imap-message-data
imap-capability
imap-id
imap-namespace
imap-state
imap-reached-tag
imap-failed-tags
imap-tag
imap-process
imap-calculate-literal-size-first
imap-mailbox-data))
(defconst imap-log-buffer "*imap-log*")
(defconst imap-debug-buffer "*imap-debug*")
;;; Internal variables
(defvar imap-stream nil)
(defvar imap-auth nil)
(defvar imap-server nil)
(defvar imap-port nil)
(defvar imap-username nil)
(defvar imap-password nil)
(defvar imap-last-authenticator nil)
(defvar imap-calculate-literal-size-first nil)
(defvar imap-state 'closed
"IMAP state.
Valid states are `closed', `initial', `nonauth', `auth', `selected'
and `examine'.")
(defvar imap-server-eol "\r\n"
"The EOL string sent from the server.")
(defvar imap-client-eol "\r\n"
"The EOL string we send to the server.")
(defvar imap-current-mailbox nil
"Current mailbox name.")
(defvar imap-current-target-mailbox nil
"Current target mailbox for COPY and APPEND commands.")
(defvar imap-mailbox-data nil
"Obarray with mailbox data.")
(defvar imap-mailbox-prime 997
"Length of `imap-mailbox-data'.")
(defvar imap-current-message nil
"Current message number.")
(defvar imap-message-data nil
"Obarray with message data.")
(defvar imap-message-prime 997
"Length of `imap-message-data'.")
(defvar imap-capability nil
"Capability for server.")
(defvar imap-id nil
"Identity of server.
See RFC 2971.")
(defvar imap-namespace nil
"Namespace for current server.")
(defvar imap-reached-tag 0
"Lower limit on command tags that have been parsed.")
(defvar imap-failed-tags nil
"Alist of tags that failed.
Each element is a list with four elements; tag (a integer), response
state (a symbol, `OK', `NO' or `BAD'), response code (a string), and
human readable response text (a string).")
(defvar imap-tag 0
"Command tag number.")
(defvar imap-process nil
"Process.")
(defvar imap-continuation nil
"Non-nil indicates that the server emitted a continuation request.
The actual value is really the text on the continuation line.")
(defvar imap-callbacks nil
"List of response tags and callbacks, on the form `(number . function)'.
The function should take two arguments, the first the IMAP tag and the
second the status (OK, NO, BAD etc) of the command.")
(defvar imap-enable-exchange-bug-workaround nil
"Send FETCH UID commands as *:* instead of *.
When non-nil, use an alternative UIDS form. Enabling appears to
be required for some servers (e.g., Microsoft Exchange 2007)
which otherwise would trigger a response `BAD The specified
message set is invalid.'. We don't unconditionally use this
form, since this is said to be significantly inefficient.
This variable is set to t automatically per server if the
canonical form fails.")
;;; Utility functions
(defun imap-remassoc (key alist)
"Delete by side effect any elements of ALIST whose car is `equal' to KEY.
The modified ALIST is returned. If the first member
of ALIST has a car that is `equal' to KEY, there is no way to remove it
by side effect; therefore, write `(setq foo (remassoc key foo))' to be
sure of changing the value of `foo'."
(when alist
(if (equal key (caar alist))
(cdr alist)
(setcdr alist (imap-remassoc key (cdr alist)))
alist)))
(defmacro imap-disable-multibyte ()
"Enable multibyte in the current buffer."
(declare (obsolete nil "27.1"))
'(set-buffer-multibyte nil))
(defsubst imap-utf7-encode (string)
(if imap-use-utf7
(and string
(condition-case ()
(utf7-encode string t)
(error (message
"imap: Could not UTF7 encode `%s', using it unencoded..."
string)
string)))
string))
(defsubst imap-utf7-decode (string)
(if imap-use-utf7
(and string
(condition-case ()
(utf7-decode string t)
(error (message
"imap: Could not UTF7 decode `%s', using it undecoded..."
string)
string)))
string))
(defsubst imap-ok-p (status)
(if (eq status 'OK)
t
(setq imap-error status)
nil))
(defun imap-error-text (&optional buffer)
(with-current-buffer (or buffer (current-buffer))
(nth 3 (car imap-failed-tags))))
;;; Server functions
;;;; Stream functions
(defun imap-log (string-or-buffer)
(when imap-log
(with-current-buffer (get-buffer-create imap-log-buffer)
(set-buffer-multibyte nil)
(buffer-disable-undo)
(goto-char (point-max))
(if (bufferp string-or-buffer)
(insert-buffer-substring string-or-buffer)
(insert string-or-buffer)))))
(defun imap-kerberos4-stream-p (buffer)
(imap-capability 'AUTH=KERBEROS_V4 buffer))
(defun imap-kerberos4-open (name buffer server port)
(let ((cmds imap-kerberos4-program)
cmd done)
(while (and (not done) (setq cmd (pop cmds)))
(message "Opening Kerberos 4 IMAP connection with `%s'..." cmd)
(erase-buffer)
(let* ((port (or port imap-default-port))
(coding-system-for-read imap-coding-system-for-read)
(coding-system-for-write imap-coding-system-for-write)
(process-connection-type imap-process-connection-type)
(process (start-process
name buffer shell-file-name shell-command-switch
(format-spec cmd `((?s . ,server)
(?p . ,(number-to-string port))
(?l . ,imap-default-user)))))
response)
(when process
(with-current-buffer buffer
(setq imap-client-eol "\n"
imap-calculate-literal-size-first t)
(while (and (memq (process-status process) '(open run))
(set-buffer buffer) ;; XXX "blue moon" nntp.el bug
(goto-char (point-min))
;; Athena IMTEST can output SSL verify errors
(or (while (looking-at "^verify error:num=")
(forward-line))
t)
(or (while (looking-at "^TLS connection established")
(forward-line))
t)
;; cyrus 1.6.x (13? < x <= 22) queries capabilities
(or (while (looking-at "^C:")
(forward-line))
t)
;; cyrus 1.6 imtest print "S: " before server greeting
(or (not (looking-at "S: "))
(forward-char 3)
t)
(not (and (imap-parse-greeting)
;; success in imtest < 1.6:
(or (re-search-forward
"^__\\(.*\\)__\n" nil t)
;; success in imtest 1.6:
(re-search-forward
"^\\(Authenticat.*\\)" nil t))
(setq response (match-string 1)))))
(accept-process-output process 1)
(sit-for 1))
(erase-buffer)
(message "Opening Kerberos 4 IMAP connection with `%s'...%s" cmd
(if response (concat "done, " response) "failed"))
(if (and response (let ((case-fold-search nil))
(not (string-match "failed" response))))
(setq done process)
(if (memq (process-status process) '(open run))
(imap-logout))
(delete-process process)
nil)))))
done))
(defun imap-gssapi-stream-p (buffer)
(imap-capability 'AUTH=GSSAPI buffer))
(defun imap-gssapi-open (name buffer server port)
(let ((cmds imap-gssapi-program)
cmd done)
(while (and (not done) (setq cmd (pop cmds)))
(message "Opening GSSAPI IMAP connection with `%s'..." cmd)
(erase-buffer)
(let* ((port (or port imap-default-port))
(coding-system-for-read imap-coding-system-for-read)
(coding-system-for-write imap-coding-system-for-write)
(process-connection-type imap-process-connection-type)
(process (start-process
name buffer shell-file-name shell-command-switch
(format-spec cmd `((?s . ,server)
(?p . ,(number-to-string port))
(?l . ,imap-default-user)))))
response)
(when process
(with-current-buffer buffer
(setq imap-client-eol "\n"
imap-calculate-literal-size-first t)
(while (and (memq (process-status process) '(open run))
(set-buffer buffer) ;; XXX "blue moon" nntp.el bug
(goto-char (point-min))
;; Athena IMTEST can output SSL verify errors
(or (while (looking-at "^verify error:num=")
(forward-line))
t)
(or (while (looking-at "^TLS connection established")
(forward-line))
t)
;; cyrus 1.6.x (13? < x <= 22) queries capabilities
(or (while (looking-at "^C:")
(forward-line))
t)
;; cyrus 1.6 imtest print "S: " before server greeting
(or (not (looking-at "S: "))
(forward-char 3)
t)
;; GNU SASL may print 'Trying ...' first.
(or (not (looking-at "Trying "))
(forward-line)
t)
(not (and (imap-parse-greeting)
;; success in imtest 1.6:
(re-search-forward
(concat "^\\(\\(Authenticat.*\\)\\|\\("
"Client authentication "
"finished.*\\)\\)")
nil t)
(setq response (match-string 1)))))
(accept-process-output process 1)
(sit-for 1))
(imap-log buffer)
(erase-buffer)
(message "GSSAPI IMAP connection: %s" (or response "failed"))
(if (and response (let ((case-fold-search nil))
(not (string-match "failed" response))))
(setq done process)
(if (memq (process-status process) '(open run))
(imap-logout))
(delete-process process)
nil)))))
done))
(defun imap-tls-p (_buffer)
nil)
(defun imap-tls-open (name buffer server port)
(let* ((port (or port imap-default-tls-port))
(coding-system-for-read imap-coding-system-for-read)
(coding-system-for-write imap-coding-system-for-write)
(process (open-network-stream name buffer server port
:type 'tls)))
(when process
(while (and (memq (process-status process) '(open run))
;; FIXME: Per the "blue moon" comment, the process/buffer
;; handling here, and elsewhere in functions which open
;; streams, looks confused. Obviously we can change buffers
;; if a different process handler kicks in from
;; `accept-process-output' or `sit-for' below, and TRT seems
;; to be to `save-buffer' around those calls. (I wonder why
;; `sit-for' is used with a non-zero wait.) -- fx
(set-buffer buffer) ;; XXX "blue moon" nntp.el bug
(goto-char (point-max))
(forward-line -1)
(not (imap-parse-greeting)))
(accept-process-output process 1)
(sit-for 1))
(imap-log buffer)
(when (memq (process-status process) '(open run))
process))))
(defun imap-network-p (_buffer)
t)
(defun imap-network-open (name buffer server port)
(let* ((port (or port imap-default-port))
(coding-system-for-read imap-coding-system-for-read)
(coding-system-for-write imap-coding-system-for-write)
(process (open-network-stream name buffer server port)))
(when process
(while (and (memq (process-status process) '(open run))
(set-buffer buffer) ;; XXX "blue moon" nntp.el bug
(goto-char (point-min))
(not (imap-parse-greeting)))
(accept-process-output process 1)
(sit-for 1))
(imap-log buffer)
(when (memq (process-status process) '(open run))
process))))
(defun imap-shell-p (_buffer)
nil)
(defun imap-shell-open (name buffer server port)
(let ((cmds (if (listp imap-shell-program) imap-shell-program
(list imap-shell-program)))
cmd done)
(while (and (not done) (setq cmd (pop cmds)))
(message "imap: Opening IMAP connection with `%s'..." cmd)
(setq imap-client-eol "\n")
(let* ((port (or port imap-default-port))
(coding-system-for-read imap-coding-system-for-read)
(coding-system-for-write imap-coding-system-for-write)
(process-connection-type imap-process-connection-type)
(process (start-process
name buffer shell-file-name shell-command-switch
(format-spec cmd `((?s . ,server)
(?g . ,imap-shell-host)
(?p . ,(number-to-string port))
(?l . ,imap-default-user))))))
(when process
(while (and (memq (process-status process) '(open run))
(set-buffer buffer) ;; XXX "blue moon" nntp.el bug
(goto-char (point-max))
(forward-line -1)
(not (imap-parse-greeting)))
(accept-process-output process 1)
(sit-for 1))
(imap-log buffer)
(erase-buffer)
(when (memq (process-status process) '(open run))
(setq done process)))))
(if done
(progn
(message "imap: Opening IMAP connection with `%s'...done" cmd)
done)
(message "imap: Opening IMAP connection with `%s'...failed" cmd)
nil)))
(defun imap-starttls-p (buffer)
(imap-capability 'STARTTLS buffer))
(defun imap-starttls-open (name buffer server port)
(message "imap: Connecting with STARTTLS...")
(let* ((port (or port imap-default-port))
(coding-system-for-read imap-coding-system-for-read)
(coding-system-for-write imap-coding-system-for-write)
(process (open-network-stream
name buffer server port
:type 'starttls
:capability-command "1 CAPABILITY\r\n"
:always-query-capabilities t
:end-of-command "\r\n"
:success "^1 OK "
:starttls-function
(lambda (capabilities)
(when (string-match-p "STARTTLS" capabilities)
"1 STARTTLS\r\n"))))
done)
(when process
(imap-log buffer)
(when (memq (process-status process) '(open run))
(setq done process)
(with-current-buffer buffer
(goto-char (point-min))
(imap-parse-greeting))))
(message "imap: Connecting with STARTTLS...%s" (if done "done" "failed"))
done))
;;;; Authenticator functions
(defun imap-interactive-login (buffer loginfunc)
"Login to server in BUFFER.
Return t if login was successful, nil otherwise.
LOGINFUNC is passed a username and a password. It should return
t if it successfully authenticates, nil otherwise."
(with-current-buffer buffer
(make-local-variable 'imap-username)
(make-local-variable 'imap-password)
(let (user passwd ret)
;; (condition-case ()
(while (or (not user) (not passwd))
(setq user (or imap-username
(read-from-minibuffer
(format-message
"imap: username for %s (using stream `%s'): "
imap-server imap-stream)
(or user imap-default-user))))
(setq passwd
(or imap-password
(read-passwd
(format-message
"imap: password for %s@%s (using authenticator `%s'): "
user imap-server imap-auth))))
(when (and user passwd)
(if (funcall loginfunc user passwd)
(progn
(message "imap: Login successful...")
(setq ret t
imap-username user)
(when (and (not imap-password)
(or imap-store-password
(y-or-n-p "imap: Store password for this IMAP session? ")))
(setq imap-password passwd)))
(message "imap: Login failed...")
(setq passwd nil)
(setq imap-password nil)
(sit-for 1))))
;; (quit (with-current-buffer buffer
;; (setq user nil
;; passwd nil)))
;; (error (with-current-buffer buffer
;; (setq user nil
;; passwd nil))))
ret)))
(defun imap-gssapi-auth-p (_buffer)
(eq imap-stream 'gssapi))
(defun imap-gssapi-auth (_buffer)
(message "imap: Authenticating using GSSAPI...%s"
(if (eq imap-stream 'gssapi) "done" "failed"))
(eq imap-stream 'gssapi))
(defun imap-kerberos4-auth-p (buffer)
(and (imap-capability 'AUTH=KERBEROS_V4 buffer)
(eq imap-stream 'kerberos4)))
(defun imap-kerberos4-auth (_buffer)
(message "imap: Authenticating using Kerberos 4...%s"
(if (eq imap-stream 'kerberos4) "done" "failed"))
(eq imap-stream 'kerberos4))
(defun imap-cram-md5-p (buffer)
(imap-capability 'AUTH=CRAM-MD5 buffer))
(defun imap-cram-md5-auth (buffer)
"Login to server using the AUTH CRAM-MD5 method."
(message "imap: Authenticating using CRAM-MD5...")
(let ((done (imap-interactive-login
buffer
(lambda (user passwd)
(imap-ok-p
(imap-send-command-wait
(list
"AUTHENTICATE CRAM-MD5"
(lambda (challenge)
(let* ((decoded (base64-decode-string challenge))
(hash (rfc2104-hash 'md5 64 16 passwd decoded))
(response (concat user " " hash))
(encoded (base64-encode-string response)))
encoded)))))))))
(if done
(message "imap: Authenticating using CRAM-MD5...done")
(message "imap: Authenticating using CRAM-MD5...failed"))))
(defun imap-login-p (buffer)
(and (not (imap-capability 'LOGINDISABLED buffer))
(not (imap-capability 'X-LOGIN-CMD-DISABLED buffer))))
(defun imap-quote-specials (string)
(with-temp-buffer
(insert string)
(goto-char (point-min))
(while (re-search-forward "[\\\"]" nil t)
(forward-char -1)
(insert "\\")
(forward-char 1))
(buffer-string)))
(defun imap-login-auth (buffer)
"Login to server using the LOGIN command."
(message "imap: Plaintext authentication...")
(imap-interactive-login buffer
(lambda (user passwd)
(imap-ok-p (imap-send-command-wait
(concat "LOGIN \""
(imap-quote-specials user)
"\" \""
(imap-quote-specials passwd)
"\""))))))
(defun imap-anonymous-p (_buffer)
t)
(defun imap-anonymous-auth (buffer)
(message "imap: Logging in anonymously...")
(with-current-buffer buffer
(imap-ok-p (imap-send-command-wait
(concat "LOGIN anonymous \"" (concat (user-login-name) "@"
(system-name)) "\"")))))
;;; Compiler directives
(defvar imap-sasl-client)
(defvar imap-sasl-step)
(defun imap-sasl-make-mechanisms (buffer)
(let ((mecs '()))
(mapc (lambda (sym)
(let ((name (symbol-name sym)))
(if (and (> (length name) 5)
(string-equal "AUTH=" (substring name 0 5 )))
(setq mecs (cons (substring name 5) mecs)))))
(imap-capability nil buffer))
mecs))
(declare-function sasl-find-mechanism "sasl" (mechanism))
(declare-function sasl-mechanism-name "sasl" (mechanism))
(declare-function sasl-make-client "sasl" (mechanism name service server))
(declare-function sasl-next-step "sasl" (client step))
(declare-function sasl-step-data "sasl" (step))
(declare-function sasl-step-set-data "sasl" (step data))
(defun imap-sasl-auth-p (buffer)
(require 'sasl)
(sasl-find-mechanism (imap-sasl-make-mechanisms buffer)))
(defun imap-sasl-auth (buffer)
"Login to server using the SASL method."
(message "imap: Authenticating using SASL...")
(with-current-buffer buffer
(make-local-variable 'imap-username)
(make-local-variable 'imap-sasl-client)
(make-local-variable 'imap-sasl-step)
(let ((mechanism (sasl-find-mechanism (imap-sasl-make-mechanisms buffer)))
logged user)
(while (not logged)
(setq user (or imap-username
(read-from-minibuffer
(concat "IMAP username for " imap-server " using SASL "
(sasl-mechanism-name mechanism) ": ")
(or user imap-default-user))))
(when user
(setq imap-sasl-client (sasl-make-client mechanism user "imap2" imap-server)
imap-sasl-step (sasl-next-step imap-sasl-client nil))
(let ((tag (imap-send-command
(if (sasl-step-data imap-sasl-step)
(format "AUTHENTICATE %s %s"
(sasl-mechanism-name mechanism)
(sasl-step-data imap-sasl-step))
(format "AUTHENTICATE %s" (sasl-mechanism-name mechanism)))
buffer)))
(while (eq (imap-wait-for-tag tag) 'INCOMPLETE)
(sasl-step-set-data imap-sasl-step (base64-decode-string imap-continuation))
(setq imap-continuation nil
imap-sasl-step (sasl-next-step imap-sasl-client imap-sasl-step))
(imap-send-command-1 (if (sasl-step-data imap-sasl-step)
(base64-encode-string (sasl-step-data imap-sasl-step) t)
"")))
(if (imap-ok-p (imap-wait-for-tag tag))
(setq imap-username user
logged t)
(message "Login failed...")
(sit-for 1)))))
logged)))
(defun imap-digest-md5-p (buffer)
(and (imap-capability 'AUTH=DIGEST-MD5 buffer)
(condition-case ()
(require 'digest-md5)
(error nil))))
(defun imap-digest-md5-auth (buffer)
"Login to server using the AUTH DIGEST-MD5 method."
(message "imap: Authenticating using DIGEST-MD5...")
(imap-interactive-login
buffer
(lambda (user passwd)
(let ((tag
(imap-send-command
(list
"AUTHENTICATE DIGEST-MD5"
(lambda (challenge)
(digest-md5-parse-digest-challenge
(base64-decode-string challenge))
(let* ((digest-uri
(digest-md5-digest-uri
"imap" (digest-md5-challenge 'realm)))
(response
(digest-md5-digest-response
user passwd digest-uri)))
(base64-encode-string response 'no-line-break))))
)))
(if (not (eq (imap-wait-for-tag tag) 'INCOMPLETE))
nil
(setq imap-continuation nil)
(imap-send-command-1 "")
(imap-ok-p (imap-wait-for-tag tag)))))))
;;; Server functions
(defun imap-open-1 (buffer)
(with-current-buffer buffer
(erase-buffer)
(setq imap-current-mailbox nil
imap-current-message nil
imap-state 'initial
imap-process (condition-case ()
(funcall (nth 2 (assq imap-stream
imap-stream-alist))
"imap" buffer imap-server imap-port)
((error quit) nil)))
(when imap-process
(set-process-filter imap-process #'imap-arrival-filter)
(set-process-sentinel imap-process #'imap-sentinel)
(while (and (eq imap-state 'initial)
(memq (process-status imap-process) '(open run)))
(message "Waiting for response from %s..." imap-server)
(accept-process-output imap-process 1))
(message "Waiting for response from %s...done" imap-server)
(and (memq (process-status imap-process) '(open run))
imap-process))))
(defun imap-open (server &optional port stream auth buffer)
"Open an IMAP connection to host SERVER at PORT returning a buffer.
If PORT is unspecified, a default value is used (143 except
for SSL which use 993).
STREAM indicates the stream to use, see `imap-streams' for available
streams. If nil, it choices the best stream the server is capable of.
AUTH indicates authenticator to use, see `imap-authenticators' for
available authenticators. If nil, it choices the best stream the
server is capable of.
BUFFER can be a buffer or a name of a buffer, which is created if
necessary. If nil, the buffer name is generated."
(setq buffer (or buffer (format " *imap* %s:%d" server (or port 0))))
(with-current-buffer (get-buffer-create buffer)
(if (imap-opened buffer)
(imap-close buffer))
(mapc #'make-local-variable imap-local-variables)
(set-buffer-multibyte nil)
(buffer-disable-undo)
(setq imap-server (or server imap-server))
(setq imap-port (or port imap-port))
(setq imap-auth (or auth imap-auth))
(setq imap-stream (or stream imap-stream))
(message "imap: Connecting to %s..." imap-server)
(if (null (let ((imap-stream (or imap-stream imap-default-stream)))
(imap-open-1 buffer)))
(progn
(message "imap: Connecting to %s...failed" imap-server)
nil)
(when (null imap-stream)
;; Need to choose stream.
(let ((streams imap-streams))
(while (setq stream (pop streams))
;; OK to use this stream?
(when (funcall (nth 1 (assq stream imap-stream-alist)) buffer)
;; Stream changed?
(if (not (eq imap-default-stream stream))
(with-current-buffer (generate-new-buffer " *temp*")
(mapc #'make-local-variable imap-local-variables)
(set-buffer-multibyte nil)
(buffer-disable-undo)
(setq imap-server (or server imap-server))
(setq imap-port (or port imap-port))
(setq imap-auth (or auth imap-auth))
(message "imap: Reconnecting with stream `%s'..." stream)
(if (null (let ((imap-stream stream))
(imap-open-1 (current-buffer))))
(progn
(kill-buffer (current-buffer))
(message
"imap: Reconnecting with stream `%s'...failed"
stream))
;; We're done, kill the first connection
(imap-close buffer)
(let ((name (if (stringp buffer)
buffer
(buffer-name buffer))))
(kill-buffer buffer)
(rename-buffer name)
;; set the passed buffer to the current one,
;; so that (imap-opened buffer) later will work
(setq buffer (current-buffer)))
(message "imap: Reconnecting with stream `%s'...done"
stream)
(setq imap-stream stream)
(setq imap-capability nil)
(setq streams nil)))
;; We're done
(message "imap: Connecting to %s...done" imap-server)
(setq imap-stream stream)
(setq imap-capability nil)
(setq streams nil))))))
(when (imap-opened buffer)
(setq imap-mailbox-data (obarray-make imap-mailbox-prime)))
;; (debug "opened+state+auth+buffer" (imap-opened buffer) imap-state imap-auth buffer)
(when imap-stream
buffer))))
(defcustom imap-ping-server t
"If non-nil, check if IMAP is open.
See the function `imap-ping-server'."
:version "23.1" ;; No Gnus
:type 'boolean)
(defun imap-opened (&optional buffer)
"Return non-nil if connection to imap server in BUFFER is open.
If BUFFER is nil then the current buffer is used."
(and (setq buffer (get-buffer (or buffer (current-buffer))))
(buffer-live-p buffer)
(with-current-buffer buffer
(and imap-process
(memq (process-status imap-process) '(open run))
(if imap-ping-server
(imap-ping-server)
t)))))
(defun imap-ping-server (&optional buffer)
"Ping the IMAP server in BUFFER with a \"NOOP\" command.
Return non-nil if the server responds, and nil if it does not
respond. If BUFFER is nil, the current buffer is used."
(condition-case ()
(imap-ok-p (imap-send-command-wait "NOOP" buffer))
(error nil)))
(defun imap-authenticate (&optional user passwd buffer)
"Authenticate to server in BUFFER, using current buffer if nil.
It uses the authenticator specified when opening the server.
Optional arguments USER and PASSWD specify the username and
password to use if the authenticator requires a username and/or
password. If omitted or nil, the authenticator may query the
user for a username and/or password."
(with-current-buffer (or buffer (current-buffer))
(if (not (eq imap-state 'nonauth))
(or (eq imap-state 'auth)
(eq imap-state 'selected)
(eq imap-state 'examine))
(make-local-variable 'imap-username)
(make-local-variable 'imap-password)
(make-local-variable 'imap-last-authenticator)
(when user (setq imap-username user))
(when passwd (setq imap-password passwd))
(if imap-auth
(and (setq imap-last-authenticator
(assq imap-auth imap-authenticator-alist))
(funcall (nth 2 imap-last-authenticator) (current-buffer))
(setq imap-state 'auth))
;; Choose authenticator.
(let ((auths imap-authenticators)
auth)
(while (setq auth (pop auths))
;; OK to use authenticator?
(setq imap-last-authenticator
(assq auth imap-authenticator-alist))
(when (funcall (nth 1 imap-last-authenticator) (current-buffer))
(message "imap: Authenticating to `%s' using `%s'..."
imap-server auth)
(setq imap-auth auth)
(if (funcall (nth 2 imap-last-authenticator) (current-buffer))
(progn
(message "imap: Authenticating to `%s' using `%s'...done"
imap-server auth)
;; set imap-state correctly on successful auth attempt
(setq imap-state 'auth)
;; stop iterating through the authenticator list
(setq auths nil))
(message "imap: Authenticating to `%s' using `%s'...failed"
imap-server auth)))))
imap-state))))
(defun imap-close (&optional buffer)
"Close connection to server in BUFFER.
If BUFFER is nil, the current buffer is used."
(with-current-buffer (or buffer (current-buffer))
(when (imap-opened)
(condition-case nil
(imap-logout-wait)
(quit nil)))
(when (and imap-process
(memq (process-status imap-process) '(open run)))
(delete-process imap-process))
(setq imap-current-mailbox nil
imap-current-message nil
imap-process nil)
(erase-buffer)
t))
(defun imap-capability (&optional identifier buffer)
"Return a list of identifiers which server in BUFFER support.
If IDENTIFIER, return non-nil if it's among the servers capabilities.
If BUFFER is nil, the current buffer is assumed."
(with-current-buffer (or buffer (current-buffer))
(unless imap-capability
(unless (imap-ok-p (imap-send-command-wait "CAPABILITY"))
(setq imap-capability '(IMAP2))))
(if identifier
(memq (intern (upcase (symbol-name identifier))) imap-capability)
imap-capability)))
(defun imap-id (&optional list-of-values buffer)
"Identify client to server in BUFFER, and return server identity.
LIST-OF-VALUES is nil, or a plist with identifier and value
strings to send to the server to identify the client.
Return a list of identifiers which server in BUFFER support, or
nil if it doesn't support ID or returns no information.
If BUFFER is nil, the current buffer is assumed."
(with-current-buffer (or buffer (current-buffer))
(when (and (imap-capability 'ID)
(imap-ok-p (imap-send-command-wait
(if (null list-of-values)
"ID NIL"
(concat "ID (" (mapconcat (lambda (el)
(concat "\"" el "\""))
list-of-values
" ") ")")))))
imap-id)))
(defun imap-namespace (&optional buffer)
"Return a namespace hierarchy at server in BUFFER.
If BUFFER is nil, the current buffer is assumed."
(with-current-buffer (or buffer (current-buffer))
(unless imap-namespace
(when (imap-capability 'NAMESPACE)
(imap-send-command-wait "NAMESPACE")))
imap-namespace))
(defun imap-send-command-wait (command &optional buffer)
(imap-wait-for-tag (imap-send-command command buffer) buffer))
(defun imap-logout (&optional buffer)
(or buffer (setq buffer (current-buffer)))
(if imap-logout-timeout
(with-timeout (imap-logout-timeout
(condition-case nil
(with-current-buffer buffer
(delete-process imap-process))
(error)))
(imap-send-command "LOGOUT" buffer))
(imap-send-command "LOGOUT" buffer)))
(defun imap-logout-wait (&optional buffer)
(or buffer (setq buffer (current-buffer)))
(if imap-logout-timeout
(with-timeout (imap-logout-timeout
(condition-case nil
(with-current-buffer buffer
(delete-process imap-process))
(error)))
(imap-send-command-wait "LOGOUT" buffer))
(imap-send-command-wait "LOGOUT" buffer)))
;;; Mailbox functions
(defun imap-mailbox-put (propname value &optional mailbox buffer)
(with-current-buffer (or buffer (current-buffer))
(if imap-mailbox-data
(put (intern (or mailbox imap-current-mailbox) imap-mailbox-data)
propname value)
(error "Imap-mailbox-data is nil, prop %s value %s mailbox %s buffer %s"
propname value mailbox (current-buffer)))
t))
(defsubst imap-mailbox-get-1 (propname &optional mailbox)
(get (intern-soft (or mailbox imap-current-mailbox) imap-mailbox-data)
propname))
(defun imap-mailbox-get (propname &optional mailbox buffer)
(let ((mailbox (imap-utf7-encode mailbox)))
(with-current-buffer (or buffer (current-buffer))
(imap-mailbox-get-1 propname (or mailbox imap-current-mailbox)))))
(defun imap-mailbox-map-1 (func &optional mailbox-decoder buffer)
(with-current-buffer (or buffer (current-buffer))
(let (result)
(mapatoms
(lambda (s)
(push (funcall func (if mailbox-decoder
(funcall mailbox-decoder (symbol-name s))
(symbol-name s))) result))
imap-mailbox-data)
result)))
(defun imap-mailbox-map (func &optional buffer)
"Map a function across each mailbox in `imap-mailbox-data', returning a list.
Function should take a mailbox name (a string) as
the only argument."
(imap-mailbox-map-1 func 'imap-utf7-decode buffer))
(defun imap-current-mailbox (&optional buffer)
(with-current-buffer (or buffer (current-buffer))
(imap-utf7-decode imap-current-mailbox)))
(defun imap-current-mailbox-p-1 (mailbox &optional examine)
(and (string= mailbox imap-current-mailbox)
(or (and examine
(eq imap-state 'examine))
(and (not examine)
(eq imap-state 'selected)))))
(defun imap-current-mailbox-p (mailbox &optional examine buffer)
(with-current-buffer (or buffer (current-buffer))
(imap-current-mailbox-p-1 (imap-utf7-encode mailbox) examine)))
(defun imap-mailbox-select-1 (mailbox &optional examine)
"Select MAILBOX on server in BUFFER.
If EXAMINE is non-nil, do a read-only select."
(if (imap-current-mailbox-p-1 mailbox examine)
imap-current-mailbox
(setq imap-current-mailbox mailbox)
(if (imap-ok-p (imap-send-command-wait
(concat (if examine "EXAMINE" "SELECT") " \""
mailbox "\"")))
(progn
(setq imap-message-data (obarray-make imap-message-prime)
imap-state (if examine 'examine 'selected))
imap-current-mailbox)
;; Failed SELECT/EXAMINE unselects current mailbox
(setq imap-current-mailbox nil))))
(defun imap-mailbox-select (mailbox &optional examine buffer)
(with-current-buffer (or buffer (current-buffer))
(imap-utf7-decode
(imap-mailbox-select-1 (imap-utf7-encode mailbox) examine))))
(defun imap-mailbox-examine-1 (mailbox &optional buffer)
(with-current-buffer (or buffer (current-buffer))
(imap-mailbox-select-1 mailbox 'examine)))
(defun imap-mailbox-examine (mailbox &optional buffer)
"Examine MAILBOX on server in BUFFER."
(imap-mailbox-select mailbox 'examine buffer))
(defun imap-mailbox-unselect (&optional buffer)
"Close current folder in BUFFER, without expunging articles."
(with-current-buffer (or buffer (current-buffer))
(when (or (eq imap-state 'auth)
(and (imap-capability 'UNSELECT)
(imap-ok-p (imap-send-command-wait "UNSELECT")))
(and (imap-ok-p
(imap-send-command-wait (concat "EXAMINE \""
imap-current-mailbox
"\"")))
(imap-ok-p (imap-send-command-wait "CLOSE"))))
(setq imap-current-mailbox nil
imap-message-data nil
imap-state 'auth)
t)))
(defun imap-mailbox-expunge (&optional asynch buffer)
"Expunge articles in current folder in BUFFER.
If ASYNCH, do not wait for successful completion of the command.
If BUFFER is nil the current buffer is assumed."
(with-current-buffer (or buffer (current-buffer))
(when (and imap-current-mailbox (not (eq imap-state 'examine)))
(if asynch
(imap-send-command "EXPUNGE")
(imap-ok-p (imap-send-command-wait "EXPUNGE"))))))
(defun imap-mailbox-close (&optional asynch buffer)
"Expunge articles and close current folder in BUFFER.
If ASYNCH, do not wait for successful completion of the command.
If BUFFER is nil the current buffer is assumed."
(with-current-buffer (or buffer (current-buffer))
(when imap-current-mailbox
(if asynch
(imap-add-callback (imap-send-command "CLOSE")
(let ((cmb imap-current-mailbox))
(lambda (_tag status)
(message "IMAP mailbox `%s' closed... %s"
imap-current-mailbox status)
(when (eq cmb imap-current-mailbox)
;; Don't wipe out data if another mailbox
;; was selected...
(setq imap-current-mailbox nil
imap-message-data nil
imap-state 'auth)))))
(when (imap-ok-p (imap-send-command-wait "CLOSE"))
(setq imap-current-mailbox nil
imap-message-data nil
imap-state 'auth)))
t)))
(defun imap-mailbox-create-1 (mailbox)
(imap-ok-p (imap-send-command-wait (list "CREATE \"" mailbox "\""))))
(defun imap-mailbox-create (mailbox &optional buffer)
"Create MAILBOX on server in BUFFER.
If BUFFER is nil the current buffer is assumed."
(with-current-buffer (or buffer (current-buffer))
(imap-mailbox-create-1 (imap-utf7-encode mailbox))))
(defun imap-mailbox-delete (mailbox &optional buffer)
"Delete MAILBOX on server in BUFFER.
If BUFFER is nil the current buffer is assumed."
(let ((mailbox (imap-utf7-encode mailbox)))
(with-current-buffer (or buffer (current-buffer))
(imap-ok-p
(imap-send-command-wait (list "DELETE \"" mailbox "\""))))))
(defun imap-mailbox-rename (oldname newname &optional buffer)
"Rename mailbox OLDNAME to NEWNAME on server in BUFFER.
If BUFFER is nil the current buffer is assumed."
(let ((oldname (imap-utf7-encode oldname))
(newname (imap-utf7-encode newname)))
(with-current-buffer (or buffer (current-buffer))
(imap-ok-p
(imap-send-command-wait (list "RENAME \"" oldname "\" "
"\"" newname "\""))))))
(defun imap-mailbox-lsub (&optional root reference add-delimiter buffer)
"Return a list of subscribed mailboxes on server in BUFFER.
If ROOT is non-nil, only list matching mailboxes. If ADD-DELIMITER is
non-nil, a hierarchy delimiter is added to root. REFERENCE is an
implementation-specific string that has to be passed to lsub command."
(with-current-buffer (or buffer (current-buffer))
;; Make sure we know the hierarchy separator for root's hierarchy
(when (and add-delimiter (null (imap-mailbox-get-1 'delimiter root)))
(imap-send-command-wait (concat "LIST \"" reference "\" \""
(imap-utf7-encode root) "\"")))
;; clear list data (NB not delimiter and other stuff)
(imap-mailbox-map-1 (lambda (mailbox)
(imap-mailbox-put 'lsub nil mailbox)))
(when (imap-ok-p
(imap-send-command-wait
(concat "LSUB \"" reference "\" \"" (imap-utf7-encode root)
(and add-delimiter (imap-mailbox-get-1 'delimiter root))
"%\"")))
(let (out)
(imap-mailbox-map-1 (lambda (mailbox)
(when (imap-mailbox-get-1 'lsub mailbox)
(push (imap-utf7-decode mailbox) out))))
(nreverse out)))))
(defun imap-mailbox-list (root &optional reference add-delimiter buffer)
"Return a list of mailboxes matching ROOT on server in BUFFER.
If ADD-DELIMITER is non-nil, a hierarchy delimiter is added to
root. REFERENCE is an implementation-specific string that has to be
passed to list command."
(with-current-buffer (or buffer (current-buffer))
;; Make sure we know the hierarchy separator for root's hierarchy
(when (and add-delimiter (null (imap-mailbox-get-1 'delimiter root)))
(imap-send-command-wait (concat "LIST \"" reference "\" \""
(imap-utf7-encode root) "\"")))
;; clear list data (NB not delimiter and other stuff)
(imap-mailbox-map-1 (lambda (mailbox)
(imap-mailbox-put 'list nil mailbox)))
(when (imap-ok-p
(imap-send-command-wait
(concat "LIST \"" reference "\" \"" (imap-utf7-encode root)
(and add-delimiter (imap-mailbox-get-1 'delimiter root))
"%\"")))
(let (out)
(imap-mailbox-map-1 (lambda (mailbox)
(when (imap-mailbox-get-1 'list mailbox)
(push (imap-utf7-decode mailbox) out))))
(nreverse out)))))
(defun imap-mailbox-subscribe (mailbox &optional buffer)
"Send the SUBSCRIBE command on the MAILBOX to server in BUFFER.
Returns non-nil if successful."
(with-current-buffer (or buffer (current-buffer))
(imap-ok-p (imap-send-command-wait (concat "SUBSCRIBE \""
(imap-utf7-encode mailbox)
"\"")))))
(defun imap-mailbox-unsubscribe (mailbox &optional buffer)
"Send the SUBSCRIBE command on the MAILBOX to server in BUFFER.
Returns non-nil if successful."
(with-current-buffer (or buffer (current-buffer))
(imap-ok-p (imap-send-command-wait (concat "UNSUBSCRIBE "
(imap-utf7-encode mailbox)
"\"")))))
(defun imap-mailbox-status (mailbox items &optional buffer)
"Get status items ITEM in MAILBOX from server in BUFFER.
ITEMS can be a symbol or a list of symbols, valid symbols are one of
the STATUS data items -- i.e. `messages', `recent', `uidnext', `uidvalidity',
or `unseen'. If ITEMS is a list of symbols, a list of values is
returned, if ITEMS is a symbol only its value is returned."
(with-current-buffer (or buffer (current-buffer))
(when (imap-ok-p
(imap-send-command-wait (list "STATUS \""
(imap-utf7-encode mailbox)
"\" "
(upcase
(format "%s"
(if (listp items)
items
(list items)))))))
(if (listp items)
(mapcar (lambda (item)
(imap-mailbox-get item mailbox))
items)
(imap-mailbox-get items mailbox)))))
(defun imap-mailbox-status-asynch (mailbox items &optional buffer)
"Send status item requests ITEMS on MAILBOX to server in BUFFER.
ITEMS can be a symbol or a list of symbols, valid symbols are one of
the STATUS data items -- i.e., `messages', `recent', `uidnext', `uidvalidity'
or `unseen'. The IMAP command tag is returned."
(with-current-buffer (or buffer (current-buffer))
(imap-send-command (list "STATUS \""
(imap-utf7-encode mailbox)
"\" "
(upcase
(format "%s"
(if (listp items)
items
(list items))))))))
(defun imap-mailbox-acl-get (&optional mailbox buffer)
"Get ACL on MAILBOX from server in BUFFER."
(let ((mailbox (imap-utf7-encode mailbox)))
(with-current-buffer (or buffer (current-buffer))
(when (imap-ok-p
(imap-send-command-wait (list "GETACL \""
(or mailbox imap-current-mailbox)
"\"")))
(imap-mailbox-get-1 'acl (or mailbox imap-current-mailbox))))))
(defun imap-mailbox-acl-set (identifier rights &optional mailbox buffer)
"Change/set ACL for IDENTIFIER to RIGHTS in MAILBOX from server in BUFFER."
(let ((mailbox (imap-utf7-encode mailbox)))
(with-current-buffer (or buffer (current-buffer))
(imap-ok-p
(imap-send-command-wait (list "SETACL \""
(or mailbox imap-current-mailbox)
"\" "
identifier
" "
rights))))))
(defun imap-mailbox-acl-delete (identifier &optional mailbox buffer)
"Remove <id,rights> pairs for IDENTIFIER from MAILBOX on server in BUFFER."
(let ((mailbox (imap-utf7-encode mailbox)))
(with-current-buffer (or buffer (current-buffer))
(imap-ok-p
(imap-send-command-wait (list "DELETEACL \""
(or mailbox imap-current-mailbox)
"\" "
identifier))))))
;;; Message functions
(defun imap-current-message (&optional buffer)
(with-current-buffer (or buffer (current-buffer))
imap-current-message))
(defun imap-list-to-message-set (list)
(mapconcat (lambda (item)
(number-to-string item))
(if (listp list)
list
(list list))
","))
(defun imap-range-to-message-set (range)
(mapconcat
(lambda (item)
(if (consp item)
(format "%d:%d"
(car item) (cdr item))
(format "%d" item)))
(if (and (listp range) (not (listp (cdr range))))
(list range) ;; make (1 . 2) into ((1 . 2))
range)
","))
(defun imap-fetch-asynch (uids props &optional nouidfetch buffer)
(with-current-buffer (or buffer (current-buffer))
(imap-send-command (format "%sFETCH %s %s" (if nouidfetch "" "UID ")
(if (listp uids)
(imap-list-to-message-set uids)
uids)
props))))
(defun imap-fetch (uids props &optional receive nouidfetch buffer)
"Fetch properties PROPS from message set UIDS from server in BUFFER.
UIDS can be a string, number or a list of numbers. If RECEIVE is
non-nil, return these properties."
(with-current-buffer (or buffer (current-buffer))
(when (imap-ok-p (imap-send-command-wait
(format "%sFETCH %s %s" (if nouidfetch "" "UID ")
(if (listp uids)
(imap-list-to-message-set uids)
uids)
props)))
(if (or (null receive) (stringp uids))
t
(if (listp uids)
(mapcar (lambda (uid)
(if (listp receive)
(mapcar (lambda (prop)
(imap-message-get uid prop))
receive)
(imap-message-get uid receive)))
uids)
(imap-message-get uids receive))))))
(defun imap-message-put (uid propname value &optional buffer)
(with-current-buffer (or buffer (current-buffer))
(if imap-message-data
(put (intern (number-to-string uid) imap-message-data)
propname value)
(error "Imap-message-data is nil, uid %s prop %s value %s buffer %s"
uid propname value (current-buffer)))
t))
(defun imap-message-get (uid propname &optional buffer)
(with-current-buffer (or buffer (current-buffer))
(get (intern-soft (number-to-string uid) imap-message-data)
propname)))
(defun imap-message-map (func propname &optional buffer)
"Map a function across each message in `imap-message-data', returning a list."
(with-current-buffer (or buffer (current-buffer))
(let (result)
(mapatoms
(lambda (s)
(push (funcall func (get s 'UID) (get s propname)) result))
imap-message-data)
result)))
(defmacro imap-message-envelope-date (uid &optional buffer)
`(with-current-buffer (or ,buffer (current-buffer))
(elt (imap-message-get ,uid 'ENVELOPE) 0)))
(defmacro imap-message-envelope-subject (uid &optional buffer)
`(with-current-buffer (or ,buffer (current-buffer))
(elt (imap-message-get ,uid 'ENVELOPE) 1)))
(defmacro imap-message-envelope-from (uid &optional buffer)
`(with-current-buffer (or ,buffer (current-buffer))
(elt (imap-message-get ,uid 'ENVELOPE) 2)))
(defmacro imap-message-envelope-sender (uid &optional buffer)
`(with-current-buffer (or ,buffer (current-buffer))
(elt (imap-message-get ,uid 'ENVELOPE) 3)))
(defmacro imap-message-envelope-reply-to (uid &optional buffer)
`(with-current-buffer (or ,buffer (current-buffer))
(elt (imap-message-get ,uid 'ENVELOPE) 4)))
(defmacro imap-message-envelope-to (uid &optional buffer)
`(with-current-buffer (or ,buffer (current-buffer))
(elt (imap-message-get ,uid 'ENVELOPE) 5)))
(defmacro imap-message-envelope-cc (uid &optional buffer)
`(with-current-buffer (or ,buffer (current-buffer))
(elt (imap-message-get ,uid 'ENVELOPE) 6)))
(defmacro imap-message-envelope-bcc (uid &optional buffer)
`(with-current-buffer (or ,buffer (current-buffer))
(elt (imap-message-get ,uid 'ENVELOPE) 7)))
(defmacro imap-message-envelope-in-reply-to (uid &optional buffer)
`(with-current-buffer (or ,buffer (current-buffer))
(elt (imap-message-get ,uid 'ENVELOPE) 8)))
(defmacro imap-message-envelope-message-id (uid &optional buffer)
`(with-current-buffer (or ,buffer (current-buffer))
(elt (imap-message-get ,uid 'ENVELOPE) 9)))
(defmacro imap-message-body (uid &optional buffer)
`(with-current-buffer (or ,buffer (current-buffer))
(imap-message-get ,uid 'BODY)))
;; FIXME: Should this try to use CHARSET? -- fx
(defun imap-search (predicate &optional buffer)
(with-current-buffer (or buffer (current-buffer))
(imap-mailbox-put 'search 'dummy)
(when (imap-ok-p (imap-send-command-wait (concat "UID SEARCH " predicate)))
(if (eq (imap-mailbox-get-1 'search imap-current-mailbox) 'dummy)
(progn
(message "Missing SEARCH response to a SEARCH command (server not RFC compliant)...")
nil)
(imap-mailbox-get-1 'search imap-current-mailbox)))))
(defun imap-message-flag-permanent-p (flag &optional mailbox buffer)
"Return t if FLAG can be permanently saved on articles.
MAILBOX specifies a mailbox on the server in BUFFER."
(with-current-buffer (or buffer (current-buffer))
(and (or (member "\\*" (imap-mailbox-get 'permanentflags mailbox))
(member flag (imap-mailbox-get 'permanentflags mailbox)))
t)))
(defun imap-message-flags-set (articles flags &optional silent buffer)
(when (and articles flags)
(with-current-buffer (or buffer (current-buffer))
(imap-ok-p (imap-send-command-wait
(concat "UID STORE " articles
" FLAGS" (if silent ".SILENT") " (" flags ")"))))))
(defun imap-message-flags-del (articles flags &optional silent buffer)
(when (and articles flags)
(with-current-buffer (or buffer (current-buffer))
(imap-ok-p (imap-send-command-wait
(concat "UID STORE " articles
" -FLAGS" (if silent ".SILENT") " (" flags ")"))))))
(defun imap-message-flags-add (articles flags &optional silent buffer)
(when (and articles flags)
(with-current-buffer (or buffer (current-buffer))
(imap-ok-p (imap-send-command-wait
(concat "UID STORE " articles
" +FLAGS" (if silent ".SILENT") " (" flags ")"))))))
(defun imap-fetch-safe (uids props &optional receive nouidfetch buffer)
"Like `imap-fetch', but DTRT with Exchange 2007 bug.
However, UIDS here is a cons, where the car is the canonical form
of the UIDS specification, and the cdr is the one which works with
Exchange 2007 or, potentially, other buggy servers.
See `imap-enable-exchange-bug-workaround'."
;; The first time we get here for a given, we'll try the canonical
;; form. If we get the known error from the buggy server, set the
;; flag buffer-locally (to account for connections to multiple
;; servers), then re-try with the alternative UIDS spec. We don't
;; unconditionally use the alternative form, since the
;; currently-used alternatives are seriously inefficient with some
;; servers (although they are valid).
;;
;; FIXME: Maybe it would be cleaner to have a flag to not signal
;; the error (which otherwise gives a message), and test
;; `imap-failed-tags'. Also, Other IMAP clients use other forms of
;; request which work with Exchange, e.g. Claws does "UID FETCH 1:*
;; (UID)" rather than "FETCH UID 1,*". Is there a good reason not
;; to do the same?
(condition-case data
;; Binding `debug-on-error' allows us to get the error from
;; `imap-parse-response' -- it's normally caught by Emacs around
;; execution of a process filter.
(let ((debug-on-error t))
(imap-fetch (if imap-enable-exchange-bug-workaround
(cdr uids)
(car uids))
props receive nouidfetch buffer))
(error
(if (and (not imap-enable-exchange-bug-workaround)
;; This is the Exchange 2007 response. It may be more
;; robust just to check for a BAD response to the
;; attempted fetch.
(string-match "The specified message set is invalid"
(cadr data)))
(with-current-buffer (or buffer (current-buffer))
(setq-local imap-enable-exchange-bug-workaround t)
(imap-fetch (cdr uids) props receive nouidfetch))
(signal (car data) (cdr data))))))
(defun imap-message-copyuid-1 (mailbox)
(if (imap-capability 'UIDPLUS)
(list (nth 0 (imap-mailbox-get-1 'copyuid mailbox))
(string-to-number (nth 2 (imap-mailbox-get-1 'copyuid mailbox))))
(let ((old-mailbox imap-current-mailbox)
(state imap-state)
(imap-message-data (obarray-make 2)))
(when (imap-mailbox-examine-1 mailbox)
(prog1
(and (imap-fetch-safe '("*" . "*:*") "UID")
(list (imap-mailbox-get-1 'uidvalidity mailbox)
(apply #'max (imap-message-map
(lambda (uid _prop) uid) 'UID))))
(if old-mailbox
(imap-mailbox-select old-mailbox (eq state 'examine))
(imap-mailbox-unselect)))))))
(defun imap-message-copyuid (mailbox &optional buffer)
(with-current-buffer (or buffer (current-buffer))
(imap-message-copyuid-1 (imap-utf7-decode mailbox))))
(defun imap-message-copy (articles mailbox
&optional dont-create no-copyuid buffer)
"Copy ARTICLES to MAILBOX on server in BUFFER.
ARTICLES is a string message set. Create mailbox if it doesn't exist,
unless DONT-CREATE is non-nil. On success, return a list with
the UIDVALIDITY of the mailbox the article(s) was copied to as the
first element. The rest of list contains the saved articles' UIDs."
(when articles
(with-current-buffer (or buffer (current-buffer))
(let ((mailbox (imap-utf7-encode mailbox)))
(if (let ((cmd (concat "UID COPY " articles " \"" mailbox "\""))
(imap-current-target-mailbox mailbox))
(if (imap-ok-p (imap-send-command-wait cmd))
t
(when (and (not dont-create)
;; removed because of buggy Oracle server
;; that doesn't send TRYCREATE tags (which
;; is a MUST according to specifications):
;;(imap-mailbox-get-1 'trycreate mailbox)
(imap-mailbox-create-1 mailbox))
(imap-ok-p (imap-send-command-wait cmd)))))
(or no-copyuid
(imap-message-copyuid-1 mailbox)))))))
;; FIXME: Amalgamate with imap-message-copyuid-1, using an extra arg, since it
;; shares most of the code? -- fx
(defun imap-message-appenduid-1 (mailbox)
(if (imap-capability 'UIDPLUS)
(imap-mailbox-get-1 'appenduid mailbox)
(let ((old-mailbox imap-current-mailbox)
(state imap-state)
(imap-message-data (obarray-make 2)))
(when (imap-mailbox-examine-1 mailbox)
(prog1
(and (imap-fetch-safe '("*" . "*:*") "UID")
(list (imap-mailbox-get-1 'uidvalidity mailbox)
(apply #'max (imap-message-map
(lambda (uid _prop) uid) 'UID))))
(if old-mailbox
(imap-mailbox-select old-mailbox (eq state 'examine))
(imap-mailbox-unselect)))))))
(defun imap-message-appenduid (mailbox &optional buffer)
(with-current-buffer (or buffer (current-buffer))
(imap-message-appenduid-1 (imap-utf7-encode mailbox))))
(defun imap-message-append (mailbox article &optional _flags _date-time buffer)
"Append ARTICLE (a buffer) to MAILBOX on server in BUFFER.
FLAGS and DATE-TIME is currently not used. Return a cons holding
uidvalidity of MAILBOX and UID the newly created article got, or nil
on failure."
(let ((mailbox (imap-utf7-encode mailbox)))
(with-current-buffer (or buffer (current-buffer))
(and (let ((imap-current-target-mailbox mailbox))
(imap-ok-p
(imap-send-command-wait
(list "APPEND \"" mailbox "\" " article))))
(imap-message-appenduid-1 mailbox)))))
(defun imap-body-lines (body)
"Return number of lines in article by looking at the mime bodystructure BODY."
(if (listp body)
(if (stringp (car body))
(cond ((and (string= (upcase (car body)) "TEXT")
(numberp (nth 7 body)))
(nth 7 body))
((and (string= (upcase (car body)) "MESSAGE")
(numberp (nth 9 body)))
(nth 9 body))
(t 0))
(apply #'+ (mapcar #'imap-body-lines body)))
0))
(defun imap-envelope-from (from)
"Return a FROM string line."
(and from
(concat (aref from 0)
(if (aref from 0) " <")
(aref from 2)
"@"
(aref from 3)
(if (aref from 0) ">"))))
;;; Internal functions
(defun imap-add-callback (tag func)
(setq imap-callbacks (append (list (cons tag func)) imap-callbacks)))
(defun imap-send-command-1 (cmdstr)
(setq cmdstr (concat cmdstr imap-client-eol))
(imap-log cmdstr)
(process-send-string imap-process cmdstr))
(defun imap-send-command (command &optional buffer)
(with-current-buffer (or buffer (current-buffer))
(setq command (ensure-list command))
(let ((tag (setq imap-tag (1+ imap-tag)))
cmd cmdstr)
(setq cmdstr (concat (number-to-string imap-tag) " "))
(while (setq cmd (pop command))
(cond ((stringp cmd)
(setq cmdstr (concat cmdstr cmd)))
((bufferp cmd)
(let ((eol imap-client-eol)
(calcfirst imap-calculate-literal-size-first)
size)
(with-current-buffer cmd
(if calcfirst
(setq size (buffer-size)))
(when (not (equal eol "\r\n"))
;; XXX modifies buffer!
(goto-char (point-min))
(while (search-forward "\r\n" nil t)
(replace-match eol)))
(if (not calcfirst)
(setq size (buffer-size))))
(setq cmdstr
(concat cmdstr (format "{%d}" size))))
(unwind-protect
(progn
(imap-send-command-1 cmdstr)
(setq cmdstr nil)
(if (not (eq (imap-wait-for-tag tag) 'INCOMPLETE))
(setq command nil) ;; abort command if no cont-req
(let ((process imap-process))
(with-current-buffer cmd
(imap-log cmd)
(process-send-region process (point-min)
(point-max)))
(process-send-string process imap-client-eol))))
(setq imap-continuation nil)))
((functionp cmd)
(imap-send-command-1 cmdstr)
(setq cmdstr nil)
(unwind-protect
(setq command
(if (not (eq (imap-wait-for-tag tag) 'INCOMPLETE))
nil ;; abort command if no cont-req
(cons (funcall cmd imap-continuation)
command)))
(setq imap-continuation nil)))
(t
(error "Unknown command type"))))
(if cmdstr
(imap-send-command-1 cmdstr))
tag)))
(defun imap-wait-for-tag (tag &optional buffer)
(with-current-buffer (or buffer (current-buffer))
(let (imap-have-messaged)
(while (and (null imap-continuation)
(memq (process-status imap-process) '(open run))
(< imap-reached-tag tag))
(let ((len (/ (buffer-size) 1024))
message-log-max)
(unless (< len 10)
(setq imap-have-messaged t)
(message "imap read: %dk" len))
(accept-process-output imap-process imap-read-timeout)))
;; A process can die _before_ we have processed everything it
;; has to say. Moreover, this can happen in between the call to
;; accept-process-output and the call to process-status in an
;; iteration of the loop above.
(when (and (null imap-continuation)
(< imap-reached-tag tag))
(accept-process-output imap-process 0))
(when imap-have-messaged
(message ""))
(and (memq (process-status imap-process) '(open run))
(or (assq tag imap-failed-tags)
(if imap-continuation
'INCOMPLETE
'OK))))))
(defun imap-sentinel (process _string)
(delete-process process))
(defun imap-find-next-line ()
"Return point at end of current line, taking into account literals.
Return nil if no complete line has arrived."
(when (re-search-forward (concat imap-server-eol "\\|{\\([0-9]+\\)}"
imap-server-eol)
nil t)
(if (match-string 1)
(if (< (point-max) (+ (point) (string-to-number (match-string 1))))
nil
(goto-char (+ (point) (string-to-number (match-string 1))))
(imap-find-next-line))
(point))))
(defun imap-arrival-filter (proc string)
"IMAP process filter."
;; Sometimes, we are called even though the process has died.
;; Better abstain from doing stuff in that case.
(when (buffer-name (process-buffer proc))
(with-current-buffer (process-buffer proc)
(goto-char (point-max))
(insert string)
(imap-log string)
(let (end)
(goto-char (point-min))
(while (setq end (imap-find-next-line))
(save-restriction
(narrow-to-region (point-min) end)
(delete-char (- (length imap-server-eol)))
(goto-char (point-min))
(unwind-protect
(cond ((eq imap-state 'initial)
(imap-parse-greeting))
((or (eq imap-state 'auth)
(eq imap-state 'nonauth)
(eq imap-state 'selected)
(eq imap-state 'examine))
(imap-parse-response))
(t
(message "Unknown state %s in arrival filter"
imap-state)))
(delete-region (point-min) (point-max)))))))))
;;; Imap parser
(defsubst imap-forward ()
(or (eobp) (forward-char)))
;; number = 1*DIGIT
;; ; Unsigned 32-bit integer
;; ; (0 <= n < 4,294,967,296)
(defsubst imap-parse-number ()
(when (looking-at "[0-9]+")
(prog1
(string-to-number (match-string 0))
(goto-char (match-end 0)))))
;; literal = "{" number "}" CRLF *CHAR8
;; ; Number represents the number of CHAR8s
(defsubst imap-parse-literal ()
(when (looking-at "{\\([0-9]+\\)}\r\n")
(let ((pos (match-end 0))
(len (string-to-number (match-string 1))))
(if (< (point-max) (+ pos len))
nil
(goto-char (+ pos len))
(buffer-substring pos (+ pos len))))))
;; string = quoted / literal
;;
;; quoted = DQUOTE *QUOTED-CHAR DQUOTE
;;
;; QUOTED-CHAR = <any TEXT-CHAR except quoted-specials> /
;; "\" quoted-specials
;;
;; quoted-specials = DQUOTE / "\"
;;
;; TEXT-CHAR = <any CHAR except CR and LF>
(defsubst imap-parse-string ()
(cond ((eq (char-after) ?\")
(forward-char 1)
(let ((p (point)) (name ""))
(skip-chars-forward "^\"\\\\")
(setq name (buffer-substring p (point)))
(while (eq (char-after) ?\\)
(setq p (1+ (point)))
(forward-char 2)
(skip-chars-forward "^\"\\\\")
(setq name (concat name (buffer-substring p (point)))))
(forward-char 1)
name))
((eq (char-after) ?{)
(imap-parse-literal))))
;; nil = "NIL"
(defsubst imap-parse-nil ()
(if (looking-at "NIL")
(goto-char (match-end 0))))
;; nstring = string / nil
(defsubst imap-parse-nstring ()
(or (imap-parse-string)
(and (imap-parse-nil)
nil)))
;; astring = atom / string
;;
;; atom = 1*ATOM-CHAR
;;
;; ATOM-CHAR = <any CHAR except atom-specials>
;;
;; atom-specials = "(" / ")" / "{" / SP / CTL / list-wildcards /
;; quoted-specials
;;
;; list-wildcards = "%" / "*"
;;
;; quoted-specials = DQUOTE / "\"
(defsubst imap-parse-astring ()
(or (imap-parse-string)
(buffer-substring (point)
(if (re-search-forward "[(){ \r\n%*\"\\]" nil t)
(goto-char (1- (match-end 0)))
(end-of-line)
(point)))))
;; address = "(" addr-name SP addr-adl SP addr-mailbox SP
;; addr-host ")"
;;
;; addr-adl = nstring
;; ; Holds route from [RFC-822 (or later)] route-addr if
;; ; non-nil
;;
;; addr-host = nstring
;; ; nil indicates [RFC-822 (or later)] group syntax.
;; ; Otherwise, holds [RFC-822 (or later)] domain name
;;
;; addr-mailbox = nstring
;; ; nil indicates end of [RFC-822 (or later)] group; if
;; ; non-nil and addr-host is nil, holds
;; ; [RFC-822 (or later)] group name.
;; ; Otherwise, holds [RFC-822 (or later)] local-part
;; ; after removing [RFC-822 (or later)] quoting
;;
;; addr-name = nstring
;; ; If non-nil, holds phrase from [RFC-822 (or later)]
;; ; mailbox after removing [RFC-822 (or later)] quoting
;;
(defsubst imap-parse-address ()
(let (address)
(when (eq (char-after) ?\()
(imap-forward)
(setq address (vector (prog1 (imap-parse-nstring)
(imap-forward))
(prog1 (imap-parse-nstring)
(imap-forward))
(prog1 (imap-parse-nstring)
(imap-forward))
(imap-parse-nstring)))
(when (eq (char-after) ?\))
(imap-forward)
address))))
;; address-list = "(" 1*address ")" / nil
;;
;; nil = "NIL"
(defsubst imap-parse-address-list ()
(if (eq (char-after) ?\()
(let (address addresses)
(imap-forward)
(while (and (not (eq (char-after) ?\)))
;; next line for MS Exchange bug
(progn (and (eq (char-after) ? ) (imap-forward)) t)
(setq address (imap-parse-address)))
(setq addresses (cons address addresses)))
(when (eq (char-after) ?\))
(imap-forward)
(nreverse addresses)))
;; With assert, the code might not be eval'd.
;; (cl-assert (imap-parse-nil) t "In imap-parse-address-list")
(imap-parse-nil)))
;; mailbox = "INBOX" / astring
;; ; INBOX is case-insensitive. All case variants of
;; ; INBOX (e.g. "iNbOx") MUST be interpreted as INBOX
;; ; not as an astring. An astring which consists of
;; ; the case-insensitive sequence "I" "N" "B" "O" "X"
;; ; is considered to be INBOX and not an astring.
;; ; Refer to section 5.1 for further
;; ; semantic details of mailbox names.
(defsubst imap-parse-mailbox ()
(let ((mailbox (imap-parse-astring)))
(if (string-equal "INBOX" (upcase mailbox))
"INBOX"
mailbox)))
;; greeting = "*" SP (resp-cond-auth / resp-cond-bye) CRLF
;;
;; resp-cond-auth = ("OK" / "PREAUTH") SP resp-text
;; ; Authentication condition
;;
;; resp-cond-bye = "BYE" SP resp-text
(defun imap-parse-greeting ()
"Parse an IMAP greeting."
(cond ((looking-at "\\* OK ")
(setq imap-state 'nonauth))
((looking-at "\\* PREAUTH ")
(setq imap-state 'auth))
((looking-at "\\* BYE ")
(setq imap-state 'closed))))
;; response = *(continue-req / response-data) response-done
;;
;; continue-req = "+" SP (resp-text / base64) CRLF
;;
;; response-data = "*" SP (resp-cond-state / resp-cond-bye /
;; mailbox-data / message-data / capability-data) CRLF
;;
;; response-done = response-tagged / response-fatal
;;
;; response-fatal = "*" SP resp-cond-bye CRLF
;; ; Server closes connection immediately
;;
;; response-tagged = tag SP resp-cond-state CRLF
;;
;; resp-cond-state = ("OK" / "NO" / "BAD") SP resp-text
;; ; Status condition
;;
;; resp-cond-bye = "BYE" SP resp-text
;;
;; mailbox-data = "FLAGS" SP flag-list /
;; "LIST" SP mailbox-list /
;; "LSUB" SP mailbox-list /
;; "SEARCH" *(SP nz-number) /
;; "STATUS" SP mailbox SP "("
;; [status-att SP number *(SP status-att SP number)] ")" /
;; number SP "EXISTS" /
;; number SP "RECENT"
;;
;; message-data = nz-number SP ("EXPUNGE" / ("FETCH" SP msg-att))
;;
;; capability-data = "CAPABILITY" *(SP capability) SP "IMAP4rev1"
;; *(SP capability)
;; ; IMAP4rev1 servers which offer RFC 1730
;; ; compatibility MUST list "IMAP4" as the first
;; ; capability.
(defun imap-parse-response ()
"Parse an IMAP command response."
(let (token)
(pcase (setq token (read (current-buffer)))
('+ (setq imap-continuation
(or (buffer-substring (min (point-max) (1+ (point)))
(point-max))
t)))
('* (pcase (prog1 (setq token (read (current-buffer)))
(imap-forward))
('OK (imap-parse-resp-text))
('NO (imap-parse-resp-text))
('BAD (imap-parse-resp-text))
('BYE (imap-parse-resp-text))
('FLAGS (imap-mailbox-put 'flags (imap-parse-flag-list)))
('LIST (imap-parse-data-list 'list))
('LSUB (imap-parse-data-list 'lsub))
('SEARCH (imap-mailbox-put
'search
(read (concat "(" (buffer-substring (point) (point-max)) ")"))))
('STATUS (imap-parse-status))
('CAPABILITY (setq imap-capability
(read (concat "(" (upcase (buffer-substring
(point) (point-max)))
")"))))
('ID (setq imap-id (read (buffer-substring (point)
(point-max)))))
('ACL (imap-parse-acl))
(_ (pcase (prog1 (read (current-buffer))
(imap-forward))
('EXISTS (imap-mailbox-put 'exists token))
('RECENT (imap-mailbox-put 'recent token))
('EXPUNGE t)
('FETCH (imap-parse-fetch))
(_ (message "Garbage: %s" (buffer-string)))))))
(_ (let (status)
(if (not (integerp token))
(message "Garbage: %s" (buffer-string))
(pcase (prog1 (setq status (read (current-buffer)))
(imap-forward))
('OK (progn
(setq imap-reached-tag (max imap-reached-tag token))
(imap-parse-resp-text)))
('NO (progn
(setq imap-reached-tag (max imap-reached-tag token))
(save-excursion
(imap-parse-resp-text))
(let (code text)
(when (eq (char-after) ?\[)
(setq code (buffer-substring (point)
(search-forward "]")))
(imap-forward))
(setq text (buffer-substring (point) (point-max)))
(push (list token status code text)
imap-failed-tags))))
('BAD (progn
(setq imap-reached-tag (max imap-reached-tag token))
(save-excursion
(imap-parse-resp-text))
(let (code text)
(when (eq (char-after) ?\[)
(setq code (buffer-substring (point)
(search-forward "]")))
(imap-forward))
(setq text (buffer-substring (point) (point-max)))
(push (list token status code text) imap-failed-tags)
(error "Internal error, tag %s status %s code %s text %s"
token status code text))))
(_ (message "Garbage: %s" (buffer-string))))
(when (assq token imap-callbacks)
(funcall (cdr (assq token imap-callbacks)) token status)
(setq imap-callbacks
(imap-remassoc token imap-callbacks)))))))))
;; resp-text = ["[" resp-text-code "]" SP] text
;;
;; text = 1*TEXT-CHAR
;;
;; TEXT-CHAR = <any CHAR except CR and LF>
(defun imap-parse-resp-text ()
(imap-parse-resp-text-code))
;; resp-text-code = "ALERT" /
;; "BADCHARSET [SP "(" astring *(SP astring) ")" ] /
;; "NEWNAME" SP string SP string /
;; "PARSE" /
;; "PERMANENTFLAGS" SP "("
;; [flag-perm *(SP flag-perm)] ")" /
;; "READ-ONLY" /
;; "READ-WRITE" /
;; "TRYCREATE" /
;; "UIDNEXT" SP nz-number /
;; "UIDVALIDITY" SP nz-number /
;; "UNSEEN" SP nz-number /
;; resp-text-atom [SP 1*<any TEXT-CHAR except "]">]
;;
;; resp_code_apnd = "APPENDUID" SPACE nz_number SPACE uniqueid
;;
;; resp_code_copy = "COPYUID" SPACE nz_number SPACE set SPACE set
;;
;; set = sequence-num / (sequence-num ":" sequence-num) /
;; (set "," set)
;; ; Identifies a set of messages. For message
;; ; sequence numbers, these are consecutive
;; ; numbers from 1 to the number of messages in
;; ; the mailbox
;; ; Comma delimits individual numbers, colon
;; ; delimits between two numbers inclusive.
;; ; Example: 2,4:7,9,12:* is 2,4,5,6,7,9,12,13,
;; ; 14,15 for a mailbox with 15 messages.
;;
;; sequence-num = nz-number / "*"
;; ; * is the largest number in use. For message
;; ; sequence numbers, it is the number of messages
;; ; in the mailbox. For unique identifiers, it is
;; ; the unique identifier of the last message in
;; ; the mailbox.
;;
;; flag-perm = flag / "\*"
;;
;; flag = "\Answered" / "\Flagged" / "\Deleted" /
;; "\Seen" / "\Draft" / flag-keyword / flag-extension
;; ; Does not include "\Recent"
;;
;; flag-extension = "\" atom
;; ; Future expansion. Client implementations
;; ; MUST accept flag-extension flags. Server
;; ; implementations MUST NOT generate
;; ; flag-extension flags except as defined by
;; ; future standard or standards-track
;; ; revisions of this specification.
;;
;; flag-keyword = atom
;;
;; resp-text-atom = 1*<any ATOM-CHAR except "]">
(defun imap-parse-resp-text-code ()
;; xxx next line for stalker communigate pro 3.3.1 bug
(when (looking-at " \\[")
(imap-forward))
(when (eq (char-after) ?\[)
(imap-forward)
(cond ((search-forward "PERMANENTFLAGS " nil t)
(imap-mailbox-put 'permanentflags (imap-parse-flag-list)))
((search-forward "UIDNEXT \\([0-9]+\\)" nil t)
(imap-mailbox-put 'uidnext (match-string 1)))
((search-forward "UNSEEN " nil t)
(imap-mailbox-put 'first-unseen (read (current-buffer))))
((looking-at "UIDVALIDITY \\([0-9]+\\)")
(imap-mailbox-put 'uidvalidity (match-string 1)))
((search-forward "READ-ONLY" nil t)
(imap-mailbox-put 'read-only t))
((search-forward "NEWNAME " nil t)
(let (oldname newname)
(setq oldname (imap-parse-string))
(imap-forward)
(setq newname (imap-parse-string))
(imap-mailbox-put 'newname newname oldname)))
((search-forward "TRYCREATE" nil t)
(imap-mailbox-put 'trycreate t imap-current-target-mailbox))
((looking-at "APPENDUID \\([0-9]+\\) \\([0-9]+\\)")
(imap-mailbox-put 'appenduid
(list (match-string 1)
(string-to-number (match-string 2)))
imap-current-target-mailbox))
((looking-at "COPYUID \\([0-9]+\\) \\([0-9,:]+\\) \\([0-9,:]+\\)")
(imap-mailbox-put 'copyuid (list (match-string 1)
(match-string 2)
(match-string 3))
imap-current-target-mailbox))
((search-forward "ALERT] " nil t)
(message "Imap server %s information: %s" imap-server
(buffer-substring (point) (point-max)))))))
;; mailbox-list = "(" [mbx-list-flags] ")" SP
;; (DQUOTE QUOTED-CHAR DQUOTE / nil) SP mailbox
;;
;; mbx-list-flags = *(mbx-list-oflag SP) mbx-list-sflag
;; *(SP mbx-list-oflag) /
;; mbx-list-oflag *(SP mbx-list-oflag)
;;
;; mbx-list-oflag = "\Noinferiors" / flag-extension
;; ; Other flags; multiple possible per LIST response
;;
;; mbx-list-sflag = "\Noselect" / "\Marked" / "\Unmarked"
;; ; Selectability flags; only one per LIST response
;;
;; QUOTED-CHAR = <any TEXT-CHAR except quoted-specials> /
;; "\" quoted-specials
;;
;; quoted-specials = DQUOTE / "\"
(defun imap-parse-data-list (type)
(let (flags delimiter mailbox)
(setq flags (imap-parse-flag-list))
(when (looking-at " NIL\\| \"\\\\?\\(.\\)\"")
(setq delimiter (match-string 1))
(goto-char (1+ (match-end 0)))
(when (setq mailbox (imap-parse-mailbox))
(imap-mailbox-put type t mailbox)
(imap-mailbox-put 'list-flags flags mailbox)
(imap-mailbox-put 'delimiter delimiter mailbox)))))
;; msg_att ::= "(" 1#("ENVELOPE" SPACE envelope /
;; "FLAGS" SPACE "(" #(flag / "\Recent") ")" /
;; "INTERNALDATE" SPACE date_time /
;; "RFC822" [".HEADER" / ".TEXT"] SPACE nstring /
;; "RFC822.SIZE" SPACE number /
;; "BODY" ["STRUCTURE"] SPACE body /
;; "BODY" section ["<" number ">"] SPACE nstring /
;; "UID" SPACE uniqueid) ")"
;;
;; date_time ::= <"> date_day_fixed "-" date_month "-" date_year
;; SPACE time SPACE zone <">
;;
;; section ::= "[" [section_text / (nz_number *["." nz_number]
;; ["." (section_text / "MIME")])] "]"
;;
;; section_text ::= "HEADER" / "HEADER.FIELDS" [".NOT"]
;; SPACE header_list / "TEXT"
;;
;; header_fld_name ::= astring
;;
;; header_list ::= "(" 1#header_fld_name ")"
(defsubst imap-parse-header-list ()
(when (eq (char-after) ?\()
(let (strlist)
(while (not (eq (char-after) ?\)))
(imap-forward)
(push (imap-parse-astring) strlist))
(imap-forward)
(nreverse strlist))))
(defsubst imap-parse-fetch-body-section ()
(let ((section
(buffer-substring (point) (1- (re-search-forward "[] ]" nil t)))))
(if (eq (char-before) ? )
(prog1
(mapconcat #'identity (cons section (imap-parse-header-list)) " ")
(search-forward "]" nil t))
section)))
(defun imap-parse-fetch ()
(when (eq (char-after) ?\()
(let (uid flags envelope internaldate rfc822 rfc822header rfc822text
rfc822size body bodydetail bodystructure flags-empty)
;; Courier can insert spurious blank characters which will
;; confuse `read', so skip past them.
(while (let ((moved (skip-chars-forward " \t")))
(prog1 (not (eq (char-after) ?\)))
(unless (= moved 0) (backward-char))))
(imap-forward)
(let ((token (read (current-buffer))))
(imap-forward)
(cond ((eq token 'UID)
(setq uid (condition-case ()
(read (current-buffer))
(error))))
((eq token 'FLAGS)
(setq flags (imap-parse-flag-list))
(if (not flags)
(setq flags-empty 't)))
((eq token 'ENVELOPE)
(setq envelope (imap-parse-envelope)))
((eq token 'INTERNALDATE)
(setq internaldate (imap-parse-string)))
((eq token 'RFC822)
(setq rfc822 (imap-parse-nstring)))
((eq token 'RFC822.HEADER)
(setq rfc822header (imap-parse-nstring)))
((eq token 'RFC822.TEXT)
(setq rfc822text (imap-parse-nstring)))
((eq token 'RFC822.SIZE)
(setq rfc822size (read (current-buffer))))
((eq token 'BODY)
(if (eq (char-before) ?\[)
(push (list
(upcase (imap-parse-fetch-body-section))
(and (eq (char-after) ?<)
(buffer-substring (1+ (point))
(search-forward ">" nil t)))
(progn (imap-forward)
(imap-parse-nstring)))
bodydetail)
(setq body (imap-parse-body))))
((eq token 'BODYSTRUCTURE)
(setq bodystructure (imap-parse-body))))))
(when uid
(setq imap-current-message uid)
(imap-message-put uid 'UID uid)
(and (or flags flags-empty) (imap-message-put uid 'FLAGS flags))
(and envelope (imap-message-put uid 'ENVELOPE envelope))
(and internaldate (imap-message-put uid 'INTERNALDATE internaldate))
(and rfc822 (imap-message-put uid 'RFC822 rfc822))
(and rfc822header (imap-message-put uid 'RFC822.HEADER rfc822header))
(and rfc822text (imap-message-put uid 'RFC822.TEXT rfc822text))
(and rfc822size (imap-message-put uid 'RFC822.SIZE rfc822size))
(and body (imap-message-put uid 'BODY body))
(and bodydetail (imap-message-put uid 'BODYDETAIL bodydetail))
(and bodystructure (imap-message-put uid 'BODYSTRUCTURE bodystructure))
(run-hooks 'imap-fetch-data-hook)))))
;; mailbox-data = ...
;; "STATUS" SP mailbox SP "("
;; [status-att SP number
;; *(SP status-att SP number)] ")"
;; ...
;;
;; status-att = "MESSAGES" / "RECENT" / "UIDNEXT" / "UIDVALIDITY" /
;; "UNSEEN"
(defun imap-parse-status ()
(let ((mailbox (imap-parse-mailbox)))
(if (eq (char-after) ? )
(forward-char))
(when (and mailbox (eq (char-after) ?\())
(while (and (not (eq (char-after) ?\)))
(or (forward-char) t)
(looking-at "\\([A-Za-z]+\\) "))
(let ((token (upcase (match-string 1))))
(goto-char (match-end 0))
(cond ((string= token "MESSAGES")
(imap-mailbox-put 'messages (read (current-buffer)) mailbox))
((string= token "RECENT")
(imap-mailbox-put 'recent (read (current-buffer)) mailbox))
((string= token "UIDNEXT")
(and (looking-at "[0-9]+")
(imap-mailbox-put 'uidnext (match-string 0) mailbox)
(goto-char (match-end 0))))
((string= token "UIDVALIDITY")
(and (looking-at "[0-9]+")
(imap-mailbox-put 'uidvalidity (match-string 0) mailbox)
(goto-char (match-end 0))))
((string= token "UNSEEN")
(imap-mailbox-put 'unseen (read (current-buffer)) mailbox))
(t
(message "Unknown status data %s in mailbox %s ignored"
token mailbox)
(read (current-buffer)))))))))
;; acl_data ::= "ACL" SPACE mailbox *(SPACE identifier SPACE
;; rights)
;;
;; identifier ::= astring
;;
;; rights ::= astring
(defun imap-parse-acl ()
(let ((mailbox (imap-parse-mailbox))
identifier rights acl)
(while (eq (char-after) ?\ )
(imap-forward)
(setq identifier (imap-parse-astring))
(imap-forward)
(setq rights (imap-parse-astring))
(setq acl (append acl (list (cons identifier rights)))))
(imap-mailbox-put 'acl acl mailbox)))
;; flag-list = "(" [flag *(SP flag)] ")"
;;
;; flag = "\Answered" / "\Flagged" / "\Deleted" /
;; "\Seen" / "\Draft" / flag-keyword / flag-extension
;; ; Does not include "\Recent"
;;
;; flag-keyword = atom
;;
;; flag-extension = "\" atom
;; ; Future expansion. Client implementations
;; ; MUST accept flag-extension flags. Server
;; ; implementations MUST NOT generate
;; ; flag-extension flags except as defined by
;; ; future standard or standards-track
;; ; revisions of this specification.
(defun imap-parse-flag-list ()
(let (flag-list start)
(cl-assert (eq (char-after) ?\() nil "In imap-parse-flag-list 1")
(while (and (not (eq (char-after) ?\)))
(setq start (progn
(imap-forward)
;; next line for Courier IMAP bug.
(skip-chars-forward " ")
(point)))
(> (skip-chars-forward "^ )" (line-end-position)) 0))
(push (buffer-substring start (point)) flag-list))
(cl-assert (eq (char-after) ?\)) nil "In imap-parse-flag-list 2")
(imap-forward)
(nreverse flag-list)))
;; envelope = "(" env-date SP env-subject SP env-from SP env-sender SP
;; env-reply-to SP env-to SP env-cc SP env-bcc SP
;; env-in-reply-to SP env-message-id ")"
;;
;; env-bcc = "(" 1*address ")" / nil
;;
;; env-cc = "(" 1*address ")" / nil
;;
;; env-date = nstring
;;
;; env-from = "(" 1*address ")" / nil
;;
;; env-in-reply-to = nstring
;;
;; env-message-id = nstring
;;
;; env-reply-to = "(" 1*address ")" / nil
;;
;; env-sender = "(" 1*address ")" / nil
;;
;; env-subject = nstring
;;
;; env-to = "(" 1*address ")" / nil
(defun imap-parse-envelope ()
(when (eq (char-after) ?\()
(imap-forward)
(vector (prog1 (imap-parse-nstring) ;; date
(imap-forward))
(prog1 (imap-parse-nstring) ;; subject
(imap-forward))
(prog1 (imap-parse-address-list) ;; from
(imap-forward))
(prog1 (imap-parse-address-list) ;; sender
(imap-forward))
(prog1 (imap-parse-address-list) ;; reply-to
(imap-forward))
(prog1 (imap-parse-address-list) ;; to
(imap-forward))
(prog1 (imap-parse-address-list) ;; cc
(imap-forward))
(prog1 (imap-parse-address-list) ;; bcc
(imap-forward))
(prog1 (imap-parse-nstring) ;; in-reply-to
(imap-forward))
(prog1 (imap-parse-nstring) ;; message-id
(imap-forward)))))
;; body-fld-param = "(" string SP string *(SP string SP string) ")" / nil
(defsubst imap-parse-string-list ()
(cond ((eq (char-after) ?\() ;; body-fld-param
(let (strlist str)
(imap-forward)
(while (setq str (imap-parse-string))
(push str strlist)
;; buggy stalker communigate pro 3.0 doesn't print SPC
;; between body-fld-param's sometimes
(or (eq (char-after) ?\")
(imap-forward)))
(nreverse strlist)))
((imap-parse-nil)
nil)))
;; body-extension = nstring / number /
;; "(" body-extension *(SP body-extension) ")"
;; ; Future expansion. Client implementations
;; ; MUST accept body-extension fields. Server
;; ; implementations MUST NOT generate
;; ; body-extension fields except as defined by
;; ; future standard or standards-track
;; ; revisions of this specification.
(defun imap-parse-body-extension ()
(if (eq (char-after) ?\()
(let (b-e)
(imap-forward)
(push (imap-parse-body-extension) b-e)
(while (eq (char-after) ?\ )
(imap-forward)
(push (imap-parse-body-extension) b-e))
(cl-assert (eq (char-after) ?\)) nil "In imap-parse-body-extension")
(imap-forward)
(nreverse b-e))
(or (imap-parse-number)
(imap-parse-nstring))))
;; body-ext-1part = body-fld-md5 [SP body-fld-dsp [SP body-fld-lang
;; *(SP body-extension)]]
;; ; MUST NOT be returned on non-extensible
;; ; "BODY" fetch
;;
;; body-ext-mpart = body-fld-param [SP body-fld-dsp [SP body-fld-lang
;; *(SP body-extension)]]
;; ; MUST NOT be returned on non-extensible
;; ; "BODY" fetch
(defsubst imap-parse-body-ext ()
(let (ext)
(when (eq (char-after) ?\ ) ;; body-fld-dsp
(imap-forward)
(let (dsp)
(if (eq (char-after) ?\()
(progn
(imap-forward)
(push (imap-parse-string) dsp)
(imap-forward)
(push (imap-parse-string-list) dsp)
(imap-forward))
;; With assert, the code might not be eval'd.
;; (cl-assert (imap-parse-nil) t "In imap-parse-body-ext")
(imap-parse-nil))
(push (nreverse dsp) ext))
(when (eq (char-after) ?\ ) ;; body-fld-lang
(imap-forward)
(if (eq (char-after) ?\()
(push (imap-parse-string-list) ext)
(push (imap-parse-nstring) ext))
(while (eq (char-after) ?\ ) ;; body-extension
(imap-forward)
(setq ext (append (imap-parse-body-extension) ext)))))
ext))
;; body = "(" body-type-1part / body-type-mpart ")"
;;
;; body-ext-1part = body-fld-md5 [SP body-fld-dsp [SP body-fld-lang
;; *(SP body-extension)]]
;; ; MUST NOT be returned on non-extensible
;; ; "BODY" fetch
;;
;; body-ext-mpart = body-fld-param [SP body-fld-dsp [SP body-fld-lang
;; *(SP body-extension)]]
;; ; MUST NOT be returned on non-extensible
;; ; "BODY" fetch
;;
;; body-fields = body-fld-param SP body-fld-id SP body-fld-desc SP
;; body-fld-enc SP body-fld-octets
;;
;; body-fld-desc = nstring
;;
;; body-fld-dsp = "(" string SP body-fld-param ")" / nil
;;
;; body-fld-enc = (DQUOTE ("7BIT" / "8BIT" / "BINARY" / "BASE64"/
;; "QUOTED-PRINTABLE") DQUOTE) / string
;;
;; body-fld-id = nstring
;;
;; body-fld-lang = nstring / "(" string *(SP string) ")"
;;
;; body-fld-lines = number
;;
;; body-fld-md5 = nstring
;;
;; body-fld-octets = number
;;
;; body-fld-param = "(" string SP string *(SP string SP string) ")" / nil
;;
;; body-type-1part = (body-type-basic / body-type-msg / body-type-text)
;; [SP body-ext-1part]
;;
;; body-type-basic = media-basic SP body-fields
;; ; MESSAGE subtype MUST NOT be "RFC822"
;;
;; body-type-msg = media-message SP body-fields SP envelope
;; SP body SP body-fld-lines
;;
;; body-type-text = media-text SP body-fields SP body-fld-lines
;;
;; body-type-mpart = 1*body SP media-subtype
;; [SP body-ext-mpart]
;;
;; media-basic = ((DQUOTE ("APPLICATION" / "AUDIO" / "IMAGE" /
;; "MESSAGE" / "VIDEO") DQUOTE) / string) SP media-subtype
;; ; Defined in [MIME-IMT]
;;
;; media-message = DQUOTE "MESSAGE" DQUOTE SP DQUOTE "RFC822" DQUOTE
;; ; Defined in [MIME-IMT]
;;
;; media-subtype = string
;; ; Defined in [MIME-IMT]
;;
;; media-text = DQUOTE "TEXT" DQUOTE SP media-subtype
;; ; Defined in [MIME-IMT]
(defun imap-parse-body ()
(let (body)
(when (eq (char-after) ?\()
(imap-forward)
(if (eq (char-after) ?\()
(let (subbody)
(while (and (eq (char-after) ?\()
(setq subbody (imap-parse-body)))
;; buggy stalker communigate pro 3.0 inserts a SPC between
;; parts in multiparts
(when (and (eq (char-after) ?\ )
(eq (char-after (1+ (point))) ?\())
(imap-forward))
(push subbody body))
(imap-forward)
(push (imap-parse-string) body) ;; media-subtype
(when (eq (char-after) ?\ ) ;; body-ext-mpart:
(imap-forward)
(if (eq (char-after) ?\() ;; body-fld-param
(push (imap-parse-string-list) body)
(push (and (imap-parse-nil) nil) body))
(setq body
(append (imap-parse-body-ext) body))) ;; body-ext-...
(cl-assert (eq (char-after) ?\)) nil "In imap-parse-body")
(imap-forward)
(nreverse body))
(push (imap-parse-string) body) ;; media-type
(imap-forward)
(push (imap-parse-string) body) ;; media-subtype
(imap-forward)
;; next line for Sun SIMS bug
(and (eq (char-after) ? ) (imap-forward))
(if (eq (char-after) ?\() ;; body-fld-param
(push (imap-parse-string-list) body)
(push (and (imap-parse-nil) nil) body))
(imap-forward)
(push (imap-parse-nstring) body) ;; body-fld-id
(imap-forward)
(push (imap-parse-nstring) body) ;; body-fld-desc
(imap-forward)
;; Next `or' for Sun SIMS bug. It regards body-fld-enc as a
;; nstring and returns nil instead of defaulting back to 7BIT
;; as the standard says.
;; Exchange (2007, at least) does this as well.
(push (or (imap-parse-nstring) "7BIT") body) ;; body-fld-enc
(imap-forward)
;; Exchange 2007 can return -1, contrary to the spec...
(if (eq (char-after) ?-)
(progn
(skip-chars-forward "-0-9")
(push nil body))
(push (imap-parse-number) body)) ;; body-fld-octets
;; Ok, we're done parsing the required parts, what comes now is one of
;; three things:
;;
;; envelope (then we're parsing body-type-msg)
;; body-fld-lines (then we're parsing body-type-text)
;; body-ext-1part (then we're parsing body-type-basic)
;;
;; The problem is that the two first are in turn optionally followed
;; by the third. So we parse the first two here (if there are any)...
(when (eq (char-after) ?\ )
(imap-forward)
(let (lines)
(cond ((eq (char-after) ?\() ;; body-type-msg:
(push (imap-parse-envelope) body) ;; envelope
(imap-forward)
(push (imap-parse-body) body) ;; body
;; buggy stalker communigate pro 3.0 doesn't print
;; number of lines in message/rfc822 attachment
(if (eq (char-after) ?\))
(push 0 body)
(imap-forward)
(push (imap-parse-number) body))) ;; body-fld-lines
((setq lines (imap-parse-number)) ;; body-type-text:
(push lines body)) ;; body-fld-lines
(t
(backward-char))))) ;; no match...
;; ...and then parse the third one here...
(when (eq (char-after) ?\ ) ;; body-ext-1part:
(imap-forward)
(push (imap-parse-nstring) body) ;; body-fld-md5
(setq body (append (imap-parse-body-ext) body))) ;; body-ext-1part..
(cl-assert (eq (char-after) ?\)) nil "In imap-parse-body 2")
(imap-forward)
(nreverse body)))))
;;; Debug
(when imap-debug ; (untrace-all)
(require 'trace)
(buffer-disable-undo (get-buffer-create imap-debug-buffer))
(mapc (lambda (f) (trace-function-background f imap-debug-buffer))
'(
imap-utf7-encode
imap-utf7-decode
imap-error-text
imap-kerberos4s-p
imap-kerberos4-open
imap-network-p
imap-network-open
imap-interactive-login
imap-kerberos4a-p
imap-kerberos4-auth
imap-cram-md5-p
imap-cram-md5-auth
imap-login-p
imap-login-auth
imap-anonymous-p
imap-anonymous-auth
imap-open-1
imap-open
imap-opened
imap-ping-server
imap-authenticate
imap-close
imap-capability
imap-namespace
imap-send-command-wait
imap-mailbox-put
imap-mailbox-get
imap-mailbox-map-1
imap-mailbox-map
imap-current-mailbox
imap-current-mailbox-p-1
imap-current-mailbox-p
imap-mailbox-select-1
imap-mailbox-select
imap-mailbox-examine-1
imap-mailbox-examine
imap-mailbox-unselect
imap-mailbox-expunge
imap-mailbox-close
imap-mailbox-create-1
imap-mailbox-create
imap-mailbox-delete
imap-mailbox-rename
imap-mailbox-lsub
imap-mailbox-list
imap-mailbox-subscribe
imap-mailbox-unsubscribe
imap-mailbox-status
imap-mailbox-acl-get
imap-mailbox-acl-set
imap-mailbox-acl-delete
imap-current-message
imap-list-to-message-set
imap-fetch-asynch
imap-fetch
imap-fetch-safe
imap-message-put
imap-message-get
imap-message-map
imap-search
imap-message-flag-permanent-p
imap-message-flags-set
imap-message-flags-del
imap-message-flags-add
imap-message-copyuid-1
imap-message-copyuid
imap-message-copy
imap-message-appenduid-1
imap-message-appenduid
imap-message-append
imap-body-lines
imap-envelope-from
imap-send-command-1
imap-send-command
imap-wait-for-tag
imap-sentinel
imap-find-next-line
imap-arrival-filter
imap-parse-greeting
imap-parse-response
imap-parse-resp-text
imap-parse-resp-text-code
imap-parse-data-list
imap-parse-fetch
imap-parse-status
imap-parse-acl
imap-parse-flag-list
imap-parse-envelope
imap-parse-body-extension
imap-parse-body
)))
(provide 'imap)
;;; imap.el ends here
|