1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127
|
/* A Bison parser, made by GNU Bison 3.8.2. */
/* Bison implementation for Yacc-like parsers in C
Copyright (C) 1984, 1989-1990, 2000-2015, 2018-2021 Free Software Foundation,
Inc.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>. */
/* As a special exception, you may create a larger work that contains
part or all of the Bison parser skeleton and distribute that work
under terms of your choice, so long as that work isn't itself a
parser generator using the skeleton or a modified version thereof
as a parser skeleton. Alternatively, if you modify or redistribute
the parser skeleton itself, you may (at your option) remove this
special exception, which will cause the skeleton and the resulting
Bison output files to be licensed under the GNU General Public
License without this special exception.
This special exception was added by the Free Software Foundation in
version 2.2 of Bison. */
/* C LALR(1) parser skeleton written by Richard Stallman, by
simplifying the original so-called "semantic" parser. */
/* DO NOT RELY ON FEATURES THAT ARE NOT DOCUMENTED in the manual,
especially those whose name start with YY_ or yy_. They are
private implementation details that can be changed or removed. */
/* All symbols defined below should begin with yy or YY, to avoid
infringing on user name space. This should be done even for local
variables, as they might otherwise be expanded by user macros.
There are some unavoidable exceptions within include files to
define necessary library symbols; they are noted "INFRINGES ON
USER NAME SPACE" below. */
/* Identify Bison output, and Bison version. */
#define YYBISON 30802
/* Bison version string. */
#define YYBISON_VERSION "3.8.2"
/* Skeleton name. */
#define YYSKELETON_NAME "yacc.c"
/* Pure parsers. */
#define YYPURE 0
/* Push parsers. */
#define YYPUSH 0
/* Pull parsers. */
#define YYPULL 1
/* First part of user prologue. */
#line 3 "../rcfile_y.y"
/*
* rcfile_y.y -- Run control file parser for fetchmail
*
* For license terms, see the file COPYING in this directory.
*/
#include "config.h"
#include "fetchmail.h"
#include <stdio.h>
#include <sys/types.h>
#include <sys/file.h>
#include <sys/wait.h>
#include <sys/stat.h>
#include <errno.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include "i18n.h"
#include "rcfile_l.h"
/* parser reads these */
char *rcfile; /* path name of rc file */
struct query cmd_opts; /* where to put command-line info */
/* parser sets these */
struct query *querylist; /* head of server list (globally visible) */
static struct query current; /* current server record */
static int prc_errflag;
static struct hostdata *leadentry;
static flag trailer;
static void record_current(void);
static void user_reset(void);
static void reset_server(const char *name, int skip);
/* these should be of size PATH_MAX */
char currentwd[1024] = "", rcfiledir[1024] = "";
/* lexer interface */
extern int prc_lineno;
static void yyerror (const char *s)
/* report a syntax or out-of-memory error */
{
report_at_line(stderr, 0, rcfile, prc_lineno, GT_("%s at %s"), s,
(yytext && yytext[0]) ? yytext : GT_("end of input"));
prc_errflag++;
}
#line 124 "rcfile_y.c"
# ifndef YY_CAST
# ifdef __cplusplus
# define YY_CAST(Type, Val) static_cast<Type> (Val)
# define YY_REINTERPRET_CAST(Type, Val) reinterpret_cast<Type> (Val)
# else
# define YY_CAST(Type, Val) ((Type) (Val))
# define YY_REINTERPRET_CAST(Type, Val) ((Type) (Val))
# endif
# endif
# ifndef YY_NULLPTR
# if defined __cplusplus
# if 201103L <= __cplusplus
# define YY_NULLPTR nullptr
# else
# define YY_NULLPTR 0
# endif
# else
# define YY_NULLPTR ((void*)0)
# endif
# endif
/* Use api.header.include to #include this header
instead of duplicating it here. */
#ifndef YY_YY_RCFILE_Y_H_INCLUDED
# define YY_YY_RCFILE_Y_H_INCLUDED
/* Debug traces. */
#ifndef YYDEBUG
# define YYDEBUG 1
#endif
#if YYDEBUG
extern int yydebug;
#endif
/* Token kinds. */
#ifndef YYTOKENTYPE
# define YYTOKENTYPE
enum yytokentype
{
YYEMPTY = -2,
YYEOF = 0, /* "end of file" */
YYerror = 256, /* error */
YYUNDEF = 257, /* "invalid token" */
DEFAULTS = 258, /* DEFAULTS */
POLL = 259, /* POLL */
SKIP = 260, /* SKIP */
VIA = 261, /* VIA */
AKA = 262, /* AKA */
LOCALDOMAINS = 263, /* LOCALDOMAINS */
PROTOCOL = 264, /* PROTOCOL */
AUTHENTICATE = 265, /* AUTHENTICATE */
TIMEOUT = 266, /* TIMEOUT */
IDLETIMEOUT = 267, /* IDLETIMEOUT */
KPOP = 268, /* KPOP */
SDPS = 269, /* SDPS */
ENVELOPE = 270, /* ENVELOPE */
QVIRTUAL = 271, /* QVIRTUAL */
USERNAME = 272, /* USERNAME */
PASSWORD = 273, /* PASSWORD */
FOLDER = 274, /* FOLDER */
SMTPHOST = 275, /* SMTPHOST */
FETCHDOMAINS = 276, /* FETCHDOMAINS */
MDA = 277, /* MDA */
BSMTP = 278, /* BSMTP */
LMTP = 279, /* LMTP */
SMTPADDRESS = 280, /* SMTPADDRESS */
SMTPNAME = 281, /* SMTPNAME */
SPAMRESPONSE = 282, /* SPAMRESPONSE */
PRECONNECT = 283, /* PRECONNECT */
POSTCONNECT = 284, /* POSTCONNECT */
LIMIT = 285, /* LIMIT */
WARNINGS = 286, /* WARNINGS */
INTERFACE = 287, /* INTERFACE */
MONITOR = 288, /* MONITOR */
PLUGIN = 289, /* PLUGIN */
PLUGOUT = 290, /* PLUGOUT */
IS = 291, /* IS */
HERE = 292, /* HERE */
THERE = 293, /* THERE */
TO = 294, /* TO */
MAP = 295, /* MAP */
BATCHLIMIT = 296, /* BATCHLIMIT */
FETCHLIMIT = 297, /* FETCHLIMIT */
FETCHSIZELIMIT = 298, /* FETCHSIZELIMIT */
FASTUIDL = 299, /* FASTUIDL */
EXPUNGE = 300, /* EXPUNGE */
PROPERTIES = 301, /* PROPERTIES */
SET = 302, /* SET */
LOGFILE = 303, /* LOGFILE */
DAEMON = 304, /* DAEMON */
SYSLOG = 305, /* SYSLOG */
IDFILE = 306, /* IDFILE */
PIDFILE = 307, /* PIDFILE */
INVISIBLE = 308, /* INVISIBLE */
POSTMASTER = 309, /* POSTMASTER */
BOUNCEMAIL = 310, /* BOUNCEMAIL */
SPAMBOUNCE = 311, /* SPAMBOUNCE */
SOFTBOUNCE = 312, /* SOFTBOUNCE */
SHOWDOTS = 313, /* SHOWDOTS */
BADHEADER = 314, /* BADHEADER */
ACCEPT = 315, /* ACCEPT */
REJECT_ = 316, /* REJECT_ */
PROTO = 317, /* PROTO */
AUTHTYPE = 318, /* AUTHTYPE */
STRING = 319, /* STRING */
NUMBER = 320, /* NUMBER */
NO = 321, /* NO */
KEEP = 322, /* KEEP */
MOVETO = 323, /* MOVETO */
FLUSH = 324, /* FLUSH */
LIMITFLUSH = 325, /* LIMITFLUSH */
FETCHALL = 326, /* FETCHALL */
REWRITE = 327, /* REWRITE */
FORCECR = 328, /* FORCECR */
STRIPCR = 329, /* STRIPCR */
PASS8BITS = 330, /* PASS8BITS */
DROPSTATUS = 331, /* DROPSTATUS */
DROPDELIVERED = 332, /* DROPDELIVERED */
FORCEIDLE = 333, /* FORCEIDLE */
DNS = 334, /* DNS */
SERVICE = 335, /* SERVICE */
PORT = 336, /* PORT */
UIDL = 337, /* UIDL */
INTERVAL = 338, /* INTERVAL */
MIMEDECODE = 339, /* MIMEDECODE */
IDLE = 340, /* IDLE */
CHECKALIAS = 341, /* CHECKALIAS */
SSL = 342, /* SSL */
SSLKEY = 343, /* SSLKEY */
SSLCERT = 344, /* SSLCERT */
SSLPROTO = 345, /* SSLPROTO */
SSLCERTCK = 346, /* SSLCERTCK */
SSLCERTFILE = 347, /* SSLCERTFILE */
SSLCERTPATH = 348, /* SSLCERTPATH */
SSLCOMMONNAME = 349, /* SSLCOMMONNAME */
SSLFINGERPRINT = 350, /* SSLFINGERPRINT */
PRINCIPAL = 351, /* PRINCIPAL */
ESMTPNAME = 352, /* ESMTPNAME */
ESMTPPASSWORD = 353, /* ESMTPPASSWORD */
TRACEPOLLS = 354 /* TRACEPOLLS */
};
typedef enum yytokentype yytoken_kind_t;
#endif
/* Token kinds. */
#define YYEMPTY -2
#define YYEOF 0
#define YYerror 256
#define YYUNDEF 257
#define DEFAULTS 258
#define POLL 259
#define SKIP 260
#define VIA 261
#define AKA 262
#define LOCALDOMAINS 263
#define PROTOCOL 264
#define AUTHENTICATE 265
#define TIMEOUT 266
#define IDLETIMEOUT 267
#define KPOP 268
#define SDPS 269
#define ENVELOPE 270
#define QVIRTUAL 271
#define USERNAME 272
#define PASSWORD 273
#define FOLDER 274
#define SMTPHOST 275
#define FETCHDOMAINS 276
#define MDA 277
#define BSMTP 278
#define LMTP 279
#define SMTPADDRESS 280
#define SMTPNAME 281
#define SPAMRESPONSE 282
#define PRECONNECT 283
#define POSTCONNECT 284
#define LIMIT 285
#define WARNINGS 286
#define INTERFACE 287
#define MONITOR 288
#define PLUGIN 289
#define PLUGOUT 290
#define IS 291
#define HERE 292
#define THERE 293
#define TO 294
#define MAP 295
#define BATCHLIMIT 296
#define FETCHLIMIT 297
#define FETCHSIZELIMIT 298
#define FASTUIDL 299
#define EXPUNGE 300
#define PROPERTIES 301
#define SET 302
#define LOGFILE 303
#define DAEMON 304
#define SYSLOG 305
#define IDFILE 306
#define PIDFILE 307
#define INVISIBLE 308
#define POSTMASTER 309
#define BOUNCEMAIL 310
#define SPAMBOUNCE 311
#define SOFTBOUNCE 312
#define SHOWDOTS 313
#define BADHEADER 314
#define ACCEPT 315
#define REJECT_ 316
#define PROTO 317
#define AUTHTYPE 318
#define STRING 319
#define NUMBER 320
#define NO 321
#define KEEP 322
#define MOVETO 323
#define FLUSH 324
#define LIMITFLUSH 325
#define FETCHALL 326
#define REWRITE 327
#define FORCECR 328
#define STRIPCR 329
#define PASS8BITS 330
#define DROPSTATUS 331
#define DROPDELIVERED 332
#define FORCEIDLE 333
#define DNS 334
#define SERVICE 335
#define PORT 336
#define UIDL 337
#define INTERVAL 338
#define MIMEDECODE 339
#define IDLE 340
#define CHECKALIAS 341
#define SSL 342
#define SSLKEY 343
#define SSLCERT 344
#define SSLPROTO 345
#define SSLCERTCK 346
#define SSLCERTFILE 347
#define SSLCERTPATH 348
#define SSLCOMMONNAME 349
#define SSLFINGERPRINT 350
#define PRINCIPAL 351
#define ESMTPNAME 352
#define ESMTPPASSWORD 353
#define TRACEPOLLS 354
/* Value type. */
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
union YYSTYPE
{
#line 56 "../rcfile_y.y"
int proto;
int number;
char *sval;
#line 381 "rcfile_y.c"
};
typedef union YYSTYPE YYSTYPE;
# define YYSTYPE_IS_TRIVIAL 1
# define YYSTYPE_IS_DECLARED 1
#endif
extern YYSTYPE yylval;
int yyparse (void);
#endif /* !YY_YY_RCFILE_Y_H_INCLUDED */
/* Symbol kind. */
enum yysymbol_kind_t
{
YYSYMBOL_YYEMPTY = -2,
YYSYMBOL_YYEOF = 0, /* "end of file" */
YYSYMBOL_YYerror = 1, /* error */
YYSYMBOL_YYUNDEF = 2, /* "invalid token" */
YYSYMBOL_DEFAULTS = 3, /* DEFAULTS */
YYSYMBOL_POLL = 4, /* POLL */
YYSYMBOL_SKIP = 5, /* SKIP */
YYSYMBOL_VIA = 6, /* VIA */
YYSYMBOL_AKA = 7, /* AKA */
YYSYMBOL_LOCALDOMAINS = 8, /* LOCALDOMAINS */
YYSYMBOL_PROTOCOL = 9, /* PROTOCOL */
YYSYMBOL_AUTHENTICATE = 10, /* AUTHENTICATE */
YYSYMBOL_TIMEOUT = 11, /* TIMEOUT */
YYSYMBOL_IDLETIMEOUT = 12, /* IDLETIMEOUT */
YYSYMBOL_KPOP = 13, /* KPOP */
YYSYMBOL_SDPS = 14, /* SDPS */
YYSYMBOL_ENVELOPE = 15, /* ENVELOPE */
YYSYMBOL_QVIRTUAL = 16, /* QVIRTUAL */
YYSYMBOL_USERNAME = 17, /* USERNAME */
YYSYMBOL_PASSWORD = 18, /* PASSWORD */
YYSYMBOL_FOLDER = 19, /* FOLDER */
YYSYMBOL_SMTPHOST = 20, /* SMTPHOST */
YYSYMBOL_FETCHDOMAINS = 21, /* FETCHDOMAINS */
YYSYMBOL_MDA = 22, /* MDA */
YYSYMBOL_BSMTP = 23, /* BSMTP */
YYSYMBOL_LMTP = 24, /* LMTP */
YYSYMBOL_SMTPADDRESS = 25, /* SMTPADDRESS */
YYSYMBOL_SMTPNAME = 26, /* SMTPNAME */
YYSYMBOL_SPAMRESPONSE = 27, /* SPAMRESPONSE */
YYSYMBOL_PRECONNECT = 28, /* PRECONNECT */
YYSYMBOL_POSTCONNECT = 29, /* POSTCONNECT */
YYSYMBOL_LIMIT = 30, /* LIMIT */
YYSYMBOL_WARNINGS = 31, /* WARNINGS */
YYSYMBOL_INTERFACE = 32, /* INTERFACE */
YYSYMBOL_MONITOR = 33, /* MONITOR */
YYSYMBOL_PLUGIN = 34, /* PLUGIN */
YYSYMBOL_PLUGOUT = 35, /* PLUGOUT */
YYSYMBOL_IS = 36, /* IS */
YYSYMBOL_HERE = 37, /* HERE */
YYSYMBOL_THERE = 38, /* THERE */
YYSYMBOL_TO = 39, /* TO */
YYSYMBOL_MAP = 40, /* MAP */
YYSYMBOL_BATCHLIMIT = 41, /* BATCHLIMIT */
YYSYMBOL_FETCHLIMIT = 42, /* FETCHLIMIT */
YYSYMBOL_FETCHSIZELIMIT = 43, /* FETCHSIZELIMIT */
YYSYMBOL_FASTUIDL = 44, /* FASTUIDL */
YYSYMBOL_EXPUNGE = 45, /* EXPUNGE */
YYSYMBOL_PROPERTIES = 46, /* PROPERTIES */
YYSYMBOL_SET = 47, /* SET */
YYSYMBOL_LOGFILE = 48, /* LOGFILE */
YYSYMBOL_DAEMON = 49, /* DAEMON */
YYSYMBOL_SYSLOG = 50, /* SYSLOG */
YYSYMBOL_IDFILE = 51, /* IDFILE */
YYSYMBOL_PIDFILE = 52, /* PIDFILE */
YYSYMBOL_INVISIBLE = 53, /* INVISIBLE */
YYSYMBOL_POSTMASTER = 54, /* POSTMASTER */
YYSYMBOL_BOUNCEMAIL = 55, /* BOUNCEMAIL */
YYSYMBOL_SPAMBOUNCE = 56, /* SPAMBOUNCE */
YYSYMBOL_SOFTBOUNCE = 57, /* SOFTBOUNCE */
YYSYMBOL_SHOWDOTS = 58, /* SHOWDOTS */
YYSYMBOL_BADHEADER = 59, /* BADHEADER */
YYSYMBOL_ACCEPT = 60, /* ACCEPT */
YYSYMBOL_REJECT_ = 61, /* REJECT_ */
YYSYMBOL_PROTO = 62, /* PROTO */
YYSYMBOL_AUTHTYPE = 63, /* AUTHTYPE */
YYSYMBOL_STRING = 64, /* STRING */
YYSYMBOL_NUMBER = 65, /* NUMBER */
YYSYMBOL_NO = 66, /* NO */
YYSYMBOL_KEEP = 67, /* KEEP */
YYSYMBOL_MOVETO = 68, /* MOVETO */
YYSYMBOL_FLUSH = 69, /* FLUSH */
YYSYMBOL_LIMITFLUSH = 70, /* LIMITFLUSH */
YYSYMBOL_FETCHALL = 71, /* FETCHALL */
YYSYMBOL_REWRITE = 72, /* REWRITE */
YYSYMBOL_FORCECR = 73, /* FORCECR */
YYSYMBOL_STRIPCR = 74, /* STRIPCR */
YYSYMBOL_PASS8BITS = 75, /* PASS8BITS */
YYSYMBOL_DROPSTATUS = 76, /* DROPSTATUS */
YYSYMBOL_DROPDELIVERED = 77, /* DROPDELIVERED */
YYSYMBOL_FORCEIDLE = 78, /* FORCEIDLE */
YYSYMBOL_DNS = 79, /* DNS */
YYSYMBOL_SERVICE = 80, /* SERVICE */
YYSYMBOL_PORT = 81, /* PORT */
YYSYMBOL_UIDL = 82, /* UIDL */
YYSYMBOL_INTERVAL = 83, /* INTERVAL */
YYSYMBOL_MIMEDECODE = 84, /* MIMEDECODE */
YYSYMBOL_IDLE = 85, /* IDLE */
YYSYMBOL_CHECKALIAS = 86, /* CHECKALIAS */
YYSYMBOL_SSL = 87, /* SSL */
YYSYMBOL_SSLKEY = 88, /* SSLKEY */
YYSYMBOL_SSLCERT = 89, /* SSLCERT */
YYSYMBOL_SSLPROTO = 90, /* SSLPROTO */
YYSYMBOL_SSLCERTCK = 91, /* SSLCERTCK */
YYSYMBOL_SSLCERTFILE = 92, /* SSLCERTFILE */
YYSYMBOL_SSLCERTPATH = 93, /* SSLCERTPATH */
YYSYMBOL_SSLCOMMONNAME = 94, /* SSLCOMMONNAME */
YYSYMBOL_SSLFINGERPRINT = 95, /* SSLFINGERPRINT */
YYSYMBOL_PRINCIPAL = 96, /* PRINCIPAL */
YYSYMBOL_ESMTPNAME = 97, /* ESMTPNAME */
YYSYMBOL_ESMTPPASSWORD = 98, /* ESMTPPASSWORD */
YYSYMBOL_TRACEPOLLS = 99, /* TRACEPOLLS */
YYSYMBOL_YYACCEPT = 100, /* $accept */
YYSYMBOL_statement_list = 101, /* statement_list */
YYSYMBOL_optmap = 102, /* optmap */
YYSYMBOL_statement = 103, /* statement */
YYSYMBOL_define_server = 104, /* define_server */
YYSYMBOL_serverspecs = 105, /* serverspecs */
YYSYMBOL_alias_list = 106, /* alias_list */
YYSYMBOL_domain_list = 107, /* domain_list */
YYSYMBOL_serv_option = 108, /* serv_option */
YYSYMBOL_userspecs = 109, /* userspecs */
YYSYMBOL_explicits = 110, /* explicits */
YYSYMBOL_explicitdef = 111, /* explicitdef */
YYSYMBOL_userdef = 112, /* userdef */
YYSYMBOL_user0opts = 113, /* user0opts */
YYSYMBOL_user1opts = 114, /* user1opts */
YYSYMBOL_mapping_list = 115, /* mapping_list */
YYSYMBOL_mapping = 116, /* mapping */
YYSYMBOL_folder_list = 117, /* folder_list */
YYSYMBOL_smtp_list = 118, /* smtp_list */
YYSYMBOL_fetch_list = 119, /* fetch_list */
YYSYMBOL_num_list = 120, /* num_list */
YYSYMBOL_user_option = 121 /* user_option */
};
typedef enum yysymbol_kind_t yysymbol_kind_t;
#ifdef short
# undef short
#endif
/* On compilers that do not define __PTRDIFF_MAX__ etc., make sure
<limits.h> and (if available) <stdint.h> are included
so that the code can choose integer types of a good width. */
#ifndef __PTRDIFF_MAX__
# include <limits.h> /* INFRINGES ON USER NAME SPACE */
# if defined __STDC_VERSION__ && 199901 <= __STDC_VERSION__
# include <stdint.h> /* INFRINGES ON USER NAME SPACE */
# define YY_STDINT_H
# endif
#endif
/* Narrow types that promote to a signed type and that can represent a
signed or unsigned integer of at least N bits. In tables they can
save space and decrease cache pressure. Promoting to a signed type
helps avoid bugs in integer arithmetic. */
#ifdef __INT_LEAST8_MAX__
typedef __INT_LEAST8_TYPE__ yytype_int8;
#elif defined YY_STDINT_H
typedef int_least8_t yytype_int8;
#else
typedef signed char yytype_int8;
#endif
#ifdef __INT_LEAST16_MAX__
typedef __INT_LEAST16_TYPE__ yytype_int16;
#elif defined YY_STDINT_H
typedef int_least16_t yytype_int16;
#else
typedef short yytype_int16;
#endif
/* Work around bug in HP-UX 11.23, which defines these macros
incorrectly for preprocessor constants. This workaround can likely
be removed in 2023, as HPE has promised support for HP-UX 11.23
(aka HP-UX 11i v2) only through the end of 2022; see Table 2 of
<https://h20195.www2.hpe.com/V2/getpdf.aspx/4AA4-7673ENW.pdf>. */
#ifdef __hpux
# undef UINT_LEAST8_MAX
# undef UINT_LEAST16_MAX
# define UINT_LEAST8_MAX 255
# define UINT_LEAST16_MAX 65535
#endif
#if defined __UINT_LEAST8_MAX__ && __UINT_LEAST8_MAX__ <= __INT_MAX__
typedef __UINT_LEAST8_TYPE__ yytype_uint8;
#elif (!defined __UINT_LEAST8_MAX__ && defined YY_STDINT_H \
&& UINT_LEAST8_MAX <= INT_MAX)
typedef uint_least8_t yytype_uint8;
#elif !defined __UINT_LEAST8_MAX__ && UCHAR_MAX <= INT_MAX
typedef unsigned char yytype_uint8;
#else
typedef short yytype_uint8;
#endif
#if defined __UINT_LEAST16_MAX__ && __UINT_LEAST16_MAX__ <= __INT_MAX__
typedef __UINT_LEAST16_TYPE__ yytype_uint16;
#elif (!defined __UINT_LEAST16_MAX__ && defined YY_STDINT_H \
&& UINT_LEAST16_MAX <= INT_MAX)
typedef uint_least16_t yytype_uint16;
#elif !defined __UINT_LEAST16_MAX__ && USHRT_MAX <= INT_MAX
typedef unsigned short yytype_uint16;
#else
typedef int yytype_uint16;
#endif
#ifndef YYPTRDIFF_T
# if defined __PTRDIFF_TYPE__ && defined __PTRDIFF_MAX__
# define YYPTRDIFF_T __PTRDIFF_TYPE__
# define YYPTRDIFF_MAXIMUM __PTRDIFF_MAX__
# elif defined PTRDIFF_MAX
# ifndef ptrdiff_t
# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
# endif
# define YYPTRDIFF_T ptrdiff_t
# define YYPTRDIFF_MAXIMUM PTRDIFF_MAX
# else
# define YYPTRDIFF_T long
# define YYPTRDIFF_MAXIMUM LONG_MAX
# endif
#endif
#ifndef YYSIZE_T
# ifdef __SIZE_TYPE__
# define YYSIZE_T __SIZE_TYPE__
# elif defined size_t
# define YYSIZE_T size_t
# elif defined __STDC_VERSION__ && 199901 <= __STDC_VERSION__
# include <stddef.h> /* INFRINGES ON USER NAME SPACE */
# define YYSIZE_T size_t
# else
# define YYSIZE_T unsigned
# endif
#endif
#define YYSIZE_MAXIMUM \
YY_CAST (YYPTRDIFF_T, \
(YYPTRDIFF_MAXIMUM < YY_CAST (YYSIZE_T, -1) \
? YYPTRDIFF_MAXIMUM \
: YY_CAST (YYSIZE_T, -1)))
#define YYSIZEOF(X) YY_CAST (YYPTRDIFF_T, sizeof (X))
/* Stored state numbers (used for stacks). */
typedef yytype_uint8 yy_state_t;
/* State numbers in computations. */
typedef int yy_state_fast_t;
#ifndef YY_
# if defined YYENABLE_NLS && YYENABLE_NLS
# if ENABLE_NLS
# include <libintl.h> /* INFRINGES ON USER NAME SPACE */
# define YY_(Msgid) dgettext ("bison-runtime", Msgid)
# endif
# endif
# ifndef YY_
# define YY_(Msgid) Msgid
# endif
#endif
#ifndef YY_ATTRIBUTE_PURE
# if defined __GNUC__ && 2 < __GNUC__ + (96 <= __GNUC_MINOR__)
# define YY_ATTRIBUTE_PURE __attribute__ ((__pure__))
# else
# define YY_ATTRIBUTE_PURE
# endif
#endif
#ifndef YY_ATTRIBUTE_UNUSED
# if defined __GNUC__ && 2 < __GNUC__ + (7 <= __GNUC_MINOR__)
# define YY_ATTRIBUTE_UNUSED __attribute__ ((__unused__))
# else
# define YY_ATTRIBUTE_UNUSED
# endif
#endif
/* Suppress unused-variable warnings by "using" E. */
#if ! defined lint || defined __GNUC__
# define YY_USE(E) ((void) (E))
#else
# define YY_USE(E) /* empty */
#endif
/* Suppress an incorrect diagnostic about yylval being uninitialized. */
#if defined __GNUC__ && ! defined __ICC && 406 <= __GNUC__ * 100 + __GNUC_MINOR__
# if __GNUC__ * 100 + __GNUC_MINOR__ < 407
# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \
_Pragma ("GCC diagnostic push") \
_Pragma ("GCC diagnostic ignored \"-Wuninitialized\"")
# else
# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \
_Pragma ("GCC diagnostic push") \
_Pragma ("GCC diagnostic ignored \"-Wuninitialized\"") \
_Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"")
# endif
# define YY_IGNORE_MAYBE_UNINITIALIZED_END \
_Pragma ("GCC diagnostic pop")
#else
# define YY_INITIAL_VALUE(Value) Value
#endif
#ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
# define YY_IGNORE_MAYBE_UNINITIALIZED_END
#endif
#ifndef YY_INITIAL_VALUE
# define YY_INITIAL_VALUE(Value) /* Nothing. */
#endif
#if defined __cplusplus && defined __GNUC__ && ! defined __ICC && 6 <= __GNUC__
# define YY_IGNORE_USELESS_CAST_BEGIN \
_Pragma ("GCC diagnostic push") \
_Pragma ("GCC diagnostic ignored \"-Wuseless-cast\"")
# define YY_IGNORE_USELESS_CAST_END \
_Pragma ("GCC diagnostic pop")
#endif
#ifndef YY_IGNORE_USELESS_CAST_BEGIN
# define YY_IGNORE_USELESS_CAST_BEGIN
# define YY_IGNORE_USELESS_CAST_END
#endif
#define YY_ASSERT(E) ((void) (0 && (E)))
#if 1
/* The parser invokes alloca or malloc; define the necessary symbols. */
# ifdef YYSTACK_ALLOC
/* Pacify GCC's 'empty if-body' warning. */
# define YYSTACK_FREE(Ptr) do { /* empty */; } while (0)
# ifndef YYSTACK_ALLOC_MAXIMUM
/* The OS might guarantee only one guard page at the bottom of the stack,
and a page size can be as small as 4096 bytes. So we cannot safely
invoke alloca (N) if N exceeds 4096. Use a slightly smaller number
to allow for a few compiler-allocated temporary stack slots. */
# define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */
# endif
# else
# define YYSTACK_ALLOC YYMALLOC
# define YYSTACK_FREE YYFREE
# ifndef YYSTACK_ALLOC_MAXIMUM
# define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM
# endif
# if (defined __cplusplus && ! defined EXIT_SUCCESS \
&& ! ((defined YYMALLOC || defined malloc) \
&& (defined YYFREE || defined free)))
# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */
# ifndef EXIT_SUCCESS
# define EXIT_SUCCESS 0
# endif
# endif
# ifndef YYMALLOC
# define YYMALLOC malloc
# if ! defined malloc && ! defined EXIT_SUCCESS
void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */
# endif
# endif
# ifndef YYFREE
# define YYFREE free
# if ! defined free && ! defined EXIT_SUCCESS
void free (void *); /* INFRINGES ON USER NAME SPACE */
# endif
# endif
# endif
# define YYCOPY_NEEDED 1
#endif /* 1 */
#if (! defined yyoverflow \
&& (! defined __cplusplus \
|| (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))
/* A type that is properly aligned for any stack member. */
union yyalloc
{
yy_state_t yyss_alloc;
YYSTYPE yyvs_alloc;
};
/* The size of the maximum gap between one aligned stack and the next. */
# define YYSTACK_GAP_MAXIMUM (YYSIZEOF (union yyalloc) - 1)
/* The size of an array large to enough to hold all stacks, each with
N elements. */
# define YYSTACK_BYTES(N) \
((N) * (YYSIZEOF (yy_state_t) + YYSIZEOF (YYSTYPE)) \
+ YYSTACK_GAP_MAXIMUM)
# define YYCOPY_NEEDED 1
/* Relocate STACK from its old location to the new one. The
local variables YYSIZE and YYSTACKSIZE give the old and new number of
elements in the stack, and YYPTR gives the new location of the
stack. Advance YYPTR to a properly aligned location for the next
stack. */
# define YYSTACK_RELOCATE(Stack_alloc, Stack) \
do \
{ \
YYPTRDIFF_T yynewbytes; \
YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \
Stack = &yyptr->Stack_alloc; \
yynewbytes = yystacksize * YYSIZEOF (*Stack) + YYSTACK_GAP_MAXIMUM; \
yyptr += yynewbytes / YYSIZEOF (*yyptr); \
} \
while (0)
#endif
#if defined YYCOPY_NEEDED && YYCOPY_NEEDED
/* Copy COUNT objects from SRC to DST. The source and destination do
not overlap. */
# ifndef YYCOPY
# if defined __GNUC__ && 1 < __GNUC__
# define YYCOPY(Dst, Src, Count) \
__builtin_memcpy (Dst, Src, YY_CAST (YYSIZE_T, (Count)) * sizeof (*(Src)))
# else
# define YYCOPY(Dst, Src, Count) \
do \
{ \
YYPTRDIFF_T yyi; \
for (yyi = 0; yyi < (Count); yyi++) \
(Dst)[yyi] = (Src)[yyi]; \
} \
while (0)
# endif
# endif
#endif /* !YYCOPY_NEEDED */
/* YYFINAL -- State number of the termination state. */
#define YYFINAL 3
/* YYLAST -- Last index in YYTABLE. */
#define YYLAST 345
/* YYNTOKENS -- Number of terminals. */
#define YYNTOKENS 100
/* YYNNTS -- Number of nonterminals. */
#define YYNNTS 22
/* YYNRULES -- Number of rules. */
#define YYNRULES 157
/* YYNSTATES -- Number of states. */
#define YYNSTATES 230
/* YYMAXUTOK -- Last valid token kind. */
#define YYMAXUTOK 354
/* YYTRANSLATE(TOKEN-NUM) -- Symbol number corresponding to TOKEN-NUM
as returned by yylex, with out-of-bounds checking. */
#define YYTRANSLATE(YYX) \
(0 <= (YYX) && (YYX) <= YYMAXUTOK \
? YY_CAST (yysymbol_kind_t, yytranslate[YYX]) \
: YYSYMBOL_YYUNDEF)
/* YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to TOKEN-NUM
as returned by yylex. */
static const yytype_int8 yytranslate[] =
{
0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 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
};
#if YYDEBUG
/* YYRLINE[YYN] -- Source line where rule number YYN was defined. */
static const yytype_int16 yyrline[] =
{
0, 97, 97, 98, 99, 102, 102, 105, 106, 107,
108, 109, 110, 111, 112, 113, 114, 115, 116, 117,
118, 119, 120, 121, 122, 130, 131, 134, 138, 139,
140, 143, 144, 147, 148, 151, 152, 155, 156, 157,
158, 159, 170, 171, 172, 173, 181, 182, 183, 184,
185, 188, 194, 200, 202, 204, 206, 208, 213, 219,
220, 228, 236, 237, 238, 239, 240, 241, 242, 243,
244, 247, 248, 251, 252, 255, 258, 259, 260, 263,
264, 267, 268, 271, 272, 275, 281, 284, 285, 288,
289, 292, 293, 296, 302, 310, 311, 312, 313, 315,
316, 317, 318, 319, 320, 321, 322, 323, 324, 325,
326, 327, 329, 330, 331, 332, 333, 334, 335, 336,
337, 338, 339, 340, 341, 342, 344, 351, 352, 353,
354, 355, 356, 357, 358, 360, 361, 362, 363, 364,
365, 366, 367, 368, 369, 370, 371, 372, 374, 375,
377, 378, 379, 380, 381, 382, 383, 385
};
#endif
/** Accessing symbol of state STATE. */
#define YY_ACCESSING_SYMBOL(State) YY_CAST (yysymbol_kind_t, yystos[State])
#if 1
/* The user-facing name of the symbol whose (internal) number is
YYSYMBOL. No bounds checking. */
static const char *yysymbol_name (yysymbol_kind_t yysymbol) YY_ATTRIBUTE_UNUSED;
static const char *
yysymbol_name (yysymbol_kind_t yysymbol)
{
static const char *const yy_sname[] =
{
"end of file", "error", "invalid token", "DEFAULTS", "POLL", "SKIP",
"VIA", "AKA", "LOCALDOMAINS", "PROTOCOL", "AUTHENTICATE", "TIMEOUT",
"IDLETIMEOUT", "KPOP", "SDPS", "ENVELOPE", "QVIRTUAL", "USERNAME",
"PASSWORD", "FOLDER", "SMTPHOST", "FETCHDOMAINS", "MDA", "BSMTP", "LMTP",
"SMTPADDRESS", "SMTPNAME", "SPAMRESPONSE", "PRECONNECT", "POSTCONNECT",
"LIMIT", "WARNINGS", "INTERFACE", "MONITOR", "PLUGIN", "PLUGOUT", "IS",
"HERE", "THERE", "TO", "MAP", "BATCHLIMIT", "FETCHLIMIT",
"FETCHSIZELIMIT", "FASTUIDL", "EXPUNGE", "PROPERTIES", "SET", "LOGFILE",
"DAEMON", "SYSLOG", "IDFILE", "PIDFILE", "INVISIBLE", "POSTMASTER",
"BOUNCEMAIL", "SPAMBOUNCE", "SOFTBOUNCE", "SHOWDOTS", "BADHEADER",
"ACCEPT", "REJECT_", "PROTO", "AUTHTYPE", "STRING", "NUMBER", "NO",
"KEEP", "MOVETO", "FLUSH", "LIMITFLUSH", "FETCHALL", "REWRITE",
"FORCECR", "STRIPCR", "PASS8BITS", "DROPSTATUS", "DROPDELIVERED",
"FORCEIDLE", "DNS", "SERVICE", "PORT", "UIDL", "INTERVAL", "MIMEDECODE",
"IDLE", "CHECKALIAS", "SSL", "SSLKEY", "SSLCERT", "SSLPROTO",
"SSLCERTCK", "SSLCERTFILE", "SSLCERTPATH", "SSLCOMMONNAME",
"SSLFINGERPRINT", "PRINCIPAL", "ESMTPNAME", "ESMTPPASSWORD",
"TRACEPOLLS", "$accept", "statement_list", "optmap", "statement",
"define_server", "serverspecs", "alias_list", "domain_list",
"serv_option", "userspecs", "explicits", "explicitdef", "userdef",
"user0opts", "user1opts", "mapping_list", "mapping", "folder_list",
"smtp_list", "fetch_list", "num_list", "user_option", YY_NULLPTR
};
return yy_sname[yysymbol];
}
#endif
#define YYPACT_NINF (-116)
#define yypact_value_is_default(Yyn) \
((Yyn) == YYPACT_NINF)
#define YYTABLE_NINF (-86)
#define yytable_value_is_error(Yyn) \
0
/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
STATE-NUM. */
static const yytype_int16 yypact[] =
{
109, -116, 116, -116, -116, -55, -22, 279, -116, -116,
-116, -116, 8, 8, 8, -116, 8, 8, -116, 8,
-116, -116, -116, -116, 85, -5, -116, -13, -7, -6,
54, 58, 63, -116, -116, -116, -116, -116, -116, 83,
84, 87, 33, 70, 88, 89, 40, 95, 96, 97,
98, 100, 101, 102, 103, -116, 104, 105, 90, 111,
112, 113, 114, 117, 118, 119, 120, 121, 122, 115,
127, 139, 140, 142, 148, 69, 124, -116, 149, -116,
-116, -116, -116, -116, -116, -116, -116, -116, -116, -116,
72, 151, -116, 152, -116, -116, -116, -116, 150, 154,
155, -116, 156, 157, 158, 174, 175, 176, 177, -116,
-116, 91, 132, -116, -116, 206, -116, -116, -116, -116,
-116, -116, -116, -116, -116, 179, -116, 180, -116, -116,
-116, -116, -116, -116, -116, 182, -116, 94, -29, -116,
-116, -116, 189, -116, 190, -116, 191, -116, -116, -116,
-116, -116, 192, -116, -116, -116, -116, -116, -116, -116,
-116, 5, -4, 216, 80, -116, -116, -116, -116, -116,
-116, -116, -116, -116, -116, -116, -116, -116, -116, -116,
-116, -116, -116, -116, -116, -116, -116, -116, -116, -116,
-116, -116, -116, -116, -116, -116, -116, -116, -116, -116,
-116, -116, -116, -116, -116, -116, -116, -116, 29, -116,
-116, 206, 235, -116, -116, -116, -116, -116, 194, -116,
-116, -116, -116, -116, -116, -116, -116, -116, -116, -116
};
/* YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM.
Performed when YYTABLE does not specify something else to do. Zero
means the default is an error. */
static const yytype_uint8 yydefact[] =
{
0, 4, 0, 1, 30, 0, 0, 0, 3, 31,
28, 29, 6, 6, 6, 19, 6, 6, 21, 6,
12, 14, 16, 23, 0, 25, 5, 0, 0, 0,
0, 0, 0, 20, 22, 13, 15, 17, 24, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 109, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 112, 0, 114,
115, 116, 117, 118, 119, 120, 121, 122, 125, 64,
0, 0, 46, 0, 123, 124, 48, 126, 0, 0,
0, 130, 0, 0, 0, 0, 0, 0, 0, 67,
32, 26, 72, 73, 79, 71, 81, 18, 7, 10,
8, 9, 11, 38, 33, 37, 35, 39, 41, 45,
40, 54, 55, 56, 58, 0, 59, 76, 0, 83,
100, 87, 101, 89, 102, 91, 103, 107, 108, 104,
105, 93, 106, 110, 111, 150, 151, 60, 61, 62,
63, 85, 98, 85, 96, 155, 152, 153, 154, 156,
157, 69, 70, 66, 135, 136, 137, 138, 139, 140,
141, 142, 143, 144, 147, 65, 47, 145, 146, 49,
148, 149, 68, 113, 50, 51, 52, 53, 127, 128,
129, 131, 132, 133, 134, 42, 43, 44, 0, 27,
74, 75, 0, 82, 34, 36, 57, 78, 0, 77,
84, 88, 90, 92, 94, 99, 97, 95, 80, 86
};
/* YYPGOTO[NTERM-NUM]. */
static const yytype_int16 yypgoto[] =
{
-116, -116, 36, -116, -116, -116, -116, -116, 41, -116,
-116, 147, -116, -116, -116, 78, -106, -116, -116, -116,
-116, -115
};
/* YYDEFGOTO[NTERM-NUM]. */
static const yytype_uint8 yydefgoto[] =
{
0, 2, 27, 8, 9, 25, 125, 127, 110, 111,
112, 113, 114, 211, 115, 138, 139, 142, 144, 146,
152, 116
};
/* YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If
positive, shift that token. If negative, reduce the rule whose
number is the opposite. If YYTABLE_NINF, syntax error. */
static const yytype_int16 yytable[] =
{
213, 39, 40, 41, 42, 43, 44, 45, 219, 10,
46, 47, 48, 49, 50, 51, 52, 53, 54, 55,
56, 57, 58, 59, 60, 61, 62, 63, 64, 65,
66, 67, 220, 226, 68, 163, 69, 70, 71, 72,
73, 74, 11, 225, 173, 218, 128, 129, 26, 28,
29, 117, 30, 31, 75, 32, 220, 118, 220, 119,
163, 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, 130, 228, 39, 40, 41,
42, 43, 44, 45, 134, 135, 46, 47, 185, -2,
1, 186, -2, -2, -2, 189, 3, 227, 120, 4,
5, 6, 121, 63, 64, 65, 66, 122, 192, 171,
172, -85, 217, 131, 218, 33, 194, 195, 34, 173,
35, 36, 37, 38, 163, 162, 164, 123, 124, 48,
75, 126, 209, 132, 133, 151, -2, 208, -85, 136,
137, 140, 141, 7, 143, 145, 147, 148, 149, 150,
89, 90, 91, 92, 93, 153, 154, 96, 155, 156,
165, 157, 158, 159, 160, 161, 163, 106, 107, 108,
109, 174, 166, 175, 176, 177, 178, 179, 180, 181,
182, 183, 184, 185, 167, 168, 186, 169, 187, 188,
189, 190, 170, 193, 198, 191, 196, 197, 199, 200,
201, 202, 203, 192, 49, 50, 51, 52, 53, 54,
55, 56, 57, 58, 59, 60, 61, 62, 204, 205,
206, 207, 67, 214, 215, 68, 216, 69, 70, 71,
72, 73, 74, 221, 222, 223, 218, 224, 229, 210,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 212, 77, 78, 79, 80, 81, 82, 83,
84, 85, 86, 87, 88, 0, 0, 0, 0, 0,
94, 95, 0, 97, 98, 99, 100, 101, 102, 103,
104, 105, 174, 0, 175, 176, 177, 178, 179, 180,
181, 182, 183, 184, 0, 0, 0, 0, 0, 187,
188, 0, 190, 0, 0, 12, 191, 13, 14, 15,
16, 17, 18, 19, 20, 21, 22, 23, 0, 0,
0, 0, 0, 0, 0, 24
};
static const yytype_int16 yycheck[] =
{
115, 6, 7, 8, 9, 10, 11, 12, 37, 64,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
35, 36, 138, 37, 39, 64, 41, 42, 43, 44,
45, 46, 64, 38, 15, 40, 13, 14, 40, 13,
14, 64, 16, 17, 59, 19, 162, 64, 164, 65,
64, 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, 62, 211, 6, 7, 8,
9, 10, 11, 12, 64, 65, 15, 16, 79, 0,
1, 82, 3, 4, 5, 86, 0, 37, 64, 3,
4, 5, 64, 32, 33, 34, 35, 64, 99, 60,
61, 37, 38, 63, 40, 50, 64, 65, 53, 15,
55, 56, 57, 58, 64, 67, 68, 64, 64, 17,
59, 64, 111, 65, 65, 65, 47, 66, 64, 64,
64, 64, 64, 47, 64, 64, 64, 64, 64, 64,
79, 80, 81, 82, 83, 64, 64, 86, 65, 65,
65, 64, 64, 64, 64, 64, 64, 96, 97, 98,
99, 67, 65, 69, 70, 71, 72, 73, 74, 75,
76, 77, 78, 79, 65, 65, 82, 65, 84, 85,
86, 87, 64, 64, 64, 91, 65, 65, 64, 64,
64, 64, 64, 99, 18, 19, 20, 21, 22, 23,
24, 25, 26, 27, 28, 29, 30, 31, 64, 64,
64, 64, 36, 64, 64, 39, 64, 41, 42, 43,
44, 45, 46, 64, 64, 64, 40, 65, 64, 112,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, 66, 67, 68, 69, 70, 71, 72, 73,
74, 75, 76, 77, 78, -1, -1, -1, -1, -1,
84, 85, -1, 87, 88, 89, 90, 91, 92, 93,
94, 95, 67, -1, 69, 70, 71, 72, 73, 74,
75, 76, 77, 78, -1, -1, -1, -1, -1, 84,
85, -1, 87, -1, -1, 46, 91, 48, 49, 50,
51, 52, 53, 54, 55, 56, 57, 58, -1, -1,
-1, -1, -1, -1, -1, 66
};
/* YYSTOS[STATE-NUM] -- The symbol kind of the accessing symbol of
state STATE-NUM. */
static const yytype_int8 yystos[] =
{
0, 1, 101, 0, 3, 4, 5, 47, 103, 104,
64, 64, 46, 48, 49, 50, 51, 52, 53, 54,
55, 56, 57, 58, 66, 105, 40, 102, 102, 102,
102, 102, 102, 50, 53, 55, 56, 57, 58, 6,
7, 8, 9, 10, 11, 12, 15, 16, 17, 18,
19, 20, 21, 22, 23, 24, 25, 26, 27, 28,
29, 30, 31, 32, 33, 34, 35, 36, 39, 41,
42, 43, 44, 45, 46, 59, 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,
108, 109, 110, 111, 112, 114, 121, 64, 64, 65,
64, 64, 64, 64, 64, 106, 64, 107, 13, 14,
62, 63, 65, 65, 64, 65, 64, 64, 115, 116,
64, 64, 117, 64, 118, 64, 119, 64, 64, 64,
64, 65, 120, 64, 64, 65, 65, 64, 64, 64,
64, 64, 115, 64, 115, 65, 65, 65, 65, 65,
64, 60, 61, 15, 67, 69, 70, 71, 72, 73,
74, 75, 76, 77, 78, 79, 82, 84, 85, 86,
87, 91, 99, 64, 64, 65, 65, 65, 64, 64,
64, 64, 64, 64, 64, 64, 64, 64, 66, 108,
111, 113, 66, 121, 64, 64, 64, 38, 40, 37,
116, 64, 64, 64, 65, 38, 37, 37, 121, 64
};
/* YYR1[RULE-NUM] -- Symbol kind of the left-hand side of rule RULE-NUM. */
static const yytype_int8 yyr1[] =
{
0, 100, 101, 101, 101, 102, 102, 103, 103, 103,
103, 103, 103, 103, 103, 103, 103, 103, 103, 103,
103, 103, 103, 103, 103, 103, 103, 103, 104, 104,
104, 105, 105, 106, 106, 107, 107, 108, 108, 108,
108, 108, 108, 108, 108, 108, 108, 108, 108, 108,
108, 108, 108, 108, 108, 108, 108, 108, 108, 108,
108, 108, 108, 108, 108, 108, 108, 108, 108, 108,
108, 109, 109, 110, 110, 111, 112, 112, 112, 113,
113, 114, 114, 115, 115, 116, 116, 117, 117, 118,
118, 119, 119, 120, 120, 121, 121, 121, 121, 121,
121, 121, 121, 121, 121, 121, 121, 121, 121, 121,
121, 121, 121, 121, 121, 121, 121, 121, 121, 121,
121, 121, 121, 121, 121, 121, 121, 121, 121, 121,
121, 121, 121, 121, 121, 121, 121, 121, 121, 121,
121, 121, 121, 121, 121, 121, 121, 121, 121, 121,
121, 121, 121, 121, 121, 121, 121, 121
};
/* YYR2[RULE-NUM] -- Number of symbols on the right-hand side of rule RULE-NUM. */
static const yytype_int8 yyr2[] =
{
0, 2, 0, 2, 1, 1, 0, 4, 4, 4,
4, 4, 2, 3, 2, 3, 2, 3, 4, 2,
3, 2, 3, 2, 3, 2, 3, 4, 2, 2,
1, 0, 2, 1, 2, 1, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 1, 2, 1, 2,
2, 2, 2, 2, 2, 2, 2, 3, 2, 2,
2, 2, 2, 2, 1, 2, 2, 1, 2, 2,
2, 1, 1, 1, 2, 2, 2, 3, 3, 0,
2, 1, 2, 1, 2, 1, 3, 1, 2, 1,
2, 1, 2, 1, 2, 3, 2, 3, 2, 3,
2, 2, 2, 2, 2, 2, 2, 2, 2, 1,
2, 2, 1, 2, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 2, 2, 2,
1, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2
};
enum { YYENOMEM = -2 };
#define yyerrok (yyerrstatus = 0)
#define yyclearin (yychar = YYEMPTY)
#define YYACCEPT goto yyacceptlab
#define YYABORT goto yyabortlab
#define YYERROR goto yyerrorlab
#define YYNOMEM goto yyexhaustedlab
#define YYRECOVERING() (!!yyerrstatus)
#define YYBACKUP(Token, Value) \
do \
if (yychar == YYEMPTY) \
{ \
yychar = (Token); \
yylval = (Value); \
YYPOPSTACK (yylen); \
yystate = *yyssp; \
YY_LAC_DISCARD ("YYBACKUP"); \
goto yybackup; \
} \
else \
{ \
yyerror (YY_("syntax error: cannot back up")); \
YYERROR; \
} \
while (0)
/* Backward compatibility with an undocumented macro.
Use YYerror or YYUNDEF. */
#define YYERRCODE YYUNDEF
/* Enable debugging if requested. */
#if YYDEBUG
# ifndef YYFPRINTF
# include <stdio.h> /* INFRINGES ON USER NAME SPACE */
# define YYFPRINTF fprintf
# endif
# define YYDPRINTF(Args) \
do { \
if (yydebug) \
YYFPRINTF Args; \
} while (0)
# define YY_SYMBOL_PRINT(Title, Kind, Value, Location) \
do { \
if (yydebug) \
{ \
YYFPRINTF (stderr, "%s ", Title); \
yy_symbol_print (stderr, \
Kind, Value); \
YYFPRINTF (stderr, "\n"); \
} \
} while (0)
/*-----------------------------------.
| Print this symbol's value on YYO. |
`-----------------------------------*/
static void
yy_symbol_value_print (FILE *yyo,
yysymbol_kind_t yykind, YYSTYPE const * const yyvaluep)
{
FILE *yyoutput = yyo;
YY_USE (yyoutput);
if (!yyvaluep)
return;
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
switch (yykind)
{
case YYSYMBOL_DEFAULTS: /* DEFAULTS */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1275 "rcfile_y.c"
break;
case YYSYMBOL_POLL: /* POLL */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1281 "rcfile_y.c"
break;
case YYSYMBOL_SKIP: /* SKIP */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1287 "rcfile_y.c"
break;
case YYSYMBOL_VIA: /* VIA */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1293 "rcfile_y.c"
break;
case YYSYMBOL_AKA: /* AKA */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1299 "rcfile_y.c"
break;
case YYSYMBOL_LOCALDOMAINS: /* LOCALDOMAINS */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1305 "rcfile_y.c"
break;
case YYSYMBOL_PROTOCOL: /* PROTOCOL */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1311 "rcfile_y.c"
break;
case YYSYMBOL_AUTHENTICATE: /* AUTHENTICATE */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1317 "rcfile_y.c"
break;
case YYSYMBOL_TIMEOUT: /* TIMEOUT */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1323 "rcfile_y.c"
break;
case YYSYMBOL_IDLETIMEOUT: /* IDLETIMEOUT */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1329 "rcfile_y.c"
break;
case YYSYMBOL_KPOP: /* KPOP */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1335 "rcfile_y.c"
break;
case YYSYMBOL_SDPS: /* SDPS */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1341 "rcfile_y.c"
break;
case YYSYMBOL_ENVELOPE: /* ENVELOPE */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1347 "rcfile_y.c"
break;
case YYSYMBOL_QVIRTUAL: /* QVIRTUAL */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1353 "rcfile_y.c"
break;
case YYSYMBOL_USERNAME: /* USERNAME */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1359 "rcfile_y.c"
break;
case YYSYMBOL_PASSWORD: /* PASSWORD */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1365 "rcfile_y.c"
break;
case YYSYMBOL_FOLDER: /* FOLDER */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1371 "rcfile_y.c"
break;
case YYSYMBOL_SMTPHOST: /* SMTPHOST */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1377 "rcfile_y.c"
break;
case YYSYMBOL_FETCHDOMAINS: /* FETCHDOMAINS */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1383 "rcfile_y.c"
break;
case YYSYMBOL_MDA: /* MDA */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1389 "rcfile_y.c"
break;
case YYSYMBOL_BSMTP: /* BSMTP */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1395 "rcfile_y.c"
break;
case YYSYMBOL_LMTP: /* LMTP */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1401 "rcfile_y.c"
break;
case YYSYMBOL_SMTPADDRESS: /* SMTPADDRESS */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1407 "rcfile_y.c"
break;
case YYSYMBOL_SMTPNAME: /* SMTPNAME */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1413 "rcfile_y.c"
break;
case YYSYMBOL_SPAMRESPONSE: /* SPAMRESPONSE */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1419 "rcfile_y.c"
break;
case YYSYMBOL_PRECONNECT: /* PRECONNECT */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1425 "rcfile_y.c"
break;
case YYSYMBOL_POSTCONNECT: /* POSTCONNECT */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1431 "rcfile_y.c"
break;
case YYSYMBOL_LIMIT: /* LIMIT */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1437 "rcfile_y.c"
break;
case YYSYMBOL_WARNINGS: /* WARNINGS */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1443 "rcfile_y.c"
break;
case YYSYMBOL_INTERFACE: /* INTERFACE */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1449 "rcfile_y.c"
break;
case YYSYMBOL_MONITOR: /* MONITOR */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1455 "rcfile_y.c"
break;
case YYSYMBOL_PLUGIN: /* PLUGIN */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1461 "rcfile_y.c"
break;
case YYSYMBOL_PLUGOUT: /* PLUGOUT */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1467 "rcfile_y.c"
break;
case YYSYMBOL_IS: /* IS */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1473 "rcfile_y.c"
break;
case YYSYMBOL_HERE: /* HERE */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1479 "rcfile_y.c"
break;
case YYSYMBOL_THERE: /* THERE */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1485 "rcfile_y.c"
break;
case YYSYMBOL_TO: /* TO */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1491 "rcfile_y.c"
break;
case YYSYMBOL_MAP: /* MAP */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1497 "rcfile_y.c"
break;
case YYSYMBOL_BATCHLIMIT: /* BATCHLIMIT */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1503 "rcfile_y.c"
break;
case YYSYMBOL_FETCHLIMIT: /* FETCHLIMIT */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1509 "rcfile_y.c"
break;
case YYSYMBOL_FETCHSIZELIMIT: /* FETCHSIZELIMIT */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1515 "rcfile_y.c"
break;
case YYSYMBOL_FASTUIDL: /* FASTUIDL */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1521 "rcfile_y.c"
break;
case YYSYMBOL_EXPUNGE: /* EXPUNGE */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1527 "rcfile_y.c"
break;
case YYSYMBOL_PROPERTIES: /* PROPERTIES */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1533 "rcfile_y.c"
break;
case YYSYMBOL_SET: /* SET */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1539 "rcfile_y.c"
break;
case YYSYMBOL_LOGFILE: /* LOGFILE */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1545 "rcfile_y.c"
break;
case YYSYMBOL_DAEMON: /* DAEMON */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1551 "rcfile_y.c"
break;
case YYSYMBOL_SYSLOG: /* SYSLOG */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1557 "rcfile_y.c"
break;
case YYSYMBOL_IDFILE: /* IDFILE */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1563 "rcfile_y.c"
break;
case YYSYMBOL_PIDFILE: /* PIDFILE */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1569 "rcfile_y.c"
break;
case YYSYMBOL_INVISIBLE: /* INVISIBLE */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1575 "rcfile_y.c"
break;
case YYSYMBOL_POSTMASTER: /* POSTMASTER */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1581 "rcfile_y.c"
break;
case YYSYMBOL_BOUNCEMAIL: /* BOUNCEMAIL */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1587 "rcfile_y.c"
break;
case YYSYMBOL_SPAMBOUNCE: /* SPAMBOUNCE */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1593 "rcfile_y.c"
break;
case YYSYMBOL_SOFTBOUNCE: /* SOFTBOUNCE */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1599 "rcfile_y.c"
break;
case YYSYMBOL_SHOWDOTS: /* SHOWDOTS */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1605 "rcfile_y.c"
break;
case YYSYMBOL_BADHEADER: /* BADHEADER */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1611 "rcfile_y.c"
break;
case YYSYMBOL_ACCEPT: /* ACCEPT */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1617 "rcfile_y.c"
break;
case YYSYMBOL_REJECT_: /* REJECT_ */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1623 "rcfile_y.c"
break;
case YYSYMBOL_PROTO: /* PROTO */
#line 92 "../rcfile_y.y"
{ fprintf(yyo, "((proto)(%d))", ((*yyvaluep).proto)); }
#line 1629 "rcfile_y.c"
break;
case YYSYMBOL_AUTHTYPE: /* AUTHTYPE */
#line 92 "../rcfile_y.y"
{ fprintf(yyo, "((proto)(%d))", ((*yyvaluep).proto)); }
#line 1635 "rcfile_y.c"
break;
case YYSYMBOL_STRING: /* STRING */
#line 90 "../rcfile_y.y"
{ fprintf(yyo, "\"%s\"", ((*yyvaluep).sval)); }
#line 1641 "rcfile_y.c"
break;
case YYSYMBOL_NUMBER: /* NUMBER */
#line 91 "../rcfile_y.y"
{ fprintf(yyo, "%d", ((*yyvaluep).number)); }
#line 1647 "rcfile_y.c"
break;
case YYSYMBOL_NO: /* NO */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1653 "rcfile_y.c"
break;
case YYSYMBOL_KEEP: /* KEEP */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1659 "rcfile_y.c"
break;
case YYSYMBOL_MOVETO: /* MOVETO */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1665 "rcfile_y.c"
break;
case YYSYMBOL_FLUSH: /* FLUSH */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1671 "rcfile_y.c"
break;
case YYSYMBOL_LIMITFLUSH: /* LIMITFLUSH */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1677 "rcfile_y.c"
break;
case YYSYMBOL_FETCHALL: /* FETCHALL */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1683 "rcfile_y.c"
break;
case YYSYMBOL_REWRITE: /* REWRITE */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1689 "rcfile_y.c"
break;
case YYSYMBOL_FORCECR: /* FORCECR */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1695 "rcfile_y.c"
break;
case YYSYMBOL_STRIPCR: /* STRIPCR */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1701 "rcfile_y.c"
break;
case YYSYMBOL_PASS8BITS: /* PASS8BITS */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1707 "rcfile_y.c"
break;
case YYSYMBOL_DROPSTATUS: /* DROPSTATUS */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1713 "rcfile_y.c"
break;
case YYSYMBOL_DROPDELIVERED: /* DROPDELIVERED */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1719 "rcfile_y.c"
break;
case YYSYMBOL_FORCEIDLE: /* FORCEIDLE */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1725 "rcfile_y.c"
break;
case YYSYMBOL_DNS: /* DNS */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1731 "rcfile_y.c"
break;
case YYSYMBOL_SERVICE: /* SERVICE */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1737 "rcfile_y.c"
break;
case YYSYMBOL_PORT: /* PORT */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1743 "rcfile_y.c"
break;
case YYSYMBOL_UIDL: /* UIDL */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1749 "rcfile_y.c"
break;
case YYSYMBOL_INTERVAL: /* INTERVAL */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1755 "rcfile_y.c"
break;
case YYSYMBOL_MIMEDECODE: /* MIMEDECODE */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1761 "rcfile_y.c"
break;
case YYSYMBOL_IDLE: /* IDLE */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1767 "rcfile_y.c"
break;
case YYSYMBOL_CHECKALIAS: /* CHECKALIAS */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1773 "rcfile_y.c"
break;
case YYSYMBOL_SSL: /* SSL */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1779 "rcfile_y.c"
break;
case YYSYMBOL_SSLKEY: /* SSLKEY */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1785 "rcfile_y.c"
break;
case YYSYMBOL_SSLCERT: /* SSLCERT */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1791 "rcfile_y.c"
break;
case YYSYMBOL_SSLPROTO: /* SSLPROTO */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1797 "rcfile_y.c"
break;
case YYSYMBOL_SSLCERTCK: /* SSLCERTCK */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1803 "rcfile_y.c"
break;
case YYSYMBOL_SSLCERTFILE: /* SSLCERTFILE */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1809 "rcfile_y.c"
break;
case YYSYMBOL_SSLCERTPATH: /* SSLCERTPATH */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1815 "rcfile_y.c"
break;
case YYSYMBOL_SSLCOMMONNAME: /* SSLCOMMONNAME */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1821 "rcfile_y.c"
break;
case YYSYMBOL_SSLFINGERPRINT: /* SSLFINGERPRINT */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1827 "rcfile_y.c"
break;
case YYSYMBOL_PRINCIPAL: /* PRINCIPAL */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1833 "rcfile_y.c"
break;
case YYSYMBOL_ESMTPNAME: /* ESMTPNAME */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1839 "rcfile_y.c"
break;
case YYSYMBOL_ESMTPPASSWORD: /* ESMTPPASSWORD */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1845 "rcfile_y.c"
break;
case YYSYMBOL_TRACEPOLLS: /* TRACEPOLLS */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1851 "rcfile_y.c"
break;
case YYSYMBOL_statement_list: /* statement_list */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1857 "rcfile_y.c"
break;
case YYSYMBOL_optmap: /* optmap */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1863 "rcfile_y.c"
break;
case YYSYMBOL_statement: /* statement */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1869 "rcfile_y.c"
break;
case YYSYMBOL_define_server: /* define_server */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1875 "rcfile_y.c"
break;
case YYSYMBOL_serverspecs: /* serverspecs */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1881 "rcfile_y.c"
break;
case YYSYMBOL_alias_list: /* alias_list */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1887 "rcfile_y.c"
break;
case YYSYMBOL_domain_list: /* domain_list */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1893 "rcfile_y.c"
break;
case YYSYMBOL_serv_option: /* serv_option */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1899 "rcfile_y.c"
break;
case YYSYMBOL_userspecs: /* userspecs */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1905 "rcfile_y.c"
break;
case YYSYMBOL_explicits: /* explicits */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1911 "rcfile_y.c"
break;
case YYSYMBOL_explicitdef: /* explicitdef */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1917 "rcfile_y.c"
break;
case YYSYMBOL_userdef: /* userdef */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1923 "rcfile_y.c"
break;
case YYSYMBOL_user0opts: /* user0opts */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1929 "rcfile_y.c"
break;
case YYSYMBOL_user1opts: /* user1opts */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1935 "rcfile_y.c"
break;
case YYSYMBOL_mapping_list: /* mapping_list */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1941 "rcfile_y.c"
break;
case YYSYMBOL_mapping: /* mapping */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1947 "rcfile_y.c"
break;
case YYSYMBOL_folder_list: /* folder_list */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1953 "rcfile_y.c"
break;
case YYSYMBOL_smtp_list: /* smtp_list */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1959 "rcfile_y.c"
break;
case YYSYMBOL_fetch_list: /* fetch_list */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1965 "rcfile_y.c"
break;
case YYSYMBOL_num_list: /* num_list */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1971 "rcfile_y.c"
break;
case YYSYMBOL_user_option: /* user_option */
#line 93 "../rcfile_y.y"
{ fprintf(yyo, "<>"); }
#line 1977 "rcfile_y.c"
break;
default:
break;
}
YY_IGNORE_MAYBE_UNINITIALIZED_END
}
/*---------------------------.
| Print this symbol on YYO. |
`---------------------------*/
static void
yy_symbol_print (FILE *yyo,
yysymbol_kind_t yykind, YYSTYPE const * const yyvaluep)
{
YYFPRINTF (yyo, "%s %s (",
yykind < YYNTOKENS ? "token" : "nterm", yysymbol_name (yykind));
yy_symbol_value_print (yyo, yykind, yyvaluep);
YYFPRINTF (yyo, ")");
}
/*------------------------------------------------------------------.
| yy_stack_print -- Print the state stack from its BOTTOM up to its |
| TOP (included). |
`------------------------------------------------------------------*/
static void
yy_stack_print (yy_state_t *yybottom, yy_state_t *yytop)
{
YYFPRINTF (stderr, "Stack now");
for (; yybottom <= yytop; yybottom++)
{
int yybot = *yybottom;
YYFPRINTF (stderr, " %d", yybot);
}
YYFPRINTF (stderr, "\n");
}
# define YY_STACK_PRINT(Bottom, Top) \
do { \
if (yydebug) \
yy_stack_print ((Bottom), (Top)); \
} while (0)
/*------------------------------------------------.
| Report that the YYRULE is going to be reduced. |
`------------------------------------------------*/
static void
yy_reduce_print (yy_state_t *yyssp, YYSTYPE *yyvsp,
int yyrule)
{
int yylno = yyrline[yyrule];
int yynrhs = yyr2[yyrule];
int yyi;
YYFPRINTF (stderr, "Reducing stack by rule %d (line %d):\n",
yyrule - 1, yylno);
/* The symbols being reduced. */
for (yyi = 0; yyi < yynrhs; yyi++)
{
YYFPRINTF (stderr, " $%d = ", yyi + 1);
yy_symbol_print (stderr,
YY_ACCESSING_SYMBOL (+yyssp[yyi + 1 - yynrhs]),
&yyvsp[(yyi + 1) - (yynrhs)]);
YYFPRINTF (stderr, "\n");
}
}
# define YY_REDUCE_PRINT(Rule) \
do { \
if (yydebug) \
yy_reduce_print (yyssp, yyvsp, Rule); \
} while (0)
/* Nonzero means print parse trace. It is left uninitialized so that
multiple parsers can coexist. */
int yydebug;
#else /* !YYDEBUG */
# define YYDPRINTF(Args) ((void) 0)
# define YY_SYMBOL_PRINT(Title, Kind, Value, Location)
# define YY_STACK_PRINT(Bottom, Top)
# define YY_REDUCE_PRINT(Rule)
#endif /* !YYDEBUG */
/* YYINITDEPTH -- initial size of the parser's stacks. */
#ifndef YYINITDEPTH
# define YYINITDEPTH 200
#endif
/* YYMAXDEPTH -- maximum size the stacks can grow to (effective only
if the built-in stack extension method is used).
Do not make this value too large; the results are undefined if
YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)
evaluated with infinite-precision integer arithmetic. */
#ifndef YYMAXDEPTH
# define YYMAXDEPTH 10000
#endif
/* Given a state stack such that *YYBOTTOM is its bottom, such that
*YYTOP is either its top or is YYTOP_EMPTY to indicate an empty
stack, and such that *YYCAPACITY is the maximum number of elements it
can hold without a reallocation, make sure there is enough room to
store YYADD more elements. If not, allocate a new stack using
YYSTACK_ALLOC, copy the existing elements, and adjust *YYBOTTOM,
*YYTOP, and *YYCAPACITY to reflect the new capacity and memory
location. If *YYBOTTOM != YYBOTTOM_NO_FREE, then free the old stack
using YYSTACK_FREE. Return 0 if successful or if no reallocation is
required. Return YYENOMEM if memory is exhausted. */
static int
yy_lac_stack_realloc (YYPTRDIFF_T *yycapacity, YYPTRDIFF_T yyadd,
#if YYDEBUG
char const *yydebug_prefix,
char const *yydebug_suffix,
#endif
yy_state_t **yybottom,
yy_state_t *yybottom_no_free,
yy_state_t **yytop, yy_state_t *yytop_empty)
{
YYPTRDIFF_T yysize_old =
*yytop == yytop_empty ? 0 : *yytop - *yybottom + 1;
YYPTRDIFF_T yysize_new = yysize_old + yyadd;
if (*yycapacity < yysize_new)
{
YYPTRDIFF_T yyalloc = 2 * yysize_new;
yy_state_t *yybottom_new;
/* Use YYMAXDEPTH for maximum stack size given that the stack
should never need to grow larger than the main state stack
needs to grow without LAC. */
if (YYMAXDEPTH < yysize_new)
{
YYDPRINTF ((stderr, "%smax size exceeded%s", yydebug_prefix,
yydebug_suffix));
return YYENOMEM;
}
if (YYMAXDEPTH < yyalloc)
yyalloc = YYMAXDEPTH;
yybottom_new =
YY_CAST (yy_state_t *,
YYSTACK_ALLOC (YY_CAST (YYSIZE_T,
yyalloc * YYSIZEOF (*yybottom_new))));
if (!yybottom_new)
{
YYDPRINTF ((stderr, "%srealloc failed%s", yydebug_prefix,
yydebug_suffix));
return YYENOMEM;
}
if (*yytop != yytop_empty)
{
YYCOPY (yybottom_new, *yybottom, yysize_old);
*yytop = yybottom_new + (yysize_old - 1);
}
if (*yybottom != yybottom_no_free)
YYSTACK_FREE (*yybottom);
*yybottom = yybottom_new;
*yycapacity = yyalloc;
}
return 0;
}
/* Establish the initial context for the current lookahead if no initial
context is currently established.
We define a context as a snapshot of the parser stacks. We define
the initial context for a lookahead as the context in which the
parser initially examines that lookahead in order to select a
syntactic action. Thus, if the lookahead eventually proves
syntactically unacceptable (possibly in a later context reached via a
series of reductions), the initial context can be used to determine
the exact set of tokens that would be syntactically acceptable in the
lookahead's place. Moreover, it is the context after which any
further semantic actions would be erroneous because they would be
determined by a syntactically unacceptable token.
YY_LAC_ESTABLISH should be invoked when a reduction is about to be
performed in an inconsistent state (which, for the purposes of LAC,
includes consistent states that don't know they're consistent because
their default reductions have been disabled). Iff there is a
lookahead token, it should also be invoked before reporting a syntax
error. This latter case is for the sake of the debugging output.
For parse.lac=full, the implementation of YY_LAC_ESTABLISH is as
follows. If no initial context is currently established for the
current lookahead, then check if that lookahead can eventually be
shifted if syntactic actions continue from the current context.
Report a syntax error if it cannot. */
#define YY_LAC_ESTABLISH \
do { \
if (!yy_lac_established) \
{ \
YYDPRINTF ((stderr, \
"LAC: initial context established for %s\n", \
yysymbol_name (yytoken))); \
yy_lac_established = 1; \
switch (yy_lac (yyesa, &yyes, &yyes_capacity, yyssp, yytoken)) \
{ \
case YYENOMEM: \
YYNOMEM; \
case 1: \
goto yyerrlab; \
} \
} \
} while (0)
/* Discard any previous initial lookahead context because of Event,
which may be a lookahead change or an invalidation of the currently
established initial context for the current lookahead.
The most common example of a lookahead change is a shift. An example
of both cases is syntax error recovery. That is, a syntax error
occurs when the lookahead is syntactically erroneous for the
currently established initial context, so error recovery manipulates
the parser stacks to try to find a new initial context in which the
current lookahead is syntactically acceptable. If it fails to find
such a context, it discards the lookahead. */
#if YYDEBUG
# define YY_LAC_DISCARD(Event) \
do { \
if (yy_lac_established) \
{ \
YYDPRINTF ((stderr, "LAC: initial context discarded due to " \
Event "\n")); \
yy_lac_established = 0; \
} \
} while (0)
#else
# define YY_LAC_DISCARD(Event) yy_lac_established = 0
#endif
/* Given the stack whose top is *YYSSP, return 0 iff YYTOKEN can
eventually (after perhaps some reductions) be shifted, return 1 if
not, or return YYENOMEM if memory is exhausted. As preconditions and
postconditions: *YYES_CAPACITY is the allocated size of the array to
which *YYES points, and either *YYES = YYESA or *YYES points to an
array allocated with YYSTACK_ALLOC. yy_lac may overwrite the
contents of either array, alter *YYES and *YYES_CAPACITY, and free
any old *YYES other than YYESA. */
static int
yy_lac (yy_state_t *yyesa, yy_state_t **yyes,
YYPTRDIFF_T *yyes_capacity, yy_state_t *yyssp, yysymbol_kind_t yytoken)
{
yy_state_t *yyes_prev = yyssp;
yy_state_t *yyesp = yyes_prev;
/* Reduce until we encounter a shift and thereby accept the token. */
YYDPRINTF ((stderr, "LAC: checking lookahead %s:", yysymbol_name (yytoken)));
if (yytoken == YYSYMBOL_YYUNDEF)
{
YYDPRINTF ((stderr, " Always Err\n"));
return 1;
}
while (1)
{
int yyrule = yypact[+*yyesp];
if (yypact_value_is_default (yyrule)
|| (yyrule += yytoken) < 0 || YYLAST < yyrule
|| yycheck[yyrule] != yytoken)
{
/* Use the default action. */
yyrule = yydefact[+*yyesp];
if (yyrule == 0)
{
YYDPRINTF ((stderr, " Err\n"));
return 1;
}
}
else
{
/* Use the action from yytable. */
yyrule = yytable[yyrule];
if (yytable_value_is_error (yyrule))
{
YYDPRINTF ((stderr, " Err\n"));
return 1;
}
if (0 < yyrule)
{
YYDPRINTF ((stderr, " S%d\n", yyrule));
return 0;
}
yyrule = -yyrule;
}
/* By now we know we have to simulate a reduce. */
YYDPRINTF ((stderr, " R%d", yyrule - 1));
{
/* Pop the corresponding number of values from the stack. */
YYPTRDIFF_T yylen = yyr2[yyrule];
/* First pop from the LAC stack as many tokens as possible. */
if (yyesp != yyes_prev)
{
YYPTRDIFF_T yysize = yyesp - *yyes + 1;
if (yylen < yysize)
{
yyesp -= yylen;
yylen = 0;
}
else
{
yyesp = yyes_prev;
yylen -= yysize;
}
}
/* Only afterwards look at the main stack. */
if (yylen)
yyesp = yyes_prev -= yylen;
}
/* Push the resulting state of the reduction. */
{
yy_state_fast_t yystate;
{
const int yylhs = yyr1[yyrule] - YYNTOKENS;
const int yyi = yypgoto[yylhs] + *yyesp;
yystate = (0 <= yyi && yyi <= YYLAST && yycheck[yyi] == *yyesp
? yytable[yyi]
: yydefgoto[yylhs]);
}
if (yyesp == yyes_prev)
{
yyesp = *yyes;
YY_IGNORE_USELESS_CAST_BEGIN
*yyesp = YY_CAST (yy_state_t, yystate);
YY_IGNORE_USELESS_CAST_END
}
else
{
if (yy_lac_stack_realloc (yyes_capacity, 1,
#if YYDEBUG
" (", ")",
#endif
yyes, yyesa, &yyesp, yyes_prev))
{
YYDPRINTF ((stderr, "\n"));
return YYENOMEM;
}
YY_IGNORE_USELESS_CAST_BEGIN
*++yyesp = YY_CAST (yy_state_t, yystate);
YY_IGNORE_USELESS_CAST_END
}
YYDPRINTF ((stderr, " G%d", yystate));
}
}
}
/* Context of a parse error. */
typedef struct
{
yy_state_t *yyssp;
yy_state_t *yyesa;
yy_state_t **yyes;
YYPTRDIFF_T *yyes_capacity;
yysymbol_kind_t yytoken;
} yypcontext_t;
/* Put in YYARG at most YYARGN of the expected tokens given the
current YYCTX, and return the number of tokens stored in YYARG. If
YYARG is null, return the number of expected tokens (guaranteed to
be less than YYNTOKENS). Return YYENOMEM on memory exhaustion.
Return 0 if there are more than YYARGN expected tokens, yet fill
YYARG up to YYARGN. */
static int
yypcontext_expected_tokens (const yypcontext_t *yyctx,
yysymbol_kind_t yyarg[], int yyargn)
{
/* Actual size of YYARG. */
int yycount = 0;
int yyx;
for (yyx = 0; yyx < YYNTOKENS; ++yyx)
{
yysymbol_kind_t yysym = YY_CAST (yysymbol_kind_t, yyx);
if (yysym != YYSYMBOL_YYerror && yysym != YYSYMBOL_YYUNDEF)
switch (yy_lac (yyctx->yyesa, yyctx->yyes, yyctx->yyes_capacity, yyctx->yyssp, yysym))
{
case YYENOMEM:
return YYENOMEM;
case 1:
continue;
default:
if (!yyarg)
++yycount;
else if (yycount == yyargn)
return 0;
else
yyarg[yycount++] = yysym;
}
}
if (yyarg && yycount == 0 && 0 < yyargn)
yyarg[0] = YYSYMBOL_YYEMPTY;
return yycount;
}
#ifndef yystrlen
# if defined __GLIBC__ && defined _STRING_H
# define yystrlen(S) (YY_CAST (YYPTRDIFF_T, strlen (S)))
# else
/* Return the length of YYSTR. */
static YYPTRDIFF_T
yystrlen (const char *yystr)
{
YYPTRDIFF_T yylen;
for (yylen = 0; yystr[yylen]; yylen++)
continue;
return yylen;
}
# endif
#endif
#ifndef yystpcpy
# if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE
# define yystpcpy stpcpy
# else
/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in
YYDEST. */
static char *
yystpcpy (char *yydest, const char *yysrc)
{
char *yyd = yydest;
const char *yys = yysrc;
while ((*yyd++ = *yys++) != '\0')
continue;
return yyd - 1;
}
# endif
#endif
static int
yy_syntax_error_arguments (const yypcontext_t *yyctx,
yysymbol_kind_t yyarg[], int yyargn)
{
/* Actual size of YYARG. */
int yycount = 0;
/* There are many possibilities here to consider:
- If this state is a consistent state with a default action, then
the only way this function was invoked is if the default action
is an error action. In that case, don't check for expected
tokens because there are none.
- The only way there can be no lookahead present (in yychar) is if
this state is a consistent state with a default action. Thus,
detecting the absence of a lookahead is sufficient to determine
that there is no unexpected or expected token to report. In that
case, just report a simple "syntax error".
- Don't assume there isn't a lookahead just because this state is a
consistent state with a default action. There might have been a
previous inconsistent state, consistent state with a non-default
action, or user semantic action that manipulated yychar.
In the first two cases, it might appear that the current syntax
error should have been detected in the previous state when yy_lac
was invoked. However, at that time, there might have been a
different syntax error that discarded a different initial context
during error recovery, leaving behind the current lookahead.
*/
if (yyctx->yytoken != YYSYMBOL_YYEMPTY)
{
int yyn;
YYDPRINTF ((stderr, "Constructing syntax error message\n"));
if (yyarg)
yyarg[yycount] = yyctx->yytoken;
++yycount;
yyn = yypcontext_expected_tokens (yyctx,
yyarg ? yyarg + 1 : yyarg, yyargn - 1);
if (yyn == YYENOMEM)
return YYENOMEM;
else if (yyn == 0)
YYDPRINTF ((stderr, "No expected tokens.\n"));
else
yycount += yyn;
}
return yycount;
}
/* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message
about the unexpected token YYTOKEN for the state stack whose top is
YYSSP. In order to see if a particular token T is a
valid looakhead, invoke yy_lac (YYESA, YYES, YYES_CAPACITY, YYSSP, T).
Return 0 if *YYMSG was successfully written. Return -1 if *YYMSG is
not large enough to hold the message. In that case, also set
*YYMSG_ALLOC to the required number of bytes. Return YYENOMEM if the
required number of bytes is too large to store or if
yy_lac returned YYENOMEM. */
static int
yysyntax_error (YYPTRDIFF_T *yymsg_alloc, char **yymsg,
const yypcontext_t *yyctx)
{
enum { YYARGS_MAX = 5 };
/* Internationalized format string. */
const char *yyformat = YY_NULLPTR;
/* Arguments of yyformat: reported tokens (one for the "unexpected",
one per "expected"). */
yysymbol_kind_t yyarg[YYARGS_MAX];
/* Cumulated lengths of YYARG. */
YYPTRDIFF_T yysize = 0;
/* Actual size of YYARG. */
int yycount = yy_syntax_error_arguments (yyctx, yyarg, YYARGS_MAX);
if (yycount == YYENOMEM)
return YYENOMEM;
switch (yycount)
{
#define YYCASE_(N, S) \
case N: \
yyformat = S; \
break
default: /* Avoid compiler warnings. */
YYCASE_(0, YY_("syntax error"));
YYCASE_(1, YY_("syntax error, unexpected %s"));
YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
#undef YYCASE_
}
/* Compute error message size. Don't count the "%s"s, but reserve
room for the terminator. */
yysize = yystrlen (yyformat) - 2 * yycount + 1;
{
int yyi;
for (yyi = 0; yyi < yycount; ++yyi)
{
YYPTRDIFF_T yysize1
= yysize + yystrlen (yysymbol_name (yyarg[yyi]));
if (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)
yysize = yysize1;
else
return YYENOMEM;
}
}
if (*yymsg_alloc < yysize)
{
*yymsg_alloc = 2 * yysize;
if (! (yysize <= *yymsg_alloc
&& *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM))
*yymsg_alloc = YYSTACK_ALLOC_MAXIMUM;
return -1;
}
/* Avoid sprintf, as that infringes on the user's name space.
Don't have undefined behavior even if the translation
produced a string with the wrong number of "%s"s. */
{
char *yyp = *yymsg;
int yyi = 0;
while ((*yyp = *yyformat) != '\0')
if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount)
{
yyp = yystpcpy (yyp, yysymbol_name (yyarg[yyi++]));
yyformat += 2;
}
else
{
++yyp;
++yyformat;
}
}
return 0;
}
/*-----------------------------------------------.
| Release the memory associated to this symbol. |
`-----------------------------------------------*/
static void
yydestruct (const char *yymsg,
yysymbol_kind_t yykind, YYSTYPE *yyvaluep)
{
YY_USE (yyvaluep);
if (!yymsg)
yymsg = "Deleting";
YY_SYMBOL_PRINT (yymsg, yykind, yyvaluep, yylocationp);
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
switch (yykind)
{
case YYSYMBOL_STRING: /* STRING */
#line 84 "../rcfile_y.y"
{ free (((*yyvaluep).sval)); }
#line 2571 "rcfile_y.c"
break;
default:
break;
}
YY_IGNORE_MAYBE_UNINITIALIZED_END
}
/* Lookahead token kind. */
int yychar;
/* The semantic value of the lookahead symbol. */
YYSTYPE yylval;
/* Number of syntax errors so far. */
int yynerrs;
/*----------.
| yyparse. |
`----------*/
int
yyparse (void)
{
yy_state_fast_t yystate = 0;
/* Number of tokens to shift before error messages enabled. */
int yyerrstatus = 0;
/* Refer to the stacks through separate pointers, to allow yyoverflow
to reallocate them elsewhere. */
/* Their size. */
YYPTRDIFF_T yystacksize = YYINITDEPTH;
/* The state stack: array, bottom, top. */
yy_state_t yyssa[YYINITDEPTH];
yy_state_t *yyss = yyssa;
yy_state_t *yyssp = yyss;
/* The semantic value stack: array, bottom, top. */
YYSTYPE yyvsa[YYINITDEPTH];
YYSTYPE *yyvs = yyvsa;
YYSTYPE *yyvsp = yyvs;
yy_state_t yyesa[20];
yy_state_t *yyes = yyesa;
YYPTRDIFF_T yyes_capacity = 20 < YYMAXDEPTH ? 20 : YYMAXDEPTH;
/* Whether LAC context is established. A Boolean. */
int yy_lac_established = 0;
int yyn;
/* The return value of yyparse. */
int yyresult;
/* Lookahead symbol kind. */
yysymbol_kind_t yytoken = YYSYMBOL_YYEMPTY;
/* The variables used to return semantic value and location from the
action routines. */
YYSTYPE yyval;
/* Buffer for error messages, and its allocated size. */
char yymsgbuf[128];
char *yymsg = yymsgbuf;
YYPTRDIFF_T yymsg_alloc = sizeof yymsgbuf;
#define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N))
/* The number of symbols on the RHS of the reduced rule.
Keep to zero when no symbol should be popped. */
int yylen = 0;
YYDPRINTF ((stderr, "Starting parse\n"));
yychar = YYEMPTY; /* Cause a token to be read. */
goto yysetstate;
/*------------------------------------------------------------.
| yynewstate -- push a new state, which is found in yystate. |
`------------------------------------------------------------*/
yynewstate:
/* In all cases, when you get here, the value and location stacks
have just been pushed. So pushing a state here evens the stacks. */
yyssp++;
/*--------------------------------------------------------------------.
| yysetstate -- set current state (the top of the stack) to yystate. |
`--------------------------------------------------------------------*/
yysetstate:
YYDPRINTF ((stderr, "Entering state %d\n", yystate));
YY_ASSERT (0 <= yystate && yystate < YYNSTATES);
YY_IGNORE_USELESS_CAST_BEGIN
*yyssp = YY_CAST (yy_state_t, yystate);
YY_IGNORE_USELESS_CAST_END
YY_STACK_PRINT (yyss, yyssp);
if (yyss + yystacksize - 1 <= yyssp)
#if !defined yyoverflow && !defined YYSTACK_RELOCATE
YYNOMEM;
#else
{
/* Get the current used size of the three stacks, in elements. */
YYPTRDIFF_T yysize = yyssp - yyss + 1;
# if defined yyoverflow
{
/* Give user a chance to reallocate the stack. Use copies of
these so that the &'s don't force the real ones into
memory. */
yy_state_t *yyss1 = yyss;
YYSTYPE *yyvs1 = yyvs;
/* Each stack pointer address is followed by the size of the
data in use in that stack, in bytes. This used to be a
conditional around just the two extra args, but that might
be undefined if yyoverflow is a macro. */
yyoverflow (YY_("memory exhausted"),
&yyss1, yysize * YYSIZEOF (*yyssp),
&yyvs1, yysize * YYSIZEOF (*yyvsp),
&yystacksize);
yyss = yyss1;
yyvs = yyvs1;
}
# else /* defined YYSTACK_RELOCATE */
/* Extend the stack our own way. */
if (YYMAXDEPTH <= yystacksize)
YYNOMEM;
yystacksize *= 2;
if (YYMAXDEPTH < yystacksize)
yystacksize = YYMAXDEPTH;
{
yy_state_t *yyss1 = yyss;
union yyalloc *yyptr =
YY_CAST (union yyalloc *,
YYSTACK_ALLOC (YY_CAST (YYSIZE_T, YYSTACK_BYTES (yystacksize))));
if (! yyptr)
YYNOMEM;
YYSTACK_RELOCATE (yyss_alloc, yyss);
YYSTACK_RELOCATE (yyvs_alloc, yyvs);
# undef YYSTACK_RELOCATE
if (yyss1 != yyssa)
YYSTACK_FREE (yyss1);
}
# endif
yyssp = yyss + yysize - 1;
yyvsp = yyvs + yysize - 1;
YY_IGNORE_USELESS_CAST_BEGIN
YYDPRINTF ((stderr, "Stack size increased to %ld\n",
YY_CAST (long, yystacksize)));
YY_IGNORE_USELESS_CAST_END
if (yyss + yystacksize - 1 <= yyssp)
YYABORT;
}
#endif /* !defined yyoverflow && !defined YYSTACK_RELOCATE */
if (yystate == YYFINAL)
YYACCEPT;
goto yybackup;
/*-----------.
| yybackup. |
`-----------*/
yybackup:
/* Do appropriate processing given the current state. Read a
lookahead token if we need one and don't already have one. */
/* First try to decide what to do without reference to lookahead token. */
yyn = yypact[yystate];
if (yypact_value_is_default (yyn))
goto yydefault;
/* Not known => get a lookahead token if don't already have one. */
/* YYCHAR is either empty, or end-of-input, or a valid lookahead. */
if (yychar == YYEMPTY)
{
YYDPRINTF ((stderr, "Reading a token\n"));
yychar = yylex ();
}
if (yychar <= YYEOF)
{
yychar = YYEOF;
yytoken = YYSYMBOL_YYEOF;
YYDPRINTF ((stderr, "Now at end of input.\n"));
}
else if (yychar == YYerror)
{
/* The scanner already issued an error message, process directly
to error recovery. But do not keep the error token as
lookahead, it is too special and may lead us to an endless
loop in error recovery. */
yychar = YYUNDEF;
yytoken = YYSYMBOL_YYerror;
goto yyerrlab1;
}
else
{
yytoken = YYTRANSLATE (yychar);
YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);
}
/* If the proper action on seeing token YYTOKEN is to reduce or to
detect an error, take that action. */
yyn += yytoken;
if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)
{
YY_LAC_ESTABLISH;
goto yydefault;
}
yyn = yytable[yyn];
if (yyn <= 0)
{
if (yytable_value_is_error (yyn))
goto yyerrlab;
yyn = -yyn;
YY_LAC_ESTABLISH;
goto yyreduce;
}
/* Count tokens shifted since error; after three, turn off error
status. */
if (yyerrstatus)
yyerrstatus--;
/* Shift the lookahead token. */
YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);
yystate = yyn;
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
*++yyvsp = yylval;
YY_IGNORE_MAYBE_UNINITIALIZED_END
/* Discard the shifted token. */
yychar = YYEMPTY;
YY_LAC_DISCARD ("shift");
goto yynewstate;
/*-----------------------------------------------------------.
| yydefault -- do the default action for the current state. |
`-----------------------------------------------------------*/
yydefault:
yyn = yydefact[yystate];
if (yyn == 0)
goto yyerrlab;
goto yyreduce;
/*-----------------------------.
| yyreduce -- do a reduction. |
`-----------------------------*/
yyreduce:
/* yyn is the number of a rule to reduce with. */
yylen = yyr2[yyn];
/* If YYLEN is nonzero, implement the default value of the action:
'$$ = $1'.
Otherwise, the following line sets YYVAL to garbage.
This behavior is undocumented and Bison
users should not rely upon it. Assigning to YYVAL
unconditionally makes the parser a bit smaller, and it avoids a
GCC warning that YYVAL may be used uninitialized. */
yyval = yyvsp[1-yylen];
YY_REDUCE_PRINT (yyn);
{
int yychar_backup = yychar;
switch (yyn)
{
case 7: /* statement: SET LOGFILE optmap STRING */
#line 105 "../rcfile_y.y"
{run.logfile = prependdir ((yyvsp[0].sval), rcfiledir); free((yyvsp[0].sval));}
#line 2857 "rcfile_y.c"
break;
case 8: /* statement: SET IDFILE optmap STRING */
#line 106 "../rcfile_y.y"
{run.idfile = prependdir ((yyvsp[0].sval), rcfiledir); free((yyvsp[0].sval));}
#line 2863 "rcfile_y.c"
break;
case 9: /* statement: SET PIDFILE optmap STRING */
#line 107 "../rcfile_y.y"
{run.pidfile = prependdir ((yyvsp[0].sval), rcfiledir); free((yyvsp[0].sval));}
#line 2869 "rcfile_y.c"
break;
case 10: /* statement: SET DAEMON optmap NUMBER */
#line 108 "../rcfile_y.y"
{run.poll_interval = (yyvsp[0].number);}
#line 2875 "rcfile_y.c"
break;
case 11: /* statement: SET POSTMASTER optmap STRING */
#line 109 "../rcfile_y.y"
{run.postmaster = (yyvsp[0].sval);}
#line 2881 "rcfile_y.c"
break;
case 12: /* statement: SET BOUNCEMAIL */
#line 110 "../rcfile_y.y"
{run.bouncemail = TRUE;}
#line 2887 "rcfile_y.c"
break;
case 13: /* statement: SET NO BOUNCEMAIL */
#line 111 "../rcfile_y.y"
{run.bouncemail = FALSE;}
#line 2893 "rcfile_y.c"
break;
case 14: /* statement: SET SPAMBOUNCE */
#line 112 "../rcfile_y.y"
{run.spambounce = TRUE;}
#line 2899 "rcfile_y.c"
break;
case 15: /* statement: SET NO SPAMBOUNCE */
#line 113 "../rcfile_y.y"
{run.spambounce = FALSE;}
#line 2905 "rcfile_y.c"
break;
case 16: /* statement: SET SOFTBOUNCE */
#line 114 "../rcfile_y.y"
{run.softbounce = TRUE;}
#line 2911 "rcfile_y.c"
break;
case 17: /* statement: SET NO SOFTBOUNCE */
#line 115 "../rcfile_y.y"
{run.softbounce = FALSE;}
#line 2917 "rcfile_y.c"
break;
case 18: /* statement: SET PROPERTIES optmap STRING */
#line 116 "../rcfile_y.y"
{run.properties = (yyvsp[0].sval);}
#line 2923 "rcfile_y.c"
break;
case 19: /* statement: SET SYSLOG */
#line 117 "../rcfile_y.y"
{run.use_syslog = TRUE;}
#line 2929 "rcfile_y.c"
break;
case 20: /* statement: SET NO SYSLOG */
#line 118 "../rcfile_y.y"
{run.use_syslog = FALSE;}
#line 2935 "rcfile_y.c"
break;
case 21: /* statement: SET INVISIBLE */
#line 119 "../rcfile_y.y"
{run.invisible = TRUE;}
#line 2941 "rcfile_y.c"
break;
case 22: /* statement: SET NO INVISIBLE */
#line 120 "../rcfile_y.y"
{run.invisible = FALSE;}
#line 2947 "rcfile_y.c"
break;
case 23: /* statement: SET SHOWDOTS */
#line 121 "../rcfile_y.y"
{run.showdots = FLAG_TRUE;}
#line 2953 "rcfile_y.c"
break;
case 24: /* statement: SET NO SHOWDOTS */
#line 122 "../rcfile_y.y"
{run.showdots = FLAG_FALSE;}
#line 2959 "rcfile_y.c"
break;
case 25: /* statement: define_server serverspecs */
#line 130 "../rcfile_y.y"
{record_current();}
#line 2965 "rcfile_y.c"
break;
case 27: /* statement: define_server serverspecs userspecs serv_option */
#line 135 "../rcfile_y.y"
{yyerror(GT_("server option after user options")); yyerrok; }
#line 2971 "rcfile_y.c"
break;
case 28: /* define_server: POLL STRING */
#line 138 "../rcfile_y.y"
{reset_server((yyvsp[0].sval), FALSE); free((yyvsp[0].sval));}
#line 2977 "rcfile_y.c"
break;
case 29: /* define_server: SKIP STRING */
#line 139 "../rcfile_y.y"
{reset_server((yyvsp[0].sval), TRUE); free((yyvsp[0].sval));}
#line 2983 "rcfile_y.c"
break;
case 30: /* define_server: DEFAULTS */
#line 140 "../rcfile_y.y"
{reset_server("defaults", FALSE);}
#line 2989 "rcfile_y.c"
break;
case 33: /* alias_list: STRING */
#line 147 "../rcfile_y.y"
{save_str(¤t.server.akalist,(yyvsp[0].sval),0); free((yyvsp[0].sval));}
#line 2995 "rcfile_y.c"
break;
case 34: /* alias_list: alias_list STRING */
#line 148 "../rcfile_y.y"
{save_str(¤t.server.akalist,(yyvsp[0].sval),0); free((yyvsp[0].sval));}
#line 3001 "rcfile_y.c"
break;
case 35: /* domain_list: STRING */
#line 151 "../rcfile_y.y"
{save_str(¤t.server.localdomains,(yyvsp[0].sval),0); free((yyvsp[0].sval));}
#line 3007 "rcfile_y.c"
break;
case 36: /* domain_list: domain_list STRING */
#line 152 "../rcfile_y.y"
{save_str(¤t.server.localdomains,(yyvsp[0].sval),0); free((yyvsp[0].sval));}
#line 3013 "rcfile_y.c"
break;
case 38: /* serv_option: VIA STRING */
#line 156 "../rcfile_y.y"
{current.server.via = (yyvsp[0].sval);}
#line 3019 "rcfile_y.c"
break;
case 40: /* serv_option: PROTOCOL PROTO */
#line 158 "../rcfile_y.y"
{current.server.protocol = (yyvsp[0].proto);}
#line 3025 "rcfile_y.c"
break;
case 41: /* serv_option: PROTOCOL KPOP */
#line 159 "../rcfile_y.y"
{
current.server.protocol = P_POP3;
if (current.server.authenticate == A_PASSWORD)
#ifdef KERBEROS_V5
current.server.authenticate = A_KERBEROS_V5;
#else
current.server.authenticate = A_KERBEROS_V4;
#endif /* KERBEROS_V5 */
current.server.service = xstrdup(KPOP_PORT);
}
#line 3041 "rcfile_y.c"
break;
case 42: /* serv_option: PRINCIPAL STRING */
#line 170 "../rcfile_y.y"
{current.server.principal = (yyvsp[0].sval);}
#line 3047 "rcfile_y.c"
break;
case 43: /* serv_option: ESMTPNAME STRING */
#line 171 "../rcfile_y.y"
{current.server.esmtp_name = (yyvsp[0].sval);}
#line 3053 "rcfile_y.c"
break;
case 44: /* serv_option: ESMTPPASSWORD STRING */
#line 172 "../rcfile_y.y"
{current.server.esmtp_password = (yyvsp[0].sval);}
#line 3059 "rcfile_y.c"
break;
case 45: /* serv_option: PROTOCOL SDPS */
#line 173 "../rcfile_y.y"
{
#ifdef SDPS_ENABLE
current.server.protocol = P_POP3;
current.server.sdps = TRUE;
#else
yyerror(GT_("SDPS not enabled."));
#endif /* SDPS_ENABLE */
}
#line 3072 "rcfile_y.c"
break;
case 46: /* serv_option: UIDL */
#line 181 "../rcfile_y.y"
{current.server.uidl = FLAG_TRUE;}
#line 3078 "rcfile_y.c"
break;
case 47: /* serv_option: NO UIDL */
#line 182 "../rcfile_y.y"
{current.server.uidl = FLAG_FALSE;}
#line 3084 "rcfile_y.c"
break;
case 48: /* serv_option: CHECKALIAS */
#line 183 "../rcfile_y.y"
{current.server.checkalias = FLAG_TRUE;}
#line 3090 "rcfile_y.c"
break;
case 49: /* serv_option: NO CHECKALIAS */
#line 184 "../rcfile_y.y"
{current.server.checkalias = FLAG_FALSE;}
#line 3096 "rcfile_y.c"
break;
case 50: /* serv_option: SERVICE STRING */
#line 185 "../rcfile_y.y"
{
current.server.service = (yyvsp[0].sval);
}
#line 3104 "rcfile_y.c"
break;
case 51: /* serv_option: SERVICE NUMBER */
#line 188 "../rcfile_y.y"
{
int port = (yyvsp[0].number);
char buf[10];
snprintf(buf, sizeof buf, "%d", port);
current.server.service = xstrdup(buf);
}
#line 3115 "rcfile_y.c"
break;
case 52: /* serv_option: PORT NUMBER */
#line 194 "../rcfile_y.y"
{
int port = (yyvsp[0].number);
char buf[10];
snprintf(buf, sizeof buf, "%d", port);
current.server.service = xstrdup(buf);
}
#line 3126 "rcfile_y.c"
break;
case 53: /* serv_option: INTERVAL NUMBER */
#line 201 "../rcfile_y.y"
{current.server.interval = (yyvsp[0].number);}
#line 3132 "rcfile_y.c"
break;
case 54: /* serv_option: AUTHENTICATE AUTHTYPE */
#line 203 "../rcfile_y.y"
{current.server.authenticate = (yyvsp[0].proto);}
#line 3138 "rcfile_y.c"
break;
case 55: /* serv_option: TIMEOUT NUMBER */
#line 205 "../rcfile_y.y"
{current.server.timeout = (yyvsp[0].number);}
#line 3144 "rcfile_y.c"
break;
case 56: /* serv_option: IDLETIMEOUT NUMBER */
#line 207 "../rcfile_y.y"
{current.server.idle_timeout = (yyvsp[0].number);}
#line 3150 "rcfile_y.c"
break;
case 57: /* serv_option: ENVELOPE NUMBER STRING */
#line 209 "../rcfile_y.y"
{
current.server.envelope = (yyvsp[0].sval);
current.server.envskip = (yyvsp[-1].number);
}
#line 3159 "rcfile_y.c"
break;
case 58: /* serv_option: ENVELOPE STRING */
#line 214 "../rcfile_y.y"
{
current.server.envelope = (yyvsp[0].sval);
current.server.envskip = 0;
}
#line 3168 "rcfile_y.c"
break;
case 59: /* serv_option: QVIRTUAL STRING */
#line 219 "../rcfile_y.y"
{current.server.qvirtual = (yyvsp[0].sval);}
#line 3174 "rcfile_y.c"
break;
case 60: /* serv_option: INTERFACE STRING */
#line 220 "../rcfile_y.y"
{
#ifdef CAN_MONITOR
interface_parse((yyvsp[0].sval), ¤t.server);
#else
fprintf(stderr, GT_("fetchmail: interface option is only supported under Linux (without IPv6) and FreeBSD\n"));
#endif
free((yyvsp[0].sval));
}
#line 3187 "rcfile_y.c"
break;
case 61: /* serv_option: MONITOR STRING */
#line 228 "../rcfile_y.y"
{
#ifdef CAN_MONITOR
current.server.monitor = (yyvsp[0].sval);
#else
fprintf(stderr, GT_("fetchmail: monitor option is only supported under Linux (without IPv6) and FreeBSD\n"));
free((yyvsp[0].sval));
#endif
}
#line 3200 "rcfile_y.c"
break;
case 62: /* serv_option: PLUGIN STRING */
#line 236 "../rcfile_y.y"
{ current.server.plugin = (yyvsp[0].sval); }
#line 3206 "rcfile_y.c"
break;
case 63: /* serv_option: PLUGOUT STRING */
#line 237 "../rcfile_y.y"
{ current.server.plugout = (yyvsp[0].sval); }
#line 3212 "rcfile_y.c"
break;
case 64: /* serv_option: DNS */
#line 238 "../rcfile_y.y"
{current.server.dns = FLAG_TRUE;}
#line 3218 "rcfile_y.c"
break;
case 65: /* serv_option: NO DNS */
#line 239 "../rcfile_y.y"
{current.server.dns = FLAG_FALSE;}
#line 3224 "rcfile_y.c"
break;
case 66: /* serv_option: NO ENVELOPE */
#line 240 "../rcfile_y.y"
{current.server.envelope = STRING_DISABLED;}
#line 3230 "rcfile_y.c"
break;
case 67: /* serv_option: TRACEPOLLS */
#line 241 "../rcfile_y.y"
{current.server.tracepolls = FLAG_TRUE;}
#line 3236 "rcfile_y.c"
break;
case 68: /* serv_option: NO TRACEPOLLS */
#line 242 "../rcfile_y.y"
{current.server.tracepolls = FLAG_FALSE;}
#line 3242 "rcfile_y.c"
break;
case 69: /* serv_option: BADHEADER ACCEPT */
#line 243 "../rcfile_y.y"
{current.server.badheader = BHACCEPT;}
#line 3248 "rcfile_y.c"
break;
case 70: /* serv_option: BADHEADER REJECT_ */
#line 244 "../rcfile_y.y"
{current.server.badheader = BHREJECT;}
#line 3254 "rcfile_y.c"
break;
case 71: /* userspecs: user1opts */
#line 247 "../rcfile_y.y"
{record_current(); user_reset();}
#line 3260 "rcfile_y.c"
break;
case 73: /* explicits: explicitdef */
#line 251 "../rcfile_y.y"
{record_current(); user_reset();}
#line 3266 "rcfile_y.c"
break;
case 74: /* explicits: explicits explicitdef */
#line 252 "../rcfile_y.y"
{record_current(); user_reset();}
#line 3272 "rcfile_y.c"
break;
case 76: /* userdef: USERNAME STRING */
#line 258 "../rcfile_y.y"
{current.remotename = (yyvsp[0].sval);}
#line 3278 "rcfile_y.c"
break;
case 78: /* userdef: USERNAME STRING THERE */
#line 260 "../rcfile_y.y"
{current.remotename = (yyvsp[-1].sval);}
#line 3284 "rcfile_y.c"
break;
case 85: /* mapping: STRING */
#line 275 "../rcfile_y.y"
{if (0 == strcmp((yyvsp[0].sval), "*")) {
current.wildcard = TRUE;
} else {
save_str_pair(¤t.localnames, (yyvsp[0].sval), NULL);
}
free((yyvsp[0].sval));}
#line 3295 "rcfile_y.c"
break;
case 86: /* mapping: STRING MAP STRING */
#line 281 "../rcfile_y.y"
{save_str_pair(¤t.localnames, (yyvsp[-2].sval), (yyvsp[0].sval)); free((yyvsp[-2].sval)); free((yyvsp[0].sval));}
#line 3301 "rcfile_y.c"
break;
case 87: /* folder_list: STRING */
#line 284 "../rcfile_y.y"
{save_str(¤t.mailboxes,(yyvsp[0].sval),0); free((yyvsp[0].sval));}
#line 3307 "rcfile_y.c"
break;
case 88: /* folder_list: folder_list STRING */
#line 285 "../rcfile_y.y"
{save_str(¤t.mailboxes,(yyvsp[0].sval),0); free((yyvsp[0].sval));}
#line 3313 "rcfile_y.c"
break;
case 89: /* smtp_list: STRING */
#line 288 "../rcfile_y.y"
{save_str(¤t.smtphunt, (yyvsp[0].sval),TRUE); free((yyvsp[0].sval));}
#line 3319 "rcfile_y.c"
break;
case 90: /* smtp_list: smtp_list STRING */
#line 289 "../rcfile_y.y"
{save_str(¤t.smtphunt, (yyvsp[0].sval),TRUE); free((yyvsp[0].sval));}
#line 3325 "rcfile_y.c"
break;
case 91: /* fetch_list: STRING */
#line 292 "../rcfile_y.y"
{save_str(¤t.domainlist, (yyvsp[0].sval),TRUE); free((yyvsp[0].sval));}
#line 3331 "rcfile_y.c"
break;
case 92: /* fetch_list: fetch_list STRING */
#line 293 "../rcfile_y.y"
{save_str(¤t.domainlist, (yyvsp[0].sval),TRUE); free((yyvsp[0].sval));}
#line 3337 "rcfile_y.c"
break;
case 93: /* num_list: NUMBER */
#line 297 "../rcfile_y.y"
{
struct idlist *id;
id = save_str(¤t.antispam,STRING_DUMMY,0);
id->val.status.num = (yyvsp[0].number);
}
#line 3347 "rcfile_y.c"
break;
case 94: /* num_list: num_list NUMBER */
#line 303 "../rcfile_y.y"
{
struct idlist *id;
id = save_str(¤t.antispam,STRING_DUMMY,0);
id->val.status.num = (yyvsp[0].number);
}
#line 3357 "rcfile_y.c"
break;
case 99: /* user_option: IS STRING THERE */
#line 315 "../rcfile_y.y"
{current.remotename = (yyvsp[-1].sval);}
#line 3363 "rcfile_y.c"
break;
case 100: /* user_option: PASSWORD STRING */
#line 316 "../rcfile_y.y"
{current.password = (yyvsp[0].sval);}
#line 3369 "rcfile_y.c"
break;
case 104: /* user_option: SMTPADDRESS STRING */
#line 320 "../rcfile_y.y"
{current.smtpaddress = (yyvsp[0].sval);}
#line 3375 "rcfile_y.c"
break;
case 105: /* user_option: SMTPNAME STRING */
#line 321 "../rcfile_y.y"
{current.smtpname = (yyvsp[0].sval);}
#line 3381 "rcfile_y.c"
break;
case 107: /* user_option: MDA STRING */
#line 323 "../rcfile_y.y"
{current.mda = (yyvsp[0].sval);}
#line 3387 "rcfile_y.c"
break;
case 108: /* user_option: BSMTP STRING */
#line 324 "../rcfile_y.y"
{current.bsmtp = prependdir ((yyvsp[0].sval), rcfiledir); free((yyvsp[0].sval));}
#line 3393 "rcfile_y.c"
break;
case 109: /* user_option: LMTP */
#line 325 "../rcfile_y.y"
{current.listener = LMTP_MODE;}
#line 3399 "rcfile_y.c"
break;
case 110: /* user_option: PRECONNECT STRING */
#line 326 "../rcfile_y.y"
{current.preconnect = (yyvsp[0].sval);}
#line 3405 "rcfile_y.c"
break;
case 111: /* user_option: POSTCONNECT STRING */
#line 327 "../rcfile_y.y"
{current.postconnect = (yyvsp[0].sval);}
#line 3411 "rcfile_y.c"
break;
case 112: /* user_option: KEEP */
#line 329 "../rcfile_y.y"
{current.keep = FLAG_TRUE;}
#line 3417 "rcfile_y.c"
break;
case 113: /* user_option: MOVETO STRING */
#line 330 "../rcfile_y.y"
{current.moveto = (yyvsp[0].sval);}
#line 3423 "rcfile_y.c"
break;
case 114: /* user_option: FLUSH */
#line 331 "../rcfile_y.y"
{current.flush = FLAG_TRUE;}
#line 3429 "rcfile_y.c"
break;
case 115: /* user_option: LIMITFLUSH */
#line 332 "../rcfile_y.y"
{current.limitflush = FLAG_TRUE;}
#line 3435 "rcfile_y.c"
break;
case 116: /* user_option: FETCHALL */
#line 333 "../rcfile_y.y"
{current.fetchall = FLAG_TRUE;}
#line 3441 "rcfile_y.c"
break;
case 117: /* user_option: REWRITE */
#line 334 "../rcfile_y.y"
{current.rewrite = FLAG_TRUE;}
#line 3447 "rcfile_y.c"
break;
case 118: /* user_option: FORCECR */
#line 335 "../rcfile_y.y"
{current.forcecr = FLAG_TRUE;}
#line 3453 "rcfile_y.c"
break;
case 119: /* user_option: STRIPCR */
#line 336 "../rcfile_y.y"
{current.stripcr = FLAG_TRUE;}
#line 3459 "rcfile_y.c"
break;
case 120: /* user_option: PASS8BITS */
#line 337 "../rcfile_y.y"
{current.pass8bits = FLAG_TRUE;}
#line 3465 "rcfile_y.c"
break;
case 121: /* user_option: DROPSTATUS */
#line 338 "../rcfile_y.y"
{current.dropstatus = FLAG_TRUE;}
#line 3471 "rcfile_y.c"
break;
case 122: /* user_option: DROPDELIVERED */
#line 339 "../rcfile_y.y"
{current.dropdelivered = FLAG_TRUE;}
#line 3477 "rcfile_y.c"
break;
case 123: /* user_option: MIMEDECODE */
#line 340 "../rcfile_y.y"
{current.mimedecode = FLAG_TRUE;}
#line 3483 "rcfile_y.c"
break;
case 124: /* user_option: IDLE */
#line 341 "../rcfile_y.y"
{current.idle = FLAG_TRUE;}
#line 3489 "rcfile_y.c"
break;
case 125: /* user_option: FORCEIDLE */
#line 342 "../rcfile_y.y"
{current.forceidle = FLAG_TRUE;}
#line 3495 "rcfile_y.c"
break;
case 126: /* user_option: SSL */
#line 344 "../rcfile_y.y"
{
#ifdef SSL_ENABLE
current.use_ssl = FLAG_TRUE;
#else
yyerror(GT_("SSL is not enabled"));
#endif
}
#line 3507 "rcfile_y.c"
break;
case 127: /* user_option: SSLKEY STRING */
#line 351 "../rcfile_y.y"
{current.sslkey = prependdir ((yyvsp[0].sval), rcfiledir); free((yyvsp[0].sval));}
#line 3513 "rcfile_y.c"
break;
case 128: /* user_option: SSLCERT STRING */
#line 352 "../rcfile_y.y"
{current.sslcert = prependdir ((yyvsp[0].sval), rcfiledir); free((yyvsp[0].sval));}
#line 3519 "rcfile_y.c"
break;
case 129: /* user_option: SSLPROTO STRING */
#line 353 "../rcfile_y.y"
{current.sslproto = (yyvsp[0].sval);}
#line 3525 "rcfile_y.c"
break;
case 130: /* user_option: SSLCERTCK */
#line 354 "../rcfile_y.y"
{current.sslcertck = FLAG_TRUE;}
#line 3531 "rcfile_y.c"
break;
case 131: /* user_option: SSLCERTFILE STRING */
#line 355 "../rcfile_y.y"
{current.sslcertfile = prependdir((yyvsp[0].sval), rcfiledir); free((yyvsp[0].sval));}
#line 3537 "rcfile_y.c"
break;
case 132: /* user_option: SSLCERTPATH STRING */
#line 356 "../rcfile_y.y"
{current.sslcertpath = prependdir((yyvsp[0].sval), rcfiledir); free((yyvsp[0].sval));}
#line 3543 "rcfile_y.c"
break;
case 133: /* user_option: SSLCOMMONNAME STRING */
#line 357 "../rcfile_y.y"
{current.sslcommonname = (yyvsp[0].sval);}
#line 3549 "rcfile_y.c"
break;
case 134: /* user_option: SSLFINGERPRINT STRING */
#line 358 "../rcfile_y.y"
{current.sslfingerprint = (yyvsp[0].sval);}
#line 3555 "rcfile_y.c"
break;
case 135: /* user_option: NO KEEP */
#line 360 "../rcfile_y.y"
{current.keep = FLAG_FALSE;}
#line 3561 "rcfile_y.c"
break;
case 136: /* user_option: NO FLUSH */
#line 361 "../rcfile_y.y"
{current.flush = FLAG_FALSE;}
#line 3567 "rcfile_y.c"
break;
case 137: /* user_option: NO LIMITFLUSH */
#line 362 "../rcfile_y.y"
{current.limitflush = FLAG_FALSE;}
#line 3573 "rcfile_y.c"
break;
case 138: /* user_option: NO FETCHALL */
#line 363 "../rcfile_y.y"
{current.fetchall = FLAG_FALSE;}
#line 3579 "rcfile_y.c"
break;
case 139: /* user_option: NO REWRITE */
#line 364 "../rcfile_y.y"
{current.rewrite = FLAG_FALSE;}
#line 3585 "rcfile_y.c"
break;
case 140: /* user_option: NO FORCECR */
#line 365 "../rcfile_y.y"
{current.forcecr = FLAG_FALSE;}
#line 3591 "rcfile_y.c"
break;
case 141: /* user_option: NO STRIPCR */
#line 366 "../rcfile_y.y"
{current.stripcr = FLAG_FALSE;}
#line 3597 "rcfile_y.c"
break;
case 142: /* user_option: NO PASS8BITS */
#line 367 "../rcfile_y.y"
{current.pass8bits = FLAG_FALSE;}
#line 3603 "rcfile_y.c"
break;
case 143: /* user_option: NO DROPSTATUS */
#line 368 "../rcfile_y.y"
{current.dropstatus = FLAG_FALSE;}
#line 3609 "rcfile_y.c"
break;
case 144: /* user_option: NO DROPDELIVERED */
#line 369 "../rcfile_y.y"
{current.dropdelivered = FLAG_FALSE;}
#line 3615 "rcfile_y.c"
break;
case 145: /* user_option: NO MIMEDECODE */
#line 370 "../rcfile_y.y"
{current.mimedecode = FLAG_FALSE;}
#line 3621 "rcfile_y.c"
break;
case 146: /* user_option: NO IDLE */
#line 371 "../rcfile_y.y"
{current.idle = FLAG_FALSE;}
#line 3627 "rcfile_y.c"
break;
case 147: /* user_option: NO FORCEIDLE */
#line 372 "../rcfile_y.y"
{current.forceidle = FLAG_FALSE;}
#line 3633 "rcfile_y.c"
break;
case 148: /* user_option: NO SSL */
#line 374 "../rcfile_y.y"
{current.use_ssl = FLAG_FALSE;}
#line 3639 "rcfile_y.c"
break;
case 149: /* user_option: NO SSLCERTCK */
#line 375 "../rcfile_y.y"
{current.sslcertck = FLAG_FALSE;}
#line 3645 "rcfile_y.c"
break;
case 150: /* user_option: LIMIT NUMBER */
#line 377 "../rcfile_y.y"
{current.limit = NUM_VALUE_IN((yyvsp[0].number));}
#line 3651 "rcfile_y.c"
break;
case 151: /* user_option: WARNINGS NUMBER */
#line 378 "../rcfile_y.y"
{current.warnings = NUM_VALUE_IN((yyvsp[0].number));}
#line 3657 "rcfile_y.c"
break;
case 152: /* user_option: FETCHLIMIT NUMBER */
#line 379 "../rcfile_y.y"
{current.fetchlimit = NUM_VALUE_IN((yyvsp[0].number));}
#line 3663 "rcfile_y.c"
break;
case 153: /* user_option: FETCHSIZELIMIT NUMBER */
#line 380 "../rcfile_y.y"
{current.fetchsizelimit = NUM_VALUE_IN((yyvsp[0].number));}
#line 3669 "rcfile_y.c"
break;
case 154: /* user_option: FASTUIDL NUMBER */
#line 381 "../rcfile_y.y"
{current.fastuidl = NUM_VALUE_IN((yyvsp[0].number));}
#line 3675 "rcfile_y.c"
break;
case 155: /* user_option: BATCHLIMIT NUMBER */
#line 382 "../rcfile_y.y"
{current.batchlimit = NUM_VALUE_IN((yyvsp[0].number));}
#line 3681 "rcfile_y.c"
break;
case 156: /* user_option: EXPUNGE NUMBER */
#line 383 "../rcfile_y.y"
{current.expunge = NUM_VALUE_IN((yyvsp[0].number));}
#line 3687 "rcfile_y.c"
break;
case 157: /* user_option: PROPERTIES STRING */
#line 385 "../rcfile_y.y"
{current.properties = (yyvsp[0].sval);}
#line 3693 "rcfile_y.c"
break;
#line 3697 "rcfile_y.c"
default: break;
}
if (yychar_backup != yychar)
YY_LAC_DISCARD ("yychar change");
}
/* User semantic actions sometimes alter yychar, and that requires
that yytoken be updated with the new translation. We take the
approach of translating immediately before every use of yytoken.
One alternative is translating here after every semantic action,
but that translation would be missed if the semantic action invokes
YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or
if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an
incorrect destructor might then be invoked immediately. In the
case of YYERROR or YYBACKUP, subsequent parser actions might lead
to an incorrect destructor call or verbose syntax error message
before the lookahead is translated. */
YY_SYMBOL_PRINT ("-> $$ =", YY_CAST (yysymbol_kind_t, yyr1[yyn]), &yyval, &yyloc);
YYPOPSTACK (yylen);
yylen = 0;
*++yyvsp = yyval;
/* Now 'shift' the result of the reduction. Determine what state
that goes to, based on the state we popped back to and the rule
number reduced by. */
{
const int yylhs = yyr1[yyn] - YYNTOKENS;
const int yyi = yypgoto[yylhs] + *yyssp;
yystate = (0 <= yyi && yyi <= YYLAST && yycheck[yyi] == *yyssp
? yytable[yyi]
: yydefgoto[yylhs]);
}
goto yynewstate;
/*--------------------------------------.
| yyerrlab -- here on detecting error. |
`--------------------------------------*/
yyerrlab:
/* Make sure we have latest lookahead translation. See comments at
user semantic actions for why this is necessary. */
yytoken = yychar == YYEMPTY ? YYSYMBOL_YYEMPTY : YYTRANSLATE (yychar);
/* If not already recovering from an error, report this error. */
if (!yyerrstatus)
{
++yynerrs;
{
yypcontext_t yyctx
= {yyssp, yyesa, &yyes, &yyes_capacity, yytoken};
char const *yymsgp = YY_("syntax error");
int yysyntax_error_status;
if (yychar != YYEMPTY)
YY_LAC_ESTABLISH;
yysyntax_error_status = yysyntax_error (&yymsg_alloc, &yymsg, &yyctx);
if (yysyntax_error_status == 0)
yymsgp = yymsg;
else if (yysyntax_error_status == -1)
{
if (yymsg != yymsgbuf)
YYSTACK_FREE (yymsg);
yymsg = YY_CAST (char *,
YYSTACK_ALLOC (YY_CAST (YYSIZE_T, yymsg_alloc)));
if (yymsg)
{
yysyntax_error_status
= yysyntax_error (&yymsg_alloc, &yymsg, &yyctx);
yymsgp = yymsg;
}
else
{
yymsg = yymsgbuf;
yymsg_alloc = sizeof yymsgbuf;
yysyntax_error_status = YYENOMEM;
}
}
yyerror (yymsgp);
if (yysyntax_error_status == YYENOMEM)
YYNOMEM;
}
}
if (yyerrstatus == 3)
{
/* If just tried and failed to reuse lookahead token after an
error, discard it. */
if (yychar <= YYEOF)
{
/* Return failure if at end of input. */
if (yychar == YYEOF)
YYABORT;
}
else
{
yydestruct ("Error: discarding",
yytoken, &yylval);
yychar = YYEMPTY;
}
}
/* Else will try to reuse lookahead token after shifting the error
token. */
goto yyerrlab1;
/*---------------------------------------------------.
| yyerrorlab -- error raised explicitly by YYERROR. |
`---------------------------------------------------*/
yyerrorlab:
/* Pacify compilers when the user code never invokes YYERROR and the
label yyerrorlab therefore never appears in user code. */
if (0)
YYERROR;
++yynerrs;
/* Do not reclaim the symbols of the rule whose action triggered
this YYERROR. */
YYPOPSTACK (yylen);
yylen = 0;
YY_STACK_PRINT (yyss, yyssp);
yystate = *yyssp;
goto yyerrlab1;
/*-------------------------------------------------------------.
| yyerrlab1 -- common code for both syntax error and YYERROR. |
`-------------------------------------------------------------*/
yyerrlab1:
yyerrstatus = 3; /* Each real token shifted decrements this. */
/* Pop stack until we find a state that shifts the error token. */
for (;;)
{
yyn = yypact[yystate];
if (!yypact_value_is_default (yyn))
{
yyn += YYSYMBOL_YYerror;
if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYSYMBOL_YYerror)
{
yyn = yytable[yyn];
if (0 < yyn)
break;
}
}
/* Pop the current state because it cannot handle the error token. */
if (yyssp == yyss)
YYABORT;
yydestruct ("Error: popping",
YY_ACCESSING_SYMBOL (yystate), yyvsp);
YYPOPSTACK (1);
yystate = *yyssp;
YY_STACK_PRINT (yyss, yyssp);
}
/* If the stack popping above didn't lose the initial context for the
current lookahead token, the shift below will for sure. */
YY_LAC_DISCARD ("error recovery");
YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
*++yyvsp = yylval;
YY_IGNORE_MAYBE_UNINITIALIZED_END
/* Shift the error token. */
YY_SYMBOL_PRINT ("Shifting", YY_ACCESSING_SYMBOL (yyn), yyvsp, yylsp);
yystate = yyn;
goto yynewstate;
/*-------------------------------------.
| yyacceptlab -- YYACCEPT comes here. |
`-------------------------------------*/
yyacceptlab:
yyresult = 0;
goto yyreturnlab;
/*-----------------------------------.
| yyabortlab -- YYABORT comes here. |
`-----------------------------------*/
yyabortlab:
yyresult = 1;
goto yyreturnlab;
/*-----------------------------------------------------------.
| yyexhaustedlab -- YYNOMEM (memory exhaustion) comes here. |
`-----------------------------------------------------------*/
yyexhaustedlab:
yyerror (YY_("memory exhausted"));
yyresult = 2;
goto yyreturnlab;
/*----------------------------------------------------------.
| yyreturnlab -- parsing is finished, clean up and return. |
`----------------------------------------------------------*/
yyreturnlab:
if (yychar != YYEMPTY)
{
/* Make sure we have latest lookahead translation. See comments at
user semantic actions for why this is necessary. */
yytoken = YYTRANSLATE (yychar);
yydestruct ("Cleanup: discarding lookahead",
yytoken, &yylval);
}
/* Do not reclaim the symbols of the rule whose action triggered
this YYABORT or YYACCEPT. */
YYPOPSTACK (yylen);
YY_STACK_PRINT (yyss, yyssp);
while (yyssp != yyss)
{
yydestruct ("Cleanup: popping",
YY_ACCESSING_SYMBOL (+*yyssp), yyvsp);
YYPOPSTACK (1);
}
#ifndef yyoverflow
if (yyss != yyssa)
YYSTACK_FREE (yyss);
#endif
if (yyes != yyesa)
YYSTACK_FREE (yyes);
if (yymsg != yymsgbuf)
YYSTACK_FREE (yymsg);
return yyresult;
}
#line 387 "../rcfile_y.y"
static struct query *hosttail; /* where to add new elements */
/** check that a configuration file is secure, returns PS_* status codes */
int prc_filecheck(const char *pathname,
const flag securecheck /** shortcuts permission, filetype and uid tests if false */)
{
struct stat statbuf;
errno = 0;
/* special case useful for debugging purposes */
if (strcmp("/dev/null", pathname) == 0)
return(PS_SUCCESS);
/* pass through the special name for stdin */
if (strcmp("-", pathname) == 0)
return(PS_SUCCESS);
/* the run control file must have the same uid as the REAL uid of this
process, it must have permissions no greater than 600, and it must not
be a symbolic link. We check these conditions here. */
if (stat(pathname, &statbuf) < 0) {
if (errno == ENOENT)
return(PS_SUCCESS);
else {
report(stderr, "lstat: %s: %s\n", pathname, strerror(errno));
return(PS_IOERR);
}
}
if (!securecheck) return PS_SUCCESS;
if (!S_ISREG(statbuf.st_mode))
{
fprintf(stderr, GT_("File %s must be a regular file.\n"), pathname);
return(PS_IOERR);
}
if (statbuf.st_mode & (S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH | S_IXOTH))
{
fprintf(stderr, GT_("File %s must have no more than -rwx------ (0700) permissions.\n"),
pathname);
return(PS_IOERR);
}
if (statbuf.st_uid != geteuid())
{
fprintf(stderr, GT_("File %s must be owned by you.\n"), pathname);
return(PS_IOERR);
}
return(PS_SUCCESS);
}
int prc_parse_file (const char *pathname, const flag securecheck)
/* digest the configuration into a linked list of host records */
{
prc_errflag = 0;
querylist = hosttail = (struct query *)NULL;
errno = 0;
/* Check that the file is secure */
if ( (prc_errflag = prc_filecheck(pathname, securecheck)) != 0 )
return(prc_errflag);
/*
* Croak if the configuration directory does not exist.
* This probably means an NFS mount failed and we can't
* see a configuration file that ought to be there.
* Question: is this a portable check? It's not clear
* that all implementations of lstat() will return ENOTDIR
* rather than plain ENOENT in this case...
*/
if (errno == ENOTDIR)
return(PS_IOERR);
else if (errno == ENOENT)
return(PS_SUCCESS);
/* Open the configuration file and feed it to the lexer. */
if (strcmp(pathname, "-") == 0)
yyin = stdin;
else if ((yyin = fopen(pathname,"r")) == (FILE *)NULL) {
report(stderr, "open: %s: %s\n", pathname, strerror(errno));
return(PS_IOERR);
}
int parseerr = yyparse(); /* parse entire file */
if (2 == parseerr) {
report(stderr, GT_("%s: parsing rcfile %s: memory exhausted\n"), program_name, pathname);
return PS_IOERR;
}
if (yyin != stdin)
fclose(yyin); /* not checking this should be safe, file mode was r */
if (prc_errflag || parseerr)
return PS_SYNTAX;
return PS_SUCCESS;
}
static void reset_server(const char *name, int skip)
/* clear the entire global record and initialize it with a new name */
{
trailer = FALSE;
memset(¤t,'\0',sizeof(current));
current.smtp_socket = -1;
current.server.pollname = xstrdup(name);
current.server.skip = skip;
}
static void user_reset(void)
/* clear the global current record (user parameters) used by the parser */
{
struct hostdata save;
/*
* Purpose of this code is to initialize the new server block, but
* preserve whatever server name was previously set. Also
* preserve server options unless the command-line explicitly
* overrides them.
*/
save = current.server;
memset(¤t, '\0', sizeof(current));
current.smtp_socket = -1;
current.server = save;
}
/** append a host record to the host list */
struct query *hostalloc(struct query *init /** pointer to block containing
initial values */)
{
struct query *node;
/* allocate new node */
node = (struct query *) xmalloc(sizeof(struct query));
/* initialize it */
if (init)
memcpy(node, init, sizeof(struct query));
else
{
memset(node, '\0', sizeof(struct query));
node->smtp_socket = -1;
}
/* append to end of list */
if (hosttail != (struct query *) 0)
hosttail->next = node; /* list contains at least one element */
else
querylist = node; /* list is empty */
hosttail = node;
if (trailer)
node->server.lead_server = leadentry;
else
{
node->server.lead_server = NULL;
leadentry = &node->server;
}
return(node);
}
static void record_current(void)
/* register current parameters and append to the host list */
{
(void) hostalloc(¤t);
trailer = TRUE;
}
char *prependdir (const char *file, const char *dir)
/* if a filename is relative to dir, convert it to an absolute path */
{
char *newfile;
if (!file[0] || /* null path */
file[0] == '/' || /* absolute path */
strcmp(file, "-") == 0 || /* stdin/stdout */
!dir[0]) /* we don't HAVE_GETCWD */
return xstrdup (file);
newfile = (char *)xmalloc (strlen (dir) + 1 + strlen (file) + 1);
if (dir[strlen(dir) - 1] != '/')
sprintf (newfile, "%s/%s", dir, file);
else
sprintf (newfile, "%s%s", dir, file);
return newfile;
}
/* rcfile_y.y ends here */
|