File: Framework.xml

package info (click to toggle)
otrs2 2.2.7-2lenny3
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 13,444 kB
  • ctags: 5,808
  • sloc: perl: 129,825; xml: 16,139; sql: 11,400; sh: 1,198; makefile: 31; php: 16
file content (4966 lines) | stat: -rw-r--r-- 246,826 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
<?xml version="1.0" encoding="iso-8859-1" ?>
<!--
Possible SubGroups
    - Core
    - Core::LinkObject
    - Core::Log
    - Core::PostMaster
    - Core::MIME-Viewer
    - Core::Package
    - Core::PDF
    - Core::Sendmail
    - Core::Session
    - Core::SpellChecker
    - Core::Time
    - Core::Web
    - Core::PostMaster
    - Core::Stats
    - Core::Stats::Graph
    - Crypt::PGP
    - Crypt::SMIME
    - Frontend::Agent
    - Frontend::Admin::ModuleRegistration
    - Frontend::Agent::ModuleRegistration
    - Frontend::Agent::ModuleNotify
    - Frontend::Agent::NavBarModule
    - Frontend::Agent::Preferences
    - Frontend::Agent::Stats
    - 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 &gt; instead of >
                and &lt; instead of <
            </TextArea>
        </Setting>
    </ConfigItem>

TimeVacationDaysOneTime
TimeVacationDays
TimeWorkingHours

-->
<otrs_config version="1.0" init="Framework">
    <CVS>$Id: Framework.xml,v 1.149.2.7 2008/05/09 12:46:09 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 Name der Software.</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 identifier. 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 specified 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">Emailadresse 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 specified, 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 environments with many possible charsets. 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. Wird 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 ar_SA, bg, ct, cz, da, de, en, el, es, et, fi, fr, hu, it, nb_NO, nl, pl, pt, pt_BR ru, th, sk_SK, sv, vi_VN and zh_CN.</Description>
        <Description Lang="de">Standard Frontend Sprache. Mgliche Werte sind ar_SA, bg, ct, cz, da, de, en, el, es, et, fi, fr, hu, it, nb_NO, nl, pl, pt, pt_BR ru, th, sk_SK, sv, vi_VN und zh_CN.</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="ar_SA">Arabic (Saudi Arabia)</Item>
                <Item Key="bg">Bulgarian (&amp;#x0411;&amp;#x044a;&amp;#x043b;&amp;#x0433;&amp;#x0430;&amp;#x0440;&amp;#x0441;&amp;#x043a;&amp;#x0438;)</Item>
                <Item Key="ct">Catal&amp;agrave;</Item>
                <Item Key="cz">Czech (&amp;#x010c;esky)</Item>
                <Item Key="da">Dansk</Item>
                <Item Key="de">Deutsch</Item>
                <Item Key="en">English</Item>
                <Item Key="es">Espa&amp;ntilde;ol</Item>
                <Item Key="et">Eesti</Item>
                <Item Key="el">Greek (&amp;#x0395;&amp;#x03bb;&amp;#x03bb;&amp;#x03b7;&amp;#x03bd;&amp;#x03b9;&amp;#x03ba;&amp;#x03ac;)</Item>
                <Item Key="fa">Persian (&amp;#x0641;&amp;#x0627;&amp;#x0631;&amp;#x0633;&amp;#x0649;)</Item>
                <Item Key="fr">Fran&amp;ccedil;ais</Item>
                <Item Key="fi">Suomi</Item>
                <Item Key="hu">Magyar</Item>
                <Item Key="it">Italiano</Item>
                <Item Key="nl">Nederlands</Item>
                <Item Key="nb_NO">Norsk bokm&amp;aring;l</Item>
                <Item Key="pt_BR">Portugu&amp;ecirc;s Brasileiro</Item>
                <Item Key="pt">Portugu&amp;ecirc;s</Item>
                <Item Key="pl">Polski</Item>
                <Item Key="ru">Russian (&amp;#x0420;&amp;#x0443;&amp;#x0441;&amp;#x0441;&amp;#x043a;&amp;#x0438;&amp;#x0439;)</Item>
                <Item Key="sk_SK">Slovak (Sloven&amp;#x010d;ina)</Item>
                <Item Key="sv">Svenska</Item>
                <Item Key="tr">T&amp;uuml;rk&amp;ccedil;e</Item>
                <Item Key="vi_VN">Vietnam (Vi&amp;#x0246;t Nam)</Item>
                <Item Key="zh_CN">Chinese (Sim.) (&amp;#x7b80;&amp;#x4f53;&amp;#x4e2d;&amp;#x6587;)</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">Individual themes for Customers and Agents are possible in OTRS. These can be activated by a seperate domain. The field "Key" contains the domain or a regexp to match a domain. "Content" states the name of the theme being used. </Description>
        <Description Lang="de">OTRS bietet die Mglichkeit individuelle Themes fr Kunden und Agents festzulegen. Diese knnen unter anderem durch den Aufruf einer extra dafr geschaffenen Domain angezeigt werden. Dabei enthlt das Feld "Schlssel" eine Domain oder eine RegExp die eine Domain matched. Das zugehrige Theme wird im Feld "Inhalt" angegeben.</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="Frontend::ImagePath" Required="1" Valid="1">
        <Description Lang="en">URL image path of icons for navigation.</Description>
        <Description Lang="de">URL Bildverzeichnis der Icons fuer Navigation.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Web</SubGroup>
        <Setting>
            <String Regex="">/otrs-web/images/Standard/</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="DefaultViewNewLine" Required="1" Valid="1">
        <Description Lang="en">Automated line break in text messages after x number of chars.</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}$">90</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="DefaultPreViewLines" Required="1" Valid="1">
        <Description Lang="en">Count of lines that are displayed in the preview of messages (e.g. for tickets in the QueueView).</Description>
        <Description Lang="de">Anzahl 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">Amount 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- oder 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 kurzen 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="ExtendedSearchCondition" Required="0" Valid="1">
        <Description Lang="en">Extended search condition in object search. With this feature you can search w. g. with this kind of conditions like "(key1&amp;&amp;key2)" or "(key1||key2)".</Description>
        <Description Lang="de">Erweiterte Such-Ausdruecke. Es ist dann z. B. mglich Abfragen wie z. B. "(key1&amp;&amp;key2)" oder "(key1||key2)" zu benuten.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Web</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 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 an email?</Description>
        <Description Lang="de">Soll der MX-Record von Emailadressen 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 Emailadressen auf 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 syntactically valid but necessary 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 Emailadressen.</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 logging.</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">Set this config parameter to "Yes", if you want to add a suffix with the actual year and month to the otrs logfile. A logfile for every month will be created.</Description>
        <Description Lang="de">Wird dieser Konfigurationsparameter aktiviert, wird an das OTRS Logfile eine Endung mit dem aktuellen Monat und Jahr angehngt und monatlich ein neues Logfile geschrieben.</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="SendmailModule" Required="1" Valid="1">
        <Description Lang="en">Module to send emails. "Sendmail" directly uses the sendmail binary of your operating system. "SMTP" uses a specified (external) mailserver. "DoNotSendEmail" is not sending emails and useful for test systems.</Description>
        <Description Lang="de">Modul zum Versenden von Emails. "Sendmail" verwendet das sendmail-Binary Ihres Betriebssystems. "SMTP" versendet die Nachrichten ber einen externen Mailserver. "DoNotSendEmail" versendet keine Email und ist ntzlich um in Test-System den Emailversans zu deaktivieren.</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 entgegennimmt.</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 specified 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 specified, 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="SendmailEncodingForce" Required="0" Valid="0">
        <Description Lang="en">To force encoding of outboing emails (7bit|8bit|quoted-printable|base64).</Description>
        <Description Lang="de">Erzwingen des Email-Encoding von ausgehenden Emails (7bit|8bit|quoted-printable|base64).</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Sendmail</SubGroup>
        <Setting>
            <String Regex="">base64</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 Link 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="UserFirstname">givenName</Item>
                <Item Key="UserLastname">sn</Item>
                <Item Key="UserEmail">mail</Item>
            </Hash>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="UserSyncLDAPGroups" Required="0" Valid="0">
        <Description Lang="en">If "LDAP" was selected for AuthModule, you can specify initial 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###AgentInfo" Required="0" Valid="0">
        <Description Lang="en">This module is useful to load specific user options or to display news.</Description>
        <Description Lang="de">Mit Hilfe dieses Moduls knnen bestimmte Benutzeroptionen geladen oder Neuigkeiten angezeigt werden.</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 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 (normally 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 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>
                <Item Key="ShowEmail">1</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>
                <Item Key="ShowEmail">1</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 or OTRS.</Description>
        <Description Lang="de">Name der Session-Kennung. Z. B. Session, SessionID oder 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 invalid 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="">50400</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 inactivity (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 have 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 per Link bermittelt.</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 been 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="">&lt;OTRS_CONFIG_Home&gt;/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 UTC 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="TimeZoneUser" Required="0" Valid="1">
        <Description Lang="en">Set the user time zone per user (required a system with UTC as system time and UTC under TimeZone). Otherwise this is a diff time to the local time.</Description>
        <Description Lang="de">Einstellen der Zeitzone pro Benutzer (Voraussetzung ist UTC unter der Option TimeZone). Standardmig wird die lokale Systemzeit verwendet, (+ / - 0).</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="TimeZoneUserBrowserAutoOffset" Required="0" Valid="1">
        <Description Lang="en">Set the user time zone per user based on java script / browser time zone offset feature at login time.</Description>
        <Description Lang="de">Einstellen der Zeitzone pro Benutzer basierent auf der Java Script / Browser "Time Offset" funktionalitaet zur Loginzeit.</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="TimeVacationDays" Required="1" Valid="1">
        <Description Lang="en">Add your permanent vacation days. Use single-digit pattern for months January to September and for days of month lower than ten.</Description>
        <Description Lang="de">Hinterlegen Sie hier Ihre permanenten Feiertage im System. Benutzen Sie bitte fr Januar bis Septemper einstellige Zahlen (1-9), ebenso fr Monatstage kleiner zehn.</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. Use single-digit pattern for months January to September and for days of month lower than ten.</Description>
        <Description Lang="de">Einmalige Feiertage im System hinterlegen. Benutzen Sie bitte fr Januar bis Septemper einstellige Zahlen (1-9), ebenso fr Monatstage kleiner zehn.</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="TimeZone::Calendar1Name" Required="1" Valid="1">
        <Description Lang="en">Calendar Name.</Description>
        <Description Lang="de">Kalender Name.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar1</SubGroup>
        <Setting>
            <String Regex="">Calendar Name 1</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="TimeZone::Calendar1" Required="1" Valid="1">
        <Description Lang="en">The time zone of the queue.</Description>
        <Description Lang="de">Zeitzone der Queue.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar1</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::Calendar1" Required="1" Valid="1">
        <Description Lang="en">Add your permanent vacation days. Use single-digit pattern for months January to September and for days of month lower than ten.</Description>
        <Description Lang="de">Hinterlegen Sie hier Ihre permanenten Feiertage im System. Benutzen Sie bitte fr Januar bis Septemper einstellige Zahlen (1-9), ebenso fr Monatstage kleiner zehn.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar1</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::Calendar1" Required="1" Valid="1">
        <Description Lang="en">One time vacation days. Use single-digit pattern for months January to September and for days of month lower than ten.</Description>
        <Description Lang="de">Einmalige Feiertage im System hinterlegen. Benutzen Sie bitte fr Januar bis Septemper einstellige Zahlen (1-9), ebenso fr Monatstage kleiner zehn.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar1</SubGroup>
        <Setting>
            <TimeVacationDaysOneTime>
                <Item Year="2004" Month="1" Day="1">test</Item>
            </TimeVacationDaysOneTime>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="TimeWorkingHours::Calendar1" 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::Calendar1</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="TimeZone::Calendar2Name" Required="1" Valid="1">
        <Description Lang="en">Calendar Name.</Description>
        <Description Lang="de">Kalender Name.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar2</SubGroup>
        <Setting>
            <String Regex="">Calendar Name 2</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="TimeZone::Calendar2" Required="1" Valid="1">
        <Description Lang="en">The time zone of the queue.</Description>
        <Description Lang="de">Zeitzone der Queue.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar2</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::Calendar2" Required="1" Valid="1">
        <Description Lang="en">Add your permanent vacation days. Use single-digit pattern for months January to September and for days of month lower than ten.</Description>
        <Description Lang="de">Hinterlegen Sie hier Ihre permanenten Feiertage im System. Benutzen Sie bitte fr Januar bis Septemper einstellige Zahlen (1-9), ebenso fr Monatstage kleiner zehn.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar2</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::Calendar2" Required="1" Valid="1">
        <Description Lang="en">One time vacation days. Use single-digit pattern for months January to September and for days of month lower than ten.</Description>
        <Description Lang="de">Einmalige Feiertage im System hinterlegen. Benutzen Sie bitte fr Januar bis Septemper einstellige Zahlen (1-9), ebenso fr Monatstage kleiner zehn.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar2</SubGroup>
        <Setting>
            <TimeVacationDaysOneTime>
                <Item Year="2004" Month="1" Day="1">test</Item>
            </TimeVacationDaysOneTime>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="TimeWorkingHours::Calendar2" 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::Calendar2</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="TimeZone::Calendar3Name" Required="1" Valid="1">
        <Description Lang="en">Calendar Name.</Description>
        <Description Lang="de">Kalender Name.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar3</SubGroup>
        <Setting>
            <String Regex="">Calendar Name 3</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="TimeZone::Calendar3" Required="1" Valid="1">
        <Description Lang="en">The time zone of the queue.</Description>
        <Description Lang="de">Zeitzone der Queue.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar3</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::Calendar3" Required="1" Valid="1">
        <Description Lang="en">Add your permanent vacation days. Use single-digit pattern for months January to September and for days of month lower than ten.</Description>
        <Description Lang="de">Hinterlegen Sie hier Ihre permanenten Feiertage im System. Benutzen Sie bitte fr Januar bis Septemper einstellige Zahlen (1-9), ebenso fr Monatstage kleiner zehn.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar3</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::Calendar3" Required="1" Valid="1">
        <Description Lang="en">One time vacation days. Use single-digit pattern for months January to September and for days of month lower than ten.</Description>
        <Description Lang="de">Einmalige Feiertage im System hinterlegen. Benutzen Sie bitte fr Januar bis Septemper einstellige Zahlen (1-9), ebenso fr Monatstage kleiner zehn.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar3</SubGroup>
        <Setting>
            <TimeVacationDaysOneTime>
                <Item Year="2004" Month="1" Day="1">test</Item>
            </TimeVacationDaysOneTime>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="TimeWorkingHours::Calendar3" 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::Calendar3</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="TimeZone::Calendar4Name" Required="1" Valid="1">
        <Description Lang="en">Calendar Name.</Description>
        <Description Lang="de">Kalender Name.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar4</SubGroup>
        <Setting>
            <String Regex="">Calendar Name 4</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="TimeZone::Calendar4" Required="1" Valid="1">
        <Description Lang="en">The time zone of the queue.</Description>
        <Description Lang="de">Zeitzone der Queue.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar4</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::Calendar4" Required="1" Valid="1">
        <Description Lang="en">Add your permanent vacation days. Use single-digit pattern for months January to September and for days of month lower than ten.</Description>
        <Description Lang="de">Hinterlegen Sie hier Ihre permanenten Feiertage im System. Benutzen Sie bitte fr Januar bis Septemper einstellige Zahlen (1-9), ebenso fr Monatstage kleiner zehn.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar4</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::Calendar4" Required="1" Valid="1">
        <Description Lang="en">One time vacation days. Use single-digit pattern for months January to September and for days of month lower than ten.</Description>
        <Description Lang="de">Einmalige Feiertage im System hinterlegen. Benutzen Sie bitte fr Januar bis Septemper einstellige Zahlen (1-9), ebenso fr Monatstage kleiner zehn.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar4</SubGroup>
        <Setting>
            <TimeVacationDaysOneTime>
                <Item Year="2004" Month="1" Day="1">test</Item>
            </TimeVacationDaysOneTime>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="TimeWorkingHours::Calendar4" 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::Calendar4</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="TimeZone::Calendar5Name" Required="1" Valid="1">
        <Description Lang="en">Calendar Name.</Description>
        <Description Lang="de">Kalender Name.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar5</SubGroup>
        <Setting>
            <String Regex="">Calendar Name 5</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="TimeZone::Calendar5" Required="1" Valid="1">
        <Description Lang="en">The time zone of the queue.</Description>
        <Description Lang="de">Zeitzone der Queue.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar5</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::Calendar5" Required="1" Valid="1">
        <Description Lang="en">Add your permanent vacation days. Use single-digit pattern for months January to September and for days of month lower than ten.</Description>
        <Description Lang="de">Hinterlegen Sie hier Ihre permanenten Feiertage im System. Benutzen Sie bitte fr Januar bis Septemper einstellige Zahlen (1-9), ebenso fr Monatstage kleiner zehn.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar5</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::Calendar5" Required="1" Valid="1">
        <Description Lang="en">One time vacation days. Use single-digit pattern for months January to September and for days of month lower than ten.</Description>
        <Description Lang="de">Einmalige Feiertage im System hinterlegen. Benutzen Sie bitte fr Januar bis Septemper einstellige Zahlen (1-9), ebenso fr Monatstage kleiner zehn.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar5</SubGroup>
        <Setting>
            <TimeVacationDaysOneTime>
                <Item Year="2004" Month="1" Day="1">test</Item>
            </TimeVacationDaysOneTime>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="TimeWorkingHours::Calendar5" 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::Calendar5</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="TimeZone::Calendar6Name" Required="1" Valid="1">
        <Description Lang="en">Calendar Name.</Description>
        <Description Lang="de">Kalender Name.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar6</SubGroup>
        <Setting>
            <String Regex="">Calendar Name 6</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="TimeZone::Calendar6" Required="1" Valid="1">
        <Description Lang="en">The time zone of the queue.</Description>
        <Description Lang="de">Zeitzone der Queue.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar6</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::Calendar6" Required="1" Valid="1">
        <Description Lang="en">Add your permanent vacation days. Use single-digit pattern for months January to September and for days of month lower than ten.</Description>
        <Description Lang="de">Hinterlegen Sie hier Ihre permanenten Feiertage im System. Benutzen Sie bitte fr Januar bis Septemper einstellige Zahlen (1-9), ebenso fr Monatstage kleiner zehn.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar6</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::Calendar6" Required="1" Valid="1">
        <Description Lang="en">One time vacation days. Use single-digit pattern for months January to September and for days of month lower than ten.</Description>
        <Description Lang="de">Einmalige Feiertage im System hinterlegen. Benutzen Sie bitte fr Januar bis Septemper einstellige Zahlen (1-9), ebenso fr Monatstage kleiner zehn.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar6</SubGroup>
        <Setting>
            <TimeVacationDaysOneTime>
                <Item Year="2004" Month="1" Day="1">test</Item>
            </TimeVacationDaysOneTime>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="TimeWorkingHours::Calendar6" 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::Calendar6</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="TimeZone::Calendar7Name" Required="1" Valid="1">
        <Description Lang="en">Calendar Name.</Description>
        <Description Lang="de">Kalender Name.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar7</SubGroup>
        <Setting>
            <String Regex="">Calendar Name 7</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="TimeZone::Calendar7" Required="1" Valid="1">
        <Description Lang="en">The time zone of the queue.</Description>
        <Description Lang="de">Zeitzone der Queue.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar7</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::Calendar7" Required="1" Valid="1">
        <Description Lang="en">Add your permanent vacation days. Use single-digit pattern for months January to September and for days of month lower than ten.</Description>
        <Description Lang="de">Hinterlegen Sie hier Ihre permanenten Feiertage im System. Benutzen Sie bitte fr Januar bis Septemper einstellige Zahlen (1-9), ebenso fr Monatstage kleiner zehn.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar7</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::Calendar7" Required="1" Valid="1">
        <Description Lang="en">One time vacation days. Use single-digit pattern for months January to September and for days of month lower than ten.</Description>
        <Description Lang="de">Einmalige Feiertage im System hinterlegen. Benutzen Sie bitte fr Januar bis Septemper einstellige Zahlen (1-9), ebenso fr Monatstage kleiner zehn.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar7</SubGroup>
        <Setting>
            <TimeVacationDaysOneTime>
                <Item Year="2004" Month="1" Day="1">test</Item>
            </TimeVacationDaysOneTime>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="TimeWorkingHours::Calendar7" 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::Calendar7</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="TimeZone::Calendar8Name" Required="1" Valid="1">
        <Description Lang="en">Calendar Name.</Description>
        <Description Lang="de">Kalender Name.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar8</SubGroup>
        <Setting>
            <String Regex="">Calendar Name 8</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="TimeZone::Calendar8" Required="1" Valid="1">
        <Description Lang="en">The time zone of the queue.</Description>
        <Description Lang="de">Zeitzone der Queue.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar8</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::Calendar8" Required="1" Valid="1">
        <Description Lang="en">Add your permanent vacation days. Use single-digit pattern for months January to September and for days of month lower than ten.</Description>
        <Description Lang="de">Hinterlegen Sie hier Ihre permanenten Feiertage im System. Benutzen Sie bitte fr Januar bis Septemper einstellige Zahlen (1-9), ebenso fr Monatstage kleiner zehn.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar8</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::Calendar8" Required="1" Valid="1">
        <Description Lang="en">One time vacation days. Use single-digit pattern for months January to September and for days of month lower than ten.</Description>
        <Description Lang="de">Einmalige Feiertage im System hinterlegen. Benutzen Sie bitte fr Januar bis Septemper einstellige Zahlen (1-9), ebenso fr Monatstage kleiner zehn.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar8</SubGroup>
        <Setting>
            <TimeVacationDaysOneTime>
                <Item Year="2004" Month="1" Day="1">test</Item>
            </TimeVacationDaysOneTime>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="TimeWorkingHours::Calendar8" 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::Calendar8</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="TimeZone::Calendar9Name" Required="1" Valid="1">
        <Description Lang="en">Calendar Name.</Description>
        <Description Lang="de">Kalender Name.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar9</SubGroup>
        <Setting>
            <String Regex="">Calendar Name 9</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="TimeZone::Calendar9" Required="1" Valid="1">
        <Description Lang="en">The time zone of the queue.</Description>
        <Description Lang="de">Zeitzone der Queue.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar9</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::Calendar9" Required="1" Valid="1">
        <Description Lang="en">Add your permanent vacation days. Use single-digit pattern for months January to September and for days of month lower than ten.</Description>
        <Description Lang="de">Hinterlegen Sie hier Ihre permanenten Feiertage im System. Benutzen Sie bitte fr Januar bis Septemper einstellige Zahlen (1-9), ebenso fr Monatstage kleiner zehn.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar9</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::Calendar9" Required="1" Valid="1">
        <Description Lang="en">One time vacation days. Use single-digit pattern for months January to September and for days of month lower than ten.</Description>
        <Description Lang="de">Einmalige Feiertage im System hinterlegen. Benutzen Sie bitte fr Januar bis Septemper einstellige Zahlen (1-9), ebenso fr Monatstage kleiner zehn.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Time::Calendar9</SubGroup>
        <Setting>
            <TimeVacationDaysOneTime>
                <Item Year="2004" Month="1" Day="1">test</Item>
            </TimeVacationDaysOneTime>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="TimeWorkingHours::Calendar9" 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::Calendar9</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,11}$">10485760</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="WebUploadCacheModule" Required="1" Valid="1">
        <Description Lang="en">Select the module to handle uploads 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::FilterElementPost###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 for 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 login as a selected user via the users administration.</Description>
        <Description Lang="de">Dem Administrator erlauben sich ber die Benutzerverwaltung mit dem Zugang eines Benutzers anzumelden.</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="">&lt;OTRS_CONFIG_Home&gt;/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 spell 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::FileUpload" Required="1" Valid="1">
        <Description Lang="en">Enable file upload in package manager frontend?</Description>
        <Description Lang="de">File Upload im WebFrontend der Paket-Verwaltung aktivieren?</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Package</SubGroup>
        <Setting>
            <Option SelectedID="1">
                <Item Key="0">No</Item>
                <Item Key="1">Yes</Item>
            </Option>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="Package::RepositoryRoot" Required="0" Valid="1">
        <Description Lang="en">Location to get online repository list for additional packages. The first available 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>
    </ConfigItem>
    <ConfigItem Name="Package::RepositoryList" Required="0" Valid="0">
        <Description Lang="en">List of online repositories (for example you also can use other installations as repositoriy by using Key="http://example.com/otrs/public.pl?Action=PublicRepository&amp;File=" and Content="Some Name").</Description>
        <Description Lang="de">Liste der zur Verfgung stehenden Online-Quellen (es koennen z. B. auch andere Installationen als Online-Quellen verwendet werden mit der Verwendung von Key="http://example.com/otrs/public.pl?Action=PublicRepository&amp;File=" and Content="Ein Name").</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>
    </ConfigItem>
    <ConfigItem Name="Package::RepositoryAccessRegExp" Required="0" Valid="0">
        <Description Lang="en">IP RegExp for accessing local repository. You need to enable this to have access to your local repository. Package::RepositoryList is required on the remote host.</Description>
        <Description Lang="de">IP RegExp fuer lokale Online-Quelle. Sie muessen dies aktivieren um den Zugriff auf die lokale Online-Quelle zu haben. Package::RepositoryList ist Voraussetzung am entfernten Rechner.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Package</SubGroup>
        <Setting>
            <String Regex="">127\.0\.0\.1</String>
        </Setting>
    </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="">15</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="SOAP::User" Required="0" Valid="0">
        <Description Lang="en">The user name to access the SOAP handle (bin/cgi-bin/rpc.pl).</Description>
        <Description Lang="de">Der Benutzername um die SOAP Schnitstelle benutzen zu koennen (bin/cgi-bin/rpc.pl).</Description>
        <Group>Framework</Group>
        <SubGroup>Core::SOAP</SubGroup>
        <Setting>
            <String Regex="">some_user</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="SOAP::Password" Required="0" Valid="0">
        <Description Lang="en">The password to access the SOAP handle (bin/cgi-bin/rpc.pl).</Description>
        <Description Lang="de">Das Passwort um die SOAP Schnitstelle benutzen zu koennen (bin/cgi-bin/rpc.pl).</Description>
        <Group>Framework</Group>
        <SubGroup>Core::SOAP</SubGroup>
        <Setting>
            <String Regex="">some_pass</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="PDF" Required="1" Valid="1">
        <Description Lang="en">Enable PDF output? The CPAN module PDF::API2 is required. If not installed PDF output will be disabled.</Description>
        <Description Lang="de">PDF Ausgabe aktivieren? Es wird das CPAN Modul PDF::API2 bentigt. Ist dieses nicht installiert, wird die PDF Ausgabe automatisch deaktiviert.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::PDF</SubGroup>
        <Setting>
            <Option SelectedID="1">
                <Item Key="0">No</Item>
                <Item Key="1">Yes</Item>
            </Option>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="PDF::LogoFile" Required="1" Valid="1">
        <Description Lang="en">File for the logo in the page header (gif|jpg|png, 700 x 100 pixel).</Description>
        <Description Lang="de">Datei fr das Logo, das im Seitenkopf angezeigt wird (gif|jpg|png, 700 x 100 Pixel).</Description>
        <Group>Framework</Group>
        <SubGroup>Core::PDF</SubGroup>
        <Setting>
            <String Regex="">&lt;OTRS_CONFIG_Home&gt;/var/logo-otrs.png</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="PDF::PageSize" Required="1" Valid="1">
        <Description Lang="en">Standard-size of PDF pages</Description>
        <Description Lang="de">Standard-Seitengre von PDF Seiten</Description>
        <Group>Framework</Group>
        <SubGroup>Core::PDF</SubGroup>
        <Setting>
            <Option SelectedID="a4">
                <Item Key="a4">DIN A4</Item>
                <Item Key="letter">Letter</Item>
            </Option>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="PDF::MaxPages" Required="1" Valid="1">
        <Description Lang="en">Maximum number of pages per PDF file</Description>
        <Description Lang="de">Maximale Anzahl von Seiten pro PDF Datei</Description>
        <Group>Framework</Group>
        <SubGroup>Core::PDF</SubGroup>
        <Setting>
            <Option SelectedID="100">
                <Item Key="50">50</Item>
                <Item Key="100">100</Item>
                <Item Key="150">150</Item>
                <Item Key="200">200</Item>
                <Item Key="250">250</Item>
                <Item Key="300">300</Item>
                <Item Key="350">350</Item>
                <Item Key="400">400</Item>
                <Item Key="450">450</Item>
                <Item Key="500">500</Item>
                <Item Key="550">550</Item>
                <Item Key="600">600</Item>
                <Item Key="650">650</Item>
                <Item Key="700">700</Item>
                <Item Key="750">750</Item>
                <Item Key="800">800</Item>
                <Item Key="850">850</Item>
                <Item Key="900">900</Item>
                <Item Key="950">950</Item>
                <Item Key="1000">1000</Item>
            </Option>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="PDF::TTFontFile###Proportional" Required="1" Valid="1">
        <Description Lang="en">Path and TTF-File to handle proportional font in PDF documents.</Description>
        <Description Lang="de">Pfad und TTF-Schriftdatei um proportianale Schrift in PDF Dokumente zu verarbeiten.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::PDF</SubGroup>
        <Setting>
            <String Regex="">DejaVuSans.ttf</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="PDF::TTFontFile###ProportionalBold" Required="1" Valid="1">
        <Description Lang="en">Path and TTF-File to handle bold proportional font in PDF documents.</Description>
        <Description Lang="de">Pfad und TTF-Schriftdatei um fette, proportianale Schrift in PDF Dokumente zu verarbeiten.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::PDF</SubGroup>
        <Setting>
            <String Regex="">DejaVuSans-Bold.ttf</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="PDF::TTFontFile###ProportionalItalic" Required="0" Valid="0">
        <Description Lang="en">Path and TTF-File to handle italic proportional font in PDF documents.</Description>
        <Description Lang="de">Pfad und TTF-Schriftdatei um kursive, proportianale Schrift in PDF Dokumente zu verarbeiten.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::PDF</SubGroup>
        <Setting>
            <String Regex="">DejaVuSans-Oblique.ttf</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="PDF::TTFontFile###ProportionalBoldItalic" Required="1" Valid="1">
        <Description Lang="en">Path and TTF-File to handle bold italic proportional font in PDF documents.</Description>
        <Description Lang="de">Pfad und TTF-Schriftdatei um fette, kursive, proportianale Schrift in PDF Dokumente zu verarbeiten.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::PDF</SubGroup>
        <Setting>
            <String Regex="">DejaVuSans-BoldOblique.ttf</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="PDF::TTFontFile###Monospaced" Required="1" Valid="1">
        <Description Lang="en">Path and TTF-File to handle monospaced font in PDF documents.</Description>
        <Description Lang="de">Pfad und TTF-Schriftdatei um monospaced Schrift in PDF Dokumente zu verarbeiten.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::PDF</SubGroup>
        <Setting>
            <String Regex="">DejaVuSansMono.ttf</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="PDF::TTFontFile###MonospacedBold" Required="0" Valid="0">
        <Description Lang="en">Path and TTF-File to handle bold monospaced font in PDF documents.</Description>
        <Description Lang="de">Pfad und TTF-Schriftdatei um fette, monospaced Schrift in PDF Dokumente zu verarbeiten.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::PDF</SubGroup>
        <Setting>
            <String Regex="">DejaVuSansMono-Bold.ttf</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="PDF::TTFontFile###MonospacedItalic" Required="0" Valid="0">
        <Description Lang="en">Path and TTF-File to handle italic monospaced font in PDF documents.</Description>
        <Description Lang="de">Pfad und TTF-Schriftdatei um kursive, monospaced Schrift in PDF Dokumente zu verarbeiten.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::PDF</SubGroup>
        <Setting>
            <String Regex="">DejaVuSansMono-Oblique.ttf</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="PDF::TTFontFile###MonospacedBoldItalic" Required="0" Valid="0">
        <Description Lang="en">Path and TTF-File to handle bold italic monospaced font in PDF documents.</Description>
        <Description Lang="de">Pfad und TTF-Schriftdatei um fette, kursive, monospaced Schrift in PDF Dokumente zu verarbeiten.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::PDF</SubGroup>
        <Setting>
            <String Regex="">DejaVuSansMono-BoldOblique.ttf</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 /opt/otrs/.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 Benachrichtigungsemails 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">Emailadresse die beim Versenden von Benachrichtigungsmails verwendet wird.</Description>
        <Group>Framework</Group>
        <SubGroup>Core</SubGroup>
        <Setting>
            <String Regex="">otrs@&lt;OTRS_CONFIG_FQDN&gt;</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 &lt;OTRS_USERFIRSTNAME&gt;,

you or someone impersonating you has requested to change your OTRS
password.

New Password: &lt;OTRS_NEWPW&gt;

&lt;OTRS_CONFIG_HttpType&gt;://&lt;OTRS_CONFIG_FQDN&gt;/&lt;OTRS_CONFIG_ScriptAlias&gt;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 Zugriffsrechte fr die Kunden.</Description>
        <Group>Framework</Group>
        <SubGroup>Core</SubGroup>
        <Setting>
            <Array>
                <Item>ro</Item>
                <Item>rw</Item>
            </Array>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="PerformanceLog" Required="0" Valid="1">
        <Description Lang="en">Enable PerformanceLog to log the page response time. Take care, this will take system performance (you also need to enable Frontend::Module###AdminPerformanceLog!).</Description>
        <Description Lang="de">PerformanceLog aktivieren um Seiten-Antwortzeiten zu protokollieren. Achtung, dies benoetigt System-Resourcen (es muss auch Frontend::Module###AdminPerformanceLog aktiviert werden!).</Description>
        <Group>Framework</Group>
        <SubGroup>Core::PerformanceLog</SubGroup>
        <Setting>
            <Option SelectedID="0">
                <Item Key="0">No</Item>
                <Item Key="1">Yes</Item>
            </Option>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="PerformanceLog::File" Required="1" Valid="1">
        <Description Lang="en">Logfile of PerformanceLog.</Description>
        <Description Lang="de">Logdatei des PerformanceLog.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::PerformanceLog</SubGroup>
        <Setting>
            <String Regex="">&lt;OTRS_CONFIG_Home&gt;/var/log/Performance.log</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="PerformanceLog::FileMax" Required="1" Valid="1">
        <Description Lang="en">Max. size in MB of log file.</Description>
        <Description Lang="de">Maximale groesse in MB der Logdatei.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::PerformanceLog</SubGroup>
        <Setting>
            <String Regex="">15</String>
        </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 Theme-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="PreferencesGroups###TimeZone" Required="0" Valid="1">
        <Description Lang="en">Parameters for the Time-Zone object in the preference view.</Description>
        <Description Lang="de">Parameter des Time-Zonen-Objekts in der Ansicht fr die Einstellungen.</Description>
        <Group>Framework</Group>
        <SubGroup>Frontend::Agent::Preferences</SubGroup>
        <Setting>
            <Hash>
                <Item Key="Module">Kernel::Output::HTML::PreferencesTimeZone</Item>
                <Item Key="Colum">Frontend</Item>
                <Item Key="Label">Time-Zone</Item>
                <Item Key="Desc">Select your Time-Zone.</Item>
                <Item Key="PrefKey">UserTimeZone</Item>
                <Item Key="Prio">3000</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 these groups, then put the groups for every 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>
                <Item Key="ShowEmail">1</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>
                <Item Key="ShowEmail">1</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###CustomerAccept" Required="0" Valid="0">
        <Description Lang="en">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 password 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 &lt;OTRS_USERFIRSTNAME&gt;,

you or someone impersonating you has requested to change your OTRS
password.

New Password: &lt;OTRS_NEWPW&gt;

&lt;OTRS_CONFIG_HttpType&gt;://&lt;OTRS_CONFIG_FQDN&gt;/&lt;OTRS_CONFIG_ScriptAlias&gt;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 &lt;OTRS_USERFIRSTNAME&gt;,

you or someone impersonating you has created a new OTRS account for
you (&lt;OTRS_USERFIRSTNAME&gt; &lt;OTRS_USERLASTNAME&gt;).

Login: &lt;OTRS_USERLOGIN&gt;
Password: &lt;OTRS_USERPASSWORD&gt;

&lt;OTRS_CONFIG_HttpType&gt;://&lt;OTRS_CONFIG_FQDN&gt;/&lt;OTRS_CONFIG_ScriptAlias&gt;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::CryptType" Required="1" Valid="1">
        <Description Lang="en">If "DB" was selected for Customer::AuthModule, you have to specify the crypt type of passwords.</Description>
        <Description Lang="de">Wenn "DB" fr Customer::AuthModule ausgewhlt wurde, muss der Crypt-Typ der Passwrter definiert werden..</Description>
        <Group>Framework</Group>
        <SubGroup>Frontend::Customer::Auth</SubGroup>
        <Setting>
            <Option SelectedID="crypt">
                <Item Key="crypt">Crypt</Item>
                <Item Key="md5">MD5</Item>
                <Item Key="plain">Plain</Item>
            </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::DB::Type" Required="0" Valid="0">
        <Description Lang="en">If "DB" was selected for Customer::AuthModule, you can specify a database driver (normaly autodetection is used).</Description>
        <Description Lang="de">Wenn "DB" fr Customer::AuthModule ausgewhlt wurde, kann ein Datenbank-Treiber definiert werden (normal wird eine automatische Erkennung benutzt).</Description>
        <Group>Framework</Group>
        <SubGroup>Frontend::Customer::Auth</SubGroup>
        <Setting>
            <String Regex="">mysql</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="Customer::AuthModule::HTTPBasicAuth::Replace" Required="0" Valid="0">
        <Description Lang="en">If "HTTPBasicAuth" was selected for Customer::AuthModule, you can specify to strip leading parts of user names (e. g. for domains like example_domain\user to user).</Description>
        <Description Lang="de">Wenn "HTTPBasicAuth" als Customer::AuthModule ausgewhlt wurde, kann hier spezifiziert werden, ob fhrende Teile eines Benutzernamens entfernt werden sollen (z. B. eine Domne example_domain\user zu user).</Description>
        <Group>Framework</Group>
        <SubGroup>Frontend::Customer::Auth</SubGroup>
        <Setting>
            <String Regex="">example_domain\\</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, specify 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">If "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 Zugriffsattribute 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 users have only anonymous access to the LDAP tree, but you want to search through 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 users have only anonymous access to the LDAP tree, but you want to search through 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-Baum 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 "perldoc 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::LDAP::Die" Required="0" Valid="1">
        <Description Lang="en">If "LDAP" was selected for Customer::AuthModule, you can specify if the applications will stop if e. g. a server can't connected (e. g. network problems).</Description>
        <Description Lang="de">Wenn "LDAP" als Customer::AuthModule ausgewhlt wurde, kann hier definiert werden ob die Anwendung abbricht wenn z. B. ein Server nicht erreichbar ist (z. B. Netzwerk-Probleme).</Description>
        <Group>Framework</Group>
        <SubGroup>Frontend::Customer::Auth</SubGroup>
        <Setting>
            <Option SelectedID="1">
                <Item Key="1">Yes</Item>
                <Item Key="0">No</Item>
            </Option>
        </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="Customer::AuthModule::Radios::Die" Required="0" Valid="1">
        <Description Lang="en">If "Radius" was selected for Customer::AuthModule, you can specify if the applications will stop if e. g. a server can't connected (e. g. network problems).</Description>
        <Description Lang="de">Wenn "Radius" als Customer::AuthModule ausgewhlt wurde, kann hier definiert werden ob die Anwendung abbricht wenn z. B. ein Server nicht erreichbar ist (z. B. Netzwerk-Probleme).</Description>
        <Group>Framework</Group>
        <SubGroup>Frontend::Customer::Auth</SubGroup>
        <Setting>
            <Option SelectedID="1">
                <Item Key="1">Yes</Item>
                <Item Key="0">No</Item>
            </Option>
        </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">S/MIME Certificate</Item>
                <Item Key="Desc">S/MIME 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>Preferences</NavBarName>
                <NavBar>
                    <Description>Agent Preferences</Description>
                    <Name>Preferences</Name>
                    <Image>prefer.png</Image>
                    <Link>Action=AgentPreferences</Link>
                    <NavBar>Preferences</NavBar>
                    <Type>Menu</Type>
                    <Block>ItemArea</Block>
                    <AccessKey>p</AccessKey>
                    <Prio>9900</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###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###AdminInit" Required="0" Valid="1">
        <Description Lang="en">Init of a new setup.</Description>
        <Description Lang="de">Init eines neuen Setups.</Description>
        <Group>Framework</Group>
        <SubGroup>Frontend::Admin::ModuleRegistration</SubGroup>
        <Setting>
            <FrontendModuleReg>
                <Group>admin</Group>
                <Description>Admin</Description>
                <Title>Init</Title>
                <NavBarName></NavBarName>
            </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 &lt;-&gt; Groups</Title>
                <NavBarName>Admin</NavBarName>
                <NavBarModule>
                    <Module>Kernel::Output::HTML::NavBarModuleAdmin</Module>
                    <Name>Users &lt;-&gt; 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&amp;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###AdminCustomerCompany" Required="0" Valid="1">
        <Description Lang="en">Frontend module registration for the AdminCustomerCompany object in the admin area.</Description>
        <Description Lang="de">Frontendmodul-Registration des AdminCustomerCompany-Objekts im Admin-Bereich.</Description>
        <Group>Framework</Group>
        <SubGroup>Frontend::Admin::ModuleRegistration</SubGroup>
        <Setting>
            <FrontendModuleReg>
                <GroupRo></GroupRo>
                <Group>admin</Group>
                <Group>users</Group>
                <Description>Admin</Description>
                <Title>Customer Company</Title>
                <NavBarName>Admin</NavBarName>
                <NavBar>
                    <Description>Edit Customer Company</Description>
                    <Name>Company</Name>
                    <Image>folder_yellow.png</Image>
                    <Link>Action=AdminCustomerCompany&amp;Nav=Agent</Link>
                    <NavBar>Ticket</NavBar>
                    <Type></Type>
                    <Block></Block>
                    <AccessKey>c</AccessKey>
                    <Prio>9100</Prio>
                </NavBar>
                <NavBarModule>
                    <Module>Kernel::Output::HTML::NavBarModuleAdmin</Module>
                    <Name>Customer Company</Name>
                    <Block>Block1</Block>
                    <Prio>310</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 &lt;-&gt; Groups</Title>
                <NavBarName>Admin</NavBarName>
                <NavBarModule>
                    <Module>Kernel::Output::HTML::NavBarModuleAdmin</Module>
                    <Name>Customer Users &lt;-&gt; Groups</Name>
                    <Block>Block1</Block>
                    <Prio>400</Prio>
                </NavBarModule>
            </FrontendModuleReg>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="Frontend::Module###AdminCustomerUserService" Required="0" Valid="1">
        <Description Lang="en">Frontend module registration for the AdminCustomerUserService object in the admin area.</Description>
        <Description Lang="de">Frontendmodul-Registration des AdminCustomerUserService-Objekts im Admin-Bereich.</Description>
        <Group>Framework</Group>
        <SubGroup>Frontend::Admin::ModuleRegistration</SubGroup>
        <Setting>
            <FrontendModuleReg>
                <Group>admin</Group>
                <Description>Admin</Description>
                <Title>Customer Users &lt;-&gt; Services</Title>
                <NavBarName>Admin</NavBarName>
                <NavBarModule>
                    <Module>Kernel::Output::HTML::NavBarModuleAdmin</Module>
                    <Name>Customer Users &lt;-&gt; Services</Name>
                    <Block>Block1</Block>
                    <Prio>500</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>600</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 &lt;-&gt; Users</Title>
                <NavBarName>Admin</NavBarName>
                <NavBarModule>
                    <Module>Kernel::Output::HTML::NavBarModuleAdmin</Module>
                    <Name>Roles &lt;-&gt; Users</Name>
                    <Block>Block1</Block>
                    <Prio>700</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 &lt;-&gt; Groups</Title>
                <NavBarName>Admin</NavBarName>
                <NavBarModule>
                    <Module>Kernel::Output::HTML::NavBarModuleAdmin</Module>
                    <Name>Roles &lt;-&gt; Groups</Name>
                    <Block>Block1</Block>
                    <Prio>800</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>S/MIME Management</Title>
                <NavBarName>Admin</NavBarName>
                <NavBarModule>
                    <Module>Kernel::Output::HTML::NavBarModuleAdmin</Module>
                    <Name>S/MIME</Name>
                    <Block>Block3</Block>
                    <Prio>1100</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>1200</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###AdminPerformanceLog" Required="0" Valid="1">
        <Description Lang="en">Frontend module registration for the AdminPerformanceLog object in the admin area.</Description>
        <Description Lang="de">Frontendmodul-Registration des AdminPerformanceLog-Objekts im Admin-Bereich.</Description>
        <Group>Framework</Group>
        <SubGroup>Frontend::Admin::ModuleRegistration</SubGroup>
        <Setting>
            <FrontendModuleReg>
                <Group>admin</Group>
                <Description>Admin</Description>
                <Title>Performance Log</Title>
                <NavBarName>Admin</NavBarName>
                <NavBarModule>
                    <Module>Kernel::Output::HTML::NavBarModuleAdmin</Module>
                    <Name>Performance Log</Name>
                    <Block>Block4</Block>
                    <Prio>550</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>SQL Box</Title>
                <NavBarName>Admin</NavBarName>
                <NavBarModule>
                    <Module>Kernel::Output::HTML::NavBarModuleAdmin</Module>
                    <Name>SQL 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>
    <ConfigItem Name="Frontend::CommonParam###Action" Required="0" Valid="1">
        <Description Lang="en">Default value for the Action parameter. The Frontend-Module which is used as default if no Action parameter given.</Description>
        <Description Lang="de">Standardwert des Action-Parameters. Dieses Frontend-Modul wird benutzt wenn kein Action-Parameter vorhanden ist.</Description>
        <Group>Framework</Group>
        <SubGroup>Frontend::Agent</SubGroup>
        <Setting>
            <String Regex="">AdminInit</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="PublicFrontend::Module###PublicRepository" Required="0" Valid="1">
        <Description Lang="en">Frontend module registration for the PublicRepository object in the public interface.</Description>
        <Description Lang="de">Frontendmodul-Registration des PublicRepository-Objekts im Public-Interface.</Description>
        <Group>Framework</Group>
        <SubGroup>Frontend::Public::ModuleRegistration</SubGroup>
        <Setting>
            <FrontendModuleReg>
                <Description>PublicRepository</Description>
                <Title>PublicRepository</Title>
                <NavBarName></NavBarName>
            </FrontendModuleReg>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="Frontend::Module###AgentStats" Required="0" Valid="1">
        <Description Lang="en">FrontendModuleRegistration for Stats to define the registration settings in the program and to set rights and positions of icons in the navigation bar.</Description>
        <Description Lang="de">FrontendModulRegistration fr das Modul Stats. Hier knnen Sie die Angaben fr die Registrierung des Moduls im Programm ttigen. Ferner knnen die Rechte und die Positionen der Icons in der Navigationsleiste gesetzt werden.</Description>
        <Group>Framework</Group>
        <SubGroup>Frontend::Agent::ModuleRegistration</SubGroup>
        <Setting>
            <FrontendModuleReg>
                <Title>Stats</Title>
                <Group>stats</Group>
                <GroupRo>stats</GroupRo>
                <Description>Stats</Description>
                <NavBarName>Stats</NavBarName>
                <NavBar>
                    <Description>Stats</Description>
                    <Name>Stats</Name>
                    <Image>stats.png</Image>
                    <Link>Action=AgentStats&amp;Subaction=Overview</Link>
                    <NavBar>Stats</NavBar>
                    <Type>Menu</Type>
                    <Prio>8500</Prio>
                    <Block>ItemArea</Block>
                    <AccessKey></AccessKey>
                </NavBar>
                <NavBar>
                    <GroupRo>stats</GroupRo>
                    <Description>Overview</Description>
                    <Name>Overview</Name>
                    <Image>overview.png</Image>
                    <Link>Action=AgentStats&amp;Subaction=Overview</Link>
                    <NavBar>Stats</NavBar>
                    <Prio>100</Prio>
                    <Type></Type>
                    <Block></Block>
                    <AccessKey></AccessKey>
                </NavBar>
                <NavBar>
                    <Group>stats</Group>
                    <Description>New</Description>
                    <Name>New</Name>
                    <Image>new.png</Image>
                    <Link>Action=AgentStats&amp;Subaction=Add</Link>
                    <NavBar>Stats</NavBar>
                    <Prio>200</Prio>
                    <Type></Type>
                    <Block></Block>
                    <AccessKey></AccessKey>
                </NavBar>
                <NavBar>
                    <Group>stats</Group>
                    <Description>Import</Description>
                    <Name>Import</Name>
                    <Image>import.png</Image>
                    <Link>Action=AgentStats&amp;Subaction=Import</Link>
                    <NavBar>Stats</NavBar>
                    <Prio>300</Prio>
                    <Type></Type>
                    <Block></Block>
                    <AccessKey></AccessKey>
                </NavBar>
            </FrontendModuleReg>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="Stats::StatsHook" Required="1" Valid="1">
        <Description Lang="en">To set the stats hook.</Description>
        <Description Lang="de">Hiermit kann der Statistik-Identifikator gesetzt werden.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Stats</SubGroup>
        <Setting>
            <String Regex="">Stat#</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="Stats::StatsStartNumber" Required="1" Valid="1">
        <Description Lang="en">Start stats counting from e. g. 10000. Every new stat increments this number.</Description>
        <Description Lang="de">Startzahl, ab der die Statistiknummern hochgezhlt werden.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Stats</SubGroup>
        <Setting>
            <String Regex="">10000</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="Stats::SearchPageShown" Required="1" Valid="1">
        <Description Lang="en">Default maximum number of search results shown on the Overview page.</Description>
        <Description Lang="de">Anzahl der angezeigten Treffer auf der bersicht.</Description>
        <Group>Framework</Group>
        <SubGroup>Frontend::Agent::Stats</SubGroup>
        <Setting>
            <String Regex="^[0-9]{1,2}$">20</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="Stats::SearchLimit" Required="1" Valid="1">
        <Description Lang="en">Search Limit.</Description>
        <Description Lang="de">Limit fr das Suchergebnis.</Description>
        <Group>Framework</Group>
        <SubGroup>Frontend::Agent::Stats</SubGroup>
        <Setting>
            <String Regex="^[0-9]{1,6}$">500</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="Stats::Format" Required="1" Valid="1">
        <Description Lang="en">Possible output formats.</Description>
        <Description Lang="de">Auswahlliste fr die mglichen Ausgabeformate.</Description>
        <Group>Framework</Group>
        <SubGroup>Frontend::Agent::Stats</SubGroup>
        <Setting>
            <Hash>
                <Item Key="Print">Print</Item>
                <Item Key="CSV">CSV</Item>
                <Item Key="GD::Graph::lines">graph-lines</Item>
                <Item Key="GD::Graph::bars">graph-bars</Item>
                <Item Key="GD::Graph::hbars">graph-hbars</Item>
                <Item Key="GD::Graph::points">graph-points</Item>
                <Item Key="GD::Graph::linespoints">graph-lines-points</Item>
                <Item Key="GD::Graph::area">graph-area</Item>
                <Item Key="GD::Graph::pie">graph-pie</Item>
            </Hash>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="Stats::GraphSize" Required="1" Valid="1">
        <Description Lang="en">Size of stat graph.</Description>
        <Description Lang="de">Gren von Statistik Grafiken.</Description>
        <Group>Framework</Group>
        <SubGroup>Frontend::Agent::Stats</SubGroup>
        <Setting>
            <Hash>
                <Item Key="800x600">800x600</Item>
                <Item Key="1200x800">1200x800</Item>
                <Item Key="1600x1200">1600x1200</Item>
            </Hash>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="Stats::Graph::t_margin" Required="1" Valid="1">
        <Description Lang="en">Top margin of chart.</Description>
        <Description Lang="de">Abstand von oben zum Diagramm</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Stats::Graph</SubGroup>
        <Setting>
            <String Regex="^[0-9]{1,5}$">10</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="Stats::Graph::l_margin" Required="1" Valid="1">
        <Description Lang="en">Left margin of chart.</Description>
        <Description Lang="de">Linker Abstand zum Diagramm.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Stats::Graph</SubGroup>
        <Setting>
            <String Regex="^[0-9]{1,5}$">10</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="Stats::Graph::b_margin" Required="1" Valid="1">
        <Description Lang="en">Bottom margin of chart.</Description>
        <Description Lang="de">Abstand von unten zum Diagramm.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Stats::Graph</SubGroup>
        <Setting>
            <String Regex="^[0-9]{1,5}$">10</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="Stats::Graph::r_margin" Required="1" Valid="1">
        <Description Lang="en">Right margin of chart.</Description>
        <Description Lang="de">Rechter Abstand zum Diagramm.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Stats::Graph</SubGroup>
        <Setting>
            <String Regex="^[0-9]{1,5}$">20</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="Stats::Graph::bgclr" Required="1" Valid="1">
        <Description Lang="en">Backgroundcolor of the picture.</Description>
        <Description Lang="de">Hintergrundfarbe vom Bild.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Stats::Graph</SubGroup>
        <Setting>
            <Option SelectedID="white">
                <Item Key="white">white</Item>
                <Item Key="red">red</Item>
                <Item Key="green">green</Item>
                <Item Key="blue">blue</Item>
                <Item Key="yellow">yellow</Item>
                <Item Key="black">black</Item>
                <Item Key="purple">purple</Item>
                <Item Key="orange">orange</Item>
                <Item Key="pink">pink</Item>
                <Item Key="marine">marine</Item>
                <Item Key="cyan">cyan</Item>
                <Item Key="lgray">light gray</Item>
                <Item Key="lblue">light blue</Item>
                <Item Key="lyellow">light yellow</Item>
                <Item Key="lgreen">light green</Item>
                <Item Key="lred">light red</Item>
                <Item Key="lpurple">light purple</Item>
                <Item Key="lorange">light orange</Item>
                <Item Key="lbrown">light brown</Item>
            </Option>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="Stats::Graph::transparent" Required="1" Valid="1">
        <Description Lang="en">Is the picture transparent?</Description>
        <Description Lang="de">Soll das Bild transparent sein?</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Stats::Graph</SubGroup>
        <Setting>
            <Option SelectedID="0">
                <Item Key="0">0</Item>
                <Item Key="1">1</Item>
            </Option>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="Stats::Graph::fgclr" Required="1" Valid="1">
        <Description Lang="en">Border color of the chart.</Description>
        <Description Lang="de">Rahmenfarbe des Diagramms.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Stats::Graph</SubGroup>
        <Setting>
            <Option SelectedID="black">
                <Item Key="white">white</Item>
                <Item Key="red">red</Item>
                <Item Key="green">green</Item>
                <Item Key="blue">blue</Item>
                <Item Key="yellow">yellow</Item>
                <Item Key="black">black</Item>
                <Item Key="purple">purple</Item>
                <Item Key="orange">orange</Item>
                <Item Key="pink">pink</Item>
                <Item Key="marine">marine</Item>
                <Item Key="cyan">cyan</Item>
                <Item Key="lgray">light gray</Item>
                <Item Key="lblue">light blue</Item>
                <Item Key="lyellow">light yellow</Item>
                <Item Key="lgreen">light green</Item>
                <Item Key="lred">light red</Item>
                <Item Key="lpurple">light purple</Item>
                <Item Key="lorange">light orange</Item>
                <Item Key="lbrown">light brown</Item>
            </Option>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="Stats::Graph::boxclr" Required="1" Valid="1">
        <Description Lang="en">Background color of the chart.</Description>
        <Description Lang="de">Hintergrundfarbe des Diagramms.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Stats::Graph</SubGroup>
        <Setting>
            <Option SelectedID="white">
                <Item Key="white">white</Item>
                <Item Key="red">red</Item>
                <Item Key="green">green</Item>
                <Item Key="blue">blue</Item>
                <Item Key="yellow">yellow</Item>
                <Item Key="black">black</Item>
                <Item Key="purple">purple</Item>
                <Item Key="orange">orange</Item>
                <Item Key="pink">pink</Item>
                <Item Key="marine">marine</Item>
                <Item Key="cyan">cyan</Item>
                <Item Key="lgray">light gray</Item>
                <Item Key="lblue">light blue</Item>
                <Item Key="lyellow">light yellow</Item>
                <Item Key="lgreen">light green</Item>
                <Item Key="lred">light red</Item>
                <Item Key="lpurple">light purple</Item>
                <Item Key="lorange">light orange</Item>
                <Item Key="lbrown">light brown</Item>
            </Option>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="Stats::Graph::accentclr" Required="1" Valid="1">
        <Description Lang="en">Bordercolor of the legend.</Description>
        <Description Lang="de">Rahmenfarbe der Legende.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Stats::Graph</SubGroup>
        <Setting>
            <Option SelectedID="black">
                <Item Key="white">white</Item>
                <Item Key="red">red</Item>
                <Item Key="green">green</Item>
                <Item Key="blue">blue</Item>
                <Item Key="yellow">yellow</Item>
                <Item Key="black">black</Item>
                <Item Key="purple">purple</Item>
                <Item Key="orange">orange</Item>
                <Item Key="pink">pink</Item>
                <Item Key="marine">marine</Item>
                <Item Key="cyan">cyan</Item>
                <Item Key="lgray">light gray</Item>
                <Item Key="lblue">light blue</Item>
                <Item Key="lyellow">light yellow</Item>
                <Item Key="lgreen">light green</Item>
                <Item Key="lred">light red</Item>
                <Item Key="lpurple">light purple</Item>
                <Item Key="lorange">light orange</Item>
                <Item Key="lbrown">light brown</Item>
            </Option>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="Stats::Graph::legendclr" Required="1" Valid="1">
        <Description Lang="en">Text color of the legend.</Description>
        <Description Lang="de">Textfarbe der Legende.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Stats::Graph</SubGroup>
        <Setting>
            <Option SelectedID="black">
                <Item Key="white">white</Item>
                <Item Key="red">red</Item>
                <Item Key="green">green</Item>
                <Item Key="blue">blue</Item>
                <Item Key="yellow">yellow</Item>
                <Item Key="black">black</Item>
                <Item Key="purple">purple</Item>
                <Item Key="orange">orange</Item>
                <Item Key="pink">pink</Item>
                <Item Key="marine">marine</Item>
                <Item Key="cyan">cyan</Item>
                <Item Key="lgray">light gray</Item>
                <Item Key="lblue">light blue</Item>
                <Item Key="lyellow">light yellow</Item>
                <Item Key="lgreen">light green</Item>
                <Item Key="lred">light red</Item>
                <Item Key="lpurple">light purple</Item>
                <Item Key="lorange">light orange</Item>
                <Item Key="lbrown">light brown</Item>
            </Option>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="Stats::Graph::textclr" Required="1" Valid="1">
        <Description Lang="en">Text color of the chart (e. g. caption).</Description>
        <Description Lang="de">Textfarbe vom Diagramm (z. B. Titel).</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Stats::Graph</SubGroup>
        <Setting>
            <Option SelectedID="black">
                <Item Key="white">white</Item>
                <Item Key="red">red</Item>
                <Item Key="green">green</Item>
                <Item Key="blue">blue</Item>
                <Item Key="yellow">yellow</Item>
                <Item Key="black">black</Item>
                <Item Key="purple">purple</Item>
                <Item Key="orange">orange</Item>
                <Item Key="pink">pink</Item>
                <Item Key="marine">marine</Item>
                <Item Key="cyan">cyan</Item>
                <Item Key="lgray">light gray</Item>
                <Item Key="lblue">light blue</Item>
                <Item Key="lyellow">light yellow</Item>
                <Item Key="lgreen">light green</Item>
                <Item Key="lred">light red</Item>
                <Item Key="lpurple">light purple</Item>
                <Item Key="lorange">light orange</Item>
                <Item Key="lbrown">light brown</Item>
            </Option>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="Stats::Graph::dclrs" Required="1" Valid="1">
        <Description Lang="en">Colors for the graphs.</Description>
        <Description Lang="de">Farben fr die Graphen.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Stats::Graph</SubGroup>
        <Setting>
            <Array>
                <Item>red</Item>
                <Item>green</Item>
                <Item>blue</Item>
                <Item>yellow</Item>
                <Item>black</Item>
                <Item>purple</Item>
                <Item>orange</Item>
                <Item>pink</Item>
                <Item>marine</Item>
                <Item>cyan</Item>
                <Item>light gray</Item>
                <Item>light blue</Item>
                <Item>light yellow</Item>
                <Item>light green</Item>
                <Item>light red</Item>
                <Item>light purple</Item>
                <Item>light orange</Item>
                <Item>light brown</Item>
            </Array>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="Stats::Graph::line_width" Required="1" Valid="1">
        <Description Lang="en">Boldness of the line drawed by the graph.</Description>
        <Description Lang="de">Linienstrke der Graphen.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Stats::Graph</SubGroup>
        <Setting>
            <String Regex="^[0-9]{1,2}$">1</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="Stats::Graph::legend_placement" Required="1" Valid="1">
        <Description Lang="en">Placement of the legend. This should be a two letter key of the form: 'B[LCR]|R[TCB]'. The first letter indicates the placement (Bottom or Right), and the second letter the alignment (Left, Right, Center, Top, or Bottom).</Description>
        <Description Lang="de">Platzierung der Legende. Es handelt sich hierbei um einen Schlssel bestehend aus zwei Buchstaben in der Form 'B[LCR]|R[TCB]'. Der erste Buchstabe gibt die Platzierung an. Der zweite die Ausrichtung der Legende.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Stats::Graph</SubGroup>
        <Setting>
            <String Regex="">BC</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="Stats::Graph::legend_spacing" Required="1" Valid="1">
        <Description Lang="en">Spacing of the legends.</Description>
        <Description Lang="de">Abstand der Legenden.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Stats::Graph</SubGroup>
        <Setting>
            <String Regex="^[0-9]{1,5}$">4</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="Stats::Graph::legend_marker_width" Required="1" Valid="1">
        <Description Lang="en">Width of the legend.</Description>
        <Description Lang="de">Breite der Legende.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Stats::Graph</SubGroup>
        <Setting>
            <String Regex="^[0-9]{1,5}$">12</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="Stats::Graph::legend_marker_height" Required="1" Valid="1">
        <Description Lang="en">Height of the legend.</Description>
        <Description Lang="de">Hhe der Legende.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Stats::Graph</SubGroup>
        <Setting>
            <String Regex="^[0-9]{1,5}$">8</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="Stats::TimeType" Required="1" Valid="1">
        <Description Lang="en">Selection of the time type which should be shown.</Description>
        <Description Lang="de">Auswahl, welche Darstellung fr das Zeitelement verwendet werden soll.</Description>
        <Group>Framework</Group>
        <SubGroup>Frontend::Agent::Stats</SubGroup>
        <Setting>
            <Option SelectedID="Normal">
                <Item Key="Normal">normal</Item>
                <Item Key="Extended">extended</Item>
            </Option>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="Stats::ExchangeAxis" Required="0" Valid="0">
        <Description Lang="en">If you activate this option an agent can exchange the axis of a stat if he generates one.</Description>
        <Description Lang="de">Wenn diese Option aktiviert wird, hat der Agent die Mglichkeit beim Generieren einer Statistik die beiden Achsen zu vertauschen.</Description>
        <Group>Framework</Group>
        <SubGroup>Frontend::Agent::Stats</SubGroup>
        <Setting>
            <Option SelectedID="0">
                <Item Key="0">No</Item>
                <Item Key="1">Yes</Item>
            </Option>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="Stats::UseAgentElementInStats" Required="0" Valid="0">
        <Description Lang="en">If you activate this option you can generate individual-related stats.</Description>
        <Description Lang="de">Wenn diese Option aktiviert wird, knnen personenbezogene Statistiken erstellt werden.</Description>
        <Group>Framework</Group>
        <SubGroup>Frontend::Agent::Stats</SubGroup>
        <Setting>
            <Option SelectedID="0">
                <Item Key="0">No</Item>
                <Item Key="1">Yes</Item>
            </Option>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="Stats::CustomerIDAsMultiSelect" Required="0" Valid="0">
        <Description Lang="en">If you activate this option all CustomerIDs will be shown in a multi-select field (Not useful if you have a lot of CustomerIDs).</Description>
        <Description Lang="de">Wenn diese Option aktiviert wird, werden die Kunden# in einem MultiSelectFeld dargestellt. Dadurch werden die Kunden# fr die X-Achse und Wertereihen zugnglich (Nur bei einer begrenzten Anzahl von Kunden# sinnvoll.)</Description>
        <Group>Framework</Group>
        <SubGroup>Frontend::Agent::Stats</SubGroup>
        <Setting>
            <Option SelectedID="0">
                <Item Key="0">No</Item>
                <Item Key="1">Yes</Item>
            </Option>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="Stats::MaxXaxisAttributes" Required="0" Valid="0">
        <Description Lang="en">Default maximum number of X-axis attributes for the time scale.</Description>
        <Description Lang="de">Maximale Anzahl in die ein Zeitraum auf der X-Achse skaliert werden darf.</Description>
        <Group>Framework</Group>
        <SubGroup>Core::Stats</SubGroup>
        <Setting>
            <String Regex="^[0-9]{1,5}$">100</String>
        </Setting>
    </ConfigItem>
    <ConfigItem Name="Core::MirrorDB::DSN" Required="0" Valid="0">
      <Description Lang="en">If you want to use a mirror database for agent ticket fulltext search or to generate stats, specify the DSN to this database.</Description>
      <Description Lang="de">Wenn eine Datenbank mit den gespiegelten Daten fr die Volltextsuche oder fr die Statistikerstellung genutzt werden soll, kann hier die DSN fr diese Datenbank angegeben werden.</Description>
      <Group>Framework</Group>
      <SubGroup>Core::MirrorDB</SubGroup>
      <Setting>
        <String Regex="">DBI:mysql:database=mirrordb;host=mirrordbhost</String>
      </Setting>
    </ConfigItem>
    <ConfigItem Name="Core::MirrorDB::User" Required="0" Valid="0">
      <Description Lang="en">If you want to use a mirror database for agent ticket fulltext search or to generate stats, you can specify the user to authenticate to this database.</Description>
      <Description Lang="de">Wenn eine Datenbank mit den gespiegelten Daten fr die Volltextsuche oder fr die Statistikerstellung genutzt werden soll, kann hier der Benutzer angegeben werden, der fr die Anmeldung an dieser Datenbank bentigt wird.</Description>
      <Group>Framework</Group>
      <SubGroup>Core::MirrorDB</SubGroup>
      <Setting>
        <String Regex="">some_user</String>
      </Setting>
    </ConfigItem>
    <ConfigItem Name="Core::MirrorDB::Password" Required="0" Valid="0">
      <Description Lang="en">If you want to use a mirror database for agent ticket fulltext search or to generate stats, you can specify the password to authenticate to this database.</Description>
      <Description Lang="de">Wenn eine Datenbank mit den gespiegelten Daten fr die Volltextsuche oder fr die Statistikerstellung genutzt werden soll, kann hier das Kennwort angegeben werden, das fr die Anmeldung an dieser Datenbank bentigt wird.</Description>
      <Group>Framework</Group>
      <SubGroup>Core::MirrorDB</SubGroup>
      <Setting>
        <String Regex="">some_password</String>
      </Setting>
    </ConfigItem>
    <ConfigItem Name="LanguageDebug" Required="0" Valid="0">
        <Description Lang="en">Write all strings which have no translation in STDERR.</Description>
        <Description Lang="de">Schreibt alle Strings die nicht bersetzt werden knnen in STDERR.</Description>
        <Group>Framework</Group>
        <SubGroup>Core</SubGroup>
        <Setting>
            <Option SelectedID="0">
                <Item Key="0">No</Item>
                <Item Key="1">Yes</Item>
            </Option>
        </Setting>
    </ConfigItem>
</otrs_config>