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 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292
|
#
# RT was configured with:
#
# $ @CONFIGURE_INCANT@
#
package RT;
############################# WARNING #############################
# #
# NEVER EDIT RT_Config.pm ! #
# #
# Instead, copy any sections you want to change to #
# RT_SiteConfig.pm and edit them there. Otherwise, #
# your changes will be lost when you upgrade RT. #
# #
############################# WARNING #############################
=head1 NAME
RT::Config
=head1 DESCRIPTION
RT has dozens of configuration options to customize how RT behaves for
different situations. The available options and valid values are
described below.
=head2 Server Configuration Files
This file, C<etc/RT_Config.pm>, defines the available configuration options
and sets the defaults for RT. You should B<never> edit this file directly.
If you do, your changes will be lost when you upgrade and RT installs the
newest version of this file on your system.
The correct place to set site-specific options is in C<etc/RT_SiteConfig.pm>.
If you have many customizations to manage, you can break your configuration
into multiple files and put them in a directory C<etc/RT_SiteConfig.d/>. More
information about this option is available in the L<RT::Config>
documentation.
=head2 Web Configuration
RT also allows you to set configuration via the RT web interface at
Admin > Tools > System Configuration. Any configuration options set there take
precedence over values set in C<etc/RT_SiteConfig.pm>. If you provide a
custom setting in both places, RT will issue a warning in the log as a
reminder to consider removing the setting from C<etc/RT_SiteConfig.pm>
to avoid confusion.
Some settings that are core to RT cannot be changed via the web interface.
This prevents changes that could make your RT inoperable, leaving you
unable to restore the system via the web UI.
=head1 System
=head2 Base configuration
=over 4
=item C<$rtname>
C<$rtname> is the string that RT will look for in mail messages to
figure out what ticket a new piece of mail belongs to.
Your domain name is recommended, so as not to pollute the namespace.
Once you start using a given tag, you should probably never change it;
otherwise, mail for existing tickets won't get put in the right place.
=cut
Set($rtname, "example.com");
=item C<$Organization>
You should set this to your organization's DNS domain. For example,
I<fsck.com> or I<asylum.arkham.ma.us>. It is used by the linking
interface to guarantee that ticket URIs are unique and easy to
construct. Changing it after you have created tickets in the system
will B<break> all existing ticket links!
=cut
Set($Organization, "example.com");
=item C<$CorrespondAddress>, C<$CommentAddress>
RT is designed such that any mail which already has a ticket-id
associated with it will get to the right place automatically.
C<$CorrespondAddress> and C<$CommentAddress> are the default addresses
that will be listed in From: and Reply-To: headers of correspondence
and comment mail tracked by RT, unless overridden by a queue-specific
address. They should be set to email addresses which have been
configured as aliases for F<rt-mailgate>.
=cut
Set($CorrespondAddress, '');
Set($CommentAddress, '');
=item C<$WebDomain>
Domain name of the RT server, e.g. 'www.example.com'. It should not
contain anything except the server name.
=cut
Set($WebDomain, "localhost");
=item C<$WebPort>
If we're running as a superuser, run on port 80. Otherwise, pick a
high port for this user.
443 is default port for https protocol.
=cut
Set($WebPort, 80);
=item C<$WebPath>
If you're putting the web UI somewhere other than at the root of your
server, you should set C<$WebPath> to the path you'll be serving RT
at.
C<$WebPath> requires a leading / but no trailing /, or it can be
blank.
In most cases, you should leave C<$WebPath> set to "" (an empty
value).
=cut
Set($WebPath, "");
=item C<$Timezone>
C<$Timezone> is the default timezone, used to convert times entered by
users into GMT, as they are stored in the database, and back again;
users can override this. It should be set to a timezone recognized by
your server.
=cut
Set($Timezone, "America/New_York");
=item C<@Plugins>
Once a plugin has been downloaded and installed, use C<Plugin()> to add
to the enabled C<@Plugins> list:
Plugin( "RT::Extension::JSGantt" );
RT will also accept the distribution name (i.e. C<RT-Extension-JSGantt>)
instead of the package name (C<RT::Extension::JSGantt>).
=cut
Set(@Plugins, ());
=item C<@StaticRoots>
Set C<@StaticRoots> to serve extra paths with a static handler. The
contents of each hashref should be the the same arguments as
L<Plack::Middleware::Static> takes. These paths will be checked before
any plugin or core static paths.
Example:
Set( @StaticRoots,
{
path => qr{^/static/},
root => '/local/path/to/static/parent',
},
);
=cut
Set( @StaticRoots, () );
=back
=head2 Database connection
=over 4
=item C<$DatabaseType>
Database driver being used; case matters. Valid types are "mysql",
"Oracle", and "Pg". "SQLite" is also available for non-production use.
=cut
Set($DatabaseType, "@DATABASE_TYPE@");
=item C<$DatabaseHost>, C<$DatabaseRTHost>
The domain name of your database server. If you're running MySQL and
on localhost, leave it blank for enhanced performance.
C<DatabaseRTHost> is the fully-qualified hostname of your RT server,
for use in granting ACL rights on MySQL.
=cut
Set($DatabaseHost, "@DB_HOST@");
Set($DatabaseRTHost, "@DB_RT_HOST@");
=item C<$DatabasePort>
The port that your database server is running on. Ignored unless it's
a positive integer. It's usually safe to leave this blank; RT will
choose the correct default.
=cut
Set($DatabasePort, "@DB_PORT@");
=item C<$DatabaseUser>
The name of the user to connect to the database as.
=cut
Set($DatabaseUser, "@DB_RT_USER@");
=item C<$DatabasePassword>
The password the C<$DatabaseUser> should use to access the database.
=cut
Set($DatabasePassword, q{@DB_RT_PASS@});
=item C<$DatabaseName>
The name of the RT database on your database server. For Oracle, the
SID and database objects are created in C<$DatabaseUser>'s schema.
=cut
Set($DatabaseName, q{@DB_DATABASE@});
=item C<%DatabaseExtraDSN>
Allows additional properties to be passed to the database connection
step. Possible properties are specific to the database-type; see
https://metacpan.org/pod/DBI#connect
For PostgreSQL, for instance, the following enables SSL (but does no
certificate checking, providing data hiding but no MITM protection):
# See https://metacpan.org/pod/DBD::Pg#connect
# and http://www.postgresql.org/docs/8.4/static/libpq-ssl.html
Set( %DatabaseExtraDSN, sslmode => 'require' );
For MySQL, the following acts similarly if the server has enabled SSL.
Otherwise, it provides no protection; MySQL provides no way to I<force>
SSL connections:
# See https://metacpan.org/pod/DBD::mysql#connect
# and http://dev.mysql.com/doc/refman/5.1/en/ssl-options.html
Set( %DatabaseExtraDSN, mysql_ssl => 1 );
=cut
Set(%DatabaseExtraDSN, ());
=item C<$DatabaseAdmin>
The name of the database administrator to connect to the database as
during upgrades.
=cut
Set($DatabaseAdmin, "@DB_DBA@");
=item C<$DatabaseQueryTimeout>
Time in seconds to allow a single database query to run before
timing out. This helps prevent performance penalties for expensive,
long-running queries. This value, if set, should be less than any
timeout settings in your web server (Apache, etc.) so the user can
receive a message rather than a server timeout error.
It's disabled by default and only works with MariaDB/MySQL/PostgreSQL.
If you have command-line scripts that may require a longer-running query,
you can set the environment variable C<RT_DATABASE_QUERY_TIMEOUT>
to override the value set in RT's configuration.
=cut
Set($DatabaseQueryTimeout, undef);
=back
=head2 Logging
The default is to log anything except debugging information to syslog.
Check the L<Log::Dispatch> POD for information about how to get things
by syslog, mail or anything else, get debugging info in the log, etc.
It might generally make sense to send error and higher by email to
some administrator. If you do this, be careful that this email isn't
sent to this RT instance. Mail loops will generate a critical log
message.
=over 4
=item C<$LogToSyslog>, C<$LogToSTDERR>
The minimum level error that will be logged to the specific device.
From lowest to highest priority, the levels are:
debug info notice warning error critical alert emergency
Many syslogds are configured to discard or file debug messages away, so
if you're attempting to debug RT you may need to reconfigure your
syslogd or use one of the other logging options.
Logging to your screen affects scripts run from the command line as well
as the STDERR sent to your webserver (so these logs will usually show up
in your web server's error logs).
=cut
Set($LogToSyslog, "info");
Set($LogToSTDERR, "info");
=item C<$LogToFile>, C<$LogDir>, C<$LogToFileNamed>
Logging to a standalone file is also possible. The file needs to both
exist and be writable by all direct users of the RT API. This generally
includes the web server and whoever rt-crontool runs as. Note that
rt-mailgate and the RT CLI go through the webserver, so their users do
not need to have write permissions to this file. If you expect to have
multiple users of the direct API, Best Practical recommends using syslog
instead of direct file logging.
You should set C<$LogToFile> to one of the levels documented above.
=cut
Set($LogToFile, undef);
Set($LogDir, q{@RT_LOG_PATH@});
Set($LogToFileNamed, "rt.log"); #log to rt.log
=item C<$LogStackTraces>
If set to a log level then logging will include stack traces for
messages with level equal to or greater than specified.
NOTICE: Stack traces include parameters supplied to functions or
methods. It is possible for stack trace logging to reveal sensitive
information such as passwords or ticket content in your logs.
=cut
Set($LogStackTraces, "");
=item C<@LogToSyslogConf>
Additional options to pass to L<Log::Dispatch::Syslog>; the most
interesting flags include C<facility>, C<logopt>, and possibly C<ident>.
See the L<Log::Dispatch::Syslog> documentation for more information.
=cut
Set(@LogToSyslogConf, ());
=item C<$LogScripsForUser>
Enables logging for each Scrip, and log output can then be found in the
Scrip Admin web interface. Log output is shown for the most recent run
of each scrip.
Accepts a hashref with username and log level. Output is generated only
when that user performs an action that runs the scrip. Log levels are
the same as for other RT logging. For example:
Set($LogScripsForUser, { 'Username1' => 'debug', 'Username2' => 'warning' });
This allows you to enable debug logging just for yourself as you test
a new scrip.
If you have set the C<LogDir> option it needs to be writeable by the
webserver user for Scrip logging to work.
NOTICE: The Ticket Update page that is used to add a Reply or Comment
will run all relevant Scrips in a dry run mode that executes the
Scrip Condition and Scrip Prepare code. This means log files might be
created just by loading the Ticket Update page if Scrip logging is
enabled.
=cut
Set($LogScripsForUser, {});
=back
=head2 Incoming mail gateway
=over 4
=item C<$EmailSubjectTagRegex>
This setting allows you to customize the way RT evaluates email
subject tags. RT uses subject tags to determine if an email should
update a ticket in this RT instance.
C<$EmailSubjectTagRegex> is most useful if you change your C<$rtname> setting,
or change a queue-specific subject tag. In those cases, you can set
this option to still match the old values, allowing replies to old email
to still be recognized by this RT and get correctly routed to
existing tickets.
Note that it overrides the current C<$rtname> setting for subject
token matching, so if you need to match an old value and also the
new value, include C<$rtname> in your regex.
As an example, the setting below would make RT behave exactly as it
does without the setting enabled.
Set($EmailSubjectTagRegex, qr/\Q$rtname\E/i);
This would match email replies for an old queue-level subject tag
called "Old Tag" that was changed:
Set($EmailSubjectTagRegex, qr/\Q$rtname\E|Old Tag/i);
=item C<$OwnerEmail>
C<$OwnerEmail> is the address of a human who manages RT. RT will send
several classes of errors to this address. To avoid mail loops,
this option should I<not> be set to an address that's managed by your
RT instance.
The default is to send email to C<root> on the server where RT is
running. If your system is not set up to forward root email to a
real email address, you should set this to RT's admin. If you don't
want to send any email, you can set this to C<undef>. This will
prevent the local root account from gathering email that no one is
looking at.
Examples of errors sent to this address are:
=over 4
=item Insufficient Permissions
When someone tries to create or update a ticket using email and
lacks the necessary rights.
=item Email Decryption and Encryption Errors
When there is a failure in decoding or decrypting incoming
email, or encrypting outgoing email. These will alert you
to a configuration issue with one or more addresses.
=item Mail Loops
If C<$LoopsToRTOwner> is set, then whenever RT detects a mail loop.
=item Dashboard Mailer Responses
If L</$DashboardAddress> isn't set then C<$OwnerEMail> will be used
as the From address for dashboard emails. Responses to these
emails will then go to C<$OwnerEmail>.
=back
=cut
Set($OwnerEmail, 'root');
=item C<$LoopsToRTOwner>
If C<$LoopsToRTOwner> is defined, RT will send mail that it believes
might be a loop to C<$OwnerEmail>.
=cut
Set($LoopsToRTOwner, 1);
=item C<$StoreLoops>
If C<$StoreLoops> is defined, RT will record messages that it believes
to be part of mail loops. As it does this, it will try to be careful
not to send mail to the sender of these messages.
=cut
Set($StoreLoops, undef);
=item C<$MaxAttachmentSize>
C<$MaxAttachmentSize> sets the maximum size (in bytes) of attachments
stored in the database. This setting is irrelevant unless one of
$TruncateLongAttachments or $DropLongAttachments (below) are set, B<OR>
the database is stored in Oracle. On Oracle, attachments larger than
this can be fully stored, but will be truncated to this length when
read.
=cut
Set($MaxAttachmentSize, 10*1024*1024); # 10MiB
=item C<$TruncateLongAttachments>
If this is set to a non-undef value, RT will truncate attachments
longer than C<$MaxAttachmentSize>.
=cut
Set($TruncateLongAttachments, undef);
=item C<$DropLongAttachments>
If this is set to a non-undef value, RT will silently drop attachments
longer than C<MaxAttachmentSize>. C<$TruncateLongAttachments>, above,
takes priority over this.
=cut
Set($DropLongAttachments, undef);
=item C<$RTAddressRegexp>
C<$RTAddressRegexp> is used to make sure RT doesn't add itself as a
ticket CC if C<$ParseNewMessageForTicketCcs>, above, is enabled. It
is important that you set this to a regular expression that matches
all addresses used by your RT. This lets RT avoid sending mail to
itself. It will also hide RT addresses from the list of "One-time Cc"
and Bcc lists on ticket reply.
If you have a number of addresses configured in your RT database
already, you can generate a naive first pass regexp by using:
perl etc/upgrade/generate-rtaddressregexp
If left blank, RT will compare each address to your configured
C<$CorrespondAddress> and C<$CommentAddress> before searching for a
Queue configured with a matching "Reply Address" or "Comment Address"
on the Queue Admin page.
=cut
Set($RTAddressRegexp, undef);
=item C<$CanonicalizeEmailAddressMatch>, C<$CanonicalizeEmailAddressReplace>
RT provides functionality which allows the system to rewrite incoming
email addresses, using L<RT::User/CanonicalizeEmailAddress>. The
default implementation replaces all occurrences of the regular
expression in C<CanonicalizeEmailAddressMatch> with
C<CanonicalizeEmailAddressReplace>, via C<s/$Match/$Replace/gi>. The
most common use of this is to replace C<@something.example.com> with
C<@example.com>, as shown below:
Set($CanonicalizeEmailAddressMatch, '@subdomain\.example\.com$');
Set($CanonicalizeEmailAddressReplace, '@example.com');
If more complex noramlization is required,
L<RT::User/CanonicalizeEmailAddress> can be overridden to provide it.
=item C<$ValidateUserEmailAddresses>
By default C<$ValidateUserEmailAddresses> is 1, and RT will refuse to create
users with an invalid email address (as specified in RFC 2822) or with
an email address made of multiple email addresses.
Set this to 0 to skip any email address validation. Doing so may open up
vulnerabilities.
=cut
Set($ValidateUserEmailAddresses, 1);
=item C<@MailPlugins>
C<@MailPlugins> is a list of authentication plugins for
L<RT::Interface::Email> to use; see L<rt-mailgate>
=cut
=item C<$ExtractSubjectTagMatch>, C<$ExtractSubjectTagNoMatch>
The default "extract remote tracking tags" scrip settings; these
detect when your RT is talking to another RT, and adjust the subject
accordingly.
=cut
Set($ExtractSubjectTagMatch, qr/\[[^\]]+? #\d+\]/);
Set($ExtractSubjectTagNoMatch, ( ${RT::EmailSubjectTagRegex}
? qr{\[(?:https?://)?(?:${RT::EmailSubjectTagRegex}) #\d+\]}
: qr{\[(?:https?://)?\Q$RT::rtname\E #\d+\]}));
=item C<$CheckMoreMSMailHeaders>
Some email clients create a plain text version of HTML-formatted
email to help other clients that read only plain text.
Unfortunately, the plain text parts sometimes end up with
doubled newlines and these can then end up in RT. This
is most often seen in MS Outlook.
Enable this option to have RT check for additional mail headers
and attempt to identify email from MS Outlook. When detected,
RT will then clean up double newlines. Note that it may
clean up intentional double newlines as well.
=cut
Set( $CheckMoreMSMailHeaders, 0);
=item C<$TreatAttachedEmailAsFiles>
Email coming into RT can sometimes have another email attached, when
an email is forwarded as an attachment, for example. By default, RT recognizes
that the attached content is an email and does some processing, including
some parsing the headers of the attached email. You can see this in suggested
email addresses on the People page and One-time Cc on reply.
If you want RT to treat attached email files as regular file attachments,
set this option to true (1). With this option enabled, attached email will
show up in the "Attachments" section like other types of file attachments
and content like headers will not be processed.
=cut
Set( $TreatAttachedEmailAsFiles, 0);
=back
=head2 Outgoing mail
=over 4
=item C<$MailCommand>
C<$MailCommand> defines which method RT will use to try to send mail.
We know that 'sendmailpipe' works fairly well. If 'sendmailpipe'
doesn't work well for you, try 'sendmail'. 'qmail' is also a supported
value.
For testing purposes, or to simply disable sending mail out into the
world, you can set C<$MailCommand> to 'mbox' which logs all mail, in
mbox format, to files in F</opt/rt5/var/> based in the process start
time. The 'testfile' option is similar, but the files that it creates
(under /tmp) are temporary, and removed upon process completion; the
format is also not mbox-compatable.
=cut
Set($MailCommand, "sendmailpipe");
=item C<$SetOutgoingMailFrom>
C<$SetOutgoingMailFrom> tells RT to set the sender envelope to the
Correspond mail address of the ticket's queue.
Warning: If you use this setting, bounced mails will appear to be
incoming mail to the system, thus creating new tickets.
If the value contains an C<@>, it is assumed to be an email address and used as
a global envelope sender. Expected usage in this case is to simply set the
same envelope sender on all mail from RT, without defining
C<$OverrideOutgoingMailFrom>. If you do define C<$OverrideOutgoingMailFrom>,
anything specified there overrides the global value (including Default).
This option only works if C<$MailCommand> is set to 'sendmailpipe'.
=cut
Set($SetOutgoingMailFrom, 0);
=item C<$OverrideOutgoingMailFrom>
C<$OverrideOutgoingMailFrom> is used for overwriting the Correspond
address of the queue as it is handed to sendmail -f. This helps force
the From_ header away from www-data or other email addresses that show
up in the "Sent by" line in Outlook.
The option is a hash reference of queue id/name to email address. If
there is no ticket involved, then the value of the C<Default> key will
be used.
This option only works if C<$SetOutgoingMailFrom> is enabled and
C<$MailCommand> is set to 'sendmailpipe'.
=cut
Set($OverrideOutgoingMailFrom, {
# 'Default' => 'admin@rt.example.com',
# 'General' => 'general@rt.example.com',
});
=item C<$DefaultMailPrecedence>
C<$DefaultMailPrecedence> is used to control the default Precedence
level of outgoing mail where none is specified. By default it is
C<bulk>, but if you only send mail to your staff, you may wish to
change it.
Note that you can set the precedence of individual templates by
including an explicit Precedence header.
If you set this value to C<undef> then we do not set a default
Precedence header to outgoing mail. However, if there already is a
Precedence header, it will be preserved.
=cut
Set($DefaultMailPrecedence, "bulk");
=item C<$OverrideMailPrecedence>
C<$OverrideMailPrecedence> is used for overwriting the C<$DefaultMailPrecedence>
value for a queue.
The option is a hash reference of queue id/name to precedence. If you set the
precedence to C<undef>, a Precedence header will not be added to the mail.
This option only works if C<$DefaultMailPrecedence> is enabled.
=cut
Set($OverrideMailPrecedence, {
# 'Queue 1' => "list",
# 'Queue 2' => undef,
});
=item C<$DefaultErrorMailPrecedence>
C<$DefaultErrorMailPrecedence> is used to control the default
Precedence level of outgoing mail that indicates some kind of error
condition. By default it is C<bulk>, but if you only send mail to your
staff, you may wish to change it.
If you set this value to C<undef> then we do not add a Precedence
header to error mail.
=cut
Set($DefaultErrorMailPrecedence, "bulk");
=item C<$UseOriginatorHeader>
C<$UseOriginatorHeader> is used to control the insertion of an
RT-Originator Header in every outgoing mail, containing the mail
address of the transaction creator.
=cut
Set($UseOriginatorHeader, 1);
=item C<$UseFriendlyFromLine>
By default, RT sets the outgoing mail's "From:" header to "SenderName
via RT". Setting C<$UseFriendlyFromLine> to 0 disables it.
=cut
Set($UseFriendlyFromLine, 1);
=item C<$FriendlyFromLineFormat>
C<sprintf()> format of the friendly 'From:' header; its arguments are
SenderName and SenderEmailAddress.
=cut
Set($FriendlyFromLineFormat, "\"%s via RT\" <%s>");
=item C<$UseFriendlyToLine>
RT can optionally set a "Friendly" 'To:' header when sending messages
to Ccs or AdminCcs (rather than having a blank 'To:' header.
This feature DOES NOT WORK WITH SENDMAIL[tm] BRAND SENDMAIL. If you
are using sendmail, rather than postfix, qmail, exim or some other
MTA, you _must_ disable this option.
=cut
Set($UseFriendlyToLine, 0);
=item C<$FriendlyToLineFormat>
C<sprintf()> format of the friendly 'To:' header; its arguments are
WatcherType and TicketId.
=cut
Set($FriendlyToLineFormat, "\"%s of ". RT->Config->Get('rtname') ." Ticket #%s\":;");
=item C<$NotifyActor>
By default, RT doesn't notify the person who performs an update, as
they already know what they've done. If you'd like to change this
behavior, Set C<$NotifyActor> to 1
=cut
Set($NotifyActor, 0);
=item C<$RecordOutgoingEmail>
By default, RT records each message it sends out to its own internal
database. To change this behavior, set C<$RecordOutgoingEmail> to 0
If this is disabled, users' digest mail delivery preferences
(i.e. EmailFrequency) will also be ignored.
=cut
Set($RecordOutgoingEmail, 1);
=item C<$VERPPrefix>, C<$VERPDomain>
Setting these options enables VERP support
L<http://cr.yp.to/proto/verp.txt>.
Uncomment the following two directives to generate envelope senders
of the form C<${VERPPrefix}${originaladdress}@${VERPDomain}>
(i.e. rt-jesse=fsck.com@rt.example.com ).
This currently only works with sendmail and sendmailpipe.
=cut
# Set($VERPPrefix, "rt-");
# Set($VERPDomain, $RT::Organization);
=item C<$ForwardFromUser>
By default, RT forwards a message using queue's address and adds RT's
tag into subject of the outgoing message, so recipients' replies go
into RT as correspondents.
To change this behavior, set C<$ForwardFromUser> to 1 and RT
will use the address of the current user and remove RT's subject tag.
=cut
Set($ForwardFromUser, 0);
=item C<$HTMLFormatter>
RT's default pure-perl formatter may fail to successfully convert even
on some relatively simple HTML; this will result in blank C<text/plain>
parts, which is particuarly unfortunate if HTML templates are not in
use.
If the optional dependency L<HTML::FormatExternal> is installed, RT will
use external programs to render HTML to plain text. The default is to
try, in order, C<w3m>, C<elinks>, C<html2text>, C<links>, C<lynx>, and
then fall back to the C<core> pure-perl formatter if none are installed.
Set C<$HTMLFormatter> to one of the above programs (or the full path to
such) to use a different program than the above would choose by default.
Setting this requires that L<HTML::FormatExternal> be installed.
If the chosen formatter is not in the webserver's $PATH, you may set
this option the full path to one of the aforementioned executables.
=cut
Set($HTMLFormatter, undef);
=back
=head3 Email dashboards
=over 4
=item C<$DashboardAddress>
The email address from which RT will send dashboards. If none is set,
then C<$OwnerEmail> will be used.
=cut
Set($DashboardAddress, '');
=item C<$DashboardSubject>
Lets you set the subject of dashboards. Arguments are the frequency (Daily,
Weekly, Monthly) of the dashboard and the dashboard's name.
=cut
Set($DashboardSubject, "%s Dashboard: %s");
=item C<@EmailDashboardRemove>
A list of regular expressions that will be used to remove content from
mailed dashboards.
=cut
Set(@EmailDashboardRemove, ());
=item C<@EmailDashboardLanguageOrder>
A list that specifies which language to use for dashboard subscription email.
There are several special keys:
* _subscription: the language chosen on the dashboard subscription page
* _recipient: the recipient's language, as chosen on their "About Me" page
* _subscriber: the subscriber's language, as chosen on their "About Me" page
The first key that produces a value is used for the email. Be aware that users
may not actually have a language set on their "About Me" page, since RT falls
back to the language their web browser specifies (and of course in a scheduled
email dashboard, there is no web browser).
You may also include a specific language as a fallback when there is no
language specified otherwise. Using a specific language never fails to produce
a value, so subsequent values in the list will never be considered.
By default, RT examines the subscription, then the recipient, then subscriber,
then finally falls back to English.
See also L</@LexiconLanguages>.
=cut
Set(@EmailDashboardLanguageOrder, qw(_subscription _recipient _subscriber en));
=item C<@EmailDashboardRows>
Define the options available in the Rows dropdown on the dashboard
subscription page. Add "0" to the list to allow users to select
"Unlimited" rows.
=cut
Set(@EmailDashboardRows, (1, 2, 5, 10, 15, 20, 25, 50, 75, 100, 0));
=item C<$DashboardTestEmailLimit>
The maximum number of dashboard test emails that can be sent in a
single test. Default is 50.
=cut
Set($DashboardTestEmailLimit, 50);
=item C<$EmailDashboardInlineCSS>
To get styling to render in email clients, emailed dashboards have all
included CSS added to the HTML in C<style> tags. This makes the email
formatting look very much like the corresponding RT page, but it also
makes the emails very large. They can be large enough that some email
servers will trim content because of the size.
To reduce the size of the emails, you can install the optional module
C<CSS::Inliner> and enable the C<$EmailDashboardInlineCSS> option. When
enabled, styles will be applied directly to the HTML in the email and
the large C<style> sections are removed. This significantly reduces
the size of dashboard emails at the cost of some detail in the styling.
With this enabled, some parts of the email won't look exactly like RT.
=cut
Set($EmailDashboardInlineCSS, 0);
=back
=head3 Sendmail configuration
These options only take effect if C<$MailCommand> is 'sendmail' or
'sendmailpipe'
=over 4
=item C<$SendmailArguments>
C<$SendmailArguments> defines what flags to pass to C<$SendmailPath>
These options are good for most sendmail wrappers and work-a-likes.
These arguments are good for sendmail brand sendmail 8 and newer:
C<Set($SendmailArguments,"-oi -ODeliveryMode=b -OErrorMode=m");>
=cut
Set($SendmailArguments, "-oi");
=item C<$SendmailBounceArguments>
C<$SendmailBounceArguments> defines what flags to pass to C<$Sendmail>
assuming RT needs to send an error (i.e. bounce).
=cut
Set($SendmailBounceArguments, '-f "<>"');
=item C<$SendmailPath>
If you selected 'sendmailpipe' above, you MUST specify the path to
your sendmail binary in C<$SendmailPath>.
=cut
Set($SendmailPath, "/usr/sbin/sendmail");
=back
=head3 Other mailers
=over 4
=item C<@MailParams>
C<@MailParams> defines a list of options passed to $MailCommand if it
is not 'sendmailpipe' or 'sendmail';
=cut
Set(@MailParams, ());
=back
=head2 Application logic
=over 4
=item C<$ParseNewMessageForTicketCcs>
If C<$ParseNewMessageForTicketCcs> is set to 1, RT will attempt to
divine Ticket 'Cc' watchers from the To and Cc lines of incoming
messages that create new tickets. This option does not apply to replies
or comments on existing tickets. Be forewarned that if you have I<any>
addresses which forward mail to RT automatically and you enable this
option without modifying C<$RTAddressRegexp> below, you will get
yourself into a heap of trouble.
See also the L<RT::Action::AutoAddWatchers|https://metacpan.org/pod/RT::Action::AutoAddWatchers> extension which adds
watchers from ticket replies on existing tickets.
=cut
Set($ParseNewMessageForTicketCcs, undef);
=item C<$UseTransactionBatch>
Set C<$UseTransactionBatch> to 1 to execute transactions in batches,
such that a resolve and comment (for example) would happen
simultaneously, instead of as two transactions, unaware of each
others' existence.
=cut
Set($UseTransactionBatch, 1);
=item C<$StrictLinkACL>
When this feature is enabled a user needs I<ModifyTicket> rights on
both tickets to link them together; otherwise, I<ModifyTicket> rights
on either of them is sufficient.
=cut
Set($StrictLinkACL, 1);
=item C<$RedistributeAutoGeneratedMessages>
Should RT redistribute correspondence that it identifies as machine
generated? A 1 will do so; setting this to 0 will cause no
such messages to be redistributed. You can also use 'privileged' (the
default), which will redistribute only to privileged users. This helps
to protect against malformed bounces and loops caused by auto-created
requestors with bogus addresses.
=cut
Set($RedistributeAutoGeneratedMessages, "privileged");
=item C<$ApprovalRejectionNotes>
Should rejection notes from approvals be sent to the requestors?
=cut
Set($ApprovalRejectionNotes, 1);
=item C<$ForceApprovalsView>
Should approval tickets only be viewed and modified through the standard
approval interface? With this setting enabled (by default), any attempt to use
the normal ticket display and modify page for approval tickets will be
redirected.
For example, with this option set to 1 and an approval ticket #123:
/Ticket/Display.html?id=123
is redirected to
/Approval/Display.html?id=123
With this option set to 0, the redirect won't happen.
=cut
Set($ForceApprovalsView, 1);
=item C<%ScrubCustomFieldOnSave>
This determines if custom field values should be scrubbed on save, by
default it's enabled for all custom fields. This could be customized per
object type, e.g. to scrub ticket and transaction custom fields only, the
config is:
Set(
%ScrubCustomFieldOnSave,
Default => 0,
'RT::Ticket' => 1,
'RT::Transaction' => 1,
);
=back
=cut
Set(%ScrubCustomFieldOnSave, Default => 1);
=head2 Extra security
This is a list of extra security measures to enable that help keep your RT
safe. If you don't know what these mean, you should almost certainly leave the
defaults alone.
=over 4
=item C<$DisallowExecuteCode>
If set to 1, the C<ExecuteCode> right will be removed from
all users, B<including> the superuser. This is intended for when RT is
installed into a shared environment where even the superuser should not
be allowed to run arbitrary Perl code on the server via scrips.
=cut
Set($DisallowExecuteCode, 0);
=item C<$Framebusting>
If set to 0, framekiller javascript will be disabled and the
X-Frame-Options: DENY header will be suppressed from all responses.
This disables RT's clickjacking protection.
=cut
Set($Framebusting, 1);
=item C<$RestrictReferrer>
If set to 0, the HTTP C<Referer> (sic) header will not be
checked to ensure that requests come from RT's own domain. As RT allows
for GET requests to alter state, disabling this opens RT up to
cross-site request forgery (CSRF) attacks.
=cut
Set($RestrictReferrer, 1);
=item C<$RestrictLoginReferrer>
If set to 0, RT will allow the user to log in from any link
or request, merely by passing in C<user> and C<pass> parameters; setting
it to 1 forces all logins to come from the login box, so the
user is aware that they are being logged in. The default is off, for
backwards compatability.
=cut
Set($RestrictLoginReferrer, 0);
=item C<@ReferrerWhitelist>
This is a list of hostname:port combinations that RT will treat as being
part of RT's domain. This is particularly useful if you access RT as
multiple hostnames or have an external auth system that needs to
redirect back to RT once authentication is complete.
Set(@ReferrerWhitelist, qw(www.example.com:443 www3.example.com:80));
If the "RT has detected a possible cross-site request forgery" error is triggered
by a host:port sent by your browser that you believe should be valid, you can copy
the host:port from the error message into this list.
Simple wildcards, similar to SSL certificates, are allowed. For example:
*.example.com:80 # matches foo.example.com
# but not example.com
# or foo.bar.example.com
www*.example.com:80 # matches www3.example.com
# and www-test.example.com
# and www.example.com
=cut
Set(@ReferrerWhitelist, qw());
=item C<%ReferrerComponents>
C<%ReferrerComponents> is the hash to customize referrer checking behavior when
C<$RestrictReferrer> is enabled, where you can whitelist or blacklist the
components along with their query args. e.g.
Set( %ReferrerComponents,
( '/Foo.html' => 1, '/Bar.html' => 0, '/Baz.html' => [ 'id', 'results' ] )
);
With this, '/Foo.html' will be whitelisted, and '/Bar.html' will be blacklisted.
'/Baz.html' with id/results query arguments will be whitelisted but blacklisted
if there are other query arguments.
=cut
Set( %ReferrerComponents );
=item C<$StrictContentTypes>
If set to 0, the C<X-Content-Type-Options: nosniff> header will be omitted on
attachments. Because RT does not filter HTML content in unknown content types,
disabling this opens RT up to cross-site scripting (XSS) attacks by allowing
the execution of arbitrary Javascript when the browser detects HTML-looking
data in an attachment with an unknown content type.
=cut
Set($StrictContentTypes, 1);
=item C<$BcryptCost>
This sets the default cost parameter used for the C<bcrypt> key
derivation function. Valid values range from 4 to 31, inclusive, with
higher numbers denoting greater effort.
=cut
Set($BcryptCost, 12);
=back
=head2 Internationalization
=over 4
=item C<@LexiconLanguages>
An array that contains languages supported by RT's
internationalization interface. Defaults to all *.po lexicons;
setting it to C<qw(en ja)> will make RT bilingual instead of
multilingual, but will save some memory.
=cut
Set(@LexiconLanguages, qw(*));
=item C<@EmailInputEncodings>
An array that contains default encodings used to guess which charset
an attachment uses, if it does not specify one explicitly. All
options must be recognized by L<Encode::Guess>.
The first element may also be C<*>, which attempts encoding detection
using L<Encode::Detect::Detector>. This uses Mozilla's character
detection library to examine the bytes, and use frequency metrics to
rank the options. This detection may fail (and fall back to other
options in the C<@EmailInputEncodings> list) if no decoding has high
enough confidence metrics. As of L<Encode::Detect::Detector> version
1.01, it knows the following encodings:
big5-eten
cp1250
cp1251
cp1253
cp1255
cp855
cp866
euc-jp
euc-kr
euc-tw
gb18030
iso-8859-2
iso-8859-5
iso-8859-7
iso-8859-11
koi8-r
MacCyrillic
shiftjis
utf-8
=cut
Set(@EmailInputEncodings, qw(utf-8 iso-8859-1 us-ascii));
=item C<$EmailOutputEncoding>
The charset for localized email. Must be recognized by Encode.
=cut
Set($EmailOutputEncoding, "utf-8");
=back
=head2 Date and time handling
=over 4
=item C<$DateTimeFormat>
You can choose date and time format. See the "Output formatters"
section in perldoc F<lib/RT/Date.pm> for more options. This option
can be overridden by users in their preferences.
Some examples:
Set($DateTimeFormat, "LocalizedDateTime");
Set($DateTimeFormat, { Format => "ISO", Seconds => 0 });
Set($DateTimeFormat, "RFC2822");
Set($DateTimeFormat, { Format => "RFC2822", Seconds => 0, DayOfWeek => 0 });
=cut
Set($DateTimeFormat, "DefaultFormat");
# Next two options are for Time::ParseDate
=item C<$DateDayBeforeMonth>
Set this to 1 if your local date convention looks like "dd/mm/yy"
instead of "mm/dd/yy". Used only for parsing, not for displaying
dates.
=cut
Set($DateDayBeforeMonth, 1);
=item C<$AmbiguousDayInPast>, C<$AmbiguousDayInFuture>
Should an unspecified day or year in a date refer to a future or a
past value? For example, should a date of "Tuesday" default to mean
the date for next Tuesday or last Tuesday? Should the date "March 1"
default to the date for next March or last March?
Set C<$AmbiguousDayInPast> for the last date, or
C<$AmbiguousDayInFuture> for the next date; the default is usually
correct. If both are set, C<$AmbiguousDayInPast> takes precedence.
=cut
Set($AmbiguousDayInPast, 0);
Set($AmbiguousDayInFuture, 0);
=item C<$DefaultTimeUnitsToHours>
Use this to set the default units for time entry to hours instead of
minutes. Note that this only effects entry, not display.
=cut
Set($DefaultTimeUnitsToHours, 0);
=item C<$TimeInICal>
By default, events in the iCal feed on the ticket search page
contain only dates, making them all day calendar events. Set
C<$TimeInICal> if you have start or due dates on tickets that
have significant time values and you want those times to be
included in the events in the iCal feed.
This option can also be set as an individual user preference.
=cut
Set($TimeInICal, 0);
=item C<$PreferDateTimeFormatNatural>
By default, RT parses an unknown date first with L<Time::ParseDate>, and if
this fails with L<DateTime::Format::Natural>.
C<$PreferDateTimeFormatNatural> changes this behavior to first parse with
L<DateTime::Format::Natural>, and if this fails with L<Time::ParseDate>.
This gives you the possibility to use the more advanced features of
L<DateTime::Format::Natural>.
For example with L<Time::ParseDate> it isn't possible to get the
'first day of the last month', where L<DateTime::Format::Natural> supports
this with 'last month'.
Be aware that L<Time::ParseDate> and L<DateTime::Format::Natural> have
different definitions for the relative date and time syntax.
L<Time::ParseDate> returns for 'last month' this DayOfMonth from the last month.
L<DateTime::Format::Natural> returns for 'last month' the first day of the last
month. So changing this config option maybe changes the results of your saved
searches.
=cut
Set($PreferDateTimeFormatNatural, 0);
=back
=head2 Authorization and user configuration
=over 4
=item C<$WebRemoteUserAuth>
If C<$WebRemoteUserAuth> is defined, RT will defer to the environment's
REMOTE_USER variable, which should be set by the webserver's
authentication layer.
=cut
Set($WebRemoteUserAuth, undef);
=item C<$WebRemoteUserContinuous>
If C<$WebRemoteUserContinuous> is defined, RT will check for the
REMOTE_USER on each access. If you would prefer this to only happen
once (at initial login) set this to 0. The default
setting will help ensure that if your webserver's authentication layer
deauthenticates a user, RT notices as soon as possible.
=cut
Set($WebRemoteUserContinuous, 1);
=item C<$WebFallbackToRTLogin>
If C<$WebFallbackToRTLogin> is defined, the user is allowed a
chance of fallback to the login screen, even if REMOTE_USER failed.
=cut
Set($WebFallbackToRTLogin, undef);
=item C<$LogoutURL>
By default, C<$LogoutURL> is set to RT's logout page. When an
external service is used to log into RT, C<$LogoutURL> can be set
to the identity provider's logout URL. Include the full path to the
logout endpoint, for example: 'https://www.example.com/logout'.
=cut
Set($LogoutURL, '/NoAuth/Logout.html');
=item C<$WebRemoteUserGecos>
C<$WebRemoteUserGecos> means to match 'gecos' field as the user
identity; useful with C<mod_auth_external>.
=cut
Set($WebRemoteUserGecos, undef);
=item C<$WebRemoteUserAutocreate>
C<$WebRemoteUserAutocreate> will create users under the same name as
REMOTE_USER upon login, if they are missing from the Users table.
=cut
Set($WebRemoteUserAutocreate, undef);
=item C<$UserAutocreateDefaultsOnLogin>
If C<$WebRemoteUserAutocreate> is set to 1, C<$UserAutocreateDefaultsOnLogin>
will be passed to L<RT::User/Create> when the user is created.
Use it to set default settings for the new user account, such
as creating users as unprivileged with:
Set($UserAutocreateDefaultsOnLogin, { Privileged => 0 });
or privileged:
Set($UserAutocreateDefaultsOnLogin, { Privileged => 1 });
The settings must be in a hashref as shown.
This option is also used if you have External Auth configured.
See L</External Authentication and Authorization> for details.
=cut
Set($UserAutocreateDefaultsOnLogin, undef);
=item C<$WebSessionClass>
C<$WebSessionClass> is the class you wish to use for storing sessions. On
MySQL, Pg, and Oracle it defaults to using your database, in other cases
sessions are stored in files using L<Apache::Session::File>. Other installed
Apache::Session::* modules can be used to store sessions.
Set($WebSessionClass, "Apache::Session::File");
=cut
Set($WebSessionClass, undef);
=item C<%WebSessionProperties>
C<%WebSessionProperties> is the hash to configure class L</$WebSessionClass>
in case custom class is used. By default it's empty and values are picked
depending on the class. Make sure that it's empty if you're using DB as session
backend.
=cut
Set( %WebSessionProperties );
=item C<$AutoLogoff>
By default, RT's user sessions persist until a user closes his or her
browser. With the C<$AutoLogoff> option you can setup session lifetime
in minutes. A user will be logged out if he or she doesn't send any
requests to RT for the defined time.
=cut
Set($AutoLogoff, 0);
=item C<$LogoutRefresh>
The number of seconds to wait after logout before sending the user to
the login page. By default, 1 second, though you may want to increase
this if you display additional information on the logout page.
=cut
Set($LogoutRefresh, 1);
=item C<$WebSameSiteCookies>
By default, RT's session cookie uses the "Lax" policy for SameSite,
preventing many classes of CSRF attacks. Other possible values are
"Secure", which provides additional protection but may break some
integrations of RT with other applications, and "None", which provides
the least protection against CSRF attacks and also requires C<WebSecureCookies>
to be set to 1.
=cut
Set($WebSameSiteCookies, 'Lax');
=item C<$WebSecureCookies>
By default, RT's session cookie is marked as "secure". Some web
browsers will treat secure cookies more carefully than non-secure
ones, being careful not to write them to disk, only sending them over
an SSL secured connection, and so on. To disable this behavior, set
C<$WebSecureCookies> to 0. NOTE: You probably don't want to turn this
off I<unless> user connections to RT are secured by some other method.
=cut
Set($WebSecureCookies, 1);
=item C<$WebStrictBrowserCache>
As part of normal operation, browsers typically store some browsing
history, enabling the Back button to work. Browsers also often
cache pages in the browsing history to improve performance.
Enable this option if you are using RT with highly sensitive
information and want to signal the browser to not store any history
or cache any data. The default is disabled.
=cut
Set($WebStrictBrowserCache, 0);
=item C<$WebHttpOnlyCookies>
Default RT's session cookie to not being directly accessible to
javascript. The content is still sent during regular and AJAX requests,
and other cookies are unaffected, but the session-id is less
programmatically accessible to javascript. Turning this off should only
be necessary in situations with odd client-side authentication
requirements.
=cut
Set($WebHttpOnlyCookies, 1);
=item C<$MinimumPasswordLength>
C<$MinimumPasswordLength> defines the minimum length for user
passwords. Setting it to 0 disables this check.
=cut
Set($MinimumPasswordLength, 5);
=back
=head3 External Authentication and Authorization
RT has a built-in module for integrating with a directory service like
LDAP or Active Directory for authentication (login) and authorization
(enabling/disabling users and setting user attributes). The core configuration
settings for the service are listed here. Additional details are available
in the L<RT::Authen::ExternalAuth> module documentation.
See also L</$UserAutocreateDefaultsOnLogin> for configuring
defaults for autocreated users.
=over 4
=item C<$ExternalSettings>
This option, along with the following options, activate and configure authentication
via a resource external to RT. All of the configuration for your external authentication
service, like LDAP or Active Directory, are defined in a data structure in this option.
You can find full details on the configuration
options in the L<RT::Authen::ExternalAuth> documentation.
=cut
# No defaults are set for ExternalAuth because this is an optional feature.
=item C<$ExternalAuthPriority>
Sets the priority of authentication resources if you have multiple configured.
RT will attempt authorization with each resource, in order, until one succeeds or
no more remain. See L<RT::Authen::ExternalAuth> for details.
=item C<$ExternalInfoPriority>
Sets the order of resources for querying user information if you have multiple
configured. RT will query each resource, in order, until one succeeds or
no more remain. See L<RT::Authen::ExternalAuth> for details.
=item C<$UserAutocreateDefaultsOnLogin>
A hashref of options to set for users who are autocreated on login via
ExternalAuth. For example, you can automatically make "Privileged" users
who were authenticated and created from LDAP or Active Directory.
See L<RT::Authen::ExternalAuth> for details.
=item C<$AutoCreateNonExternalUsers>
Users should still be autocreated by RT as internal users if they
fail to exist in an external service; this is so requestors who
are not in LDAP can still be created when they email in.
See L<RT::Authen::ExternalAuth> for details.
=item C<$DisablePasswordForAuthToken>
If you have a mix of RT and federated authentication, RT can't directly
verify a user's password against the federated IdP. You can explicitly
disable the password prompt when creating a token by setting this option
to true (1).
=back
=cut
Set($DisablePasswordForAuthToken, 0);
=head2 Initialdata Formats
RT supports pluggable data format parsers for F<initialdata> files.
If you add format handlers, note that you can remove the perl entry if you
don't want it available. B<Removing the default perl entry may cause problems
installing plugins and RT updates>. If so, re-enable it temporarily.
=over 4
=item C<$InitialdataFormatHandlers>
Set the C<$InitialdataFormatHandlers> to an arrayref containing a list of
format handler modules. The 'perl' entry is the system default, and handles
perl-style intialdata files.
The JSON format handler is also available in RT, but it is not loaded by
default. Add it to your configuration as shown below to enable it.
Set( $InitialdataFormatHandlers,
[
'perl',
'RT::Initialdata::JSON',
'RT::Extension::Initialdata::Foo',
...
]
);
=back
=cut
Set( $InitialdataFormatHandlers, [
'perl',
]);
=head2 Development options
=over 4
=item C<$DevelMode>
RT comes with a "Development mode" setting. This setting, as a
convenience for developers, turns on several of development options
that you most likely don't want in production:
=over 4
=item *
Disables CSS and JS minification and concatenation. Both CSS and JS
will be instead be served as a number of individual smaller files,
unchanged from how they are stored on disk.
=item *
Uses L<Module::Refresh> to reload changed Perl modules on each
request.
=item *
Turns off Mason's C<static_source> directive; this causes Mason to
reload template files which have been modified on disk.
=item *
Turns on Mason's HTML C<error_format>; this renders compilation errors
to the browser, along with a full stack trace. It is possible for
stack traces to reveal sensitive information such as passwords or
ticket content.
=item *
Turns off caching of callbacks; this enables additional callbacks to
be added while the server is running.
=back
=cut
Set($DevelMode, 0);
=item C<$RecordBaseClass>
What abstract base class should RT use for its records. You should
probably never change this.
Valid values are C<DBIx::SearchBuilder::Record> or
C<DBIx::SearchBuilder::Record::Cachable>
=cut
Set($RecordBaseClass, "DBIx::SearchBuilder::Record::Cachable");
=item C<@MasonParameters>
C<@MasonParameters> is the list of parameters for the constructor of
HTML::Mason's Apache or CGI Handler. This is normally only useful for
debugging, e.g. profiling individual components with:
use MasonX::Profiler; # available on CPAN
Set(@MasonParameters, (preamble => 'my $p = MasonX::Profiler->new($m, $r);'));
=cut
Set(@MasonParameters, ());
=item C<$StatementLog>
RT has rudimentary SQL statement logging support; simply set
C<$StatementLog> to be the level that you wish SQL statements to be
logged at.
Enabling this option will also expose the SQL Queries page in the
Admin -> Tools menu for SuperUsers.
=cut
Set($StatementLog, undef);
=item SQL bind parameters
RT enables SQL bind parameters for all searches by default, which improves
performance especially for Oracle. If you need to disable this for some
reason, add this to config:
$ENV{SB_PREFER_BIND} = 0;
See also L<DBIx::SearchBuilder/BuildSelectQuery>.
=back
=head1 Web interface
=head2 Base configuration
=over 4
=item C<$WebDefaultStylesheet>
This determines the default stylesheet the RT web interface will use.
RT ships with several themes by default:
elevator-light The default light theme for RT 5
elevator-dark The dark theme for RT 5
This value actually specifies a directory in F<share/static/css/>
from which RT will try to load the file main.css (which should @import
any other files the stylesheet needs). This allows you to easily and
cleanly create your own stylesheets to apply to RT. This option can
be overridden by users in their preferences.
=cut
Set($WebDefaultStylesheet, "elevator-light");
=item C<$RTSupportEmail>
This is the email address of the person who administers and provides
support for RT itself. If set, it is displayed on the RT login page
and as such is likely to receive email from users who are unable to
log in.
=cut
Set($RTSupportEmail, '');
=item C<$ShowMobileSite>
Starting with RT 5.0, RT's web interface is fully responsive and
will render correctly on most mobile devices. However, RT also has
a mobile-optimized mode that shows a limited feature set
focused on ticket updates. To default to this site when RT is accessed
from a mobile device, enable this option (set to 1).
=cut
Set($ShowMobileSite, 0);
=item C<$DefaultQueue>
Use this to select the default queue name that will be used for
creating new tickets. You may use either the queue's name or its
ID. This only affects the queue selection boxes on the web interface.
=cut
# Set($DefaultQueue, "General");
=item C<$RememberDefaultQueue>
When a queue is selected in the new ticket dropdown, make it the new
default for the new ticket dropdown.
=cut
# Set($RememberDefaultQueue, 1);
=item C<$EnableReminders>
Hide all links and portlets related to Reminders by setting this to 0
=cut
Set($EnableReminders, 1);
=item C<@CustomFieldValuesSources>
Set C<@CustomFieldValuesSources> to a list of class names which extend
L<RT::CustomFieldValues::External>. This can be used to pull lists of
custom field values from external sources at runtime.
=cut
Set(@CustomFieldValuesSources, ());
=item C<@CustomFieldValuesCanonicalizers>
Set C<@CustomFieldValuesCanonicalizers> to a list of class names which extend
L<RT::CustomFieldValues::Canonicalizer>. This can be used to rewrite
(canonicalize) values entered by users to fit some defined format.
See the documentation in L<RT::CustomFieldValues::Canonicalizer> for adding
your own canonicalizers.
=cut
Set(@CustomFieldValuesCanonicalizers, qw(
RT::CustomFieldValues::Canonicalizer::Uppercase
RT::CustomFieldValues::Canonicalizer::Lowercase
));
=item C<@CustomFieldValuesValidations>
Set C<@CustomFieldValuesValidations> to a list of regex strings, which will
show up as options in "Validation" dropdown on custom field admin pages.
RT will extract the optional "(?#...)" in regex to compose a friendly
validation hint. E.g. for "(?#Mandatory).", it's
Input must match [Mandatory]
You can also customize the hint via the "Validation Hint" field on custom field
admin pages.
=cut
Set(@CustomFieldValuesValidations,
'(?#Mandatory).',
'(?#Digits)^[\d.]+$',
'(?#Year)^[12]\d{3}$',
);
=item C<%CustomFieldGroupings>
This option affects the display of ticket, user, group, and asset custom fields
in the web interface. It does not address the sorting of custom fields within
the groupings; that ordering is controlled by the Ticket Custom Fields tab in
Queue configuration in the Admin UI. Asset custom field ordering is
found in the Asset Custom Fields tab in Catalog configuration.
A nested data structure defines how to group together custom fields
under a mix of built-in and arbitrary headings ("groupings").
Set C<%CustomFieldGroupings> to a nested structure similar to the following:
Set(%CustomFieldGroupings,
'RT::Ticket' => [
'Grouping Name' => ['CF Name', 'Another CF'],
'Another Grouping' => ['Some CF'],
'Dates' => ['Shipped date'],
],
'RT::User' => [
'Phones' => ['Fax number'],
],
'RT::Asset' => [
'Asset Details' => ['Serial Number', 'Manufacturer', 'Type', 'Tracking Number'],
'Dates' => ['Support Expiration', 'Issue Date'],
],
'RT::Group' => [
'Basics' => ['Department'],
],
);
The first level keys are record types for which CFs may be used, and the
values are either hashrefs or arrayrefs -- if arrayrefs, then the
order of grouping entries is preserved during display, otherwise groupings
are displayed alphabetically. The second level keys are the grouping names
and the values are array refs containing a list of CF names.
For C<RT::Ticket> and C<RT::Asset>, you can specify global, and queue
or catalog level groupings. For example, if you wanted to diplay some
groupings only on tickets in the General queue, you can create an entry
for 'General'. Global configurations then go in 'Default' as shown below.
'RT::Ticket' => {
'Default' => [
'Grouping Name' => [ 'CF Name' ],
],
'General' => [
'Grouping Name' => [ 'CF Name', 'Another CF' ],
'Another Grouping' => ['Some CF'],
'Dates' => ['Shipped date'],
],
},
There are several special built-in groupings which RT displays in
specific places (usually the collapsible box of the same title). The
ordering of these standard groupings cannot be modified. You may also
only append Custom Fields to the list in these boxes, not reorder or
remove core fields.
For C<RT::Ticket>, these groupings are: C<Basics>, C<Dates>, C<Links>, C<People>
For C<RT::User>: C<Identity>, C<Access control>, C<Location>, C<Phones>
For C<RT::Group>: C<Basics>
For C<RT::Asset>: C<Basics>, C<Dates>, C<People>, C<Links>
Extensions may also add their own built-in groupings, refer to the individual
extension documentation for those.
=item C<$CanonicalizeRedirectURLs>
Set C<$CanonicalizeRedirectURLs> to 1 to use C<$WebURL> when
redirecting rather than the one we get from C<%ENV>.
Apache's UseCanonicalName directive changes the hostname that RT
finds in C<%ENV>. You can read more about what turning it On or Off
means in the documentation for your version of Apache.
If you use RT behind a reverse proxy, you almost certainly want to
enable this option.
=cut
Set($CanonicalizeRedirectURLs, 0);
=item C<$CanonicalizeURLsInFeeds>
Set C<$CanonicalizeURLsInFeeds> to 1 to use C<$WebURL> in feeds
rather than the one we get from request.
If you use RT behind a reverse proxy, you almost certainly want to
enable this option.
=cut
Set($CanonicalizeURLsInFeeds, 0);
=item C<@JSFiles>
A list of additional JavaScript files to be included in head.
=cut
Set(@JSFiles, qw//);
=item C<@CSSFiles>
A list of additional CSS files to be included in head.
If you're a plugin author, refer to RT->AddStyleSheets.
=cut
Set(@CSSFiles, qw//);
=item C<$UsernameFormat>
This determines how user info is displayed. 'concise' will show the
first of RealName, Name or EmailAddress that has a value. 'verbose' will
show EmailAddress, and the first of RealName or Name which is defined.
The default, 'role', uses 'verbose' for unprivileged users, and the Name
followed by the RealName for privileged users.
=cut
Set($UsernameFormat, "role");
=item C<$UserSearchResultFormat>
This controls the display of lists of users returned from the User
Summary Search. The display of users in the Admin interface is
controlled by C<%AdminSearchResultFormat>.
=cut
Set($UserSearchResultFormat,
q{ '<a href="__WebPath__/User/Summary.html?id=__id__">__id__</a>/TITLE:#'}
.q{,'<a href="__WebPath__/User/Summary.html?id=__id__">__Name__</a>/TITLE:Name'}
.q{,__RealName__, __EmailAddress__}
);
=item C<@UserSummaryPortlets>
A list of portlets to be displayed on the User Summary page.
By default, we show all of the available portlets.
Extensions may provide their own portlets for this page.
=cut
Set(@UserSummaryPortlets, (qw/ExtraInfo CreateTicket ActiveTickets InactiveTickets UserAssets /));
=item C<$UserSummaryExtraInfo>
This controls what information is displayed on the User Summary
portal. By default the user's Real Name, Email Address and Username
are displayed. You can remove these or add more as needed. This
expects a Format string of user attributes. Please note that not all
the attributes are supported in this display because we're not
building a table.
=cut
Set($UserSummaryExtraInfo, "RealName, EmailAddress, Name");
=item C<$UserSummaryTicketListFormat>
Control the appearance of the Active and Inactive ticket lists in the
User Summary.
=cut
Set($UserSummaryTicketListFormat, q{
'<B><A HREF="__WebPath__/Ticket/Display.html?id=__id__">__id__</a></B>/TITLE:#',
'<B><A HREF="__WebPath__/Ticket/Display.html?id=__id__">__Subject__</a></B>/TITLE:Subject',
Status,
QueueName,
Owner,
Priority,
'__NEWLINE__',
'',
'<small>__Requestors__</small>',
'<small>__CreatedRelative__</small>',
'<small>__ToldRelative__</small>',
'<small>__LastUpdatedRelative__</small>',
'<small>__TimeLeft__</small>'
});
=item C<$WebBaseURL>, C<$WebURL>
Usually you don't want to set these options. The only obvious reason
is if RT is accessible via https protocol on a non standard port, e.g.
'https://rt.example.com:9999'. In all other cases these options are
computed using C<$WebDomain>, C<$WebPort> and C<$WebPath>.
C<$WebBaseURL> is the scheme, server and port
(e.g. 'http://rt.example.com') for constructing URLs to the web
UI. C<$WebBaseURL> doesn't need a trailing /.
C<$WebURL> is the C<$WebBaseURL>, C<$WebPath> and trailing /, for
example: 'http://www.example.com/rt/'.
=cut
my $port = RT->Config->Get('WebPort');
Set($WebBaseURL,
($port == 443? 'https': 'http') .'://'
. RT->Config->Get('WebDomain')
. ($port != 80 && $port != 443? ":$port" : '')
);
Set($WebURL, RT->Config->Get('WebBaseURL') . RT->Config->Get('WebPath') . "/");
=item C<$WebImagesURL>
C<$WebImagesURL> points to the base URL where RT can find its images.
Define the directory name to be used for images in RT web documents.
=cut
Set($WebImagesURL, RT->Config->Get('WebPath') . "/static/images/");
=item C<$LogoURL>
C<$LogoURL> points to the URL of the RT logo displayed in the web UI.
This can also be configured via the web UI.
=cut
Set($LogoURL, RT->Config->Get('WebImagesURL') . "request-tracker-logo.svg");
=item C<$LogoLinkURL>
C<$LogoLinkURL> is the URL that the RT logo hyperlinks to.
=cut
Set($LogoLinkURL, "http://bestpractical.com");
=item C<$LogoAltText>
C<$LogoAltText> is a string of text for the alt-text of the logo. It
will be passed through C<loc> for localization.
=cut
Set($LogoAltText, "Request Tracker logo");
=item C<$WebNoAuthRegex>
What portion of RT's URL space should not require authentication. The
default is almost certainly correct, and should only be changed if you
are extending RT.
=cut
Set($WebNoAuthRegex, qr{^ (?:/+NoAuth/ | /+REST/\d+\.\d+/NoAuth/) }x );
=item C<$WebFlushDbCacheEveryRequest>
By default, RT clears its database cache after every page view. This
ensures that you've always got the most current information when
working in a multi-process (mod_perl or FastCGI) Environment. Setting
C<$WebFlushDbCacheEveryRequest> to 0 will turn this off, which will
speed RT up a bit, at the expense of a tiny bit of data accuracy.
=cut
Set($WebFlushDbCacheEveryRequest, 1);
=item C<%ChartFont>
The L<GD> module (which RT uses for graphs) ships with a built-in font
that doesn't have full Unicode support. You can use a given TrueType
font for a specific language by setting %ChartFont to (language =E<gt>
the absolute path of a font) pairs. Your GD library must have support
for TrueType fonts to use this option. If there is no entry for a
language in the hash then font with 'others' key is used.
RT comes with two TrueType fonts covering most available languages.
=cut
Set(
%ChartFont,
'zh-cn' => "$RT::FontPath/DroidSansFallback.ttf",
'zh-tw' => "$RT::FontPath/DroidSansFallback.ttf",
'ja' => "$RT::FontPath/DroidSansFallback.ttf",
'others' => "$RT::FontPath/NotoSans-Regular.ttf",
);
=item C<$ChartsTimezonesInDB>
RT stores dates using the UTC timezone in the DB, so charts grouped by
dates and time are not representative. Set C<$ChartsTimezonesInDB> to 1
to enable timezone conversions using your DB's capabilities. You may
need to do some work on the DB side to use this feature, read more in
F<docs/customizing/timezones_in_charts.pod>.
At this time, this feature only applies to MySQL and PostgreSQL.
=cut
Set($ChartsTimezonesInDB, 0);
=item C<@ChartColors>
An array of 6-digit hexadecimal RGB color values used for chart series. By
default there are 12 distinct colors.
=cut
Set(@ChartColors, qw(
66cc66 ff6666 ffcc66 663399
3333cc 339933 993333 996633
33cc33 cc3333 cc9933 6633cc
));
=item C<$EnableJSChart>
Set this to 0 to disable Chart in JavaScript.
=cut
Set($EnableJSChart, 1);
=item C<$JSChartColorScheme>
The color scheme to use for Chart in Javascript. By default it's
I<brewer.Paired12>. The full list is:
L<https://nagix.github.io/chartjs-plugin-colorschemes/colorchart.html>
=cut
Set($JSChartColorScheme, 'brewer.Paired12');
=item C<$EnableURLShortener>
Set this to 0 to disable URL shortener.
=cut
Set($EnableURLShortener, 1);
=back
=head2 Home page
=over 4
=item C<$DefaultSummaryRows>
C<$DefaultSummaryRows> is default number of rows displayed in for
search results on the front page.
=cut
Set($DefaultSummaryRows, 10);
=item C<@RefreshIntervals>
This setting defines the possible homepage and search result refresh
options. Each value is a number of seconds. You should not include a value
of C<0>, as that is always provided as an option.
See also L</$HomePageRefreshInterval> and L</$SearchResultsRefreshInterval>.
=cut
Set(@RefreshIntervals, qw(120 300 600 1200 3600 7200));
=item C<$HomePageRefreshInterval>
C<$HomePageRefreshInterval> is default number of seconds to refresh
the RT home page. Choose from any value in L</@RefreshIntervals>,
or the default of C<0> for no automatic refresh.
=cut
Set($HomePageRefreshInterval, 0);
=item C<$HomepageComponents>
C<$HomepageComponents> is an arrayref of allowed components on a
user's customized homepage ("RT at a glance").
=cut
Set(
$HomepageComponents,
[
qw(QuickCreate QueueList QueueListAllStatuses MyAdminQueues MySupportQueues MyReminders RefreshHomepage Dashboards SavedSearches FindUser MyAssets FindAsset FindGroup SavedSearchSelectUser) # loc_qw
]
);
=back
=head2 Ticket search
=over 4
=item C<$UseSQLForACLChecks>
Historically, ACLs were checked on display, which could lead to empty
search pages and wrong ticket counts. Set C<$UseSQLForACLChecks> to 0
to go back to this method; this will reduce the complexity of the
generated SQL statements, at the cost of the aforementioned bugs.
=cut
Set($UseSQLForACLChecks, 1);
=item C<$TicketsItemMapSize>, C<$ShowSearchNavigation>
On the display page of a ticket from search results, RT provides links
to the first, next, previous and last ticket from the results. In
order to build these links, RT needs to re-run the original search
and fetch the full result set from the database. If the original
search was resource-intensive, this will then slow down diplay of the
ticket page.
Set C<$TicketsItemMapSize> to the number of tickets you want RT to examine
to build these links. If the full result set is larger than this
number, RT will omit the "last" link in the menu. Set this to zero to
always examine all results. This can improve performance for searches
with large result sets.
Set C<$ShowSearchNavigation> to 0 to not build these links at all and
completely avoid re-running the original search query.
=cut
Set($TicketsItemMapSize, 1000);
Set($ShowSearchNavigation, 1);
=item C<$SearchResultsRefreshInterval>
C<$SearchResultsRefreshInterval> is default number of seconds to refresh
search results in RT. Choose from any value in L</@RefreshIntervals>, or
the default of C<0> for no automatic refresh.
=cut
Set($SearchResultsRefreshInterval, 0);
=item C<$DefaultSearchResultFormat>
C<$DefaultSearchResultFormat> is the default format for RT search
results.
=cut
Set ($DefaultSearchResultFormat, qq{
'<B><A HREF="__WebPath__/Ticket/Display.html?id=__id__">__id__</a></B>/TITLE:#',
'<B><A HREF="__WebPath__/Ticket/Display.html?id=__id__">__Subject__</a></B>/TITLE:Subject',
Status,
QueueName,
Owner,
Priority,
'__NEWLINE__',
'__NBSP__',
'<small>__Requestors__</small>',
'<small>__CreatedRelative__</small>',
'<small>__ToldRelative__</small>',
'<small>__LastUpdatedRelative__</small>',
'<small>__TimeLeft__</small>'});
=item C<$DefaultSearchResultRowsPerPage>
C<$DefaultSearchResultRowsPerPage> is the default rows per page for
the dropdown on the Query Builder. The system default is 50, but
setting to a smaller value can make search results render faster.
=cut
Set( $DefaultSearchResultRowsPerPage, 50 );
=item C<@SearchResultsPerPage>
Defines the options in the Rows per page dropdown on the query builder.
Include "0" to provide the "Unlimited" option.
=cut
Set(@SearchResultsPerPage, qw(0 10 25 50 100));
=item C<$UserTicketDataResultFormat>
This is the format of ticket search result for "Download User Tickets" links. It
defaults to C<DefaultSearchResultFormat> for privileged users and C<DefaultSelfServiceSearchResultFormat>
for unprivileged users if it's not set.
=cut
Set($UserTicketDataResultFormat, undef );
=item C<$UserDataResultFormat>
This is the format of the user search result for "Download User Data" links.
=cut
Set($UserDataResultFormat, "'__id__', '__Name__', '__EmailAddress__', '__RealName__',\
'__NickName__', '__Organization__', '__HomePhone__', '__WorkPhone__',\
'__MobilePhone__', '__PagerPhone__', '__Address1__', '__Address2__',\
'__City__', '__State__','__Zip__', '__Country__', '__Gecos__', '__Lang__',\
'__Timezone__', '__FreeFormContactInfo__'");
=item C<$UserTransactionDataResultFormat>
This is the format of the user transaction search result for "Download User Transaction Data" links.
=cut
Set($UserTransactionDataResultFormat, "'__ObjectId__/TITLE:Ticket Id', '__id__', '__Created__', '__Description__',\
'__OldValue__', '__NewValue__', '__Content__'");
=item C<$DefaultSearchResultOrderBy>
What Tickets column should we order by for RT Ticket search results.
=cut
Set($DefaultSearchResultOrderBy, 'id');
=item C<$DefaultSearchResultOrder>
When ordering RT Ticket search results by C<$DefaultSearchResultOrderBy>,
should the sort be ascending (ASC) or descending (DESC).
=cut
Set($DefaultSearchResultOrder, 'ASC');
=item C<$ShowSearchResultCount>
Display search result count on ticket lists. Defaults to 1 (show them).
=cut
Set($ShowSearchResultCount, 1);
=item C<%FullTextSearch>
Full text search (FTS) without database indexing is a very slow
operation, and is thus disabled by default.
Before setting C<Indexed> to 1, read F<docs/full_text_indexing.pod> for
the full details of FTS on your particular database.
It is possible to enable FTS without database indexing support, simply
by setting the C<Enable> key to 1, while leaving C<Indexed> set to 0.
This is not generally suggested, as unindexed full-text searching can
cause severe performance problems.
=cut
Set(%FullTextSearch,
Enable => 0,
Indexed => 0,
);
=item C<$MaxFulltextAttachmentSize>
On some systems, very large attachments can cause memory and other
performance issues for the indexer making it unable to complete
indexing. Adding resources like memory and CPU will solve this
issue, but in cases where that isn't possible, this option
sets a maximum size in bytes on attachments to index. Attachments
larger than this limit are skipped and will not be available to
full text searches.
=cut
# Default 0 means no limit
Set($MaxFulltextAttachmentSize, 0);
=item C<$DontSearchFileAttachments>
If C<$DontSearchFileAttachments> is set to 1, then uploaded files
(attachments with file names) are not searched during content
search.
Note that if you use indexed FTS then named attachments are still
indexed by default regardless of this option.
=cut
Set($DontSearchFileAttachments, undef);
=item C<$OnlySearchActiveTicketsInSimpleSearch>
When query in simple search doesn't have status info, use this to only
search active ones.
=cut
Set($OnlySearchActiveTicketsInSimpleSearch, 1);
=item C<$SearchResultsAutoRedirect>
When only one ticket is found in search, use this to redirect to the
ticket display page automatically.
=cut
Set($SearchResultsAutoRedirect, 0);
=item C<$InlineEdit>
Allows users to update tickets directly on search results and ticket display
pages.
=cut
Set($InlineEdit, 1);
=item C<%InlineEditPanelBehavior>
This setting allows you to control which panels on display pages participate
in inline edit, as well as fine-tuning their specific behavior.
Much like L</%CustomFieldGroupings>, you first specify a record type you
want to configure (though since currently only ticket display supports inline
edit, keys besides C<RT::Ticket> are ignored). Then, for each panel, you
specify its behavior. The valid behaviors are:
=over 4
=item * link (the default)
The panel will have an "Edit" link in the top right, which when clicked
immediately activates inline edit. The "Edit" link will change to
"Cancel" to restore the readonly display.
=item * click
Much like C<link>, except you may click anywhere inside the panel to
activate inline edit.
=item * hide
Turns off inline edit entirely for this panel.
=item * always
Turns off the readonly display for this panel, providing I<only> inline
edit capabilities.
=back
You may also provide the special key C<_default> inside a record type to
specify a default behavior for all panels.
This sample configuration will provide a default inline edit behavior of
click, but also specifies different behaviors for several other panels.
Note that the non-standard panel names "Grouping Name" and "Another
Grouping" are created by the L</%CustomFieldGroupings> setting.
As Assets don't have editable core date fields, inline edit is thus
disabled in the "Dates" widget by default. If you have any date custom
fields that are grouped there via L</%CustomFieldGroupings>, you can
explicitly enable it via this config.
Set(%InlineEditPanelBehavior,
'RT::Ticket' => {
'_default' => 'click',
'Grouping Name' => 'link',
'Another Grouping' => 'click',
'Dates' => 'always',
'Links' => 'hide',
'People' => 'link',
},
'RT::Asset' => {
'_default' => 'click',
'Grouping Name' => 'link',
'Another Grouping' => 'click',
'Dates' => 'hide',
'Links' => 'hide',
'People' => 'link',
},
);
=back
=head2 Ticket options
=over 4
=item C<$DisplayTotalTimeWorked>
Set to 1 to display Total Time Worked in the Basics section.
Total Time Worked is a dynamic value containing a sum of Time Worked for
the parent and all child tickets. This value is generated when displaying
the ticket and automatically updates when a child ticket is added or removed.
Total Time Worked follows only parent/child link relationships. Tickets
linked with depends-on or refers-to links are not included.
Total Time Worked is also available as a column for reports generated with
the Query Builder.
=cut
Set($DisplayTotalTimeWorked, 0);
=item C<$ShowMoreAboutPrivilegedUsers>
This determines if the 'More about requestor' box on
Ticket/Display.html is shown for Privileged Users.
=cut
Set($ShowMoreAboutPrivilegedUsers, 0);
=item C<$MoreAboutRequestorTicketList>
This can be set to Active, Inactive, All or None. It controls what
ticket list will be displayed in the 'More about requestor' box on
Ticket/Display.html. This option can be controlled by users also.
=cut
Set($MoreAboutRequestorTicketList, "Active");
=item C<$MoreAboutRequestorTicketListFormat>
Control the appearance of the ticket lists in the 'More About Requestors' box.
=cut
Set($MoreAboutRequestorTicketListFormat, q{
'<a href="__WebPath__/Ticket/Display.html?id=__id__">__id__</a>',
'__Owner__',
'<a href="__WebPath__/Ticket/Display.html?id=__id__">__Subject__</a>',
'__Status__',
});
=item C<$MoreAboutRequestorExtraInfo>
By default, the 'More about requestor' box on Ticket/Display.html
shows the Requestor's name and ticket list. If you would like to see
extra information about the user, this expects a Format string of user
attributes. Please note that not all the attributes are supported in
this display because we're not building a table.
Example:
C<Set($MoreAboutRequestorExtraInfo,"Organization, Address1")>
=cut
Set($MoreAboutRequestorExtraInfo, "");
=item C<$MoreAboutRequestorGroupsLimit>
By default, the 'More about requestor' box on Ticket/Display.html
shows all the groups of the Requestor. Use this to limit the number
of groups; a value of undef removes the group display entirely.
=cut
Set($MoreAboutRequestorGroupsLimit, 0);
=item C<$UseSideBySideLayout>
Should the ticket create and update forms use a more space efficient
two column layout. This layout may not work in narrow browsers if you
set a MessageBoxWidth (below).
=cut
Set($UseSideBySideLayout, 1);
=item C<$EditCustomFieldsSingleColumn>
When displaying a list of Ticket Custom Fields for editing, RT
defaults to a 2 column list. If you set this to 1, it will instead
display the Custom Fields in a single column.
=cut
Set($EditCustomFieldsSingleColumn, 0);
=item C<$ShowUnreadMessageNotifications>
If set to 1, RT will prompt users when there are new,
unread messages on tickets they are viewing.
=cut
Set($ShowUnreadMessageNotifications, 0);
=item C<$AutocompleteOwners>
If set to 1, the owner drop-downs for ticket update/modify and the query
builder are replaced by text fields that autocomplete. This can
alleviate the sometimes huge owner list for installations where many
users have the OwnTicket right.
The Owner entry is automatically converted to an autocomplete box if the list
of owners exceeds C<$DropdownMenuLimit> items. However, the query to generate
the list of owners is still run and this can increase page load times. If
your owner lists exceed the limit and you are using the autocomplete box, you
can improve performance by explicitly setting C<$AutocompleteOwners>.
Drop down doesn't show unprivileged users. If your setup allows unprivileged
to own ticket then you have to enable autocompleting.
=cut
Set($AutocompleteOwners, 0);
=item C<$DropdownMenuLimit>
The Owner dropdown menu, used in various places in RT including the Query
Builder and ticket edit pages, automatically changes from a dropdown menu to
an autocomplete field once the menu holds more than the C<$DropdownMenuLimit>
owners. Dropdown menus become more difficult to use when they contain a large
number of values and the autocomplete textbox can be more usable.
If you have very large numbers of users who can be owners, this can cause
slow page loads on pages with an Owner selection. See L</$AutocompleteOwners>
for a way to potentially speed up page loads.
=cut
Set($DropdownMenuLimit, 50);
=item C<$AutocompleteOwnersForSearch>
If set to 1, the owner drop-downs for the query builder are always
replaced by text field that autocomplete and C<$AutocompleteOwners>
is ignored. Helpful when owners list is huge in the query builder.
=cut
Set($AutocompleteOwnersForSearch, 0);
=item C<$AutocompleteQueues>
If set to 1, any queue drop-downs are replaced by text fields that
autocomplete. This can alleviate the sometimes huge queue list for
installations with many queues, and can also increase page load
times in some cases. A user can override this setting as a personal
preference.
=cut
Set($AutocompleteQueues, 0);
=item C<$ArticleSearchFields>
Used when searching for an Article to Include.
Specifies which fields of L<RT::Article> to match against and how to match
each field when autocompleting articles. Valid match methods are LIKE,
STARTSWITH, ENDSWITH, =, and !=. Valid search fields are the core Article
fields, as well as custom fields, including Content, which are specified as
"CF.1234" or "CF.Name"
=cut
Set($ArticleSearchFields, {
Name => 'STARTSWITH',
Summary => 'LIKE',
});
=item C<$UserSearchFields>
Used by the User Autocompleter as well as the User Search.
Specifies which fields of L<RT::User> to match against and how to match
each field when autocompleting users. Valid match methods are LIKE,
STARTSWITH, ENDSWITH, =, and !=. Valid search fields are the core User
fields, as well as custom fields, which are specified as "CF.1234" or
"CF.Name"
=cut
Set($UserSearchFields, {
EmailAddress => 'STARTSWITH',
Name => 'STARTSWITH',
RealName => 'LIKE',
});
=item C<$TicketAutocompleteFields>
Specifies which fields of L<RT::Ticket> to match against and how to match each
field when autocompleting users. Valid match methods are LIKE, STARTSWITH,
ENDSWITH, C<=>, and C<!=>.
Not all Ticket fields are publically accessible and hence won't work for
autocomplete unless you override their accessibility using a local overlay or a
plugin. Out of the box the following fields are public: id, Subject.
=cut
Set( $TicketAutocompleteFields, {
id => 'STARTSWITH',
Subject => 'LIKE',
});
=item C<$DisplayTicketAfterQuickCreate>
Enable this to redirect to the created ticket display page
automatically when using QuickCreate.
=cut
Set($DisplayTicketAfterQuickCreate, 0);
=item C<$WikiImplicitLinks>
Support implicit links in WikiText custom fields? Setting this to 1
causes InterCapped or ALLCAPS words in WikiText fields to automatically
become links to searches for those words. If used on Articles, it links
to the Article with that name.
=cut
Set($WikiImplicitLinks, 0);
=item C<%LinkedQueuePortlets>
C<%LinkedQueuePortlets> allows you to display links to tickets in
another queue in a stand-alone portlet on the ticket display page.
This makes it easier to highlight specific ticket links separate from
the standard Links portlet.
For example, you might have a Sales queue that tracks incoming product
requests, and for each ticket you create a linked ticket in the Shipping
queue for each outgoing shipment. You could add the configuration below
to create a stand-alone Shipping portlet on tickets in the Sales queue,
making it easier to see those linked tickets. You might have a Returns
queue to show as well.
Set( %LinkedQueuePortlets, (
'Sales' => [
{ 'Shipping' => [ 'All' ] },
{ 'Returns' => [ 'RefersTo' ] },
],
'Shipping' => [
{ 'Postage' => [ 'DependsOn', 'HasMember' ] },
],
));
You can include multiple linked queues in each ticket and they are
displayed in the order you define them in the configuration. The values
are RT link types: 'DependsOn', 'DependedOnBy', 'HasMember'
(children), 'MemberOf' (parents), 'RefersTo', and 'ReferredToBy'.
'All' lists all linked tickets. You can include multiple link types for
each as shown above.
=cut
Set( %LinkedQueuePortlets, () );
=item C<%LinkedQueuePortletFormats>
C<%LinkedQueuePortletFormats> defines the format for displaying
linked tickets in each linked queue portlet defined by C<%LinkedQueuePortlets>.
To change just the General list you would do:
Set(%LinkedQueuePortletFormats, General => 'modified configuration');
=cut
Set( %LinkedQueuePortletFormats,
Default =>
q{'<b><a href="__WebPath__/Ticket/Display.html?id=__id__">__id__</a></b>/TITLE:#',}.
q{'<b><a href="__WebPath__/Ticket/Display.html?id=__id__">__Subject__</a></b>/TITLE:Subject',}.
q{Status},
);
=item C<$PreviewScripMessages>
Set C<$PreviewScripMessages> to 1 if the scrips preview on the ticket
reply page should include the content of the messages to be sent.
=cut
Set($PreviewScripMessages, 0);
=item C<$SimplifiedRecipients>
If C<$SimplifiedRecipients> is set, a simple list of who will receive
B<any> kind of mail will be shown on the ticket reply page, instead of a
detailed breakdown by scrip.
=cut
Set($SimplifiedRecipients, 0);
=item C<$SquelchedRecipients>
If C<$SquelchedRecipients> is set, the checkbox list of who will receive
B<any> kind of mail on the ticket reply page are displayed initially as
B<un>checked - which means nobody in that list would get any mail. It
does not affect correspondence done via email yet.
=cut
Set($SquelchedRecipients, 0);
=item C<$HideResolveActionsWithDependencies>
If set to 1, this option will skip ticket menu actions which can't be
completed successfully because of outstanding active Depends On tickets.
By default, all ticket actions are displayed in the menu even if some of
them can't be successful until all Depends On links are resolved or
transitioned to another inactive status.
=cut
Set($HideResolveActionsWithDependencies, 0);
=item C<$HideUnsetFieldsOnDisplay>
This determines if we should hide unset fields on ticket display page.
Set this to 1 to hide unset fields.
=cut
Set($HideUnsetFieldsOnDisplay, 0);
=item C<$HideOneTimeSuggestions>
On ticket comment and correspond there are "One-time Cc" and "One-time Bcc"
fields. As part of this section, RT includes a list of suggested email
addresses based on the correspondence history for that ticket. This list may
grow quite large over time.
Enabling this option will hide the list behind a "(show suggestions)" link to
cut down on page clutter. Once this option is clicked the link will change to
"(hide suggestions)" and the full list of email addresses will be shown.
=cut
Set($HideOneTimeSuggestions, 0);
=item C<$EnablePriorityAsString>
Priority is stored as a number internally. This determines whether
Priority is displayed to users as a number or using configured
labels like Low, Medium, High. See L</%PriorityAsString> for details
on this configuration.
The default is enabled, so strings are shown. Set to C<0> to display
numbers, which was the previous default for RT.
=cut
Set($EnablePriorityAsString, 1);
=item C<%PriorityAsString>
This setting allows you to define labels for priority values
available on tickets. RT stores these values internally as a number,
but this number will be hidden if C<$EnablePriorityAsString> is true.
For the configuration, link the labels to numbers as shown below. If
you have more or less priority settings, you can adjust the numbers,
giving a unique number to each.
Set(%PriorityAsString,
Default => { Low => 0, Medium => 50, High => 100 },
General => [ Medium => 50, Low => 0, High => 80, 'On Fire' => 100],
Support => 0,
);
The key is queue name or "Default", which is the fallback for unspecified
queues. Values can be an ArrayRef, HashRef, or C<0>.
=over
=item ArrayRef
This is the ordered String => Number map list. Priority options will be
rendered in the order they are listed in the list.
=item HashRef
This is the unordered String => Number map list. Priority options will be
rendered in numerical ascending order.
=item C<0>
Priority is rendered as a number.
=back
=cut
Set(%PriorityAsString,
Default => { Low => 0, Medium => 50, High => 100 },
);
=item C<$QuoteSelectedText>
When clicking on the Reply or Comment icons in the ticket history,
the content of the associated history entry is included in the box
on the update page and it is quoted, just as an email client would
quote a reply.
With C<$QuoteSelectedText> enabled (the default), you can select specific
text from the ticket page with your mouse and it will be quoted instead.
This allows you to easily quote just part of the text from the ticket
history when replying.
Set this option to C<0> to disable this feature.
=cut
Set($QuoteSelectedText, 1);
=back
=head2 Group Summary Configuration
Below are configuration options for the Group Summary page.
=over
=item C<$GroupSearchResultFormat>
This controls the display of lists of groups returned from the Group
Summary Search. The display of groups in the Admin interface is
controlled by C<%AdminSearchResultFormat>.
=cut
Set($GroupSearchResultFormat,
q{ '<a href="__WebPath__/Group/Summary.html?id=__id__">__id__</a>/TITLE:#'}
.q{,'<a href="__WebPath__/Group/Summary.html?id=__id__">__Name__</a>/TITLE:Name'}
);
=item C<@GroupSummaryPortlets>
A list of portlets to be displayed on the Group Summary page.
By default, we show all of the available portlets.
Extensions may provide their own portlets for this page.
=cut
Set(@GroupSummaryPortlets, (qw/ExtraInfo CreateTicket ActiveTickets InactiveTickets GroupAssets /));
=item C<$GroupSummaryExtraInfo>
This controls what information is displayed on the Group Summary
portal. By default the group Name and Description are displayed.
=cut
Set($GroupSummaryExtraInfo, "id, Name, Description");
=item C<$GroupSummaryTicketListFormat>
Control the appearance of the Active and Inactive ticket lists in the
Group Summary.
=cut
Set($GroupSummaryTicketListFormat, q{
'<B><A HREF="__WebPath__/Ticket/Display.html?id=__id__">__id__</a></B>/TITLE:#',
'<B><A HREF="__WebPath__/Ticket/Display.html?id=__id__">__Subject__</a></B>/TITLE:Subject',
Status,
QueueName,
Owner,
Priority,
'__NEWLINE__',
'',
'<small>__Requestors__</small>',
'<small>__CreatedRelative__</small>',
'<small>__ToldRelative__</small>',
'<small>__LastUpdatedRelative__</small>',
'<small>__TimeLeft__</small>'
});
=item C<$GroupSearchFields>
Specifies which fields of L<RT::Group> to match against and how to match
each field when performing a quick search on groups. Valid match
methods are LIKE, STARTSWITH, ENDSWITH, =, and !=. Valid search fields
are id, Name, Description, or custom fields, which are specified as
"CF.1234" or "CF.Name"
=cut
Set($GroupSearchFields, {
id => '=',
Name => 'LIKE',
Description => 'LIKE',
});
=back
=head2 Self Service Interface
The Self Service Interface is a view automatically presented to Unprivileged
users who have a password and log into the web UI. The following options
modify the default behavior of the Self Service pages.
=over 4
=item C<$SelfServiceCorrespondenceOnly>
On the ticket display page, show only correspondence transactions in the
ticket history. This hides all ticket update transactions like status changes,
custom field updates, updates to watchers, etc.
=cut
Set($SelfServiceCorrespondenceOnly, 0);
=item C<$HideTimeFieldsFromUnprivilegedUsers>
This determines if we should hide Time Worked, Time Estimated, and
Time Left for unprivileged users.
Set this to 1 to hide those fields.
=cut
Set($HideTimeFieldsFromUnprivilegedUsers, 0);
=item C<$AllowUserAutocompleteForUnprivileged>
Should unprivileged users (users of SelfService) be allowed to
autocomplete users. Setting this option to 1 means unprivileged users
will be able to search all your users.
=cut
Set($AllowUserAutocompleteForUnprivileged, 0);
=item C<$AllowGroupAutocompleteForUnprivileged>
Defines whether unprivileged users (users of SelfService) are allowed
to autocomplete groups for roles like Requestors or Ccs. Setting this
option to 1 enables autocomplete on user-created group names for self
service users. Users also need the SeeGroup right on each
group for them to appear in the autocomplete suggestions.
=cut
Set($AllowGroupAutocompleteForUnprivileged, 0);
=item C<$DefaultSelfServiceSearchResultFormat>
C<$DefaultSelfServiceSearchResultFormat> is the default format of
searches displayed in the SelfService interface.
=cut
Set($DefaultSelfServiceSearchResultFormat, qq{
'<B><A HREF="__WebPath__/SelfService/Display.html?id=__id__">__id__</a></B>/TITLE:#',
'<B><A HREF="__WebPath__/SelfService/Display.html?id=__id__">__Subject__</a></B>/TITLE:Subject',
Status,
Requestors,
Owner});
=item C<$SelfServiceRegex>
What portion of RT's URLspace should be accessible to Unprivileged
users This does not override the redirect from F</Ticket/Display.html>
to F</SelfService/Display.html> when Unprivileged users attempt to
access ticked displays.
=cut
Set($SelfServiceRegex, qr!^(?:/+SelfService/)!x );
=item C<$SelfServiceUserPrefs>
This option controls how the SelfService user preferences page is
displayed. It accepts a string from one of the four possible modes
below.
=over
=item C<edit-prefs> (the default)
When set to C<edit-prefs>, self service users will be able to update
their Timezone and Language preference and update their password.
This is the default behavior of RT.
=item C<view-info>
When set to C<view-info>, users will have full access to all their
user information stored in RT on a read-only page.
=item C<edit-prefs-view-info>
When set to C<edit-prefs-view-info>, users will have full access as in
the C<view-info> option, but also will be able to update their Locale
and password as in the default C<edit-prefs> option.
=item C<full-edit>
When set to C<full-edit>, users will be able to fully view and update
all of their stored RT user information.
=back
=cut
Set($SelfServiceUserPrefs, 'edit-prefs');
=item C<$SelfServiceRequestUpdateQueue>
Set this to the name of the queue to use for tickets requesting updates
to user infomation from Self Service users. Once it's set, a quick
ticket create portlet will show up on Preferences page for self service
users. This option is only available when $SelfServiceUserPrefs is set
to 'view-info' or 'edit-prefs-view-info'.
Self service users need the CreateTicket right on this queue to create
a ticket.
=cut
Set($SelfServiceRequestUpdateQueue, undef);
=item C<$SelfServiceDownloadUserData>
Allow Self Service users to download their user information, ticket data,
and transaction data as a .tsv file. When enabled, these options
will appear in the self service interface at Logged in as > Preferences.
Users also need the ModifySelf right to have access to this page.
=cut
Set( $SelfServiceDownloadUserData, 0 );
=item C<$SelfServiceShowGroupTickets>
Set this option to true to show a section with group tickets
on self service pages.
=cut
Set($SelfServiceShowGroupTickets, 0);
=item C<$SelfServiceUseDashboard>
C<$SelfServiceUseDashboard> is a flag indicating whether or not to use
a dashboard for the Self Service home page. If it is set to false,
then the normal Open Tickets / Closed Tickets menu is shown rather
than a dashboard.
=cut
Set($SelfServiceUseDashboard, 0);
=item C<$SelfServicePageComponents>
C<$SelfServicePageComponents> is an arrayref of allowed components on
the SelfService page, if you have set $SelfServiceUseDashboard to true.
=cut
Set(
$SelfServicePageComponents,
[qw(SelfServiceTopArticles SelfServiceNewestArticles)]
);
=item C<$SelfServiceShowArticleSearch>
If enabled, C<$SelfServiceShowArticleSearch> displays a "Search Articles"
box in the menu bar in the self service interface. This option controls
only showing or hiding the search box. Users still need appropriate rights
to see article search results and view articles.
=cut
Set($SelfServiceShowArticleSearch, 0);
=back
=head2 Articles
=over 4
=item C<$ArticleOnTicketCreate>
Set this to 1 to display the Articles interface on the Ticket Create
page in addition to the Reply/Comment page.
=cut
Set($ArticleOnTicketCreate, 0);
=item C<$HideArticleSearchOnReplyCreate>
Set this to 1 to hide "Include Article" box on the ticket update page.
=cut
Set($HideArticleSearchOnReplyCreate, 0);
=item C<$LinkArticlesOnInclude>
Set this to 0 to suppress the default behavior of automatically linking
to Articles when they are included in a message.
=cut
Set($LinkArticlesOnInclude, 1);
=item C<%ProcessArticleFields>
To show process articles on ticket display pages, for each queue define
which ticket field will determine the article to show, and which article
class to use when loading the article.
Set( %ProcessArticleFields, (
General => { Field => 'Status', Class => 'General Processes' },
Support => { Field => 'CF.Severity', Class => 'Support Processes' },
));
To enable process articles by default for all queues, add a "Default"
entry.
Set( %ProcessArticleFields, (
General => { Field => 'Status', Class => 'General Processes' },
Support => { Field => 'CF.Severity', Class => 'Support Processes' },
Default => { Field => 'CF.{Ticket Type}', Class => 'Global Processes' },
));
To explicitly disable process articles for a queue, set its value to 0.
Set( %ProcessArticleFields, (
General => 0,
Support => { Field => 'CF.Severity', Class => 'Support Processes' },
Default => { Field => 'CF.{Ticket Type}', Class => 'Global Processes' },
));
=item C<%ProcessArticleMapping>
After defining the field to use, you can then set which article to
display for each value for that field. For example, if you have a
custom field "Ticket Type" and you want to show the
"Feature Request Process" article if the Ticket Type value is
"Feature Request", you would set the following:
Set( %ProcessArticleMapping, (
'CF.{Ticket Type}' => {
'Feature Request' => 'Feature Request Process',
'Bug Report' => 'Bug Report Process',
},
));
=cut
=back
=head2 Assets
=over 4
=item C<@AssetQueues>
This should be a list of names of queues whose tickets should always
display the "Assets" box. This is useful for queues which deal
primarily with assets, as it provides a ready box to link an asset to
the ticket, even when the ticket has no related assets yet.
=cut
# Set(@AssetQueues, ());
=item C<$DefaultCatalog>
This provides the default catalog after a user initially logs in.
However, the default catalog is "sticky," and so will remember the
last-selected catalog thereafter.
=cut
# Set($DefaultCatalog, 'General assets');
=item C<$AssetSearchFields>
Specifies which fields of L<RT::Asset> to match against and how to match
each field when performing a quick search on assets. Valid match
methods are LIKE, STARTSWITH, ENDSWITH, =, and !=. Valid search fields
are id, Name, Description, or custom fields, which are specified as
"CF.1234" or "CF.Name"
=cut
Set($AssetSearchFields, {
id => '=',
Name => 'LIKE',
Description => 'LIKE',
});
=item C<$AssetDefaultSearchResultFormat>
The format that results of the asset search are displayed with.
=cut
# loc('Related tickets')
Set($AssetDefaultSearchResultFormat, q[
'<a href="__WebPath__/Asset/Display.html?id=__id__">__id__</a>/TITLE:#',
'<a href="__WebHomePath__/Asset/Display.html?id=__id__">__Name__</a>/TITLE:Name',
Status,
Catalog,
Owner,
'__ActiveTickets__ __InactiveTickets__/TITLE:Related tickets',
'__NEWLINE__',
'__NBSP__',
'<small>__Description__</small>',
'<small>__CreatedRelative__</small>',
'<small>__LastUpdatedRelative__</small>',
'<small>__Contacts__</small>',
]);
=item C<$AssetDefaultSearchResultOrderBy>
What column should we order by for RT asset search results.
=cut
Set($AssetDefaultSearchResultOrderBy, 'Name');
=item C<$AssetDefaultSearchResultOrder>
When ordering asset search results by C<$AssetDefaultSearchResultOrderBy>,
should the sort be ascending (ASC) or descending (DESC).
=cut
Set($AssetDefaultSearchResultOrder, 'ASC');
=item C<$AssetShowSearchResultCount>
Display search result count on asset lists. Defaults to 1 (show them).
=cut
Set($AssetShowSearchResultCount, 1);
=item C<$AssetSimpleSearchFormat>
The format that results of the asset simple search are displayed with. This
is either a string, which will be used for all catalogs, or a hash
reference, keyed by catalog's name/id. If a hashref and neither name or id
is found therein, falls back to the key ''.
If you wish to use the multiple catalog format, your configuration would look
something like:
Set($AssetSimpleSearchFormat, {
'General assets' => q[Format String for the General Assets Catalog],
8 => q[Format String for Catalog 8],
'' => q[Format String for any catalogs not listed explicitly],
});
=cut
# loc('Related tickets')
Set($AssetSimpleSearchFormat, q[
'<a href="__WebPath__/Asset/Display.html?id=__id__">__id__</a>/TITLE:#',
'<a href="__WebHomePath__/Asset/Display.html?id=__id__">__Name__</a>/TITLE:Name',
Status,
Catalog,
Owner,
'__ActiveTickets__ __InactiveTickets__/TITLE:Related tickets',
'__NEWLINE__',
'__NBSP__',
'<small>__Description__</small>',
'<small>__CreatedRelative__</small>',
'<small>__LastUpdatedRelative__</small>',
'<small>__Contacts__</small>',
]);
=item C<$AssetSummaryFormat>
The information that is displayed on ticket display pages about assets
related to the ticket. This is displayed in a table beneath the asset
name.
=cut
Set($AssetSummaryFormat, q[
'<a href="__WebHomePath__/Asset/Display.html?id=__id__">__Name__</a>/TITLE:Name',
Description,
'__Status__ (__Catalog__)/TITLE:Status',
Owner,
HeldBy,
Contacts,
'__ActiveTickets__ __InactiveTickets__/TITLE:Related tickets',
]);
=item C<$AssetSummaryRelatedTicketsFormat>
The information that is displayed on ticket display pages about tickets
related to assets related to the ticket. This is displayed as a list of
tickets underneath the asset properties.
=cut
Set($AssetSummaryRelatedTicketsFormat, q[
'<a href="__WebPath__/Ticket/Display.html?id=__id__">__id__</a>',
'(__OwnerName__)',
'<a href="__WebPath__/Ticket/Display.html?id=__id__">__Subject__</a>',
QueueName,
Status,
]);
=item C<$AssetBasicCustomFieldsOnCreate>
Specify a list of Asset custom fields to show in "Basics" widget on create.
e.g.
Set( $AssetBasicCustomFieldsOnCreate, [ 'foo', 'bar' ] );
=cut
# Set($AssetBasicCustomFieldsOnCreate, undef );
=item C<$AssetHideSimpleSearch>
Set to a true value to hide the legacy Asset Simple Search in favor of AssetSQL
added in RT 5.0.
When hidden, the Asset search menu shows the Current Search menu like tickets,
giving quick access back to a search after clicking on an asset.
=cut
Set($AssetHideSimpleSearch, 0);
=item C<$AssetMultipleOwner>
By default an asset is limited to a single user as an owner. By setting
this to a true value, you can allow multiple users and groups as owner.
If you change this back to a false value while having multiple owners
set on any assets, RT's behavior may be inconsistent.
=cut
Set($AssetMultipleOwner, 0);
=item C<$UserAssetExtraInfo>
By default the People portlet on the asset display page shows the Name field
for each user. Set this value with additional fields from the user record to
show more information about the users. The value is a Format string of user
attributes or custom fields. For example, to show the user's email, city, state,
zip, and the user custom field Primary Office:
Set($UserAssetExtraInfo, 'EmailAddress, City, State, Zip, "CF.{Primary Office}"');
=cut
Set($UserAssetExtraInfo, '');
=back
=head2 Message box properties
=over 4
=item C<$MessageBoxWidth>, C<$MessageBoxHeight>
For message boxes, set the entry box width, height and what type of
wrapping to use. These options can be overridden by users in their
preferences.
When the width is set to undef, no column count is specified and the
message box will take up 100% of the available width. Combining this
with HARD messagebox wrapping (below) is not recommended, as it will
lead to inconsistent width in transactions between browsers.
These settings only apply to the non-RichText message box. See below
for Rich Text settings.
=cut
Set($MessageBoxWidth, undef);
Set($MessageBoxHeight, 15);
=item C<$MessageBoxRichText>
Should "rich text" editing be enabled? This option lets your users
send HTML email messages from the web interface.
=cut
Set($MessageBoxRichText, 1);
=item C<$MessageBoxRichTextHeight>
Height of rich text JavaScript enabled editing boxes (in pixels)
=cut
Set($MessageBoxRichTextHeight, 300);
=item C<$MessageBoxIncludeSignature>
Should your users' signatures (from their Preferences page) be
included in Comments and Replies.
=cut
Set($MessageBoxIncludeSignature, 1);
=item C<$MessageBoxIncludeSignatureOnComment>
Should your users' signatures (from their Preferences page) be
included in Comments. Setting this to 0 overrides
C<$MessageBoxIncludeSignature>.
=cut
Set($MessageBoxIncludeSignatureOnComment, 1);
=item C<$SignatureAboveQuote>
By default RT places the signature at the bottom of the quoted text in
the message box for ticket replies. Set this to 1 to place the signature
above the quoted text.
=cut
Set($SignatureAboveQuote, 0);
=back
=head2 Attach Files
=over 4
=item C<$PreferDropzone>
By default, RT uses Dropzone to attach files if possible. If
C<$PreferDropzone> is set to 0, RT will always use plain file inputs.
=cut
Set($PreferDropzone, 1);
=back
=head2 Transaction search
=over 4
=item C<%TransactionDefaultSearchResultFormat>
C<%TransactionDefaultSearchResultFormat> is the default format for RT
transaction search results for various object types. Keys are object types
like C<RT::Ticket>, values are the format string.
=cut
Set(%TransactionDefaultSearchResultFormat,
'RT::Ticket' => qq{
'<B><A HREF="__WebPath__/Transaction/Display.html?id=__id__">__id__</a></B>/TITLE:ID',
'<B><A HREF="__WebPath__/Ticket/Display.html?id=__ObjectId__">__ObjectId__</a></B>/TITLE:Ticket',
'__Description__',
'<small>__OldValue__</small>',
'<small>__NewValue__</small>',
'<small>__Content__</small>',
'<small>__CreatedRelative__</small>',
},
);
=item C<%TransactionDefaultSearchResultOrderBy>
What Transactions column should we order by for RT Transaction search
results for various object types. Keys are object types like C<RT::Ticket>,
values are the column names.
Defaults to I<id>.
=cut
Set( %TransactionDefaultSearchResultOrderBy, 'RT::Ticket' => 'id' );
=item C<%TransactionDefaultSearchResultOrder>
When ordering RT Transaction search results by
C<%TransactionDefaultSearchResultOrderBy>, should the sort be ascending
(ASC) or descending (DESC). Keys are object types like C<RT::Ticket>,
values are either "ASC" or "DESC".
Defaults to I<ASC>.
=cut
Set( %TransactionDefaultSearchResultOrder, 'RT::Ticket' => 'ASC' );
=item C<%TransactionShowSearchResultCount>
Display search result count on transaction lists. Keys are object types
like C<RT::Ticket>, values are either 1 or 0.
Defaults to 1 (show them).
=cut
Set( %TransactionShowSearchResultCount, 'RT::Ticket' => 1 );
=back
=head2 Transaction display
=over 4
=item C<$OldestTransactionsFirst>
By default, RT shows newest transactions at the bottom of the ticket
history page, if you want see them at the top set this to 0. This
option can be overridden by users in their preferences.
=cut
Set($OldestTransactionsFirst, 1);
=item C<$ShowHistory>
This option controls how history is shown on the ticket display page. It
accepts one of three possible modes and is overrideable on a per-user
preference level. If you regularly deal with long tickets and don't care much
about the history, you may wish to change this option to C<click>.
=over
=item C<delay> (the default)
When set to C<delay>, history is loaded via javascript after the rest of the
page has been loaded. This speeds up apparent page load times and generally
provides a smoother experience. You may notice slight delays before the ticket
history appears on very long tickets.
=item C<click>
When set to C<click>, history is loaded on demand when a placeholder link is
clicked. This speeds up ticket display page loads and history is never loaded
if not requested.
=item C<always>
When set to C<always>, history is loaded before showing the page. This ensures
history is always available immediately, but at the expense of longer page load
times. This behaviour was the default in RT 4.0.
=item C<scroll>
When set to C<scroll>, history is loaded via javascript after the rest of the
page has been loaded, as you scroll down the page. Ten transactions are loaded
initially, and then more are loaded ten at a time. This can dramatically speed
up initial page load times on very long tickets.
=back
=cut
Set($ShowHistory, 'delay');
=item C<$ShowBccHeader>
By default, RT hides from the web UI information about blind copies
user sent on reply or comment.
=cut
Set($ShowBccHeader, 0);
=item C<$TrustHTMLAttachments>
If C<TrustHTMLAttachments> is not defined, we will display them as
text. This prevents malicious HTML and JavaScript from being sent in a
request (although there is probably more to it than that)
=cut
Set($TrustHTMLAttachments, undef);
=item C<$AlwaysDownloadAttachments>
Always download attachments, regardless of content type. If set, this
overrides C<TrustHTMLAttachments>.
=cut
Set($AlwaysDownloadAttachments, undef);
=item C<$AttachmentListCount>
Sets the number of attachments to display on ticket display and ticket
update pages (default is 5). Attachments beyond this number are displayed
only after the user clicks the "Show all" link. Set to C<undef> to always show
all attachments. A value of C<0> means show no attachments by default.
=cut
Set($AttachmentListCount, 5);
=item C<$PreferRichText>
By default, RT shows rich text (HTML) messages if possible. If
C<$PreferRichText> is set to 0, RT will show plain text messages in
preference to any rich text alternatives.
As a security precaution, RT limits the HTML that is displayed to a
known-good subset -- as allowing arbitrary HTML to be displayed exposes
multiple vectors for XSS and phishing attacks. If
L</$TrustHTMLAttachments> is enabled, the original HTML is available for
viewing via the "Download" link.
=cut
Set($PreferRichText, 1);
=item C<$MaxInlineBody>
C<$MaxInlineBody> is the maximum textual attachment size that we want to
see inline when viewing a transaction. RT will inline any text if the
value is undefined or 0. This option can be overridden by users in
their preferences. The default is 25k.
=cut
Set($MaxInlineBody, 25 * 1024);
=item C<$ShowTransactionImages>
By default, RT shows images attached to incoming (and outgoing) ticket
updates inline. Set this variable to 0 if you'd like to disable that
behavior.
=cut
Set($ShowTransactionImages, 1);
=item C<$ShowRemoteImages>
By default, RT doesn't show remote images attached to incoming (and outgoing)
ticket updates inline. Set this variable to 1 if you'd like to enable remote
image display. Showing remote images may allow spammers and other senders to
track when messages are viewed and see referer information.
Note that this setting is independent of L</$ShowTransactionImages> above.
=cut
Set($ShowRemoteImages, 0);
=item C<$PlainTextMono>
Normally plaintext attachments are displayed as HTML with line breaks
preserved. This causes space- and tab-based formatting not to be
displayed correctly. Set C<$PlainTextMono> to 1 to use a monospaced
font and preserve formatting.
=cut
Set($PlainTextMono, 0);
=item C<$SuppressInlineTextFiles>
If C<$SuppressInlineTextFiles> is set to 1, then uploaded text files
(text-type attachments with file names) are prevented from being
displayed in-line when viewing a ticket's history.
=cut
Set($SuppressInlineTextFiles, undef);
=item C<@Active_MakeClicky>
MakeClicky detects various formats of data in headers and email
messages, and extends them with supporting links. By default, RT
provides two formats:
* 'httpurl': detects http:// and https:// URLs and adds '[Open URL]'
link after the URL.
* 'httpurl_overwrite': also detects URLs as 'httpurl' format, but
replaces the URL with a link. Enabled by default.
See F<share/html/Elements/MakeClicky> for documentation on how to add
your own styles of link detection.
=cut
Set(@Active_MakeClicky, qw(httpurl_overwrite));
=item C<$QuoteFolding>
Quote folding is the hiding of old replies in transaction history.
It defaults to on. Set this to 0 to disable it.
=cut
Set($QuoteFolding, 1);
=item C<$QuoteWrapWidth>
C<$QuoteWrapWidth> controls the number of columns to use when wrapping
quoted text within transactions.
=cut
Set($QuoteWrapWidth, 70);
=back
=head2 Administrative interface
=over 4
=item C<$ShowRTPortal>
RT can show administrators a feed of recent RT releases and other
related announcements and information from Best Practical on the top
level Admin page. This feature helps you stay up to date on
RT security announcements and version updates.
RT provides this feature using an "iframe" on C</Admin/index.html>
which asks the administrator's browser to show an inline page from
Best Practical's website.
If you'd rather not make this feature available to your
administrators, set C<$ShowRTPortal> to 0.
=cut
Set($ShowRTPortal, 1);
=item C<%AdminSearchResultFormat>
In the admin interface, format strings similar to tickets result
formats are used. Use C<%AdminSearchResultFormat> to define the format
strings used in the admin interface on a per-RT-class basis.
=cut
Set(%AdminSearchResultFormat,
Queues =>
q{'<a href="__WebPath__/Admin/Queues/Modify.html?id=__id__">__id__</a>/TITLE:#'}
.q{,'<a href="__WebPath__/Admin/Queues/Modify.html?id=__id__">__Name__</a>/TITLE:Name'}
.q{,__Description__,__Address__,__Priority__,__DefaultDueIn__,__Lifecycle__,__SubjectTag__,__Disabled__,__SortOrder__},
Groups =>
q{'<a href="__WebPath__/Admin/Groups/Modify.html?id=__id__">__id__</a>/TITLE:#'}
.q{,'<a href="__WebPath__/Admin/Groups/Modify.html?id=__id__">__Name__</a>/TITLE:Name'}
.q{,'__Description__',__Disabled__},
Users =>
q{'<a href="__WebPath__/Admin/Users/Modify.html?id=__id__">__id__</a>/TITLE:#'}
.q{,'<a href="__WebPath__/Admin/Users/Modify.html?id=__id__">__Name__</a>/TITLE:Name'}
.q{,__RealName__, __EmailAddress__,__SystemGroup__,__Disabled__},
CustomFields =>
q{'<a href="__WebPath__/Admin/CustomFields/Modify.html?id=__id__">__id__</a>/TITLE:#'}
.q{,'<a href="__WebPath__/Admin/CustomFields/Modify.html?id=__id__">__Name__</a>/TITLE:Name'}
.q{,__AddedTo__, __EntryHint__, __FriendlyPattern__,__Disabled__},
CustomRoles =>
q{'<a href="__WebPath__/Admin/CustomRoles/Modify.html?id=__id__">__id__</a>/TITLE:#'}
.q{,'<a href="__WebPath__/Admin/CustomRoles/Modify.html?id=__id__">__Name__</a>/TITLE:Name'}
.q{,__Description__,__MaxValues__,__Disabled__},
Scrips =>
q{'<a href="__WebPath__/Admin/Scrips/Modify.html?id=__id____From__">__id__</a>/TITLE:#'}
.q{,'<a href="__WebPath__/Admin/Scrips/Modify.html?id=__id____From__">__Description__</a>/TITLE:Description'}
.q{,__Condition__, __Action__, __Template__, __Disabled__,__HasLogs__},
Templates =>
q{'<a href="__WebPath__/__WebRequestPathDir__/Template.html?Queue=__QueueId__&Template=__id__">__id__</a>/TITLE:#'}
.q{,'<a href="__WebPath__/__WebRequestPathDir__/Template.html?Queue=__QueueId__&Template=__id__">__Name__</a>/TITLE:Name'}
.q{,'__Description__','__UsedBy__','__IsEmpty__'},
Classes =>
q{ '<a href="__WebPath__/Admin/Articles/Classes/Modify.html?id=__id__">__id__</a>/TITLE:#'}
.q{,'<a href="__WebPath__/Admin/Articles/Classes/Modify.html?id=__id__">__Name__</a>/TITLE:Name'}
.q{,__Description__,__Disabled__},
Catalogs =>
q{'<a href="__WebPath__/Admin/Assets/Catalogs/Modify.html?id=__id__">__id__</a>/TITLE:#'}
.q{,'<a href="__WebPath__/Admin/Assets/Catalogs/Modify.html?id=__id__">__Name__</a>/TITLE:Name'}
.q{,__Description__,__Lifecycle__,__Disabled__},
);
=item C<%AdminSearchResultRows>
Use C<%AdminSearchResultRows> to define the search result rows in the admin
interface on a per-RT-class basis.
=cut
Set(%AdminSearchResultRows,
Queues => 50,
Groups => 50,
Users => 50,
CustomFields => 50,
CustomRoles => 50,
Scrips => 50,
Templates => 50,
Classes => 50,
Catalogs => 50,
Assets => 50,
);
=item C<$ShowEditSystemConfig>
Starting in RT 5.0, SuperUsers can edit RT system configuration via the web UI.
Options set in the web UI take precedence over those set in configuration files.
If you prefer to set configuration only via files, set C<$ShowEditSystemConfig>
to 0 to disable the web UI editing interface.
=cut
Set($ShowEditSystemConfig, 1);
=item C<$ShowEditLifecycleConfig>
Starting in RT 5.0, SuperUsers can edit lifecycle configuration via the web UI.
Options set in the web UI take precedence over those set in configuration files.
Set C<$ShowEditLifecycleConfig> to 0 to disable the web UI editing interface.
=cut
Set($ShowEditLifecycleConfig, 1);
=back
=head1 Features
=head2 Syncing Users and Groups with LDAP or AD
In addition to the authentication services described above, RT also
has a utility you can schedule to periodicially sync from your
directory service additional user attributes, new users,
disabled users, and group membership. Options for the
LDAPImport tool are listed here. Additional information is
available in the L<RT::LDAPImport> documentation.
=over 4
=item C<$LDAPHost>
Your LDAP server hostname.
=item C<$LDAPUser>
The LDAP user to log in with.
=item C<$LDAPOptions>
LDAP options that are supported by the L<Net::LDAP> new method.
Example:
Set($LDAPOptions, [ port => 636 ]);
=item C<$LDAPPassword>
Password for LDAPUser.
=item C<$LDAPBase>
The LDAP search base.
Example:
Set($LDAPBase, 'ou=Organisational Unit,dc=domain,dc=TLD');
=item C<$LDAPFilter>
The filter to use when querying LDAP for the set of users to sync.
=item C<$LDAPMapping>
Mapping to apply between LDAP attributes retrieved and RT user
record attributes. See the L<RT::LDAPImport> documentation
for details.
=item C<$LDAPGroupBase>
The base for the LDAP group search.
=item C<$LDAPGroupFilter>
The filter to use when querying LDAP for groups to sync.
=item C<$LDAPGroupMapping>
Mapping to apply between LDAP group member attributes retrieved and
RT groups. See the L<RT::LDAPImport> documentation
for details.
=back
=head2 Cryptography
A complete description of RT's cryptography capabilities can be found in
L<RT::Crypt>. At this moment, GnuPG (PGP) and SMIME security protocols are
supported.
=over 4
=item C<%Crypt>
The following options apply to all cryptography protocols.
By default, all enabled security protocols will analyze each incoming
email. You may set C<Incoming> to a subset of this list, if some enabled
protocols do not apply to incoming mail; however, this is usually
unnecessary.
For outgoing emails, the first security protocol from the above list is
used. Use the C<Outgoing> option to set a security protocol that should
be used in outgoing emails. At this moment, only one protocol can be
used to protect outgoing emails.
Set C<RejectOnMissingPrivateKey> to 0 if you don't want to reject
emails encrypted for key RT doesn't have and can not decrypt.
Set C<RejectOnBadData> to 0 if you don't want to reject letters
with incorrect data.
If you want to allow people to encrypt attachments inside the DB then
set C<AllowEncryptDataInDB> to 1.
Set C<Dashboards> to a hash with Encrypt and Sign keys to control
whether dashboards should be encrypted and/or signed correspondingly.
By default they are not encrypted or signed.
Similarly, set C<DigestEmail> to a hash with Encrypt and Sign keys
to control whether digest email should be encrypted and/or signed.
By default they are not encrypted or signed.
=back
=cut
Set( %Crypt,
Incoming => undef, # ['GnuPG', 'SMIME']
Outgoing => undef, # 'SMIME'
RejectOnMissingPrivateKey => 1,
RejectOnBadData => 1,
AllowEncryptDataInDB => 0,
Dashboards => {
Encrypt => 0,
Sign => 0,
},
DigestEmail => {
Encrypt => 0,
Sign => 0,
},
);
=head3 SMIME configuration
A full description of the SMIME integration can be found in
L<RT::Crypt::SMIME>.
=over 4
=item C<%SMIME>
Set C<Enable> to 0 or 1 to disable or enable SMIME for
encrypting and signing messages.
Set C<OpenSSL> to path to F<openssl> executable.
Set C<Keyring> to directory with key files. Key and certificates should
be stored in a PEM file in this directory named named, e.g.,
F<email.address@example.com.pem>.
Set C<CAPath> to either a PEM-formatted certificate of a single signing
certificate authority, or a directory of such (including hash symlinks
as created by the openssl tool C<c_rehash>). Only SMIME certificates
signed by these certificate authorities will be treated as valid
signatures. If left unset (and C<AcceptUntrustedCAs> is unset, as it is
by default), no signatures will be marked as valid!
Set C<AcceptUntrustedCAs> to allow arbitrary SMIME certificates, no
matter their signing entities. Such mails will be marked as untrusted,
but signed; C<CAPath> will be used to mark which mails are signed by
trusted certificate authorities. This configuration is generally
insecure, as it allows the possibility of accepting forged mail signed
by an untrusted certificate authority.
Setting C<AcceptUntrustedCAs> also allows encryption to users with
certificates created by untrusted CAs.
Set C<Passphrase> to a scalar (to use for all keys), an anonymous
function, or a hash (to look up by address). If the hash is used, the
'' key is used as a default.
Set C<Providers> to a list of cryptographic providers to use. Intended for use
with OpenSSL 3 and should be left empty for all earlier versions. With OpenSSL
3, when empty only the library default will be used (subject to system
configuration). If adding another provider, such as 'legacy', the default will
not be available unless also explicitly added (this is OpenSSL's behavior).
Set C<OtherCertificatesToSend> to path to a PEM-formatted certificate file.
Certificates in the file will be include in outgoing signed emails.
Set C<CheckCRL> to a true value to have RT check for revoked certificates
by downloading a CRL. By default, C<CheckCRL> is disabled.
Set C<CheckOCSP> to a true value to have RT check for revoked certificates
against an OCSP server if possible. By default, C<CheckOCSP> is disabled.
Set C<CheckRevocationDownloadTimeout> to the timeout in seconds for
downloading a CRL or an issuer certificate (the latter is used when
checking against OCSP). The default timeout is 30 seconds.
See L<RT::Crypt::SMIME> for details.
=back
=cut
Set( %SMIME,
Enable => @RT_SMIME@,
OpenSSL => 'openssl',
Keyring => q{@RT_VAR_PATH@/data/smime},
CAPath => undef,
AcceptUntrustedCAs => undef,
Passphrase => undef,
Providers => [],
OtherCertificatesToSend => undef,
CheckCRL => 0,
CheckOCSP => 0,
CheckRevocationDownloadTimeout => 30,
);
=head3 GnuPG configuration
A full description of the (somewhat extensive) GnuPG integration can
be found by running the command `perldoc L<RT::Crypt::GnuPG>` (or
`perldoc lib/RT/Crypt/GnuPG.pm` from your RT install directory).
=over 4
=item C<%GnuPG>
Set C<Enable> to 0 or 1 to disable or enable GnuPG interfaces
for encrypting and signing outgoing messages.
Set C<GnuPG> to the name or path of the gpg binary to use.
Set C<Passphrase> to a scalar (to use for all keys), an anonymous
function, or a hash (to look up by address). If the hash is used, the
'' key is used as a default.
Set C<OutgoingMessagesFormat> to 'inline' to use inline encryption and
signatures instead of 'RFC' (GPG/MIME: RFC3156 and RFC1847) format.
Plain (not encrypted) email sent to RT can have attached files that
are encrypted. Set C<FileExtensions> to any file extensions on
attachments that RT should treat as encrypted and attempt to
decrypt with C<gpg>.
=cut
Set(%GnuPG,
Enable => @RT_GPG@,
GnuPG => 'gpg',
Passphrase => undef,
OutgoingMessagesFormat => "RFC", # Inline
FileExtensions => [ 'pgp', 'gpg', 'asc' ],
);
=item C<%GnuPGOptions>
Options to pass to the GnuPG program.
If you override this in your RT_SiteConfig, you should be sure to
include a homedir setting.
Note that options with '-' character MUST be quoted.
=cut
Set(%GnuPGOptions,
homedir => q{@RT_VAR_PATH@/data/gpg},
# URL of a keyserver
# keyserver => 'hkp://subkeys.pgp.net',
# enables the automatic retrieving of keys when verifying signatures
# 'keyserver-options' => 'auto-key-retrieve',
);
=back
=head2 External storage
By default, RT stores attachments in the database. ExternalStorage moves
all attachments that RT does not need efficient access to (which include
textual content and images) to outside of the database. This may either
be on local disk, or to a cloud storage solution. This decreases the
size of RT's database, in turn decreasing the burden of backing up RT's
database, at the cost of adding additional locations which must be
configured or backed up. Attachment storage paths are calculated based
on file contents; this provides de-duplication.
A full description of external storage can be found by running the command
`perldoc L<RT::ExternalStorage>` (or `perldoc lib/RT/ExternalStorage.pm`
from your RT install directory).
Note that simply configuring L<RT::ExternalStorage> is insufficient; there
are additional steps required (including setup of a regularly-scheduled
upload job) to enable RT to make use of external storage.
=over 4
=item C<%ExternalStorage>
This selects which storage engine is used, as well as options for
configuring that specific storage engine. RT ships with the following
storage engines:
L<RT::ExternalStorage::Disk>, which stores files on directly onto disk.
L<RT::ExternalStorage::AmazonS3>, which stores files on Amazon's S3 service.
L<RT::ExternalStorage::Dropbox>, which stores files in Dropbox.
See each storage engine's documentation for the configuration it requires
and accepts.
Set(%ExternalStorage,
Type => 'Disk',
Path => '/opt/rt5/var/attachments',
);
=cut
Set(%ExternalStorage, ());
=item C<$ExternalStorageCutoffSize>
Certain object types, like values for Binary (aka file upload) custom
fields, are always put into external storage. However, for other
object types, like images and text, there is a line in the sand where
you want small objects in the database but large objects in external
storage. By default, objects larger than 10 MiB will be put into external
storage. C<$ExternalStorageCutoffSize> adjusts that line in the sand.
Note that changing this setting does not affect existing attachments, only
the new ones that C<sbin/rt-externalize-attachments> hasn't seen yet.
=cut
Set($ExternalStorageCutoffSize, 10*1024*1024);
=item C<$ExternalStorageDirectLink>
Certain ExternalStorage backends can serve files over HTTP. For such
backends, RT can link directly to those files in external storage. This
cuts down download time and relieves resource pressure because RT's web
server is no longer involved in retrieving and then immediately serving
each attachment.
Of the storage engines that RT ships, only
L<RT::ExternalStorage::AmazonS3> supports this feature, and you must
manually configure it to allow direct linking.
Set this to 1 to link directly to files in external storage.
=cut
Set($ExternalStorageDirectLink, 0);
=back
=head2 Lifecycles
=head3 Lifecycle definitions
Each lifecycle is a list of possible statuses split into three logic
sets: B<initial>, B<active> and B<inactive>. Each status in a
lifecycle must be unique. (Statuses may not be repeated across sets.)
Each set may have any number of statuses.
For example:
default => {
initial => ['new'],
active => ['open', 'stalled'],
inactive => ['resolved', 'rejected', 'deleted'],
...
},
Status names can be from 1 to 64 ASCII characters. Statuses are
localized using RT's standard internationalization and localization
system.
=over 4
=item initial
You can define multiple B<initial> statuses for tickets in a given
lifecycle.
RT will automatically set its B<Started> date when you change a
ticket's status from an B<initial> state to an B<active> or
B<inactive> status.
=item active
B<Active> tickets are "currently in play" - they're things that are
being worked on and not yet complete.
=item inactive
B<Inactive> tickets are typically in their "final resting state".
While you're free to implement a workflow that ignores that
description, typically once a ticket enters an inactive state, it will
never again enter an active state.
RT will automatically set the B<Resolved> date when a ticket's status
is changed from an B<Initial> or B<Active> status to an B<Inactive>
status.
B<deleted> is still a special status and protected by the
B<DeleteTicket> right, unless you re-defined rights (read below). If
you don't want to allow ticket deletion at any time simply don't
include it in your lifecycle.
=back
Statuses in each set are ordered and listed in the UI in the defined
order.
Changes between statuses are constrained by transition rules, as
described below.
=head3 Default values
In some cases a default value is used to display in UI or in API when
value is not provided. You can configure defaults using the following
syntax:
default => {
...
defaults => {
on_create => 'new',
on_resolve => 'resolved',
...
},
},
The following defaults are used.
=over 4
=item on_create
If you (or your code) doesn't specify a status when creating a ticket,
RT will use the this status. See also L</Statuses available during
ticket creation>.
=item approved
When an approval is accepted, the status of depending tickets will
be changed to this value.
=item denied
When an approval is denied, the status of depending tickets will
be changed to this value.
=item reminder_on_open
When a reminder is opened, the status will be changed to this value.
=item reminder_on_resolve
When a reminder is resolved, the status will be changed to this value.
=back
=head3 Transitions between statuses and UI actions
A B<Transition> is a change of status from A to B. You should define
all possible transitions in each lifecycle using the following format:
default => {
...
transitions => {
'' => [qw(new open resolved)],
new => [qw(open resolved rejected deleted)],
open => [qw(stalled resolved rejected deleted)],
stalled => [qw(open)],
resolved => [qw(open)],
rejected => [qw(open)],
deleted => [qw(open)],
},
...
},
The order of items in the listing for each transition line affects
the order they appear in the drop-down. If you change the config
for 'open' state listing to:
open => [qw(stalled rejected deleted resolved)],
then the 'resolved' status will appear as the last item in the drop-down.
=head4 Statuses available during ticket creation
By default users can create tickets with a status of new,
open, or resolved, but cannot create tickets with a status of
rejected, stalled, or deleted. If you want to change the statuses
available during creation, update the transition from '' (empty
string), like in the example above.
=head4 Protecting status changes with rights
A transition or group of transitions can be protected by a specific
right. Additionally, you can name new right names, which will be added
to the system to control that transition. For example, if you wished to
create a lesser right than ModifyTicket for rejecting tickets, you could
write:
default => {
...
rights => {
'* -> deleted' => 'DeleteTicket',
'* -> rejected' => 'RejectTicket',
'* -> *' => 'ModifyTicket',
},
...
},
This would create a new C<RejectTicket> right in the system which you
could assign to whatever groups you choose.
On the left hand side you can have the following variants:
'<from> -> <to>'
'* -> <to>'
'<from> -> *'
'* -> *'
Valid transitions are listed in order of priority. If a user attempts
to change a ticket's status from B<new> to B<open> then the lifecycle
is checked for presence of an exact match, then for 'any to B<open>',
'B<new> to any' and finally 'any to any'.
If you don't define any rights, or there is no match for a transition,
RT will use the B<DeleteTicket> or B<ModifyTicket> as appropriate.
=head4 Labeling and defining actions
For each transition you can define an action that will be shown in the
UI; each action annotated with a label and an update type.
Each action may provide a default update type, which can be
B<Comment>, B<Respond>, or absent. For example, you may want your
staff to write a reply to the end user when they change status from
B<new> to B<open>, and thus set the update to B<Respond>. Neither
B<Comment> nor B<Respond> are mandatory, and user may leave the
message empty, regardless of the update type.
This configuration can be used to accomplish what
$ResolveDefaultUpdateType was used for in RT 3.8.
Use the following format to define labels and actions of transitions:
default => {
...
actions => [
'new -> open' => { label => 'Open it', update => 'Respond' },
'new -> resolved' => { label => 'Resolve', update => 'Comment' },
'new -> rejected' => { label => 'Reject', update => 'Respond' },
'new -> deleted' => { label => 'Delete' },
'open -> stalled' => { label => 'Stall', update => 'Comment' },
'open -> resolved' => { label => 'Resolve', update => 'Comment' },
'open -> rejected' => { label => 'Reject', update => 'Respond' },
'stalled -> open' => { label => 'Open it' },
'resolved -> open' => { label => 'Re-open', update => 'Comment' },
'rejected -> open' => { label => 'Re-open', update => 'Comment' },
'deleted -> open' => { label => 'Undelete' },
],
...
},
In addition, you may define multiple actions for the same transition.
Alternately, you may use '* -> x' to match more than one transition.
For example:
default => {
...
actions => [
...
'new -> rejected' => { label => 'Reject', update => 'Respond' },
'new -> rejected' => { label => 'Quick Reject' },
...
'* -> deleted' => { label => 'Delete' },
...
],
...
},
=head3 Moving tickets between queues with different lifecycles
Unless there is an explicit mapping between statuses in two different
lifecycles, you can not move tickets between queues with these
lifecycles -- even if both use the exact same set of statuses.
Such a mapping is defined as follows:
__maps__ => {
'from lifecycle -> to lifecycle' => {
'status in left lifecycle' => 'status in right lifecycle',
...
},
...
},
=cut
Set(%Lifecycles,
default => {
initial => [qw(new)], # loc_qw
active => [qw(open stalled)], # loc_qw
inactive => [qw(resolved rejected deleted)], # loc_qw
defaults => {
on_create => 'new',
approved => 'open',
denied => 'rejected',
reminder_on_open => 'open',
reminder_on_resolve => 'resolved',
},
transitions => {
"" => [qw(new open resolved)],
# from => [ to list ],
new => [qw( open stalled resolved rejected deleted)],
open => [qw(new stalled resolved rejected deleted)],
stalled => [qw(new open resolved rejected deleted)],
resolved => [qw(new open stalled rejected deleted)],
rejected => [qw(new open stalled resolved deleted)],
deleted => [qw(new open stalled resolved rejected )],
},
rights => {
'* -> deleted' => 'DeleteTicket',
'* -> *' => 'ModifyTicket',
},
actions => [
'new -> open' => { label => 'Open It', update => 'Respond' }, # loc{label}
'new -> resolved' => { label => 'Resolve', update => 'Comment' }, # loc{label}
'new -> rejected' => { label => 'Reject', update => 'Respond' }, # loc{label}
'new -> deleted' => { label => 'Delete', }, # loc{label}
'open -> stalled' => { label => 'Stall', update => 'Comment' }, # loc{label}
'open -> resolved' => { label => 'Resolve', update => 'Comment' }, # loc{label}
'open -> rejected' => { label => 'Reject', update => 'Respond' }, # loc{label}
'stalled -> open' => { label => 'Open It', }, # loc{label}
'resolved -> open' => { label => 'Re-open', update => 'Comment' }, # loc{label}
'rejected -> open' => { label => 'Re-open', update => 'Comment' }, # loc{label}
'deleted -> open' => { label => 'Undelete', }, # loc{label}
],
},
assets => {
type => "asset",
initial => [
'new' # loc
],
active => [
'allocated', # loc
'in-use' # loc
],
inactive => [
'recycled', # loc
'stolen', # loc
'deleted' # loc
],
defaults => {
on_create => 'new',
},
transitions => {
'' => [qw(new allocated in-use)],
new => [qw(allocated in-use stolen deleted)],
allocated => [qw(in-use recycled stolen deleted)],
"in-use" => [qw(allocated recycled stolen deleted)],
recycled => [qw(allocated)],
stolen => [qw(allocated)],
deleted => [qw(allocated)],
},
rights => {
'* -> *' => 'ModifyAsset',
},
actions => {
'* -> allocated' => {
label => "Allocate" # loc
},
'* -> in-use' => {
label => "Now in-use" # loc
},
'* -> recycled' => {
label => "Recycle" # loc
},
'* -> stolen' => {
label => "Report stolen" # loc
},
},
},
# don't change lifecyle of the approvals, they are not capable to deal with
# custom statuses
approvals => {
initial => [ 'new' ],
active => [ 'open', 'stalled' ],
inactive => [ 'resolved', 'rejected', 'deleted' ],
defaults => {
on_create => 'new',
reminder_on_open => 'open',
reminder_on_resolve => 'resolved',
},
transitions => {
'' => [qw(new open resolved)],
# from => [ to list ],
new => [qw(open stalled resolved rejected deleted)],
open => [qw(new stalled resolved rejected deleted)],
stalled => [qw(new open rejected resolved deleted)],
resolved => [qw(new open stalled rejected deleted)],
rejected => [qw(new open stalled resolved deleted)],
deleted => [qw(new open stalled rejected resolved)],
},
rights => {
'* -> deleted' => 'DeleteTicket',
'* -> rejected' => 'ModifyTicket',
'* -> *' => 'ModifyTicket',
},
actions => [
'new -> open' => { label => 'Open It', update => 'Respond' }, # loc{label}
'new -> resolved' => { label => 'Resolve', update => 'Comment' }, # loc{label}
'new -> rejected' => { label => 'Reject', update => 'Respond' }, # loc{label}
'new -> deleted' => { label => 'Delete', }, # loc{label}
'open -> stalled' => { label => 'Stall', update => 'Comment' }, # loc{label}
'open -> resolved' => { label => 'Resolve', update => 'Comment' }, # loc{label}
'open -> rejected' => { label => 'Reject', update => 'Respond' }, # loc{label}
'stalled -> open' => { label => 'Open It', }, # loc{label}
'resolved -> open' => { label => 'Re-open', update => 'Comment' }, # loc{label}
'rejected -> open' => { label => 'Re-open', update => 'Comment' }, # loc{label}
'deleted -> open' => { label => 'Undelete', }, # loc{label}
],
},
);
=head2 SLA
=over 4
=item C<%ServiceAgreements>
Set( %ServiceAgreements, (
Default => '4h',
QueueDefault => {
'Incident' => '2h',
},
Levels => {
'2h' => { Resolve => { RealMinutes => 60*2 } },
'4h' => { Resolve => { RealMinutes => 60*4 } },
},
));
In this example I<Incident> is the name of the queue, and I<2h> is the name of
the SLA which will be applied to this queue by default.
Each service level can be described using several options:
L<Starts|/"Starts (interval, first business minute)">,
L<Resolve|/"Resolve and Response (interval, no defaults)">,
L<Response|/"Resolve and Response (interval, no defaults)">,
L<KeepInLoop|/"Keep in loop (interval, no defaults)">,
L<OutOfHours|/"OutOfHours (struct, no default)">
and L<ServiceBusinessHours|/"Configuring business hours">.
=over 4
=item Starts (interval, first business minute)
By default when a ticket is created Starts date is set to
first business minute after time of creation. In other
words if a ticket is created during business hours then
Starts will be equal to Created time, otherwise Starts will
be beginning of the next business day.
However, if you provide 24/7 support then you most
probably would be interested in Starts to be always equal
to Created time.
Starts option can be used to adjust behaviour. Format
of the option is the same as format for deadlines which
described later in details. RealMinutes, BusinessMinutes
options and OutOfHours modifiers can be used here like
for any other deadline. For example:
'standard' => {
# give people 15 minutes
Starts => { BusinessMinutes => 15 },
},
You can still use old option StartImmediately to set
Starts date equal to Created date.
Example:
'24/7' => {
StartImmediately => 1,
Response => { RealMinutes => 30 },
},
But it's the same as:
'24/7' => {
Starts => { RealMinutes => 0 },
Response => { RealMinutes => 30 },
},
=item Resolve and Response (interval, no defaults)
These two options define deadlines for resolve of a ticket
and reply to customer(requestors) questions accordingly.
You can define them using real time, business or both. Read more
about the latter L<below|/"Using both Resolve and Response in the same level">.
The Due date field is used to store calculated deadlines.
=over 4
=item Resolve
Defines deadline when a ticket should be resolved. This option is
quite simple and straightforward when used without L</Response>.
Example:
# 8 business hours
'simple' => { Resolve => 60*8 },
...
# one real week
'hard' => { Resolve => { RealMinutes => 60*24*7 } },
=item Response
In many companies providing support service(s) resolve time of a ticket
is less important than time of response to requestors from staff
members.
You can use Response option to define such deadlines. The Due date is
set when a ticket is created, unset when a worker replies, and re-set
when the requestor replies again -- until the ticket is closed, when the
ticket's Due date is unset.
B<NOTE> that this behaviour changes when Resolve and Response options
are combined; see L</"Using both Resolve and Response in the same
level">.
Note that by default, only the requestors on the ticket are considered
"outside actors" and thus require a Response due date; all other email
addresses are treated as workers of the ticket, and thus count as
meeting the SLA. If you'd like to invert this logic, so that the Owner
and AdminCcs are the only worker email addresses, and all others are
external, see the L</AssumeOutsideActor> configuration.
The owner is never treated as an outside actor; if they are also the
requestor of the ticket, it will have no SLA.
If an outside actor replies multiple times, their later replies are
ignored; the deadline is always calculated from the oldest
correspondence from the outside actor.
=item Using both Resolve and Response in the same level
Resolve and Response can be combined. In such case due date is set
according to the earliest of two deadlines and never is dropped to
'not set'.
If a ticket met its Resolve deadline then due date stops "flipping",
is freezed and the ticket becomes overdue. Before that moment when
an inside actor replies to a ticket, due date is changed to Resolve
deadline instead of 'Not Set', as well this happens when a ticket
is closed. So all the time due date is defined.
Example:
'standard delivery' => {
Response => { RealMinutes => 60*1 }, # one hour
Resolve => { RealMinutes => 60*24 }, # 24 real hours
},
A client orders goods and due date of the order is set to the next one
hour, you have this hour to process the order and write a reply.
As soon as goods are delivered you resolve tickets and usually meet
Resolve deadline, but if you don't resolve or user replies then most
probably there are problems with delivery of the goods. And if after
a week you keep replying to the client and always meeting one hour
response deadline that doesn't mean the ticket is not over due.
Due date was frozen 24 hours after creation of the order.
=item Using business and real time in one option
It's quite rare situation when people need it, but we've decided
that business is applied first and then real time when deadline
described using both types of time. For example:
'delivery' => {
Resolve => { BusinessMinutes => 0, RealMinutes => 60*8 },
},
'fast delivery' {
StartImmediately => 1,
Resolve => { RealMinutes => 60*8 },
},
For delivery requests which come into the system during business
hours these levels define the same deadlines, otherwise the first
level set deadline to 8 real hours starting from the next business
day, when tickets with the second level should be resolved in the
next 8 hours after creation.
=back
=item Keep in loop (interval, no defaults)
If response deadline is used then Due date is changed to repsonse
deadline or to "Not Set" when staff replies to a ticket. In some
cases you want to keep requestors in loop and keed them up to date
every few hours. KeepInLoop option can be used to achieve this.
'incident' => {
Response => { RealMinutes => 60*1 }, # one hour
KeepInLoop => { RealMinutes => 60*2 }, # two hours
Resolve => { RealMinutes => 60*24 }, # 24 real hours
},
In the above example Due is set to one hour after creation, reply
of a inside actor moves Due date two hours forward, outside actors'
replies move Due date to one hour and resolve deadine is 24 hours.
=item Modifying Agreements
=over 4
=item OutOfHours (struct, no default)
Out of hours modifier. Adds more real or business minutes to resolve
and/or reply options if event happens out of business hours, read also
</"Configuring business hours"> below.
Example:
'level x' => {
OutOfHours => { Resolve => { RealMinutes => +60*24 } },
Resolve => { RealMinutes => 60*24 },
},
If a request comes into the system during night then supporters have two
hours, otherwise only one.
'level x' => {
OutOfHours => { Response => { BusinessMinutes => +60*2 } },
Resolve => { BusinessMinutes => 60 },
},
Supporters have two additional hours in the morning to deal with bunch
of requests that came into the system during the last night.
=item IgnoreOnStatuses (array, no default)
Allows you to ignore a deadline when ticket has certain status. Example:
'level x' => {
KeepInLoop => { BusinessMinutes => 60, IgnoreOnStatuses => ['stalled'] },
},
In above example KeepInLoop deadline is ignored if ticket is stalled.
B<NOTE>: When a ticket goes from an ignored status to a normal status, the new
Due date is calculated from the last action (reply, SLA change, etc) which fits
the SLA type (Response, Starts, KeepInLoop, etc). This means if a ticket in
the above example flips from stalled to open without a reply, the ticket will
probably be overdue. In most cases this shouldn't be a problem since moving
out of stalled-like statuses is often the result of RT's auto-open on reply
scrip, therefore ensuring there's a new reply to calculate Due from. The
overall effect is that ignored statuses don't let the Due date drift
arbitrarily, which could wreak havoc on your SLA performance.
C<ExcludeTimeOnIgnoredStatuses> option could get around the "probably be
overdue" issue by excluding the time spent on ignored statuses, e.g.
'level x' => {
KeepInLoop => {
BusinessMinutes => 60,
ExcludeTimeOnIgnoredStatuses => 1,
IgnoreOnStatuses => ['stalled'],
},
},
=back
=item Defining service levels per queue
In the config you can set per queue defaults, using:
Set( %ServiceAgreements, (
Default => 'global default level of service',
QueueDefault => {
'queue name' => 'default value for this queue',
...
},
...
));
=item AssumeOutsideActor
When using a L<Response|/"Resolve and Response (interval, no defaults)">
configuration, the due date is unset when anyone who is not a requestor
replies. If it is common for non-requestors to reply to tickets, and
this should I<not> satisfy the SLA, you may wish to set
C<AssumeOutsideActor>. This causes the extension to assume that the
Response SLA has only been met when the owner or AdminCc reply.
Set ( %ServiceAgreements = (
AssumeOutsideActor => 1,
...
));
=back
=cut
Set( %ServiceAgreements, );
=item C<%ServiceBusinessHours>
In the config you can set one or more work schedules, e.g.
Set( %ServiceBusinessHours, (
'Default' => {
... description ...
},
'Support' => {
... description ...
},
'Sales' => {
... description ...
},
));
Read more about how to describe a schedule in L<Business::Hours>.
=over 4
=item Configuring business hours
Each level supports BusinessHours option to specify your own business
hours.
'level x' => {
BusinessHours => 'work just in Monday',
Resolve => { BusinessMinutes => 60 },
},
then L</%ServiceBusinessHours> should have the corresponding definition:
Set( %ServiceBusinessHours, (
'work just in Monday' => {
1 => { Name => 'Monday', Start => '9:00', End => '18:00' },
},
));
Default Business Hours setting is in $ServiceBusinessHours{'Default'}.
=back
=cut
Set( %ServiceBusinessHours, );
=back
=head2 Custom Date Ranges
=over 4
=item C<%CustomDateRanges>
This option lets you declare additional date ranges to be calculated
and displayed in search results. Durations between any two core date
fields, as well as date custom fields, are supported. Each custom
date range is added as an additional display column in the query builder.
You can create basic date calculations via the web UI. SuperUsers can
create them in the main System Configuration section. Individual users
can also create date ranges in the Search options section of user
preferences. More complicated configurations, such as those with
custom code, can be added in your C<RT_SiteConfig.pm> file as described
below.
Business hours are also supported in calculations if you have
L</%ServiceBusinessHours> configured.
Set C<%CustomDateRanges> to a nested structure similar to the following:
Set(%CustomDateRanges,
'RT::Ticket' => {
'Resolution Time' => 'Resolved - Created',
'Downtime' => {
value => 'CF.Recovered - CF.{First Alert}',
business_time => 1,
},
'Time To Beta' => {
value => 'CF.Beta - now',
format => sub {
my ($duration, $beta, $now, $ticket) = @_;
my $days = int($duration / (24*60*60));
if ($days < 0) {
$ticket->loc('[quant,_1,day,days] ago', -$days);
}
else {
$ticket->loc('in [quant,_1,day,days]', $days);
}
},
},
},
);
The first level keys are record types. Each record type's value must be a
hash reference. Each pair in the second-level hash defines a new range. The
key is the range's name (which is displayed to users in the UI), and its
value describes the range and must be either a string or a hashref.
Values that are plain strings simply describe the calculation to be made.
Values that are hashrefs that could include:
=over 4
=item value
A string that describes the calculation to be made.
The calculation is expected to be of the format C<"field - field"> where each
field may be:
=over 4
=item * a core field
For example, L<RT::Ticket> supports: Created, Starts, Started, LastUpdated,
Told or LastContact, Due and Resolved.
=item * a custom field
You may use either C<CF.Name> or C<CF.{Longer Name}> syntax.
=item * the word C<now>
=back
Custom date range calculations are defined using typical math operators with
a space before and after. Subtraction (-) is currently supported.
If either field and its corresponding fallback field(see blow) are both unset,
then nothing will be displayed for that record (and the C<format> code
reference will not be called). If you need additional control over how
results are calculated, see L<docs/customizing/search_result_columns.pod>.
=item from and to
When value is not set, C<from/to> will be used to calculate instead.
Technically, C<Resolved - Created"> is equal to:
{ from => 'Created', to => 'Resolved' }
=item from_fallback and to_fallback
Fallback fields when the main fields are unset, e.g.
{ from => 'CF.{First Alert}',
to => 'CF.Recovered',
to_fallback => 'now',
}
When C<CF.Recovered> is unset, "now" will be used in the calculation.
=item business_time
A boolean value to indicate if it's a business time or not.
When the schedule can't be deducted from corresponding object, the
C<Default> one defined in C<%ServiceBusinessHours> will be used instead.
=item format
A code reference that allows customization of how the duration is displayed
to users. This code reference receives four parameters: the duration (a
number of seconds), the end time (an L<RT::Date> object), the start time
(another L<RT::Date>), and the record itself (which corresponds to the
first-level key; in the example config above, it would be the L<RT::Ticket>
object). The code reference should return the string to be displayed to the
user.
=back
=back
=cut
1;
|