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
|
<?xml version="1.0" encoding="iso-8859-1" ?>
<!--
Possible SubGroups
- Core
- Core::LinkObject
- Core::Log
- Core::PostMaster
- Core::MIME-Viewer
- Core::Package
- Core::Sendmail
- Core::Session
- Core::SpellChecker
- Core::Time
- Core::Web
- Core::PostMaster
- Core::Stats
- Core::Ticket
- Core::TicketFreeText
- Crypt::PGP
- Crypt::SMIME
- Frontend::Agent
- Frontend::Admin::ModuleRegistration
- Frontend::Agent::ModuleRegistration
- Frontend::Agent::ModuleNotify
- Frontend::Agent::NavBarModule
- Frontend::Agent::Preferences
- Frontend::Agent::Ticket::ArticleAttachmentModule
- Frontend::Agent::Ticket::ArticleComposeModule
- Frontend::Agent::Ticket::ArticleViewModule
- Frontend::Agent::Ticket::ArticleViewModulePre
- Frontend::Agent::Ticket::MenuModule
- Frontend::Agent::Ticket::MenuModulePre
- Frontend::Customer
- Frontend::Customer::Auth
- Frontend::Customer::ModuleNotify
- Frontend::Customer::ModuleRegistration
- Frontend::Customer::Preferences
- Frontend::Public
- Frontend::Public::ModuleRegistration
String
<ConfigItem Name="" Required="1" Valid="1">
<Description Lang="en"></Description>
<Description Lang="de"></Description>
<Group>Ticket</Group>
<SubGroup>a</SubGroup>
<Setting>
<String Regex=""></String>
</Setting>
</ConfigItem>
Options (PullDownMenu)
<ConfigItem Name="" Required="1" Valid="1">
<Description Lang="en"></Description>
<Description Lang="de"></Description>
<Group>Ticket</Group>
<SubGroup></SubGroup>
<Setting>
<Option SelectedID="Key">
<Item Key=""></Item>
<Item Key=""></Item>
</Option>
</Setting>
</ConfigItem>
Hash
<ConfigItem Name="" Required="1" Valid="1">
<Description Lang="en"></Description>
<Description Lang="de"></Description>
<Group>Ticket</Group>
<SubGroup></SubGroup>
<Setting>
<Hash>
<Item Key=""></Item>
<Item Key=""></Item>
</Hash>
</Setting>
</ConfigItem>
Array
<ConfigItem Name="" Required="1" Valid="1">
<Description Lang="en"></Description>
<Description Lang="de"></Description>
<Group>Ticket</Group>
<SubGroup></SubGroup>
<Setting>
<Array>
<Item></Item>
<Item></Item>
</Array>
</Setting>
</ConfigItem>
TextArea
<ConfigItem Name="" Required="1" Valid="1">
<Description Lang="en"></Description>
<Description Lang="de"></Description>
<Group>Ticket</Group>
<SubGroup>a</SubGroup>
<Setting>
<TextArea>
use > instead of >
and < instead of <
</TextArea>
</Setting>
</ConfigItem>
TimeVacationDaysOneTime
TimeVacationDays
TimeWorkingHours
-->
<otrs_config version="1.0" init="Framework">
<CVS>$Id: Framework.xml,v 1.80 2005/10/31 14:07:29 martin Exp $</CVS>
<ConfigItem Name="SecureMode" Required="1" Valid="1">
<Description Lang="en">If enabled, the webinstaller (installer.pl) can't be used.</Description>
<Description Lang="de">Wird diese Option aktiviert, kann der Web-Installer (installer.pl) nicht genutzt werden.</Description>
<Group>Framework</Group>
<SubGroup>Core</SubGroup>
<Setting>
<Option SelectedID="0">
<Item Key="0">No</Item>
<Item Key="1">Yes</Item>
</Option>
</Setting>
</ConfigItem>
<ConfigItem Name="ProductName" Required="1" Valid="1">
<Description Lang="en">The name of the application that is shown in the frontend.</Description>
<Description Lang="de">Im WebFrontend angezeigter Softwarename.</Description>
<Group>Framework</Group>
<SubGroup>Core</SubGroup>
<Setting>
<String Regex="">OTRS</String>
</Setting>
</ConfigItem>
<ConfigItem Name="SystemID" Required="1" Valid="1">
<Description Lang="en">The system identifyer. Every ticket number and ID of a http session starts with this number.</Description>
<Description Lang="de">Identifikationsnummer fr das installierte System. Jede Ticketnummer und ID einer http-Session beginnt mit dieser Nummer.</Description>
<Group>Framework</Group>
<SubGroup>Core</SubGroup>
<Setting>
<String Regex="">10</String>
</Setting>
</ConfigItem>
<ConfigItem Name="FQDN" Required="1" Valid="1">
<Description Lang="en">Full qualified domain name of your system.</Description>
<Description Lang="de">Vollstndiger Domain Name des Systems.</Description>
<Group>Framework</Group>
<SubGroup>Core</SubGroup>
<Setting>
<String Regex="">yourhost.example.com</String>
</Setting>
</ConfigItem>
<ConfigItem Name="HttpType" Required="1" Valid="1">
<Description Lang="en">If you want to use https protocoll instead of plain http, specify it here.</Description>
<Description Lang="de">Legen Sie hier fest, ob das http- oder https-Protokoll innerhalb des Systems genutzt werden soll.</Description>
<Group>Framework</Group>
<SubGroup>Core</SubGroup>
<Setting>
<Option SelectedID="http">
<Item Key="http">http</Item>
<Item Key="https">https</Item>
</Option>
</Setting>
</ConfigItem>
<ConfigItem Name="ScriptAlias" Required="1" Valid="1">
<Description Lang="en">Prefix to index.pl, like it is specifyed in your webserver configuration.</Description>
<Description Lang="de">ScriptAlias zur Datei index.pl, wie in der Webserver-Konfiguration festgelegt.</Description>
<Group>Framework</Group>
<SubGroup>Core</SubGroup>
<Setting>
<String Regex="">otrs/</String>
</Setting>
</ConfigItem>
<ConfigItem Name="AdminEmail" Required="1" Valid="1">
<Description Lang="en">Mailaddress of the system administrator.</Description>
<Description Lang="de">Mailadresse des Systemadministrators.</Description>
<Group>Framework</Group>
<SubGroup>Core</SubGroup>
<Setting>
<String Regex="">admin@example.com</String>
</Setting>
</ConfigItem>
<ConfigItem Name="Organization" Required="1" Valid="1">
<Description Lang="en">If an organization or company name is specifyed, every outgoing message will contain a X-header entry with this string.</Description>
<Description Lang="de">Firma bzw. Name der Organisation. Jede ausgehende Nachricht wird mit einem X-Header-Eintrag fr die Organisation und dem angegebenen Namen als Wert versehen.</Description>
<Group>Framework</Group>
<SubGroup>Core</SubGroup>
<Setting>
<String Regex="">Example Company</String>
</Setting>
</ConfigItem>
<ConfigItem Name="DefaultCharset" Required="1" Valid="1">
<Description Lang="en">Default frontend charset. "utf-8" is a good choice for envirorments with many possible charsetss. Specify another charset (e.g "iso-8859-1"), if only this specific charset is needed.</Description>
<Description Lang="de">Standard-Zeichensatz des Frontends. Whlen Sie "utf-8", wenn verschiedene Zeichenstze fr die Anzeige bentigt werden. Wir nur ein Zeichensatz eingesetzt (z.B. "iso-8859-1"), nutzen Sie bitte diese Einstellung.</Description>
<Group>Framework</Group>
<SubGroup>Core</SubGroup>
<Setting>
<Option SelectedID="iso-8859-1">
<Item Key="iso-8859-1">iso-8859-1</Item>
<Item Key="iso-8859-15">iso-8859-15</Item>
<Item Key="iso-8859-2">iso-8859-2</Item>
<Item Key="iso-8859-3">iso-8859-3</Item>
<Item Key="iso-8859-4">iso-8859-4</Item>
<Item Key="iso-8859-5">iso-8859-5</Item>
<Item Key="iso-8859-7">iso-8859-7</Item>
<Item Key="iso-8859-9">iso-8859-9</Item>
<Item Key="utf-8">utf-8</Item>
</Option>
</Setting>
</ConfigItem>
<ConfigItem Name="DefaultLanguage" Required="1" Valid="1">
<Description Lang="en">The default frontend language. Possible values are bg, cz, de, en, es, fi, fr, hu, it, nb, nl, pl, pt, ru, th and sv.</Description>
<Description Lang="de">Standard Frontend Sprache. Mgliche Werte sind bg, cz, de, en, es, fi, fr, hu, it, nb, nl, pl, pt, ru, th and sv.</Description>
<Group>Framework</Group>
<SubGroup>Core</SubGroup>
<Setting>
<String Regex="^(..|.._..)$">en</String>
</Setting>
</ConfigItem>
<ConfigItem Name="DefaultUsedLanguages" Required="1" Valid="1">
<Description Lang="en">Shortname for languages (short name = long name and file).</Description>
<Description Lang="de">Abkrzung fr die Zuordnung der verschiedenen Sprachen (Abkrzung = Vollstndiger Name und Datei).</Description>
<Group>Framework</Group>
<SubGroup>Core</SubGroup>
<Setting>
<Hash>
<Item Key="en">English</Item>
<Item Key="de">Deutsch</Item>
<Item Key="nl">Nederlands</Item>
<Item Key="fr">Fran&ccedil;ais</Item>
<Item Key="bg">Bulgarian</Item>
<Item Key="fi">Suomi</Item>
<Item Key="es">Espa&ntilde;ol</Item>
<Item Key="pt_BR">Portugu&ecirc;s Brasileiro</Item>
<Item Key="pt">Portugu&ecirc;s</Item>
<Item Key="it">Italiano</Item>
<Item Key="ru">Russian</Item>
<Item Key="cz">Czech</Item>
<Item Key="pl">Polski</Item>
<Item Key="nb_NO">Norsk bokm&aring;l</Item>
<Item Key="sv">Svenska</Item>
<Item Key="hu">Hungarian</Item>
<Item Key="zh_CN">Traditional Chinese</Item>
</Hash>
</Setting>
</ConfigItem>
<ConfigItem Name="DefaultTheme" Required="1" Valid="1">
<Description Lang="en">Default frontend HTML theme (Standard or Lite).</Description>
<Description Lang="de">Standard Design der Weboberflche (Standard oder Lite).</Description>
<Group>Framework</Group>
<SubGroup>Core</SubGroup>
<Setting>
<String Regex="">Standard</String>
</Setting>
</ConfigItem>
<ConfigItem Name="DefaultTheme::HostBased" Required="0" Valid="0">
<Description Lang="en">Used default frontend HTML theme based on used web server host name (regexp possible in key).</Description>
<Description Lang="de">Benutzer HTML Weboberflche basierend am Webserver Hostnamen (regexp ist im Schlssel mglich).</Description>
<Group>Framework</Group>
<SubGroup>Core</SubGroup>
<Setting>
<Hash>
<Item Key="host1\.example\.com">SomeTheme1</Item>
<Item Key="host2\.example\.com">SomeTheme2</Item>
</Hash>
</Setting>
</ConfigItem>
<ConfigItem Name="DefaultViewNewLine" Required="1" Valid="1">
<Description Lang="en">Automated line break in text messages after that count of characters.</Description>
<Description Lang="de">Nach dieser Anzahl an Zeichen wird in Textnachrichten automatisch eine neue Zeile begonnen.</Description>
<Group>Framework</Group>
<SubGroup>Core::Web</SubGroup>
<Setting>
<String Regex="^[0-9]{1,3}$">85</String>
</Setting>
</ConfigItem>
<ConfigItem Name="DefaultPreViewLines" Required="1" Valid="1">
<Description Lang="en">Count of lines that are displayed in the preview for messages (e.g. for tickets in the QueueView).</Description>
<Description Lang="de">Anzhal der Zeilen bei der Vorschau von Textnachrichten (z.B. bei Tickets in der Queue-Ansicht).</Description>
<Group>Framework</Group>
<SubGroup>Core::Web</SubGroup>
<Setting>
<String Regex="^[0-9]{1,3}$">18</String>
</Setting>
</ConfigItem>
<ConfigItem Name="DefaultViewLines" Required="1" Valid="1">
<Description Lang="en">Count of lines that are displayed in text messages (e.g. ticket lines in the QueueZoom).</Description>
<Description Lang="de">Anzahl der Zeilen fr Textnachricht (z.B. im QueueZoom).</Description>
<Group>Framework</Group>
<SubGroup>Core::Web</SubGroup>
<Setting>
<String Regex="^[0-9]{1,5}$">6000</String>
</Setting>
</ConfigItem>
<ConfigItem Name="TimeInputFormat" Required="1" Valid="1">
<Description Lang="en">Used date input format in forms (option or input fields).</Description>
<Description Lang="de">Benutztes Datumseingabeformat in Formularen (Auswahl- ode Eingabefelder).</Description>
<Group>Framework</Group>
<SubGroup>Core::Time</SubGroup>
<Setting>
<Option SelectedID="Option">
<Item Key="Option">Option</Item>
<Item Key="Input">Input</Item>
</Option>
</Setting>
</ConfigItem>
<ConfigItem Name="TimeCalendarLookup" Required="1" Valid="1">
<Description Lang="en">Enable a calender lookup window on date selections.</Description>
<Description Lang="de">Aktivieren eines Kalender-Fensters bei Datumsauswahlen.</Description>
<Group>Framework</Group>
<SubGroup>Core::Time</SubGroup>
<Setting>
<Option SelectedID="1">
<Item Key="0">No</Item>
<Item Key="1">Yes</Item>
</Option>
</Setting>
</ConfigItem>
<ConfigItem Name="TimeShowAlwaysLong" Required="1" Valid="1">
<Description Lang="en">Show time in long (days, hours, minutes) or short (days, hours) format.</Description>
<Description Lang="de">Zeitangaben immer im ausfhrlichen (Tag, Stunden, Minuten) oder im kurzem Format (Tag, Stunden) anzeigen.</Description>
<Group>Framework</Group>
<SubGroup>Core::Time</SubGroup>
<Setting>
<Option SelectedID="0">
<Item Key="0">No</Item>
<Item Key="1">Yes</Item>
</Option>
</Setting>
</ConfigItem>
<ConfigItem Name="AttachmentDownloadType" Required="1" Valid="1">
<Description Lang="en">Show the attachments of a ticket in the browser (inline) or just make them downloadable (attachment).</Description>
<Description Lang="de">Anzeige von Dateianhnge fr Tickets im Browser (inline) oder lediglich als Download anbieten (attachment).</Description>
<Group>Framework</Group>
<SubGroup>Core::Web</SubGroup>
<Setting>
<Option SelectedID="attachment">
<Item Key="inline">inline</Item>
<Item Key="attachment">attachment</Item>
</Option>
</Setting>
</ConfigItem>
<ConfigItem Name="CheckMXRecord" Required="1" Valid="1">
<Description Lang="en">Check the MX record of email addresses before sending a mail?</Description>
<Description Lang="de">Soll der MX-Record von Mailadressen vor dem Versenden berprft werden?</Description>
<Group>Framework</Group>
<SubGroup>Core</SubGroup>
<Setting>
<Option SelectedID="1">
<Item Key="0">No</Item>
<Item Key="1">Yes</Item>
</Option>
</Setting>
</ConfigItem>
<ConfigItem Name="CheckEmailAddresses" Required="1" Valid="1">
<Description Lang="en">Check the syntax of email addresses?</Description>
<Description Lang="de">Sollen Mailadressen auf ihre korrekte Syntax berprft werden?</Description>
<Group>Framework</Group>
<SubGroup>Core</SubGroup>
<Setting>
<Option SelectedID="1">
<Item Key="0">No</Item>
<Item Key="1">Yes</Item>
</Option>
</Setting>
</ConfigItem>
<ConfigItem Name="CheckEmailValidAddress" Required="1" Valid="1">
<Description Lang="en">Regex for email addresses, that aren't syntacticaly valid but necesary for the system, e.g. "root@localhost".</Description>
<Description Lang="de">Regulrer Ausdruck fr syntaktisch nicht korrekte Mailadressen, die aber trotzdem im System verwendet werden sollen, z.B. "root@localhost".</Description>
<Group>Framework</Group>
<SubGroup>Core</SubGroup>
<Setting>
<String Regex="">^(root@localhost|admin@localhost)$</String>
</Setting>
</ConfigItem>
<ConfigItem Name="CheckEmailInvalidAddress" Required="1" Valid="1">
<Description Lang="en">Regex of not allowed email addresses.</Description>
<Description Lang="de">Regulrer Ausdruck fr nicht zulssige Mailadressen.</Description>
<Group>Framework</Group>
<SubGroup>Core</SubGroup>
<Setting>
<String Regex="">@(aa|aaa|aaaa|aaaaa|abc|any|anywhere|anonymous|bar|demo|example|foo|hello|hallo|me|nospam|nowhere|null|some|somewhere|test|teste.|there|user|xx|xxx|xxxx)\.(..|...)$</String>
</Setting>
</ConfigItem>
<ConfigItem Name="LogModule" Required="1" Valid="1">
<Description Lang="en">Log module for the system. "File" writes all messages in a given logfile, "SysLog" uses the syslog daemon of the system, e.g. syslogd.</Description>
<Description Lang="de">Logmodul fr das System? "File" schreibt in eine anzugebende Datei, "SysLog" logt mit Hilfe des systemspezifischen Logdaemons, z.B. syslogd.</Description>
<Group>Framework</Group>
<SubGroup>Core::Log</SubGroup>
<Setting>
<Option Location="Kernel/System/Log/*.pm" SelectedID="Kernel::System::Log::SysLog"></Option>
</Setting>
</ConfigItem>
<ConfigItem Name="LogModule::SysLog::Facility" Required="1" Valid="1">
<Description Lang="en">If "SysLog" was selected for LogModule, you can specify a special log facility.</Description>
<Description Lang="de">Wenn fr LogModule der Wert "SysLog" ausgewhlt wurde, kann hier ein spezielles Log-Facility angegeben werden.</Description>
<Group>Framework</Group>
<SubGroup>Core::Log</SubGroup>
<Setting>
<String Regex="">user</String>
</Setting>
</ConfigItem>
<ConfigItem Name="LogModule::SysLog::Charset" Required="1" Valid="1">
<Description Lang="en">If "SysLog" was selected for LogModule, you can specify the charset that should be used for loggin.</Description>
<Description Lang="de">Wenn "SysLog" fr LogModule ausgewhlt wurde, kann hier der Zeichensatz festgelegt werden, der fr das Schreiben der Logeintrge benutzt werden soll.</Description>
<Group>Framework</Group>
<SubGroup>Core::Log</SubGroup>
<Setting>
<Option SelectedID="iso-8859-1">
<Item Key="iso-8859-1">iso-8859-1</Item>
<Item Key="iso-8859-15">iso-8859-15</Item>
<Item Key="utf-8">utf-8</Item>
</Option>
</Setting>
</ConfigItem>
<ConfigItem Name="LogModule::LogFile" Required="1" Valid="1">
<Description Lang="en">If "file" was selected for LogModule, you have to specify a logfile. The file will be created by the system, if it doesn't exist.</Description>
<Description Lang="de">Wenn "File" fr LogModul ausgewhlt wurde, muss eine Logdatei angegeben werden. Diese wird automatisch vom System angelegt, falls sie noch nicht existiert.</Description>
<Group>Framework</Group>
<SubGroup>Core::Log</SubGroup>
<Setting>
<String Regex="">/tmp/otrs.log</String>
</Setting>
</ConfigItem>
<ConfigItem Name="LogModule::LogFile::Date" Required="1" Valid="1">
<Description Lang="en">Would you like to add a time stamp as sufix for every log entry?</Description>
<Description Lang="de">Soll fr jeden Logeintrag das Datum und die aktuelle Zeit mit protokolliert werden?</Description>
<Group>Framework</Group>
<SubGroup>Core::Log</SubGroup>
<Setting>
<Option SelectedID="0">
<Item Key="0">No</Item>
<Item Key="1">Yes</Item>
</Option>
</Setting>
</ConfigItem>
<ConfigItem Name="LogSystemCacheSize" Required="0" Valid="0">
<Description Lang="en">Cache size for admin system log (in KBytes).</Description>
<Description Lang="de">Gre des Caches fr Admin System Log (in KBytes).</Description>
<Group>Framework</Group>
<SubGroup>Core::Log</SubGroup>
<Setting>
<String Regex="^[0-9]{1,6}$">4096</String>
</Setting>
</ConfigItem>
<ConfigItem Name="SendmailModule" Required="1" Valid="1">
<Description Lang="en">Module to send E-Mails. "Sendmail" directly uses the sendmail binary of your operating system. "SMTP" uses a specifyed mailserver.</Description>
<Description Lang="de">Modul zum Versenden von Mails. "Sendmail" verwendet das sendmail-Binary Ihres Betriebssystems. "SMTP" versendet die Nachrichten ber den dafr vorgesehenen Mailserver.</Description>
<Group>Framework</Group>
<SubGroup>Core::Sendmail</SubGroup>
<Setting>
<Option Location="Kernel/System/Email/*.pm" SelectedID="Kernel::System::Email::Sendmail"></Option>
</Setting>
</ConfigItem>
<ConfigItem Name="SendmailModule::CMD" Required="1" Valid="1">
<Description Lang="en">If "Sendmail" was selected for SendmailModule, you have to specify the location of your sendmail binary and the needed options.</Description>
<Description Lang="de">Wenn "Sendmail" als SendmailModule ausgewhlt wurde, mssen Sie dem System den Pfad zu Ihrem sendmail-Binary und die bentigten Optionen mitteilen.</Description>
<Group>Framework</Group>
<SubGroup>Core::Sendmail</SubGroup>
<Setting>
<String Regex="">/usr/sbin/sendmail -i -f</String>
</Setting>
</ConfigItem>
<ConfigItem Name="SendmailModule::Host" Required="1" Valid="1">
<Description Lang="en">If "SMTP" was selected for SendmailModule, you have to specify the mailhost, that sends out the mails.</Description>
<Description Lang="de">Wenn Sie fr SendmailModule "SMTP" ausgwhlt haben, mssen Sie hier den Mailserver angeben, der zum Versenden von Nachrichten genutzt werden soll.</Description>
<Group>Framework</Group>
<SubGroup>Core::Sendmail</SubGroup>
<Setting>
<String Regex="">mail.example.com</String>
</Setting>
</ConfigItem>
<ConfigItem Name="SendmailModule::Port" Required="0" Valid="0">
<Description Lang="en">If "SMTP" was selected for SendmailModule, specify the port where your mailserver is listening for incoming connections.</Description>
<Description Lang="de">Wenn Sie fr SendmailModule den Wert "SMTP" ausgewhlt haben, knnen Sie hier den Port angeben, auf dem Ihr Mailserver Mails entgegen nimmt.</Description>
<Group>Framework</Group>
<SubGroup>Core::Sendmail</SubGroup>
<Setting>
<String Regex="^[0-9]{1,6}$">25</String>
</Setting>
</ConfigItem>
<ConfigItem Name="SendmailModule::AuthUser" Required="0" Valid="0">
<Description Lang="en">If "SMTP" was selected for SendmailModule and you need to authenticate to your mailserver, specify the username.</Description>
<Description Lang="de">Wenn Sie fr SendmailModule den Wert "SMTP" ausgewhlt haben und sich an Ihrem Mailserver anmelden mssen, geben Sie hier bitte den Benutzernamen fr die Authentifizierung an.</Description>
<Group>Framework</Group>
<SubGroup>Core::Sendmail</SubGroup>
<Setting>
<String Regex="">MailserverLogin</String>
</Setting>
</ConfigItem>
<ConfigItem Name="SendmailModule::AuthPassword" Required="0" Valid="0">
<Description Lang="en">If "SMTP" was selected for SendmailModule and you need to authenticate to your mailserver, specify the password.</Description>
<Description Lang="de">Wenn Sie fr SendmailModule den Wert "SMTP" ausgewhlt haben und sich an Ihrem Mailserver anmelden mssen, geben Sie hier das Passwort fr die Authentifizierung an.</Description>
<Group>Framework</Group>
<SubGroup>Core::Sendmail</SubGroup>
<Setting>
<String Regex="">MailserverPassword</String>
</Setting>
</ConfigItem>
<ConfigItem Name="SendmailBcc" Required="0" Valid="1">
<Description Lang="en">Send all outgoing email via bcc to the specifyed address. Please use this only for backup reasons!</Description>
<Description Lang="de">Alle ausgehenden Nachrichten werden via BCC ('Blind Copy') an die angegebene Adresse gesendet. Bitte nutzen Sie diese Funktionalitt nur aus Grnden der Datensicherung.</Description>
<Group>Framework</Group>
<SubGroup>Core::Sendmail</SubGroup>
<Setting>
<String Regex=""></String>
</Setting>
</ConfigItem>
<ConfigItem Name="SendmailNotificationEnvelopeFrom" Required="0" Valid="0">
<Description Lang="en">If set, this address is used as envelope
from header in outgoing notifications. If no address is specifyed, the envelope from header is empty.</Description>
<Description Lang="de">Die hier angegebene Adresse wird fr
ausgehende Benachrichtigungen als envelope from Header genutzt. Wird keine Adresse angegeben, bleibt der envelope from Header leer</Description>
<Group>Framework</Group>
<SubGroup>Core::Sendmail</SubGroup>
<Setting>
<String Regex=""></String>
</Setting>
</ConfigItem>
<ConfigItem Name="LoginURL" Required="0" Valid="0">
<Description Lang="en">Alternate URL, where the login link refers to.</Description>
<Description Lang="de">Alternative URL, auf die der Link fr die Anmeldung am System verweist.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent</SubGroup>
<Setting>
<String Regex="">http://host.example.com/login.html</String>
</Setting>
</ConfigItem>
<ConfigItem Name="LogoutURL" Required="0" Valid="0">
<Description Lang="en">Alternate URL, where the logout link refers to.</Description>
<Description Lang="de">Alternative URL, auf die der Linkk fr die Abmeldung vom System verweist.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent</SubGroup>
<Setting>
<String Regex="">http://host.example.com/thanks-for-using-otrs.html</String>
</Setting>
</ConfigItem>
<ConfigItem Name="UserSyncLDAPMap" Required="0" Valid="0">
<Description Lang="en">If "LDAP" was selected for AuthModule, you can specify attributes for user LDAP sync on login.</Description>
<Description Lang="de">Wenn "LDAP" als AuthModule ausgewhlt wurde, knnen hier Attribute zur Syncronisation nach dem Login angegeben werden.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent::Auth::LDAP</SubGroup>
<Setting>
<Hash>
<Item Key="Firstname">givenName</Item>
<Item Key="Lastname">sn</Item>
<Item Key="Email">mail</Item>
</Hash>
</Setting>
</ConfigItem>
<ConfigItem Name="UserSyncLDAPGroups" Required="0" Valid="0">
<Description Lang="en">If "LDAP" was selected for AuthModule, you can specify inital user groups for first login.</Description>
<Description Lang="de">Wenn "LDAP" als AuthModule ausgewhlt wurde, knnen hier initiale Benutzergruppen definiert werden.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent::Auth::LDAP</SubGroup>
<Setting>
<Array>
<Item>users</Item>
</Array>
</Setting>
</ConfigItem>
<ConfigItem Name="PreApplicationModule" Required="0" Valid="0">
<Description Lang="en">This module is usefull to load some specific user options or to redirect not accept new application news. For example: Kernel::Modules::AgentWorkingRoleSelection or Kernel::Modules::AgentInfo</Description>
<Description Lang="de">Mit Hilfe dieses Moduls knnen bestimmt Benutzeroptionen geladen oder Neuigkeiten angezeigt werden. Z. B. Kernel::Modules::AgentWorkingRoleSelection oder Kernel::Modules::AgentInfo</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent</SubGroup>
<Setting>
<String Regex="">Kernel::Modules::AgentInfo</String>
</Setting>
</ConfigItem>
<ConfigItem Name="InfoKey" Required="0" Valid="0">
<Description Lang="en">Key to check with Kernel::Modules::AgentInfo module. If this user preferences key is true, then the message is accepted by the system.</Description>
<Description Lang="de">Schlssel, der mit Hilfe des Moduls Kernel::Modules::AgentInfo berprft wird. Wird dieser Schlssel angegeben, wird auch die Nachricht akzeptiert.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent</SubGroup>
<Setting>
<String Regex="">wpt22</String>
</Setting>
</ConfigItem>
<ConfigItem Name="InfoFile" Required="0" Valid="0">
<Description Lang="en">File that is displayed, if located under Kernel/Output/HTML/Standard/AgentInfo.dtl.</Description>
<Description Lang="de">Datei, die mit Hilfe des Moduls Kernel/Output/HTML/Standard/AgentInfo.dtl angezeigt werden soll.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent</SubGroup>
<Setting>
<String Regex="">AgentInfo</String>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::NotifyModule###1-CharsetCheck" Required="1" Valid="1">
<Description Lang="en">Module to inform agents via the agent interface about the used charset. A notification is displayed, if the default charset is not used, e.g. in tickets.</Description>
<Description Lang="de">Modul, welches die Agents innerhalb des Agent-Interfaces ber den benutzten Zeichensatz informiert. Es wird ein Hinweis ausgegeben, wenn z.B. ein Ticket mit einem anderen als den Standard-Zeichensatz angezeigt wird.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent::ModuleNotify</SubGroup>
<Setting>
<Hash>
<Item Key="Module">Kernel::Output::HTML::NotificationCharsetCheck</Item>
</Hash>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::NotifyModule###2-UID-Check" Required="1" Valid="1">
<Description Lang="en">Module to display a notification in the agent interface, if the system is used by the admin user (normaly you shouldn't work as admin).</Description>
<Description Lang="de">Modul zur Ausgabe eines Hinweises, wenn als Admin-Benutzer im System gearbeitet wird (Normalerweise sollte nicht als Administrator gearbeitet werden).</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent::ModuleNotify</SubGroup>
<Setting>
<Hash>
<Item Key="Module">Kernel::Output::HTML::NotificationUIDCheck</Item>
</Hash>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::NotifyModule###3-ShowAgentOnline" Required="0" Valid="0">
<Description Lang="en">Module to show currently logged in agents in the agent interface.</Description>
<Description Lang="de">Mit diesem Modul knnen andere, am System angemeldete Agents innerhalb des Agent-Interfaces angezeigt werden.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent::ModuleNotify</SubGroup>
<Setting>
<Hash>
<Item Key="Module">Kernel::Output::HTML::NotificationAgentOnline</Item>
</Hash>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::NotifyModule###4-ShowCustomerOnline" Required="0" Valid="0">
<Description Lang="en">Module to show currently loged in customers in the agent interface.</Description>
<Description Lang="de">Mit diesem Modul knnen die am System angemeldete Kunden innerhalb des Agent-Interfaces angezeigt werden.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent::ModuleNotify</SubGroup>
<Setting>
<Hash>
<Item Key="Module">Kernel::Output::HTML::NotificationCustomerOnline</Item>
</Hash>
</Setting>
</ConfigItem>
<ConfigItem Name="SessionModule" Required="1" Valid="1">
<Description Lang="en">Module to store the session data. Advantage of "DB" is that you can split the frontend server from the db server. "FS" or "IPC" is much faster.</Description>
<Description Lang="de">Modul zum Speichern der Session-Daten. "DB" hat den Vorteil, dass die Web-Oberflche und die Datenbank auf verschiedenen Maschinen installiert werden kann, "FS" oder "IPC" sind hingegen viel schneller.</Description>
<Group>Framework</Group>
<SubGroup>Core::Session</SubGroup>
<Setting>
<Option Location="Kernel/System/AuthSession/*.pm" SelectedID="Kernel::System::AuthSession::DB"></Option>
</Setting>
</ConfigItem>
<ConfigItem Name="SessionName" Required="1" Valid="1">
<Description Lang="en">Name of the session key. E.g. Session, SessionID, OTRS.</Description>
<Description Lang="de">Name der Session-Kennung. Z.B. Session, SessionID, OTRS.</Description>
<Group>Framework</Group>
<SubGroup>Core::Session</SubGroup>
<Setting>
<String Regex="">Session</String>
</Setting>
</ConfigItem>
<ConfigItem Name="SessionCheckRemoteIP" Required="1" Valid="1">
<Description Lang="en">If the application is used for example via a proxy farm or a dialup connection, the remote ip address is mostly different for the requests. Turn of this check, if you are in this situation.</Description>
<Description Lang="de">Wird das System z.B ber eine Proxy-Farm oder ber eine Einwhlverbindung angesprochen, kann sich die IP-Adresse fr die einzelnen Anfragen oft ndern. Schalten Sie in diesem Fall diese berprfung ab.</Description>
<Group>Framework</Group>
<SubGroup>Core::Session</SubGroup>
<Setting>
<Option SelectedID="1">
<Item Key="0">No</Item>
<Item Key="1">Yes</Item>
</Option>
</Setting>
</ConfigItem>
<ConfigItem Name="SessionDeleteIfNotRemoteID" Required="1" Valid="1">
<Description Lang="en">Delete a session, if the session id is used with an invalied remote IP?</Description>
<Description Lang="de">Session bei falscher IP Adresse lschen?</Description>
<Group>Framework</Group>
<SubGroup>Core::Session</SubGroup>
<Setting>
<Option SelectedID="1">
<Item Key="0">No</Item>
<Item Key="1">Yes</Item>
</Option>
</Setting>
</ConfigItem>
<ConfigItem Name="SessionMaxTime" Required="1" Valid="1">
<Description Lang="en">Maximal valid time for a session id (in seconds).</Description>
<Description Lang="de">Gltigkeitsdauer einer Session (in Sekunden).</Description>
<Group>Framework</Group>
<SubGroup>Core::Session</SubGroup>
<Setting>
<String Regex="">36000</String>
</Setting>
</ConfigItem>
<ConfigItem Name="SessionMaxIdleTime" Required="1" Valid="1">
<Description Lang="en">A session will be killed and the user will be loged out after this time of inactifity (in seconds).</Description>
<Description Lang="de">Eine Session wird beendet und der Benutzer automatisch abgemeldet, wenn er fr die hier angegebene Zeit in Sekunden inaktiv war (in Sekunden).</Description>
<Group>Framework</Group>
<SubGroup>Core::Session</SubGroup>
<Setting>
<String Regex="^[0-9]{1,6}$">18000</String>
</Setting>
</ConfigItem>
<ConfigItem Name="SessionDeleteIfTimeToOld" Required="1" Valid="1">
<Description Lang="en">Delete requested sessions if they are timed out?</Description>
<Description Lang="de">Sollen Anfragen fr Sessions automatisch gelscht werden, wenn diese Sessions bereits schon lange abgelaufen sind?</Description>
<Group>Framework</Group>
<SubGroup>Core::Session</SubGroup>
<Setting>
<Option SelectedID="1">
<Item Key="0">No</Item>
<Item Key="1">Yes</Item>
</Option>
</Setting>
</ConfigItem>
<ConfigItem Name="SessionUseCookie" Required="1" Valid="1">
<Description Lang="en">Should the session management use html cookies? If html cookies are disabled or if the client browser disabled html cookies, then the system will work as usual and append the session id to the links.</Description>
<Description Lang="de">Sessionmanagement mit Cookies? Wenn Cookies deaktiviert sind oder werden vom verwendeten Browser keine Cookies untersttzt, wird die SessionID automatisch an Links angehngt.</Description>
<Group>Framework</Group>
<SubGroup>Core::Session</SubGroup>
<Setting>
<Option SelectedID="1">
<Item Key="0">No</Item>
<Item Key="1">Yes</Item>
</Option>
</Setting>
</ConfigItem>
<ConfigItem Name="SessionUseCookieAfterBrowserClose" Required="1" Valid="1">
<Description Lang="en">Store cookies after the browser has ben closed?</Description>
<Description Lang="de">Cookies nach dem Schlieen des Browsers nicht lschen?</Description>
<Group>Framework</Group>
<SubGroup>Core::Session</SubGroup>
<Setting>
<Option SelectedID="0">
<Item Key="0">No</Item>
<Item Key="1">Yes</Item>
</Option>
</Setting>
</ConfigItem>
<ConfigItem Name="SessionDir" Required="1" Valid="1">
<Description Lang="en">If "FS" was selected for SessionModule you have to specify a directory where the session data will be stored.</Description>
<Description Lang="de">Wenn "FS" fr SessionModule ausgewhlt wurde, muss ein Verzeichnis zum Zwischenspeichern der Session-Daten angegeben werden.</Description>
<Group>Framework</Group>
<SubGroup>Core::Session</SubGroup>
<Setting>
<String Regex=""><OTRS_CONFIG_Home>/var/sessions</String>
</Setting>
</ConfigItem>
<ConfigItem Name="SessionTable" Required="1" Valid="1">
<Description Lang="en">If "DB" was selected for SessionModule, you have to specify a table in database where session data will be stored.</Description>
<Description Lang="de">Wenn "DB" als SessionModule ausgewhlt wurde, muss eine Tabelle in der Datenbank zum Speichern der Session-Daten, angegeben werden.</Description>
<Group>Framework</Group>
<SubGroup>Core::Session</SubGroup>
<Setting>
<String Regex="">sessions</String>
</Setting>
</ConfigItem>
<ConfigItem Name="SessionTableID" Required="1" Valid="1">
<Description Lang="en">If "DB" was selected for SessionModule, you have to specify a column for ID in session table.</Description>
<Description Lang="de">Wenn "DB" als SessionModule ausgewhlt wurde, muss ein Feld fr die ID innerhalb der Tabelle fr die Sessions angegeben werden.</Description>
<Group>Framework</Group>
<SubGroup>Core::Session</SubGroup>
<Setting>
<String Regex="">session_id</String>
</Setting>
</ConfigItem>
<ConfigItem Name="SessionTableValue" Required="1" Valid="1">
<Description Lang="en">If "DB" was selected for SessionModule, you have to specify a column for the values in session table.</Description>
<Description Lang="de">Wenn "DB" als SessionModule ausgewhlt wurde, muss ein Feld fr die Werte innerhalb der Session-Tabelle angegeben werden.</Description>
<Group>Framework</Group>
<SubGroup>Core::Session</SubGroup>
<Setting>
<String Regex="">session_value</String>
</Setting>
</ConfigItem>
<ConfigItem Name="TimeZone" Required="0" Valid="0">
<Description Lang="en">Set the system time zone (required a system with GMT as system time). Otherwise this is a diff time to the local time.</Description>
<Description Lang="de">Einstellen der Zeitzone. Standardmig wird die lokale Systemzeit verwendet, (+ / - 0).</Description>
<Group>Framework</Group>
<SubGroup>Core::Time</SubGroup>
<Setting>
<Option SelectedID="+0">
<Item Key="+0">+0</Item>
<Item Key="+1">+1</Item>
<Item Key="+2">+2</Item>
<Item Key="+3">+3</Item>
<Item Key="+4">+4</Item>
<Item Key="+5">+5</Item>
<Item Key="+6">+6</Item>
<Item Key="+7">+7</Item>
<Item Key="+8">+8</Item>
<Item Key="+9">+9</Item>
<Item Key="+10">+10</Item>
<Item Key="+11">+11</Item>
<Item Key="+12">+12</Item>
<Item Key="-1">-1</Item>
<Item Key="-2">-2</Item>
<Item Key="-3">-3</Item>
<Item Key="-4">-4</Item>
<Item Key="-5">-5</Item>
<Item Key="-6">-6</Item>
<Item Key="-7">-7</Item>
<Item Key="-8">-8</Item>
<Item Key="-9">-9</Item>
<Item Key="-10">-10</Item>
<Item Key="-11">-11</Item>
<Item Key="-12">-12</Item>
</Option>
</Setting>
</ConfigItem>
<ConfigItem Name="TimeVacationDays" Required="1" Valid="1">
<Description Lang="en">Add your permanent vacation days.</Description>
<Description Lang="de">Hinterlegen Sie hier Ihre permanenten Freizeit-Tage im System.</Description>
<Group>Framework</Group>
<SubGroup>Core::Time</SubGroup>
<Setting>
<TimeVacationDays>
<Item Month="1" Day="1">New Year's Eve!</Item>
<Item Month="5" Day="1">1 St. May</Item>
<Item Month="12" Day="24">Christmas</Item>
<Item Month="12" Day="25">First Christmas Day</Item>
<Item Month="12" Day="26">Second Christmas Day</Item>
<Item Month="12" Day="31">Silvester</Item>
</TimeVacationDays>
</Setting>
</ConfigItem>
<ConfigItem Name="TimeVacationDaysOneTime" Required="1" Valid="1">
<Description Lang="en">One time vacation days.</Description>
<Description Lang="de">Einmalige Freizeit-Tage im System hinterlegen.</Description>
<Group>Framework</Group>
<SubGroup>Core::Time</SubGroup>
<Setting>
<TimeVacationDaysOneTime>
<Item Year="2004" Month="1" Day="1">test</Item>
</TimeVacationDaysOneTime>
</Setting>
</ConfigItem>
<ConfigItem Name="TimeWorkingHours" Required="1" Valid="1">
<Description Lang="en">Hours and week days to count the working time.</Description>
<Description Lang="de">Wochentage und Stunden fr die die Arbeitszeit erfasst werden soll.</Description>
<Group>Framework</Group>
<SubGroup>Core::Time</SubGroup>
<Setting>
<TimeWorkingHours>
<Day Name="Mon">
<Hour>8</Hour>
<Hour>9</Hour>
<Hour>10</Hour>
<Hour>11</Hour>
<Hour>12</Hour>
<Hour>13</Hour>
<Hour>14</Hour>
<Hour>15</Hour>
<Hour>16</Hour>
<Hour>17</Hour>
<Hour>18</Hour>
<Hour>19</Hour>
<Hour>20</Hour>
</Day>
<Day Name="Tue">
<Hour>8</Hour>
<Hour>9</Hour>
<Hour>10</Hour>
<Hour>11</Hour>
<Hour>12</Hour>
<Hour>13</Hour>
<Hour>14</Hour>
<Hour>15</Hour>
<Hour>16</Hour>
<Hour>17</Hour>
<Hour>18</Hour>
<Hour>19</Hour>
<Hour>20</Hour>
</Day>
<Day Name="Wed">
<Hour>8</Hour>
<Hour>9</Hour>
<Hour>10</Hour>
<Hour>11</Hour>
<Hour>12</Hour>
<Hour>13</Hour>
<Hour>14</Hour>
<Hour>15</Hour>
<Hour>16</Hour>
<Hour>17</Hour>
<Hour>18</Hour>
<Hour>19</Hour>
<Hour>20</Hour>
</Day>
<Day Name="Thu">
<Hour>8</Hour>
<Hour>9</Hour>
<Hour>10</Hour>
<Hour>11</Hour>
<Hour>12</Hour>
<Hour>13</Hour>
<Hour>14</Hour>
<Hour>15</Hour>
<Hour>16</Hour>
<Hour>17</Hour>
<Hour>18</Hour>
<Hour>19</Hour>
<Hour>20</Hour>
</Day>
<Day Name="Fri">
<Hour>8</Hour>
<Hour>9</Hour>
<Hour>10</Hour>
<Hour>11</Hour>
<Hour>12</Hour>
<Hour>13</Hour>
<Hour>14</Hour>
<Hour>15</Hour>
<Hour>16</Hour>
<Hour>17</Hour>
<Hour>18</Hour>
<Hour>19</Hour>
<Hour>20</Hour>
</Day>
<Day Name="Sat">
</Day>
<Day Name="Sun">
</Day>
</TimeWorkingHours>
</Setting>
</ConfigItem>
<ConfigItem Name="WebMaxFileUpload" Required="1" Valid="1">
<Description Lang="en">Maximal size for file uploads via the browser (in Bytes).</Description>
<Description Lang="de">Maximale Dateigre fr Dateiuploads ber den Browser (in Bytes).</Description>
<Group>Framework</Group>
<SubGroup>Core::Web</SubGroup>
<Setting>
<String Regex="^[0-9]{1,8}$">5242880</String>
</Setting>
</ConfigItem>
<ConfigItem Name="WebUploadCacheModule" Required="1" Valid="1">
<Description Lang="en">Select the module to handle uplads via the web interface. "DB" stores all uploads in the database, "FS" uses the file system.</Description>
<Description Lang="de">Whlen Sie das Modul, welches Uploads ber die Web-Oberflche speichert. "DB" benutzt die Datenbank zum Speichern der Uploads, "FS" legt die Daten im Dateisystem ab.</Description>
<Group>Framework</Group>
<SubGroup>Core::Web</SubGroup>
<Setting>
<Option Location="Kernel/System/Web/UploadCache/*.pm" SelectedID="Kernel::System::Web::UploadCache::DB"></Option>
</Setting>
</ConfigItem>
<ConfigItem Name="CGILogPrefix" Required="1" Valid="1">
<Description Lang="en">Log prefix for the CGI scripts of the system.</Description>
<Description Lang="de">Logprefix fr die CGI-Skripte des Systems.</Description>
<Group>Framework</Group>
<SubGroup>Core</SubGroup>
<Setting>
<String Regex="">OTRS-CGI</String>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::Output::PostFilter###ActiveElementFilter" Required="0" Valid="0">
<Description Lang="en">A filter for html output of the application. With this filter you can for example filter out javascript or suppress java applets.</Description>
<Description Lang="de">Ein Filter fr den HTML-Inhalt innerhalb der Applikation. Mit Hilfe des Filters kann z.B. die Anzeige von Javaapplets oder Javascript unterdrckt werden.</Description>
<Group>Framework</Group>
<SubGroup>Core::Web</SubGroup>
<Setting>
<Hash>
<Item Key="Module">Kernel::Output::HTML::OutputFilterActiveElement</Item>
<Item Key="Debug">0</Item>
</Hash>
</Setting>
</ConfigItem>
<ConfigItem Name="LostPassword" Required="1" Valid="1">
<Description Lang="en">Activate lost password feature fpr agents?</Description>
<Description Lang="de">Feature fr verlorenes Kennwort aktivieren?</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent</SubGroup>
<Setting>
<Option SelectedID="1">
<Item Key="0">No</Item>
<Item Key="1">Yes</Item>
</Option>
</Setting>
</ConfigItem>
<ConfigItem Name="ShowMotd" Required="1" Valid="1">
<Description Lang="en">Show message of the day after login screen?</Description>
<Description Lang="de">Meldungen des Tages nach Login anzeigen?</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent</SubGroup>
<Setting>
<Option SelectedID="0">
<Item Key="0">No</Item>
<Item Key="1">Yes</Item>
</Option>
</Setting>
</ConfigItem>
<ConfigItem Name="DemoSystem" Required="1" Valid="1">
<Description Lang="en">Activate the demo system? If set to "Yes", agents can change their preferences like selection of language and theme via the agent frontend just for the current session. Also it isn't possible to change passwords.</Description>
<Description Lang="de">Demosystem aktivieren? Wenn diese Einstellung aktiviert wird, knnen Agenten nur fr die aktuelle Sitzung ihre Sprache oder das Anzeige-Schema auswhlen. Weiterhin knnen keine Kennwrter gendert werden.</Description>
<Group>Framework</Group>
<SubGroup>Core</SubGroup>
<Setting>
<Option SelectedID="0">
<Item Key="0">No</Item>
<Item Key="1">Yes</Item>
</Option>
</Setting>
</ConfigItem>
<ConfigItem Name="SwitchToUser" Required="1" Valid="1">
<Description Lang="en">Allow the admin to switch into a selected user session.</Description>
<Description Lang="de">Dem Administrator erlauben in eine Sitzung eines ausgewhlten Benutzers zu schalten.</Description>
<Group>Framework</Group>
<SubGroup>Core</SubGroup>
<Setting>
<Option SelectedID="0">
<Item Key="0">No</Item>
<Item Key="1">Yes</Item>
</Option>
</Setting>
</ConfigItem>
<ConfigItem Name="MIME-Viewer###application/excel" Required="0" Valid="0">
<Description Lang="en">Path to converter to view Microsoft Excel files in the web interface.</Description>
<Description Lang="de">Pfad zum Konvertierungsprogramm, um Microsoft Excel Dateien ber die Web-Oberflche anzuzeigen.</Description>
<Group>Framework</Group>
<SubGroup>Core::MIME-Viewer</SubGroup>
<Setting>
<String Regex="">xlhtml</String>
</Setting>
</ConfigItem>
<ConfigItem Name="MIME-Viewer###application/msword" Required="0" Valid="0">
<Description Lang="en">Path to converter to view Microsoft Word files in the web interface.</Description>
<Description Lang="de">Pfad zum Konvertierungsprogramm, um Microsoft Word Dateien ber die Web-Oberflche anzuzeigen.</Description>
<Group>Framework</Group>
<SubGroup>Core::MIME-Viewer</SubGroup>
<Setting>
<String Regex="">wvWare</String>
</Setting>
</ConfigItem>
<ConfigItem Name="MIME-Viewer###application/pdf" Required="0" Valid="0">
<Description Lang="en">Path to programm to view PDF Documents in the web interface.</Description>
<Description Lang="de">Pfad zum Programm, um PDF Dateien ber die Web-Oberflche anzuzeigen.</Description>
<Group>Framework</Group>
<SubGroup>Core::MIME-Viewer</SubGroup>
<Setting>
<String Regex="">pdftohtml -stdout -i</String>
</Setting>
</ConfigItem>
<ConfigItem Name="MIME-Viewer###text/xml" Required="0" Valid="0">
<Description Lang="en">Path to converter to view XML files in the web interface.</Description>
<Description Lang="de">Pfad zum Konvertierungsprogramm, um XML Dateien in der Web-Oberflche anzuzeigen.</Description>
<Group>Framework</Group>
<SubGroup>Core::MIME-Viewer</SubGroup>
<Setting>
<String Regex=""><OTRS_CONFIG_Home>/scripts/tools/xml2html.pl</String>
</Setting>
</ConfigItem>
<ConfigItem Name="SpellChecker" Required="1" Valid="1">
<Description Lang="en">Enable or disable spell checker support.</Description>
<Description Lang="de">Aktivieren oder deaktivieren der Rechtschreibhilfe.</Description>
<Group>Framework</Group>
<SubGroup>Core::SpellChecker</SubGroup>
<Setting>
<Option SelectedID="1">
<Item Key="0">No</Item>
<Item Key="1">Yes</Item>
</Option>
</Setting>
</ConfigItem>
<ConfigItem Name="SpellCheckerBin" Required="1" Valid="1">
<Description Lang="en">Install ispell or aspell on your system, if you want to use a spellchecker. Please specify the path to the aspell or ispell binary on your operating system.</Description>
<Description Lang="de">Installieren Sie ispell oder aspell, um auf eine Rechtschreibhilfe zurckgreifen zu knnen. Bitte geben Sie hier den Pfad zum Binary von ispell oder aspell an.</Description>
<Group>Framework</Group>
<SubGroup>Core::SpellChecker</SubGroup>
<Setting>
<String Regex="">/usr/bin/ispell</String>
</Setting>
</ConfigItem>
<ConfigItem Name="SpellCheckerDictDefault" Required="1" Valid="1">
<Description Lang="en">Default spell checker dictionary.</Description>
<Description Lang="de">Standard Wrterbuch fr die Rechtschreibprfung.</Description>
<Group>Framework</Group>
<SubGroup>Core::SpellChecker</SubGroup>
<Setting>
<String Regex="">english</String>
</Setting>
</ConfigItem>
<ConfigItem Name="SpellCheckerIgnore" Required="1" Valid="1">
<Description Lang="en">A list of words, that are ignored by the spelll checker by default.</Description>
<Description Lang="de">Folgende Wrter werden von der Rechtschreibprfung standardmig ignoriert.</Description>
<Group>Framework</Group>
<SubGroup>Core::SpellChecker</SubGroup>
<Setting>
<Array>
<Item>www</Item>
<Item>webmail</Item>
<Item>https</Item>
<Item>http</Item>
<Item>html</Item>
<Item>rfc</Item>
</Array>
</Setting>
</ConfigItem>
<ConfigItem Name="Package::RepositoryRoot" Required="1" Valid="1">
<Description Lang="en">Location to get online repository list for aditional packages. The first availabel result will be used.</Description>
<Description Lang="de">Online-Quelle, ber die zustzliche Pakete bezogen werden knnen. Die Quelle, die zuerst erfolgreich abgefragt werden kann, wird verwendet.</Description>
<Group>Framework</Group>
<SubGroup>Core::Package</SubGroup>
<Setting>
<Array>
<Item>http://ftp.otrs.org/pub/otrs/misc/packages/repository.xml</Item>
<Item>http://otrs.org/repository.xml</Item>
</Array>
</Setting>
<!-- $Self->{'Package::RepositoryRoot'} = [
'http://ftp.otrs.org/pub/otrs/misc/packages/repository.xml',
'http://otrs.org/repository.xml',]; -->
</ConfigItem>
<ConfigItem Name="Package::RepositoryList" Required="0" Valid="0">
<Description Lang="en">List of online repositorys.</Description>
<Description Lang="de">Liste der zur Verfgung stehenden Online-Quellen.</Description>
<Group>Framework</Group>
<SubGroup>Core::Package</SubGroup>
<Setting>
<Hash>
<Item Key="ftp://ftp.example.com/pub/otrs/misc/packages/">[Example] ftp://ftp.example.com/</Item>
</Hash>
</Setting>
<!-- $Self->{'Package::RepositoryList'} = {'ftp://ftp.example.com/pub/otrs/misc/packages/' => '[Example] ftp://ftp.example.com/',}; -->
</ConfigItem>
<ConfigItem Name="Package::Timeout" Required="1" Valid="1">
<Description Lang="en">http/ftp timeout for package downloads (in sec).</Description>
<Description Lang="de">Timeout fr das Herunterladen von zustzlichen Paketen (in Sekunden).</Description>
<Group>Framework</Group>
<SubGroup>Core::Package</SubGroup>
<Setting>
<String Regex="">12</String>
</Setting>
</ConfigItem>
<ConfigItem Name="Package::Proxy" Required="0" Valid="0">
<Description Lang="en">Fetch packages via proxy.</Description>
<Description Lang="de">Laden von zustzlichen Paketen ber einen Proxyserver.</Description>
<Group>Framework</Group>
<SubGroup>Core::Package</SubGroup>
<Setting>
<String Regex="">http://proxy.sn.no:8001/</String>
</Setting>
</ConfigItem>
<ConfigItem Name="PGP" Required="1" Valid="1">
<Description Lang="en">Enable PGP support?</Description>
<Description Lang="de">PGP aktivieren?</Description>
<Group>Framework</Group>
<SubGroup>Crypt::PGP</SubGroup>
<Setting>
<Option SelectedID="0">
<Item Key="0">No</Item>
<Item Key="1">Yes</Item>
</Option>
</Setting>
</ConfigItem>
<ConfigItem Name="PGP::Bin" Required="1" Valid="1">
<Description Lang="en">Path to PGP binary.</Description>
<Description Lang="de">Pfad zum PGP Binary.</Description>
<Group>Framework</Group>
<SubGroup>Crypt::PGP</SubGroup>
<Setting>
<String Regex="" Check="File">/usr/bin/gpg</String>
</Setting>
</ConfigItem>
<ConfigItem Name="PGP::Options" Required="1" Valid="1">
<Description Lang="en">Options for PGP binary.</Description>
<Description Lang="de">Optionen fr das PGP Binary.</Description>
<Group>Framework</Group>
<SubGroup>Crypt::PGP</SubGroup>
<Setting>
<String Regex="">--homedir /var/lib/wwwrun/.gnupg/ --batch --no-tty --yes</String>
</Setting>
</ConfigItem>
<ConfigItem Name="PGP::Key::Password" Required="1" Valid="1">
<Description Lang="en">Password for PGP key.</Description>
<Description Lang="de">Kennwort fr PGP-Schlssel.</Description>
<Group>Framework</Group>
<SubGroup>Crypt::PGP</SubGroup>
<Setting>
<Hash>
<Item Key="D2DF79FA">SomePassword</Item>
<Item Key="488A0B8F">SomePassword</Item>
</Hash>
</Setting>
</ConfigItem>
<ConfigItem Name="SMIME" Required="1" Valid="1">
<Description Lang="en">Enable S/MIME support?</Description>
<Description Lang="de">Untersttzung fr S/MIME aktivieren?</Description>
<Group>Framework</Group>
<SubGroup>Crypt::SMIME</SubGroup>
<Setting>
<Option SelectedID="0">
<Item Key="0">No</Item>
<Item Key="1">Yes</Item>
</Option>
</Setting>
</ConfigItem>
<ConfigItem Name="SMIME::Bin" Required="1" Valid="1">
<Description Lang="en">Path to openssl binary. Maybe openssl need a HOME env ($ENV{HOME} = '/var/lib/wwwrun';)!</Description>
<Description Lang="de">Pfad zum openssl Binary. Evtl. bentigt openssl eine '$ENV{HOME}' Variable ($ENV{HOME} = '/var/lib/wwwrun';).</Description>
<Group>Framework</Group>
<SubGroup>Crypt::SMIME</SubGroup>
<Setting>
<String Regex="" Check="File">/usr/bin/openssl</String>
</Setting>
</ConfigItem>
<ConfigItem Name="SMIME::CertPath" Required="1" Valid="1">
<Description Lang="en">Directory where SSL certificates are stored.</Description>
<Description Lang="de">Verzeichnis in dem die SSL-Zertifikate gespeichert werden.</Description>
<Group>Framework</Group>
<SubGroup>Crypt::SMIME</SubGroup>
<Setting>
<String Regex="" Check="Directory">/etc/ssl/certs</String>
</Setting>
</ConfigItem>
<ConfigItem Name="SMIME::PrivatePath" Required="1" Valid="1">
<Description Lang="en">Directory where private SSL certificates are stored.</Description>
<Description Lang="de">Verzeichnis in dem die privaten SSL-Zertifikate gespeichert sind.</Description>
<Group>Framework</Group>
<SubGroup>Crypt::SMIME</SubGroup>
<Setting>
<String Regex="" Check="Directory">/etc/ssl/private</String>
</Setting>
</ConfigItem>
<ConfigItem Name="NotificationSenderName" Required="1" Valid="1">
<Description Lang="en">Sender name for system notification messages.</Description>
<Description Lang="de">Absendername fr Benachrichtigungsmails verwendet.</Description>
<Group>Framework</Group>
<SubGroup>Core</SubGroup>
<Setting>
<String Regex="">OTRS Notification Master</String>
</Setting>
</ConfigItem>
<ConfigItem Name="NotificationSenderEmail" Required="1" Valid="1">
<Description Lang="en">Mail address of sender for notification messages.</Description>
<Description Lang="de">Mailadresse die beim Versenden von Benachrichtigungsmails verwendet wird.</Description>
<Group>Framework</Group>
<SubGroup>Core</SubGroup>
<Setting>
<String Regex="">otrs@<OTRS_CONFIG_FQDN></String>
</Setting>
</ConfigItem>
<ConfigItem Name="NotificationSubjectLostPassword" Required="1" Valid="1">
<Description Lang="en">Subject for the notification email to agents about new password.</Description>
<Description Lang="de">Betreff fr die Benachrichtigungsmail an die Agents fr ein neues Kennwort.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent</SubGroup>
<Setting>
<String Regex="">New OTRS Password!</String>
</Setting>
</ConfigItem>
<ConfigItem Name="NotificationBodyLostPassword" Required="1" Valid="1">
<Description Lang="en">Body for notification mail to agents about new password.</Description>
<Description Lang="de">Body der Benachrichtigungsmail an die Agents fr ein neues Kennwort.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent</SubGroup>
<Setting>
<TextArea>Hi <OTRS_USERFIRSTNAME>,
you or someone impersonating you has requested to change your OTRS
password.
New Password: <OTRS_NEWPW>
<OTRS_CONFIG_HttpType>://<OTRS_CONFIG_FQDN>/<OTRS_CONFIG_ScriptAlias>index.pl
Your OTRS Notification Master
</TextArea>
</Setting>
</ConfigItem>
<ConfigItem Name="System::Permission" Required="1" Valid="1">
<Description Lang="en">The different system permissions of the agents in the system.</Description>
<Description Lang="de">Die unterschiedlichen Zugriffsrechte der Agenten innerhalb des Systems.</Description>
<Group>Framework</Group>
<SubGroup>Core</SubGroup>
<Setting>
<Array>
<Item>ro</Item>
<Item>rw</Item>
</Array>
</Setting>
</ConfigItem>
<ConfigItem Name="System::Customer::Permission" Required="1" Valid="1">
<Description Lang="en">The different system permissions for customers.</Description>
<Description Lang="de">Die verschiedenen Zugrifssrechte fr die Kunden.</Description>
<Group>Framework</Group>
<SubGroup>Core</SubGroup>
<Setting>
<Array>
<Item>ro</Item>
<Item>rw</Item>
</Array>
</Setting>
</ConfigItem>
<ConfigItem Name="PreferencesTable" Required="1" Valid="1">
<Description Lang="en">The name of the table, where the customer preferences are stored.</Description>
<Description Lang="de">Der Name der Tabelle, in der die Voreinstellungen fr die Customer gespeichert werden.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::Preferences</SubGroup>
<Setting>
<String Regex="">user_preferences</String>
</Setting>
</ConfigItem>
<ConfigItem Name="PreferencesTableKey" Required="1" Valid="1">
<Description Lang="en">Key for preferences table.</Description>
<Description Lang="de">Key fr die Tabelle mit den Voreinstellungen.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::Preferences</SubGroup>
<Setting>
<String Regex="">preferences_key</String>
</Setting>
</ConfigItem>
<ConfigItem Name="PreferencesTableValue" Required="1" Valid="1">
<Description Lang="en">Name of column in preferences table to store the data.</Description>
<Description Lang="de">Spaltenname in der Einstellungstabelle, in welcher die Agentendaten gespeichert werden.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent::Preferences</SubGroup>
<Setting>
<String Regex="">preferences_value</String>
</Setting>
</ConfigItem>
<ConfigItem Name="PreferencesTableUserID" Required="1" Valid="1">
<Description Lang="en">Name of column in preference table, where the UserID is stored.</Description>
<Description Lang="de">Spaltenname in der Einstellungstabelle, in der die UserID gespeichert wird.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent::Preferences</SubGroup>
<Setting>
<String Regex="">user_id</String>
</Setting>
</ConfigItem>
<ConfigItem Name="PreferencesView" Required="1" Valid="1">
<Description Lang="en">Display order of the different items in the preference view.</Description>
<Description Lang="de">Reihenfolge, in welcher die verschiedenen Abschnitte der Einstellungs-Ansicht angezeigt werden.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent::Preferences</SubGroup>
<Setting>
<Array>
<Item>Frontend</Item>
<Item>Mail Management</Item>
<Item>Other Options</Item>
</Array>
</Setting>
</ConfigItem>
<ConfigItem Name="PreferencesGroups###Password" Required="0" Valid="1">
<Description Lang="en">Parameters for the Password object in the preference view.</Description>
<Description Lang="de">Parameter des Password-Objekts in der Ansicht fr die Einstellungen.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent::Preferences</SubGroup>
<Setting>
<Hash>
<Item Key="Module">Kernel::Output::HTML::PreferencesPassword</Item>
<Item Key="Colum">Other Options</Item>
<Item Key="Label">Change Password</Item>
<Item Key="Prio">1000</Item>
<Item Key="Area">Agent</Item>
<Item Key="PasswordRegExp"></Item>
<Item Key="PasswordMinSize">0</Item>
<Item Key="PasswordMin2Lower2UpperCharacters">0</Item>
<Item Key="PasswordMin2Characters">0</Item>
<Item Key="PasswordNeedDigit">0</Item>
<Item Key="Activ">1</Item>
</Hash>
</Setting>
</ConfigItem>
<ConfigItem Name="PreferencesGroups###SpellDict" Required="0" Valid="1">
<Description Lang="en">Parameters for the SpellDict object in the preference view.</Description>
<Description Lang="de">Parameter des SpellDict-Objekts in der Ansicht fr die Einstellungen.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent::Preferences</SubGroup>
<Setting>
<Hash>
<Item Key="Module">Kernel::Output::HTML::PreferencesGeneric</Item>
<Item Key="Colum">Other Options</Item>
<Item Key="Label">Spelling Dictionary</Item>
<Item Key="Desc">Select your default spelling dictionary.</Item>
<Item Key="Data">
<Hash>
<Item Key="english">English</Item>
<Item Key="deutsch">Deutsch</Item>
</Hash>
</Item>
<Item Key="PrefKey">UserSpellDict</Item>
<Item Key="Prio">5000</Item>
<Item Key="Activ">1</Item>
</Hash>
</Setting>
<!-- $Self->{PreferencesGroups}->{SpellDict} = {
Module => 'Kernel::Output::HTML::PreferencesGeneric',
Colum => 'Other Options',
Label => 'Spelling Dictionary',
Desc => 'Select your default spelling dictionary.',
Data => {
# installed dict catalog (check your insalled catalogues, e. g. deutsch -=> german!)
# dict => frontend (ispell)
'english' => 'English',
'deutsch' => 'Deutsch',
# dict => frontend (aspell)
# 'english' => 'English',
# 'german' => 'Deutsch',
},
PrefKey => 'UserSpellDict',
Prio => 5000,
Activ => 1,
};
-->
</ConfigItem>
<ConfigItem Name="PreferencesGroups###Comment" Required="0" Valid="1">
<Description Lang="en">Parameters for the Comment object in the preference view.</Description>
<Description Lang="de">Parameter des Comment-Objekts in der Ansicht fr die Einstellungen.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent::Preferences</SubGroup>
<Setting>
<Hash>
<Item Key="Module">Kernel::Output::HTML::PreferencesGeneric</Item>
<Item Key="Colum">Other Options</Item>
<Item Key="Label">Comment</Item>
<Item Key="Desc">Comment</Item>
<Item Key="Block">Input</Item>
<Item Key="Data">$Env{"UserComment"}</Item>
<Item Key="PrefKey">UserComment</Item>
<Item Key="Prio">6000</Item>
<Item Key="Activ">0</Item>
</Hash>
</Setting>
</ConfigItem>
<ConfigItem Name="PreferencesGroups###FreeText" Required="0" Valid="0">
<Description Lang="en">Parameters for the Freetext object in the preference view.</Description>
<Description Lang="de">Parameter des Freetext-Objekts in der Ansicht fr die Einstellungen.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent::Preferences</SubGroup>
<Setting>
<Hash>
<Item Key="Module">Kernel::Output::HTML::PreferencesGeneric</Item>
<Item Key="Colum">Other Options</Item>
<Item Key="Label">Comment</Item>
<Item Key="Desc">Example for free text</Item>
<Item Key="Block">Input</Item>
<Item Key="Data">$Env{"UserFreeText"}</Item>
<Item Key="PrefKey">UserFreeText</Item>
<Item Key="Prio">7000</Item>
<Item Key="Activ">1</Item>
</Hash>
</Setting>
</ConfigItem>
<ConfigItem Name="PreferencesGroups###Language" Required="0" Valid="1">
<Description Lang="en">Parameters for the Language object in the preference view.</Description>
<Description Lang="de">Parameter des Language-Objekts in der Ansicht fr die Einstellungen.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent::Preferences</SubGroup>
<Setting>
<Hash>
<Item Key="Module">Kernel::Output::HTML::PreferencesLanguage</Item>
<Item Key="Colum">Frontend</Item>
<Item Key="Label">Language</Item>
<Item Key="Desc">Select your frontend language.</Item>
<Item Key="PrefKey">UserLanguage</Item>
<Item Key="Prio">1000</Item>
<Item Key="Activ">1</Item>
</Hash>
</Setting>
</ConfigItem>
<ConfigItem Name="PreferencesGroups###Theme" Required="0" Valid="1">
<Description Lang="en">Parameters for the Time object in the preference view.</Description>
<Description Lang="de">Parameter des Time-Objekts in der Ansicht fr die Einstellungen.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent::Preferences</SubGroup>
<Setting>
<Hash>
<Item Key="Module">Kernel::Output::HTML::PreferencesTheme</Item>
<Item Key="Colum">Frontend</Item>
<Item Key="Label">Theme</Item>
<Item Key="Desc">Select your frontend Theme.</Item>
<Item Key="PrefKey">UserTheme</Item>
<Item Key="Prio">2000</Item>
<Item Key="Activ">1</Item>
</Hash>
</Setting>
</ConfigItem>
<ConfigItem Name="CustomerPanelSessionName" Required="1" Valid="1">
<Description Lang="en">Name of the key for customer sessions.</Description>
<Description Lang="de">Kennung fr Kunden-Sitzungen.</Description>
<Group>Framework</Group>
<SubGroup>Core::Session</SubGroup>
<Setting>
<String Regex="">CSID</String>
</Setting>
</ConfigItem>
<ConfigItem Name="CustomerPanelUserID" Required="1" Valid="1">
<Description Lang="en">UserID for customer panel.</Description>
<Description Lang="de">UserID fr das Customer-Panel.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer</SubGroup>
<Setting>
<String Regex="">1</String>
</Setting>
</ConfigItem>
<ConfigItem Name="CustomerGroupSupport" Required="1" Valid="1">
<Description Lang="en">Activate support for customer groups?</Description>
<Description Lang="de">Soll die Untersttzung von Customer-Gruppen aktiviert werden?</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer</SubGroup>
<Setting>
<Option SelectedID="0">
<Item Key="0">No</Item>
<Item Key="1">Yes</Item>
</Option>
</Setting>
</ConfigItem>
<ConfigItem Name="CustomerGroupAlwaysGroups" Required="1" Valid="1">
<Description Lang="en">If CustomerGroupSupport is enabled and you don't want to manage every user for this groups, then put the groups for all customer user in there.</Description>
<Description Lang="de">Ist CustomerGroupSupport aktiviert und sollen nicht alle Benutzer dieser Gruppen einzeln verwaltet werden, knnen die einzelnen Gruppen hier angegeben werden.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer</SubGroup>
<Setting>
<Array>
<Item>users</Item>
<Item>info</Item>
</Array>
</Setting>
</ConfigItem>
<ConfigItem Name="CustomerFrontend::NotifyModule###1-ShowAgentOnline" Required="0" Valid="0">
<Description Lang="en">Module that shows the currently loged in agents in the customer interface.</Description>
<Description Lang="de">Modul fr die Anzeige von gerade am System angemeldeten Agenten innerhalb des Customer-Interfaces.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::ModuleNotify</SubGroup>
<Setting>
<Hash>
<Item Key="Module">Kernel::Output::HTML::NotificationAgentOnline</Item>
</Hash>
</Setting>
</ConfigItem>
<ConfigItem Name="CustomerFrontend::NotifyModule###1-ShowCustomerOnline" Required="0" Valid="0">
<Description Lang="en">Module that shows the currently loged in customers in the customer interface.</Description>
<Description Lang="de">Modul fr die Anzeige von gerade am System angemeldeten Kunden innerhalb des Customer-Interfaces.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::ModuleNotify</SubGroup>
<Setting>
<Hash>
<Item Key="Module">Kernel::Output::HTML::NotificationCustomerOnline</Item>
</Hash>
</Setting>
</ConfigItem>
<ConfigItem Name="CustomerPanelLoginURL" Required="0" Valid="0">
<Description Lang="en">Alternate login URL for the customer panel..</Description>
<Description Lang="de">Alternative Login-URL fr das Customer-Panel.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer</SubGroup>
<Setting>
<String Regex="">http://host.example.com/cgi-bin/login.pl</String>
</Setting>
</ConfigItem>
<ConfigItem Name="CustomerPanelLogoutURL" Required="0" Valid="0">
<Description Lang="en">Alternate logout URL for the customer panel.</Description>
<Description Lang="de">Alternative Logout-URL fr das Customer-Panel.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer</SubGroup>
<Setting>
<String Regex="">http://host.example.com/cgi-bin/login.pl</String>
</Setting>
</ConfigItem>
<ConfigItem Name="CustomerPanelPreApplicationModule" Required="0" Valid="0">
<Description Lang="en">CustomerPanelPreApplicationModule. This module and its PreRun() function will be executed, if defined, for every request. This module is useful to check some user options or to display news about new applications.</Description>
<Description Lang="de">Dieses Modul und seine PreRun() Funktion wird fr jede Anfrage ausgefhrt. Das Modul kann fr die berprfung einiger Benutzeroptionen oder fr die Anzeige von Neuigkeiten verwendet werden.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer</SubGroup>
<Setting>
<String Regex="">Kernel::Modules::CustomerAccept</String>
</Setting>
</ConfigItem>
<ConfigItem Name="CustomerPanel::InfoKey" Required="0" Valid="0">
<Description Lang="en">Key to check with CustomerAccept. If this user preferences key is true, then the message is accepted by the system.</Description>
<Description Lang="de">Key fr CustomerAccept. Wurde dieser Schlssel verifiziert, wird die Nachricht vom System akzeptiert.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer</SubGroup>
<Setting>
<String Regex="">CustomerAccept1</String>
</Setting>
</ConfigItem>
<ConfigItem Name="CustomerPanel::InfoFile" Required="0" Valid="0">
<Description Lang="en">Shown InfoFile, that is located under Kernel/Output/HTML/Standard/CustomerAccept.dtl.</Description>
<Description Lang="de">Angezeigtes InfoFile, welches unter Kernel/Output/HTML/Standard/CustomerAccept.dtl zu finden ist.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer</SubGroup>
<Setting>
<String Regex="">CustomerAccept</String>
</Setting>
</ConfigItem>
<ConfigItem Name="CustomerPanelLostPassword" Required="1" Valid="1">
<Description Lang="en">Activate lost passowrd feature for customers?</Description>
<Description Lang="de">Feature fr das Zuschicken verlorener Passwrter fr die Customer aktivieren?</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer</SubGroup>
<Setting>
<Option SelectedID="1">
<Item Key="0">No</Item>
<Item Key="1">Yes</Item>
</Option>
</Setting>
</ConfigItem>
<ConfigItem Name="CustomerPanelCreateAccount" Required="1" Valid="1">
<Description Lang="en">Can Customers create their own account?</Description>
<Description Lang="de">Knnen Customer selbst Ihren Account erstellen?</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer</SubGroup>
<Setting>
<Option SelectedID="1">
<Item Key="0">No</Item>
<Item Key="1">Yes</Item>
</Option>
</Setting>
</ConfigItem>
<ConfigItem Name="CustomerPanelSubjectLostPassword" Required="1" Valid="1">
<Description Lang="en">Subject of notification mail to customers about new password.</Description>
<Description Lang="de">Betreff der Benachrichtigungsmail fr Customer, die bei der Vergabe eines neuen Kennworts geschickt wird.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer</SubGroup>
<Setting>
<String Regex="">New OTRS Password!</String>
</Setting>
</ConfigItem>
<ConfigItem Name="CustomerPanelBodyLostPassword" Required="1" Valid="1">
<Description Lang="en">Body of notification mail for customers about new password.</Description>
<Description Lang="de">Body der Benachrichtigungsmail fr Customer, die fr ein neues Kennwort versendet wird.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer</SubGroup>
<Setting>
<TextArea>Hi <OTRS_USERFIRSTNAME>,
you or someone impersonating you has requested to change your OTRS
password.
New Password: <OTRS_NEWPW>
<OTRS_CONFIG_HttpType>://<OTRS_CONFIG_FQDN>/<OTRS_CONFIG_ScriptAlias>customer.pl
Your OTRS Notification Master
</TextArea>
</Setting>
</ConfigItem>
<ConfigItem Name="CustomerPanelSubjectNewAccount" Required="1" Valid="1">
<Description Lang="en">Subject for notification email to customers about new account.</Description>
<Description Lang="de">Betreff der Benachrichtigungsmail an den Customer bei einem neuen Account.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer</SubGroup>
<Setting>
<String Regex="">New OTRS Account!</String>
</Setting>
</ConfigItem>
<ConfigItem Name="CustomerPanelBodyNewAccount" Required="1" Valid="1">
<Description Lang="en">Body of notification email to customer about new account.</Description>
<Description Lang="de">Body der Benachrichtigungsmail an den Customer beim Anlegen eines neuen Kontos fr diesen Customer.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer</SubGroup>
<Setting>
<TextArea>Hi <OTRS_USERFIRSTNAME>,
you or someone impersonating you has created a new OTRS account for
you (<OTRS_USERFIRSTNAME> <OTRS_USERLASTNAME>).
Login: <OTRS_USERLOGIN>
Password: <OTRS_USERPASSWORD>
<OTRS_CONFIG_HttpType>://<OTRS_CONFIG_FQDN>/<OTRS_CONFIG_ScriptAlias>customer.pl
Your OTRS Notification Master
</TextArea>
</Setting>
</ConfigItem>
<ConfigItem Name="Customer::AuthModule" Required="1" Valid="1">
<Description Lang="en">Module to authenticate customers.</Description>
<Description Lang="de">Modul zum authentifizieren der Customer.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::Auth</SubGroup>
<Setting>
<Option Location="Kernel/System/CustomerAuth/*.pm" SelectedID="Kernel::System::CustomerAuth::DB"></Option>
</Setting>
</ConfigItem>
<ConfigItem Name="Customer::AuthModule::DB::Table" Required="1" Valid="1">
<Description Lang="en">If "DB" was selected for Customer::AuthModule, you have to specify the name f the table where your customer data are stored.</Description>
<Description Lang="de">Wenn "DB" fr Customer::AuthModule ausgewhlt wurde, muss der Name der Tabelle angegeben werden, in der die Daten der Customer gespeichert werden.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::Auth</SubGroup>
<Setting>
<String Regex="">customer_user</String>
</Setting>
</ConfigItem>
<ConfigItem Name="Customer::AuthModule::DB::CustomerKey" Required="1" Valid="1">
<Description Lang="en">If "DB" was selected for Customer::AuthModule, you have to specify the name of the column for the CustomerKey in your customer table.</Description>
<Description Lang="de">Wenn "DB" als Customer::AuthModule augewhlt wurde, muss der Spaltenname innerhalb der Customer-Tabelle angegeben werden, in der der CustomerKey gespeichert wird.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::Auth</SubGroup>
<Setting>
<String Regex="">login</String>
</Setting>
</ConfigItem>
<ConfigItem Name="Customer::AuthModule::DB::CustomerPassword" Required="1" Valid="1">
<Description Lang="en">If "DB" was selected for Customer::AuthModule, you have to specify the column name for the CustomerPassword in your customer table.</Description>
<Description Lang="de">Wenn "DB" als Customer::AuthModule ausgewhlt wurde, muss der Spaltenname angegeben werden, in dem das Customer-Passwort innerhalb der Customer-Tabelle gespeichert wird.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::Auth</SubGroup>
<Setting>
<String Regex="">pw</String>
</Setting>
</ConfigItem>
<ConfigItem Name="Customer::AuthModule::DB::DSN" Required="0" Valid="0">
<Description Lang="en">If "DB" was selected for Customer::AuthModule, you hav to specify the DSN for the connection to the customer table.</Description>
<Description Lang="de">Wenn "DB" als Customer::AuthModule ausgewhlt wurde, muss der DSN fr die Verbindung zur Customer-Tabelle angegeben werden.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::Auth</SubGroup>
<Setting>
<String Regex="">DBI:mysql:database=customerdb;host=customerdbhost</String>
</Setting>
</ConfigItem>
<ConfigItem Name="Customer::AuthModule::DB::User" Required="0" Valid="0">
<Description Lang="en">If "DB" was selected for Customer::AuthModule, you can specify a username to connect to your customer table.</Description>
<Description Lang="de">Wenn "DB" fr Customer::AuthModule ausgewhlt wurde, kann ein Benutzername fr den Verbindungsaufbau zur Customer-Tabelle angegeben werden.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::Auth</SubGroup>
<Setting>
<String Regex="">some_user</String>
</Setting>
</ConfigItem>
<ConfigItem Name="Customer::AuthModule::DB::Password" Required="0" Valid="0">
<Description Lang="en">If "DB" was selected for Customer::AuthModule, you can specify a password to connect to your customer table.</Description>
<Description Lang="de">Wenn "DB" fr Customer::AuthModule ausgewhlt wurde, kann ein Kennwort fr den Verbindungsaufbau zur Customer-Tabelle angegeb
en werden.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::Auth</SubGroup>
<Setting>
<String Regex="">some_password</String>
</Setting>
</ConfigItem>
<ConfigItem Name="Customer::AuthModule::LDAP::Host" Required="0" Valid="0">
<Description Lang="en">If "LDAP" was selected for Customer::AuthModule, you can specify your LDAP host.</Description>
<Description Lang="de">Wenn "LDAP" als Customer::AuthModule ausgewhlt wurde, muss der Name des LDAP Hosts angegeben werden.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::Auth</SubGroup>
<Setting>
<String Regex="">ldap.example.com</String>
</Setting>
</ConfigItem>
<ConfigItem Name="Customer::AuthModule::LDAP::BaseDN" Required="0" Valid="0">
<Description Lang="en">If "LDAP" was selected for Customer::AuthModule, specify your BaseDN.</Description>
<Description Lang="de">Wenn "LDAP" als Customer::AuthModule augewhlt wurde, muss die BaseDN angegeben werden.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::Auth</SubGroup>
<Setting>
<String Regex="">dc=example,dc=com</String>
</Setting>
</ConfigItem>
<ConfigItem Name="Customer::AuthModule::LDAP::UID" Required="0" Valid="0">
<Description Lang="en">If "LDAP" was selected for Customer::Authmodule, specefy the UID.</Description>
<Description Lang="de">Wenn "LDAP" als Customer::AuthModule ausgewhlt wurde, kann hier die UID angegeben werden.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::Auth</SubGroup>
<Setting>
<String Regex="">uid</String>
</Setting>
</ConfigItem>
<ConfigItem Name="Customer::AuthModule::LDAP::GroupDN" Required="0" Valid="0">
<Description Lang="en">I "LDAP" was selected for Customer::Authmodule, you can check if the user is allowed to auth because he is in a posixGroup, e.g. user needs to be in a group xyz to use otrs. Specify the group, who may access the system.</Description>
<Description Lang="de">Wenn "LDAP" als Customer::AuthModule ausgewhlt wurde und nur eine bestimmte Posixgruppen auf das System zugreifen soll, dann kann diese Gruppe hier angegeben werden.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::Auth</SubGroup>
<Setting>
<String Regex="">cn=otrsallow,ou=posixGroups,dc=example,dc=com</String>
</Setting>
</ConfigItem>
<ConfigItem Name="Customer::AuthModule::LDAP::AccessAttr" Required="0" Valid="0">
<Description Lang="en">If "LDAP" was selected for Customer::AuthModule, you can specify access attributes here.</Description>
<Description Lang="de">Wenn "LDAP" als Customer::AuthModule ausgewhlt wurde, knnen hier Zugriffssattribute angegeben werden.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::Auth</SubGroup>
<Setting>
<String Regex="">memberUid</String>
</Setting>
</ConfigItem>
<ConfigItem Name="Customer::AuthModule::LDAP::UserAttr" Required="0" Valid="0">
<Description Lang="en">If "LDAP" was selected for Customer::AuthMOdule, you can specify user attributes. For LDAP posixGroups objectclass UID, for non ldap posixGroups objectclass full user DN.</Description>
<Description Lang="de">Wenn "LDAP" als Customer::AuthModule ausgewhlt wurde, knnen Benutzerattribute spezifiziert werden. Fr die ObjectClass PosixGroups aus dem LDAP-Baum UID, fr nicht-PostxGroups muss der volle DN angegeben werden.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::Auth</SubGroup>
<Setting>
<Option SelectedID="UID">
<Item Key="UID">UID</Item>
<Item Key="DN">DN</Item>
</Option>
</Setting>
</ConfigItem>
<ConfigItem Name="Customer::AuthModule::LDAP::SearchUserDN" Required="0" Valid="0">
<Description Lang="en">If "LDAP" was selected for Customer::AuthMOdule and your ussers have only anonymous access to the LDAP tree, but you want to search throug the data, you can do this with a user who has access to the LDAP directory. Specify the username for this special user here.</Description>
<Description Lang="de">Wenn "LDAP" als Customer::AuthModule ausgewhlt wurde und die Benutzer nur anonymen Zugriff auf die Daten im LDAP-Baum haben, diese Daten aber trotzdem durchsucht werden sollen, dann kann dies ber einen speziellen Benutzer mit Zugriff auf das LDAP-Verzeichnis realisiert werden. Hier kann der Benutzername fr diesen speziellen User angegeben werden.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::Auth</SubGroup>
<Setting>
<String Regex="">cn=binduser,ou=users,dc=example,dc=com</String>
</Setting>
</ConfigItem>
<ConfigItem Name="Customer::AuthModule::LDAP::SearchUserPw" Required="0" Valid="0">
<Description Lang="en">If "LDAP" was selected for Customer::AuthMOdule and your ussers have only anonymous access to the LDAP tree, but you want to search throug the data, you can do this with a user who has access to the LDAP directory. Specify the password for this special user here.</Description>
<Description Lang="de">Wenn "LDAP" als Customer::AuthModule ausgewhlt wurde und die Benutzer nur anonymen Zugriff auf die Daten im LDAP-Baum haben, diese Daten aber trotzdem durchsucht werden sollen, dann kann dies ber einen speziellen Benutzer mit Zugriff auf das LDAP-Verzeichnis realisiert werden. Hier kann das Kennwort fr diesen speziellen User angegeben werden.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::Auth</SubGroup>
<Setting>
<String Regex="">some_password</String>
</Setting>
</ConfigItem>
<ConfigItem Name="Customer::AuthModule::LDAP::AlwaysFilter" Required="0" Valid="0">
<Description Lang="en">If "LDAP" was selected, you can add a filter to each LDAP query, e.g. (mail=*), (objectclass=user) or (!objectclass=computer).</Description>
<Description Lang="de">Wenn "LDAP" als Customer::AuthModule gewhlt wurde und fr jede Suche standardmig ein Filter vorhanden sein soll, dann kann dieser Filter hier angegeben werden, z.B. (mail=*), (objectclass=user) oder (!objectclass=computer).</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::Auth</SubGroup>
<Setting>
<String Regex="">(!objectclass=computer)</String>
</Setting>
</ConfigItem>
<ConfigItem Name="Customer::AuthModule::LDAP::UserSuffix" Required="0" Valid="0">
<Description Lang="en">If "LDAP" was selected for Customer::AuthModule an if you want to add a suffix to every customer login name, specifiy it here, e. g. you just want to write the username user but in your ldap directory exists user@domain.</Description>
<Description Lang="de">Wenn "LDAP" als Customer::AuthMOdule ausgewhlt wurde und automatisch ein Suffix an jeden Benutzernamen gehngt werden soll, dann kann dieses Suffix hier angegeben werden. Z.B. soll nur user als Benutzername eingegeben werden, im LDAP-Tree existiert aber user@domain.com.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::Auth</SubGroup>
<Setting>
<String Regex="">@domain.com</String>
</Setting>
</ConfigItem>
<ConfigItem Name="Customer::AuthModule::LDAP::Params" Required="0" Valid="0">
<Description Lang="en">If "LDAP" was selected for Customer::AuthModule and special paramaters are needed for the Net::LDAP perl module, you can specify them here. See "perldoc Net::LDAP" for more information about the parameters.</Description>
<Description Lang="de">Wenn "LDAP" als Customer::AuthModule ausgewhlt wurde und spezielle Parameter fr das Net::LDAP-perl-Modul angegeben werden sollen, dann kann das hier gemacht werden. Mehr Infos zu den mglichen Parametern bekommt man mit "perdoc Net::LDAP".</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::Auth</SubGroup>
<Setting>
<Hash>
<Item Key="port">389</Item>
<Item Key="timeout">120</Item>
<Item Key="async">0</Item>
<Item Key="version">3</Item>
</Hash>
</Setting>
</ConfigItem>
<ConfigItem Name="Customer::AuthModule::Radius::Host" Required="0" Valid="0">
<Description Lang="en">If "Radius" was selected for Customer::AuthModule, specify your radius host.</Description>
<Description Lang="de">Wenn "Radius" als Customer::AuthModule ausgewhlt wurde, kann hier der Radius-Server angegeben werden.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::Auth</SubGroup>
<Setting>
<String Regex="">radiushost</String>
</Setting>
</ConfigItem>
<ConfigItem Name="Customer::AuthModule::Radius::Password" Required="0" Valid="0">
<Description Lang="en">If "Radius" was selected for Customer::AuthModule, specfiy the password to authenticate to your radius host.</Description>
<Description Lang="de">Wenn "Radius" als Customer::AuthModule ausgewhlt wurde, kann hier das Kennwort fr die Anmeldung am Radius-Server angegeben werden.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::Auth</SubGroup>
<Setting>
<String Regex="">radiussecret</String>
</Setting>
</ConfigItem>
<ConfigItem Name="CustomerPreferences" Required="1" Valid="1">
<Description Lang="en">Parameters for the customer preference table.</Description>
<Description Lang="de">Parameter fr die Tabelle mit den Einstellungen fr die Customer.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::Preferences</SubGroup>
<Setting>
<Hash>
<Item Key="Module">Kernel::System::CustomerUser::Preferences::DB</Item>
<Item Key="Params">
<Hash>
<Item Key="Table">customer_preferences</Item>
<Item Key="TableKey">preferences_key</Item>
<Item Key="TableValue">preferences_value</Item>
<Item Key="TableUserID">user_id</Item>
</Hash>
</Item>
</Hash>
</Setting>
</ConfigItem>
<ConfigItem Name="CustomerPreferencesView" Required="1" Valid="1">
<Description Lang="en">Order of the different items in the customer preferences view.</Description>
<Description Lang="de">Reihenfolge, in der die verschiedenen Abschnitte der Customer-Einstellungen angezeigt werden.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::Preferences</SubGroup>
<Setting>
<Array>
<Item>Frontend</Item>
<Item>Other Options</Item>
</Array>
</Setting>
</ConfigItem>
<ConfigItem Name="CustomerPreferencesGroups###Password" Required="0" Valid="1">
<Description Lang="en">All parameters for the password area in the customer preferences.</Description>
<Description Lang="de">Alle Parameter fr den Passwort-Bereich in den Customer-Einstellungen.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::Preferences</SubGroup>
<Setting>
<Hash>
<Item Key="Module">Kernel::Output::HTML::PreferencesPassword</Item>
<Item Key="Colum">Other Options</Item>
<Item Key="Label">Change Password</Item>
<Item Key="Prio">1000</Item>
<Item Key="Area">Customer</Item>
<!-- <Item Key="PasswordRegExp">[a-z]|[A-z]|[0-9]|\.|;|,|:|-|\+|#|!|\$|&|\?</Item> -->
<Item Key="PasswordRegExp"></Item>
<Item Key="PasswordMinSize">0</Item>
<Item Key="PasswordMin2Lower2UpperCharacters">0</Item>
<Item Key="PasswordMin2Characters">0</Item>
<Item Key="PasswordNeedDigit">0</Item>
<Item Key="Activ">1</Item>
</Hash>
</Setting>
</ConfigItem>
<ConfigItem Name="CustomerPreferencesGroups###Language" Required="0" Valid="1">
<Description Lang="en">All parameters for the language area in the customer preferences.</Description>
<Description Lang="de">Alle Parameter fr den Bereich zur Sprachenauswahl in den Customer-Einstellungen.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::Preferences</SubGroup>
<Setting>
<Hash>
<Item Key="Module">Kernel::Output::HTML::PreferencesLanguage</Item>
<Item Key="Colum">Frontend</Item>
<Item Key="Label">Language</Item>
<Item Key="Desc">Select your frontend language.</Item>
<Item Key="PrefKey">UserLanguage</Item>
<Item Key="Prio">2000</Item>
<Item Key="Activ">1</Item>
</Hash>
</Setting>
</ConfigItem>
<ConfigItem Name="CustomerPreferencesGroups###Theme" Required="0" Valid="1">
<Description Lang="en">All parameters for the theme area in the customer preferences.</Description>
<Description Lang="de">Alle Parameter fr den Bereich der Theme-Auswahl innerhalb der Customer-Einstellungen.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::Preferences</SubGroup>
<Setting>
<Hash>
<Item Key="Module">Kernel::Output::HTML::PreferencesTheme</Item>
<Item Key="Colum">Frontend</Item>
<Item Key="Label">Theme</Item>
<Item Key="Desc">Select your frontend Theme.</Item>
<Item Key="PrefKey">UserTheme</Item>
<Item Key="Prio">1000</Item>
<Item Key="Activ">0</Item>
</Hash>
</Setting>
</ConfigItem>
<ConfigItem Name="CustomerPreferencesGroups###PGP" Required="0" Valid="1">
<Description Lang="en">All parameters for the PGP area in the customer preferences.</Description>
<Description Lang="de">Alle Parameter fr die PGP-Einstellungen innerhalb der Customer-Einstellungen.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::Preferences</SubGroup>
<Setting>
<Hash>
<Item Key="Module">Kernel::Output::HTML::PreferencesPGP</Item>
<Item Key="Colum">Other Options</Item>
<Item Key="Label">PGP Key</Item>
<Item Key="Desc">PGP Key Upload</Item>
<Item Key="PrefKey">UserPGPKey</Item>
<Item Key="Prio">10000</Item>
<Item Key="Activ">1</Item>
</Hash>
</Setting>
</ConfigItem>
<ConfigItem Name="CustomerPreferencesGroups###SMIME" Required="0" Valid="1">
<Description Lang="en">All parameters for the S/MIME area in the customer preferences.</Description>
<Description Lang="de">Alle Parameter fr die S/MIME-Einstellungen innerhalb der Customer-Einstellungen.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::Preferences</SubGroup>
<Setting>
<Hash>
<Item Key="Module">Kernel::Output::HTML::PreferencesSMIME</Item>
<Item Key="Colum">Other Options</Item>
<Item Key="Label">SMIME Certificate</Item>
<Item Key="Desc">SMIME Certificate Upload</Item>
<Item Key="PrefKey">UserSMIMEKey</Item>
<Item Key="Prio">11000</Item>
<Item Key="Activ">1</Item>
</Hash>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::Module###Logout" Required="0" Valid="1">
<Description Lang="en">Frontend module registration for the Logout object in the agent interface.</Description>
<Description Lang="de">Frontendmodul-Registration des Logout-Objekts im Agent-Interface.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent::ModuleRegistration</SubGroup>
<Setting>
<FrontendModuleReg>
<Description>Logout</Description>
<Title></Title>
<NavBarName></NavBarName>
<NavBar>
<Description>Logout</Description>
<Name>Logout</Name>
<Image>exit.png</Image>
<Link>Action=Logout</Link>
<NavBar></NavBar>
<Type></Type>
<Block>ItemPre</Block>
<AccessKey>l</AccessKey>
<Prio>100</Prio>
</NavBar>
</FrontendModuleReg>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::Module###AgentPreferences" Required="0" Valid="1">
<Description Lang="en">Frontend module registration for the AgentPreference object in the agent interface.</Description>
<Description Lang="de">Frontendmodul-Registration des AgentPreference-Objekts im Agent-Interface.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent::ModuleRegistration</SubGroup>
<Setting>
<FrontendModuleReg>
<Description>Agent Preferences</Description>
<Title>Preferences</Title>
<NavBarName></NavBarName>
<NavBar>
<Description>Agent Preferences</Description>
<Name>Preferences</Name>
<Image>prefer.png</Image>
<Link>Action=AgentPreferences</Link>
<NavBar></NavBar>
<Type></Type>
<Block></Block>
<AccessKey>p</AccessKey>
<Prio>1000</Prio>
</NavBar>
</FrontendModuleReg>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::Module###AgentSpelling" Required="0" Valid="1">
<Description Lang="en">Frontend module registration for the AgentSpelling object in the agent interface.</Description>
<Description Lang="de">Frontendmodul-Registration des AgentSpelling-Objekts im Agent-Interface.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent::ModuleRegistration</SubGroup>
<Setting>
<FrontendModuleReg>
<Description>Spell checker</Description>
<Title>Spell Checker</Title>
<NavBarName></NavBarName>
</FrontendModuleReg>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::Module###AgentBook" Required="0" Valid="1">
<Description Lang="en">Frontend module registration for the AgentBook object in the agent interface.</Description>
<Description Lang="de">Frontendmodul-Registration des AgentBook-Objekts im Agent-Interface.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent::ModuleRegistration</SubGroup>
<Setting>
<FrontendModuleReg>
<Description>Address book of CustomerUser sources</Description>
<Title>Address Book</Title>
<NavBarName></NavBarName>
</FrontendModuleReg>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::Module###AgentLookup" Required="0" Valid="1">
<Description Lang="en">Frontend module registration for the AgentLookup object in the agent interface.</Description>
<Description Lang="de">Frontendmodul-Registration des AgentLookup-Objekts im Agent-Interface.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent::ModuleRegistration</SubGroup>
<Setting>
<FrontendModuleReg>
<Description>Data table lookup module.</Description>
<Title>Lookup</Title>
<NavBarName></NavBarName>
</FrontendModuleReg>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::Module###AgentLinkObject" Required="0" Valid="1">
<Description Lang="en">Frontend module registration for the AgentLinkObject object in the agent interface.</Description>
<Description Lang="de">Frontendmodul-Registration des AgentLinkObject-Objekts im Agent-Interface.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent::ModuleRegistration</SubGroup>
<Setting>
<FrontendModuleReg>
<Description>Link Object</Description>
<Title>Link Object</Title>
<NavBarName></NavBarName>
</FrontendModuleReg>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::Module###AgentInfo" Required="0" Valid="1">
<Description Lang="en">Frontend module registration for the AgentInfo object in the agent interface.</Description>
<Description Lang="de">Frontendmodul-Registration des AgentInfo-Objekts im Agent-Interface.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent::ModuleRegistration</SubGroup>
<Setting>
<FrontendModuleReg>
<Description>Generic Info module</Description>
<Title>Info</Title>
<NavBarName></NavBarName>
</FrontendModuleReg>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::Module###AgentCalendarSmall" Required="0" Valid="1">
<Description Lang="en">Frontend module registration for the AgentCalendarSmall object in the agent interface.</Description>
<Description Lang="de">Frontendmodul-Registration des AgentCalendarSmall-Objekts im Agent-Interface.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent::ModuleRegistration</SubGroup>
<Setting>
<FrontendModuleReg>
<Description>Small calendar for date selection.</Description>
<Title>Calendar</Title>
<NavBarName></NavBarName>
</FrontendModuleReg>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::Module###SystemStats" Required="0" Valid="1">
<Description Lang="en">Frontend module registration for the SystemStats object in the agent interface.</Description>
<Description Lang="de">Frontendmodul-Registration des SystemStats-Objekts im Agent-Interface.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent::ModuleRegistration</SubGroup>
<Setting>
<FrontendModuleReg>
<GroupRo>stats</GroupRo>
<Description>Stats</Description>
<Title>Stats</Title>
<NavBarName>Ticket</NavBarName>
<NavBar>
<Description>Stats-Area</Description>
<Name>Stats</Name>
<Image>stats.png</Image>
<Link>Action=SystemStats</Link>
<NavBar>Ticket</NavBar>
<Type></Type>
<Block></Block>
<AccessKey>t</AccessKey>
<Prio>400</Prio>
</NavBar>
</FrontendModuleReg>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::Module###Admin" Required="0" Valid="1">
<Description Lang="en">Frontend module registration for the Admin object in the admin area.</Description>
<Description Lang="de">Frontendmodul-Registration des Admin-Objekts im Admin-Bereich.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Admin::ModuleRegistration</SubGroup>
<Setting>
<FrontendModuleReg>
<Group>admin</Group>
<Description>Admin-Area</Description>
<Title>Admin</Title>
<NavBarName>Admin</NavBarName>
<NavBar>
<Description>Admin-Area</Description>
<Type>Menu</Type>
<Block>ItemArea</Block>
<Name>Admin</Name>
<Image>admin.png</Image>
<Link>Action=Admin</Link>
<NavBar>Admin</NavBar>
<AccessKey>a</AccessKey>
<Prio>10000</Prio>
</NavBar>
<NavBarModule>
<Module>Kernel::Output::HTML::NavBarModuleAdmin</Module>
</NavBarModule>
</FrontendModuleReg>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::Module###AdminUser" Required="0" Valid="1">
<Description Lang="en">Frontend module registration for the AdminUser object in the admin area.</Description>
<Description Lang="de">Frontendmodul-Registration des AdminUser-Objekts im Admin-Bereich.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Admin::ModuleRegistration</SubGroup>
<Setting>
<FrontendModuleReg>
<Group>admin</Group>
<Description>Admin</Description>
<Title>User</Title>
<NavBarName>Admin</NavBarName>
<NavBarModule>
<Module>Kernel::Output::HTML::NavBarModuleAdmin</Module>
<Name>Users</Name>
<Block>Block1</Block>
<Prio>100</Prio>
</NavBarModule>
</FrontendModuleReg>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::Module###AdminGroup" Required="0" Valid="1">
<Description Lang="en">Frontend module registration for the AdminGroup object in the admin area.</Description>
<Description Lang="de">Frontendmodul-Registration des AdminGroup-Objekts im Admin-Bereich.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Admin::ModuleRegistration</SubGroup>
<Setting>
<FrontendModuleReg>
<Group>admin</Group>
<Description>Admin</Description>
<Title>Group</Title>
<NavBarName>Admin</NavBarName>
<NavBarModule>
<Module>Kernel::Output::HTML::NavBarModuleAdmin</Module>
<Name>Groups</Name>
<Block>Block1</Block>
<Prio>150</Prio>
</NavBarModule>
</FrontendModuleReg>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::Module###AdminUserGroup" Required="0" Valid="1">
<Description Lang="en">Frontend module registration for the AdminUserGroup object in the admin area.</Description>
<Description Lang="de">Frontendmodul-Registration des AdminUserGroup-Objekts im Admin-Bereich.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Admin::ModuleRegistration</SubGroup>
<Setting>
<FrontendModuleReg>
<Group>admin</Group>
<Description>Admin</Description>
<Title>Users <-> Groups</Title>
<NavBarName>Admin</NavBarName>
<NavBarModule>
<Module>Kernel::Output::HTML::NavBarModuleAdmin</Module>
<Name>Users <-> Groups</Name>
<Block>Block1</Block>
<Prio>200</Prio>
</NavBarModule>
</FrontendModuleReg>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::Module###AdminCustomerUser" Required="0" Valid="1">
<Description Lang="en">Frontend module registration for the AdminCustomerUser object in the admin area.</Description>
<Description Lang="de">Frontendmodul-Registration des AdminCustomerUser-Objekts im Admin-Bereich.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Admin::ModuleRegistration</SubGroup>
<Setting>
<FrontendModuleReg>
<GroupRo></GroupRo>
<Group>admin</Group>
<Group>users</Group>
<Description>Edit Customer Users</Description>
<Title>Customer User</Title>
<NavBarName></NavBarName>
<NavBar>
<Description>Edit Customer Users</Description>
<Name>Customer</Name>
<Image>folder_yellow.png</Image>
<Link>Action=AdminCustomerUser&Nav=Agent</Link>
<NavBar>Ticket</NavBar>
<Type></Type>
<Block></Block>
<AccessKey>c</AccessKey>
<Prio>9000</Prio>
</NavBar>
<NavBarModule>
<Module>Kernel::Output::HTML::NavBarModuleAdmin</Module>
<Name>Customer Users</Name>
<Block>Block1</Block>
<Prio>300</Prio>
</NavBarModule>
</FrontendModuleReg>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::Module###AdminCustomerUserGroup" Required="0" Valid="1">
<Description Lang="en">Frontend module registration for the AdminCustomerUserGroup object in the admin area.</Description>
<Description Lang="de">Frontendmodul-Registration des AdminCustomerUserGroup-Objekts im Admin-Bereich.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Admin::ModuleRegistration</SubGroup>
<Setting>
<FrontendModuleReg>
<Group>admin</Group>
<Description>Admin</Description>
<Title>Customer Users <-> Groups</Title>
<NavBarName>Admin</NavBarName>
<NavBarModule>
<Module>Kernel::Output::HTML::NavBarModuleAdmin</Module>
<Name>Customer Users <-> Groups</Name>
<Block>Block1</Block>
<Prio>400</Prio>
</NavBarModule>
</FrontendModuleReg>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::Module###AdminRole" Required="0" Valid="1">
<Description Lang="en">Frontend module registration for the AdminRole object in the admin area.</Description>
<Description Lang="de">Frontendmodul-Registration des AdminRole-Objekts im Admin-Bereich.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Admin::ModuleRegistration</SubGroup>
<Setting>
<FrontendModuleReg>
<Group>admin</Group>
<Description>Admin</Description>
<Title>Role</Title>
<NavBarName>Admin</NavBarName>
<NavBarModule>
<Module>Kernel::Output::HTML::NavBarModuleAdmin</Module>
<Name>Roles</Name>
<Block>Block1</Block>
<Prio>500</Prio>
</NavBarModule>
</FrontendModuleReg>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::Module###AdminRoleUser" Required="0" Valid="1">
<Description Lang="en">Frontend module registration for the AdminRoleUser object in the admin area.</Description>
<Description Lang="de">Frontendmodul-Registration des AdminRoleUser-Objekts im Admin-Bereich.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Admin::ModuleRegistration</SubGroup>
<Setting>
<FrontendModuleReg>
<Group>admin</Group>
<Description>Admin</Description>
<Title>Roles <-> Users</Title>
<NavBarName>Admin</NavBarName>
<NavBarModule>
<Module>Kernel::Output::HTML::NavBarModuleAdmin</Module>
<Name>Roles <-> Users</Name>
<Block>Block1</Block>
<Prio>600</Prio>
</NavBarModule>
</FrontendModuleReg>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::Module###AdminRoleGroup" Required="0" Valid="1">
<Description Lang="en">Frontend module registration for the AdminRoleGroup object in the admin area.</Description>
<Description Lang="de">Frontendmodul-Registration des AdminRoleGroup-Objekts im Admin-Bereich.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Admin::ModuleRegistration</SubGroup>
<Setting>
<FrontendModuleReg>
<Group>admin</Group>
<Description>Admin</Description>
<Title>Roles <-> Groups</Title>
<NavBarName>Admin</NavBarName>
<NavBarModule>
<Module>Kernel::Output::HTML::NavBarModuleAdmin</Module>
<Name>Roles <-> Groups</Name>
<Block>Block1</Block>
<Prio>700</Prio>
</NavBarModule>
</FrontendModuleReg>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::Module###AdminSMIME" Required="0" Valid="1">
<Description Lang="en">Frontend module registration for the AdminSMIME object in the admin area.</Description>
<Description Lang="de">Frontendmodul-Registration des AdminSMIME-Objekts im Admin-Bereich.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Admin::ModuleRegistration</SubGroup>
<Setting>
<FrontendModuleReg>
<Group>admin</Group>
<Description>Admin</Description>
<Title>SMIME Management</Title>
<NavBarName>Admin</NavBarName>
<NavBarModule>
<Module>Kernel::Output::HTML::NavBarModuleAdmin</Module>
<Name>SMIME</Name>
<Block>Block3</Block>
<Prio>500</Prio>
</NavBarModule>
</FrontendModuleReg>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::Module###AdminPGP" Required="0" Valid="1">
<Description Lang="en">Frontend module registration for the AdminPGP object in the admin area.</Description>
<Description Lang="de">Frontendmodul-Registration des AdminPGP-Objekts im Admin-Bereich.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Admin::ModuleRegistration</SubGroup>
<Setting>
<FrontendModuleReg>
<Group>admin</Group>
<Description>Admin</Description>
<Title>PGP Key Management</Title>
<NavBarName>Admin</NavBarName>
<NavBarModule>
<Module>Kernel::Output::HTML::NavBarModuleAdmin</Module>
<Name>PGP</Name>
<Block>Block3</Block>
<Prio>600</Prio>
</NavBarModule>
</FrontendModuleReg>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::Module###AdminPOP3" Required="0" Valid="1">
<Description Lang="en">Frontend module registration for the AdminPop3 object in the admin area.</Description>
<Description Lang="de">Frontendmodul-Registration des AdminPop3-Objekts im Admin-Bereich.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Admin::ModuleRegistration</SubGroup>
<Setting>
<FrontendModuleReg>
<Group>admin</Group>
<Description>Admin</Description>
<Title>POP3 Account</Title>
<NavBarName>Admin</NavBarName>
<NavBarModule>
<Module>Kernel::Output::HTML::NavBarModuleAdmin</Module>
<Name>PostMaster POP3 Account</Name>
<Block>Block4</Block>
<Prio>100</Prio>
</NavBarModule>
</FrontendModuleReg>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::Module###AdminPostMasterFilter" Required="0" Valid="1">
<Description Lang="en">Frontend module registration for the AdminPostMasterFilter object in the admin area.</Description>
<Description Lang="de">Frontendmodul-Registration des AdminPostMasterFilter-Objekts im Admin-Bereich.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Admin::ModuleRegistration</SubGroup>
<Setting>
<FrontendModuleReg>
<Group>admin</Group>
<Description>Admin</Description>
<Title>PostMaster Filter</Title>
<NavBarName>Admin</NavBarName>
<NavBarModule>
<Module>Kernel::Output::HTML::NavBarModuleAdmin</Module>
<Name>PostMaster Filter</Name>
<Block>Block4</Block>
<Prio>200</Prio>
</NavBarModule>
</FrontendModuleReg>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::Module###AdminEmail" Required="0" Valid="1">
<Description Lang="en">Frontend module registration for the AdminEmail object in the admin area.</Description>
<Description Lang="de">Frontendmodul-Registration des AdminEmail-Objekts im Admin-Bereich.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Admin::ModuleRegistration</SubGroup>
<Setting>
<FrontendModuleReg>
<Group>admin</Group>
<Description>Admin</Description>
<Title>Admin-Email</Title>
<NavBarName>Admin</NavBarName>
<NavBarModule>
<Module>Kernel::Output::HTML::NavBarModuleAdmin</Module>
<Name>Admin Notification</Name>
<Block>Block4</Block>
<Prio>400</Prio>
</NavBarModule>
</FrontendModuleReg>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::Module###AdminSession" Required="0" Valid="1">
<Description Lang="en">Frontend module registration for the AdminSession object in the admin area.</Description>
<Description Lang="de">Frontendmodul-Registration des AdminSession-Objekts im Admin-Bereich.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Admin::ModuleRegistration</SubGroup>
<Setting>
<FrontendModuleReg>
<Group>admin</Group>
<Description>Admin</Description>
<Title>Session Management</Title>
<NavBarName>Admin</NavBarName>
<NavBarModule>
<Module>Kernel::Output::HTML::NavBarModuleAdmin</Module>
<Name>Session Management</Name>
<Block>Block4</Block>
<Prio>500</Prio>
</NavBarModule>
</FrontendModuleReg>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::Module###AdminLog" Required="0" Valid="1">
<Description Lang="en">Frontend module registration for the AdminLog object in the admin area.</Description>
<Description Lang="de">Frontendmodul-Registration des AdminLog-Objekts im Admin-Bereich.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Admin::ModuleRegistration</SubGroup>
<Setting>
<FrontendModuleReg>
<Group>admin</Group>
<Description>Admin</Description>
<Title>System Log</Title>
<NavBarName>Admin</NavBarName>
<NavBarModule>
<Module>Kernel::Output::HTML::NavBarModuleAdmin</Module>
<Name>System Log</Name>
<Block>Block4</Block>
<Prio>600</Prio>
</NavBarModule>
</FrontendModuleReg>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::Module###AdminSelectBox" Required="0" Valid="1">
<Description Lang="en">Frontend module registration for the AdminSelectBox object in the admin area.</Description>
<Description Lang="de">Frontendmodul-Registration des AdminSelectBox-Objekts im Admin-Bereich.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Admin::ModuleRegistration</SubGroup>
<Setting>
<FrontendModuleReg>
<Group>admin</Group>
<Description>Admin</Description>
<Title>Select box</Title>
<NavBarName>Admin</NavBarName>
<NavBarModule>
<Module>Kernel::Output::HTML::NavBarModuleAdmin</Module>
<Name>Select Box</Name>
<Block>Block4</Block>
<Prio>700</Prio>
</NavBarModule>
</FrontendModuleReg>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::Module###AdminPackageManager" Required="0" Valid="1">
<Description Lang="en">Frontend module registration for the AdminPackageManager object in the admin area.</Description>
<Description Lang="de">Frontendmodul-Registration des AdminPackageManager-Objekts im Admin-Bereich.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Admin::ModuleRegistration</SubGroup>
<Setting>
<FrontendModuleReg>
<Group>admin</Group>
<Description>Software Package Manager</Description>
<Title>Package Manager</Title>
<NavBarName>Admin</NavBarName>
<NavBarModule>
<Module>Kernel::Output::HTML::NavBarModuleAdmin</Module>
<Name>Package Manager</Name>
<Block>Block4</Block>
<Prio>1000</Prio>
</NavBarModule>
</FrontendModuleReg>
</Setting>
</ConfigItem>
<ConfigItem Name="CustomerFrontend::Module###Logout" Required="0" Valid="1">
<Description Lang="en">Frontend module registration for the Logout object in the customer frontend.</Description>
<Description Lang="de">Frontendmodul-Registration des Logout-Objekts innerhalb des Customer-Frontends.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::ModuleRegistration</SubGroup>
<Setting>
<FrontendModuleReg>
<Description>Logout of customer panel</Description>
<Title></Title>
<NavBarName></NavBarName>
<NavBar>
<Description>Logout</Description>
<Name>Logout</Name>
<Image>exit.png</Image>
<Link>Action=Logout</Link>
<Block></Block>
<NavBar></NavBar>
<Type></Type>
<AccessKey>l</AccessKey>
<Prio>10</Prio>
</NavBar>
</FrontendModuleReg>
</Setting>
</ConfigItem>
<ConfigItem Name="CustomerFrontend::Module###CustomerPreferences" Required="0" Valid="1">
<Description Lang="en">Frontend module registration for the CustomerPreferences object in the customer frontend.</Description>
<Description Lang="de">Frontendmodul-Registration des CustomerPreferences-Objekts innerhalb des Customer-Frontends.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::ModuleRegistration</SubGroup>
<Setting>
<FrontendModuleReg>
<Description>Customer preferences</Description>
<Title>Preferences</Title>
<NavBarName></NavBarName>
<NavBar>
<Description>Preferences</Description>
<Name>Preferences</Name>
<Image>prefer.png</Image>
<Block></Block>
<NavBar></NavBar>
<Type></Type>
<Link>Action=CustomerPreferences</Link>
<AccessKey>p</AccessKey>
<Prio>1000</Prio>
</NavBar>
</FrontendModuleReg>
</Setting>
</ConfigItem>
<ConfigItem Name="CustomerFrontend::Module###CustomerCalendarSmall" Required="0" Valid="1">
<Description Lang="en">Frontend module registration for the CustomerCalendarSmall object in the agent interface.</Description>
<Description Lang="de">Frontendmodul-Registration des CustomerCalendarSmall-Objekts im Agent-Interface.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::ModuleRegistration</SubGroup>
<Setting>
<FrontendModuleReg>
<Description>Small calendar for date selection.</Description>
<Title>Calendar</Title>
<NavBarName></NavBarName>
</FrontendModuleReg>
</Setting>
</ConfigItem>
<ConfigItem Name="CustomerFrontend::Module###CustomerAccept" Required="0" Valid="1">
<Description Lang="en">Frontend module registration for the CustomerAccept object in the customer frontend.</Description>
<Description Lang="de">Frontendmodul-Registration des CustomerAccept-Objekts innerhalb des Customer-Frontends.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Customer::ModuleRegistration</SubGroup>
<Setting>
<FrontendModuleReg>
<Description>To accept login infos</Description>
<Title>Info</Title>
<NavBarName></NavBarName>
</FrontendModuleReg>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::NavBarStyle" Required="1" Valid="1">
<Description Lang="en">With this setting you can define how the icons in the Navbar are displayed.</Description>
<Description Lang="de">Hier knnen Sie die Darstellungsart der Icons in der Navigationszeile definieren.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent</SubGroup>
<Setting>
<Option SelectedID="Classic">
<Item Key="Classic">Classic</Item>
<Item Key="Modern">Modern</Item>
</Option>
</Setting>
</ConfigItem>
<ConfigItem Name="Frontend::NavBarStyle::ShowSelectedArea" Required="1" Valid="1">
<Description Lang="en">Do you want to highlight the link to the selected module in the NavBar?</Description>
<Description Lang="de">Auswahl, ob in der Navigationszeile der Link des aktuell ausgewhlten Modules farblich hervorgehoben werden soll.</Description>
<Group>Framework</Group>
<SubGroup>Frontend::Agent</SubGroup>
<Setting>
<Option SelectedID="0">
<Item Key="0">No</Item>
<Item Key="1">Yes</Item>
</Option>
</Setting>
</ConfigItem>
</otrs_config>
|