summaryrefslogtreecommitdiff
path: root/docs/C/gdm.xml
blob: 26c1021bd0b23471f43e880b68cabe58600bbbf6 (plain)
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
<?xml version="1.0"?>
<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" 
    "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
    <!ENTITY legal SYSTEM "legal.xml">
    <!ENTITY version "2.4.1.102"> 
    <!ENTITY date "8/25/2003"> 
]>

<article id="index" lang="en">
  <articleinfo>
    <title>Gnome Display Manager Reference Manual</title>
    <authorgroup>
      <author>
        <firstname>Martin</firstname><othername>K.</othername><surname>Petersen</surname>
        <affiliation>
          <address><email>mkp@mkp.net</email></address>
        </affiliation>
      </author>
      <author>
        <firstname>George</firstname><surname>Lebl</surname>
        <affiliation>
          <address><email>jirka@5z.com</email></address>
        </affiliation>
      </author>
      <author>
        <firstname>Brian</firstname><surname>Cameron</surname>
        <affiliation>
          <address><email>Brian.Cameron@Sun.COM</email></address>
        </affiliation>
      </author>
    </authorgroup>
    <copyright>
      <year>1998</year> <year>1999</year> <holder>Martin K. Petersen</holder>
    </copyright>
    <copyright>
      <year>2001</year> <holder>George Lebl</holder>
    </copyright>
    <copyright>
      <year>2003</year> <holder>Red Hat, Inc.</holder>
    </copyright>
    <copyright>
      <year>2003</year> <holder>Sun Microsystems, Inc.</holder>
    </copyright>

    &legal;

    <releaseinfo>
       This manual describes version &version; of the GNOME Display Manager. It was
       last updated on &date;.
    </releaseinfo>  
 
  </articleinfo>

  <sect1 id="preface">
    <title>Terms and Conventions Used in This Manual</title>

    <para>
       This manual describes version &version; of the GNOME Display Manager. It was
       last updated on &date;.
    </para>  

    <para>
      GDM - Gnome Display Manager. Used to describe the software
      package as a whole.
    </para>

    <para>
      gdm - The Gnome Display Manager daemon (<filename>gdm</filename>).
    </para>

    <para>
      Greeter - The graphical login window (<filename>gdmlogin</filename> or
      <filename>gdmgreeter</filename>).
    </para>

    <para>
      Standard Greeter - The standard login window (<filename>gdmlogin</filename>).
    </para>

    <para>
      Graphical Greeter - The themable login window (<filename>gdmgreeter</filename>).
    </para>

    <para>
      Chooser - The host chooser which appears on remote displays
      sending INDIRECT queries (<filename>gdmchooser</filename>).
    </para>

    <para>
      Configurator - The configuration program (<filename>gdmsetup</filename>).
    </para>

    <para>
      Paths without a leading '/' are relative to the installation
      prefix. I.e. <filename>share/pixmaps/</filename> refers to
      <filename>/usr/share/pixmaps</filename> if GDM was configured
      with <filename>--prefix=/usr</filename>.
    </para>

  </sect1>

  <sect1 id="overview">
    <title>Overview</title>

    <sect2 id="introduction">
      <title>
	Introduction
      </title>

      <para> 
	GDM is a replacement for XDM, the X Display Manager. Unlike its
	competitors (X3DM, KDM, WDM) GDM was written from scratch and
	does not contain any original XDM / X Consortium code. 
      </para>

      <para>
	For further information about GDM, see the
	<ulink type="http" url="http://www.jirka.org/gdm.html">
	the GDM website</ulink>.
      </para>

    </sect2>

    <sect2 id="daemonov">
      <title>The GDM Daemon</title>
      
      <para> 
	GDM was written with simplicity and security in mind. The
	overall design concept is this: 
      </para>
      
      <para> 
	Upon startup the <filename>gdm</filename> daemon parses its config file
	<filename>gdm.conf</filename>.  For each of the local displays <filename>gdm</filename>
	forks an Xserver and a slave process.  The main <filename>gdm</filename> process
	will then listen to XDMCP requests, if so configured, from remote displays and
	monitor the local display sessions.  The main daemon process will also allow
	starting of on new local Xservers on demand using the <filename>gdmflexiserver</filename>
	command.
      </para>
      
      <para> 
	The <filename>gdm</filename> slave process opens the display and starts
	<filename>gdmlogin</filename>, the graphical login
	program. <filename>gdmlogin</filename> runs as a dedicated
	user and communicates asynchronously with the slave process
	through a pipe.  Alternatively <filename>gdmgreeter</filename> command
	can be used which is the same as <filename>gdmlogin</filename> but
	allows greater themability.  <filename>gdmgreeter</filename>
	is referred to as the Graphical Greeter, while 
	<filename>gdmlogin</filename> is refereed to as the Standard
	Greeter.
      </para>
      
      <para> 
	GDM relies heavily on the presence of PAM, Pluggable
	Authentication Modules, but supports regular crypt() 
	and shadow passwords on legacy systems.
      </para>

      <para>
	Remote displays can connect to the XDMCP port on the GDM
	host. <filename>gdm</filename> will grant access to hosts specified in
	the gdm service section in your TCP Wrappers configuration
	file. GDM does not support remote display access control on
	systems without TCP Wrappers. XDMCP support can be turned off
	completely, however.
      </para>

      <para>
	GDM includes several measures making it more resistant to
	denial of service attacks on the XDMCP service. A lot of the
	protocol parameters, handshaking timeouts etc. can be fine
	tuned. The defaults should work for most systems, however.
	Don't change them unless you know what you're doing.
      </para>

      <para>
	In general GDM is very reluctant regarding reading/writing of
	user files. For instance it refuses to touch anything but
	regular files.  Links, sockets and devices are ignored.  The
	value of the RelaxPermissions parameter determines whether GDM
	should accept files writable by the user's group or others.
	These are ignored by default.
      </para>

      <para>
	All operations on user files are done with the effective
	user id of the user.  If the sanity check fails on the user's
	<filename>.Xauthority</filename> file, a fallback cookie is created in
	<filename>/tmp</filename>.
      </para>

      <para>
        Note that normally it is assumed that the home directory
	is only readable by the user.  However NFS traffic really
	goes "over the wire" and thus can be snooped.  For setups
	with NFS directories you should really use the
	<filename>UserAuthDir</filename> and set it to some local
	directory such as <filename>/tmp</filename>.  GDM will try
	to open the normal authorization file for reading as root, and
	if it fails, then 
	it will conclude that it is on an NFS mount and it will
	automatically use <filename>UserAuthFBDir</filename>,
	which is usually <filename>/tmp</filename>.
      </para>

      <para>
	GDM implements only the MIT-MAGIC-COOKIE-1 authorization scheme,
	see the XDMCP section for more information about this, especially
	relating to using X over the network.
      </para>

      <para>
	Finally, the sysadmin can specify the maximum file size GDM
	should accept, and, if the face browser is enabled, a tunable
	maximum icon size is also enforced.  On large systems it is
	still advised to turn off the face browser for performance
	reasons. Looking up icons in homedirs, scaling and rendering
	face icons can take quite a long time. YMMV.
      </para>

      <para>
	GDM also has a unix domain socket which can be used to control
	certain aspects of behavior, or to query information about running
	servers or logged in users.  This is the <filename>/tmp/.gdm_socket</filename>
	and the protocol is described in the sources in the
	<filename>daemon/gdm.h</filename> header file.  The
	<filename>gdmflexiserver</filename> command uses this for example to
	launch on demand X servers for the user.
      </para>

    </sect2>

    <sect2 id="displaytypes">
      <title>Different Display Types</title>

      <para>
	GDM allows 3 different display types.  First local static X servers.  These
	are always run, and when they die or are killed, they are restarted.  GDM
	can run as many of these as needed.  GDM can also manage servers on which it
	does not manage a login itself, thus allowing GDM to be used when building
	X terminals.
      </para>

      <para>
	Next GDM supports flexible or on demand servers.  These are run by
	requesting one using the socket protocol.  There is a command,
	<filename>gdmflexiserver</filename>, which can do this for the user. 
	For standard X servers the user must be logged in from a console, on
	one of the servers that GDM has run.  This command can however also
	launch nested <filename>Xnest</filename> servers which can be started
	even from non-console logins.  This is generally done by running
	<filename>gdmflexiserver -n</filename>.  These servers
	are not restarted when the user session ends.  
	<filename>gdmflexiserver</filename> normally also locks the users
	screen screen before running a new server with xscreensaver.
      </para>

      <para>
	Last display type is the XDMCP remote displays that are described
	in the next section.  Remote hosts can connect to GDM and present
	the login screen if this is enabled.  Some things may be different
	for these sessions, such as the Actions menu which allows you to
	shut down, reboot, or configure GDM will not be shown.
      </para>

    </sect2>

    <sect2 id="xdmcp">
      <title>
	XDMCP
      </title>

      <para>
	GDM also supports the X Display Manager Protocol (XDMCP) for
	managing remote displays.
      </para>

      <para>
	GDM listens to UDP port 177 and will respond to QUERY and
	BROADCAST_QUERY requests by sending a WILLING packet to the
	originator.
      </para>

      <para>
	GDM can also be configured to honor INDIRECT queries and
	present a host chooser to the remote display. GDM will
	remember the user's choice and forward subsequent requests to
	the chosen manager.  GDM also supports an extension to the
	protocol which will make it forget the redirection once
	the user's connection succeeds.  This extension is only
	supported if both daemons are GDM.  It is transparent and
	will be ignored by XDM or other daemons that implement
	XDMCP.
      </para>

      <para>
	GDM only supports the MIT-MAGIC-COOKIE-1 authentication
	system.  Normally little is gained from the other schemes,
	and no effort has been made to implement them so far.
	Because of this the cookies go over the wire as
	clear text, and thus you should be careful about what
	network you use this on.  If snooping is possible
	and undesirable, then you had better use ssh for tunneling
	an X connection anyway rather then using GDM's XDMCP.
      </para>

      <para>
	On the upside, GDM's random number generation is far superior
	to XDM or KDM.  At least the last time I looked at both of
	those.  XDM or KDM will only really have 31 bits of randomness
	for the MIT-MAGIC-COOKIE-1 (they both get a 31bit seed and then
	user a pseudorandom number generator to get 128 bits).  GDM goes
	to extraordinary measures to truly get a 128 bit random number,
	using hardware random number generators if available, plus the
	current time (in microsecond precision), a 20 byte array of pseudorandom
	numbers, process pid's, plus other random information (possibly using
	/dev/audio or /dev/mem) to create a large buffer and then run MD5.
	Obviously, all this work is wasted if you send this cookie over
	an open network or store it on an NFS directory (see
	<filename>UserAuthDir</filename> configuration key).
      </para>

      <para>
	Since it is fairly easy to do denial of service attacks on the
	XDMCP service, GDM incorporates a few features to guard
	against attacks. Please read the XDMCP reference section below
	for more information.
      </para>

      <para>
	Even though GDM tries to outsmart potential attackers, it is
	still advised that you block UDP port 177 on your firewall
	unless you really need it. GDM guards against DoS attacks, but
	the X protocol is still inherently insecure and should only be
	used in controlled environments.  Also each remote connection
	takes up lots of resources, so it is much easier to to DoS
	an XDMCP server.
      </para>

      <para>
	In addition to UDP port 177, you should also block all the
	X server ports (TCP ports 6000 + display number) on the firewall
	as well.  Do note that various places in GDM will use display
	numbers 20 and higher (for example the on demand server stuff).
	X is not a very safe protocol for leaving on the net, and XDMCP
	is even less safe.
      </para>

      <para>
	Even though your display is protected by cookies the XEvents
	and thus the keystrokes typed when entering passwords will
	still go over the wire in clear text. It is trivial to capture
	these.  You should also be aware that cookies, if placed on an
	NFS mounted directory, are prone to eavesdropping too.
	In case of NFS home directories you should really use the
	<filename>UserAuthDir</filename> and set it to some local
	temporary directory.
      </para>

      <para>
	XDMCP is primarily useful for running thin clients such
	as in terminal labs.  Those thin
	clients will only ever need to access the server, and so it seems
	like the best policy securitywise to have those thin clients on
	a separate network that cannot be accessed by the outside world,
	and can only connect to the server.  The only point from which you
	need to access outside is the server.
      </para>
    </sect2>

    <sect2 id="xdmcpaccess">
      <title>
	XDMCP Access Control
      </title>

      <para>
	XDMCP access control is done using TCP wrappers.  It is possible
	to compile GDM without TCP wrappers however, so you should test
	your configuration to see if they work.
      </para>

      <para>
	You should use the daemon name <filename>gdm</filename> in the
	<filename>/etc/hosts.allow</filename> and
	<filename>/etc/hosts.deny</filename> files.  For example to 
	deny computers from <filename>.evil.domain</filename> from logging in, then
	add
        <screen>
    gdm: .evil.domain</screen>
	to <filename>/etc/hosts.deny</filename>.  You may also need
	to add
        <screen>
    gdm: .your.domain</screen>
	to your <filename>/etc/hosts.allow</filename> if you normally
	disallow all services from all hosts.  See the
	<ulink type="help" url="man:hosts.allow">hosts.allow(5)</ulink> man page for details.
      </para>

      <para>
        Even though GDM now tries
	very hard to ignore things coming from banned hosts you should
	not rely on the TCP Wrappers for complete protection.  It is really
	best to block UDP port 177 (and all the X ports which are TCP ports
	6000 + the display number of course) on your firewall.
      </para>
    </sect2>

    <sect2 id="stdgreeter">
      <title>The Standard Greeter</title>

      <para>
	The Standard Greeter is the default graphical user interface that
	is presented to the user. The greeter contains a menu at the top, an
	optional face browser, an optional logo and a text entry
	widget.
      </para>

      <para>
        The text entry field is used for entering logins, passwords,
        passphrases etc. <filename>gdmlogin</filename> is controlled by the
        underlying daemon and is basically stateless. The daemon
        controls the greeter through a simple protocol where it can
        ask the greeter for a text string with echo turned on or
        off. Similarly, the daemon can change the label above the
        text entry widget to correspond to the value the
        authentication system wants the user to enter.
      </para>

      <para>
        The menu bar in the top of the greeter enables the user to
        select the requested session type/desktop environment,
        select an appropriate locale/language and optionally
        shutdown/reboot the machine.
      </para>

      <para>
        The greeter provides a face browser containing icons for all
        the users on a system. The icons can be installed globally
        by the sysadmin or in the users' home directories.  If installed
        globally they should be in the <filename>share/faces/</filename>
        directory (though this can be configured with the
        <filename>GlobalFaceDir</filename>
        configuration option) and the filename should be the name of
        the user, optionally with a <filename>.png</filename> appended.
      </para>

      <para>
        The users can place their icons in a file called <filename>~/.face</filename>,
        and they can use the program <filename>gdmphotosetup</filename> to
        graphically configure this.
      </para>
	
      <para>
        Face icons placed in the global face directory
        must be readable to the gdm user.  However, the daemon, proxies
        user pictures to the greeter and thus those don't have be be
        readable by the gdm user, but root.
      </para>

      <para>
        Please note that loading and scaling face icons located in
        user home directories can be a very time consuming task.
        Especially on large systems or systems running NIS. The
        browser feature is only intended for systems with relatively
        few users.
      </para>

      <para>
        To filter out unwanted user names in the browser, an exclude
        option is implemented. The greeter will automatically ignore
        usernames listed in the <filename>Exclude</filename> statement in the
        config file, and furthermore exclude users whose UIDs are lower
	then <filename>MinimalUID</filename>.
      </para>

      <para>
        When the browser is turned on, valid usernames on the
        machine are inherently exposed to a potential intruder. If
        your system is connected directly to the Internet, this
        might be a bad idea.
      </para>

      <para>
        The greeter can optionally display a logo in the login
        window. The image must be in a format readable to the gdk-pixbuf
        library (GIF, JPG, PNG, TIFF, XPM and possibly others), and
        it must be readable to the gdm user. See the <filename>
        Logo</filename> option in the reference section below for details.
      </para>

    </sect2>

    <sect2 id="graphgreeter">
      <title>The Graphical Greeter</title>

      <para>
	The Graphical Greeter is a greeter interface that takes up the whole
	screen and is very themable.  Themes can be selected and new themes
	can be installed by the Configuration program or by setting the
	<filename>GraphicalTheme</filename> configuration key.
      </para>

      <para>
	The look and feel of this greeter is really controlled by the theme and
	so the user interface elements that are present may be different.  The
	only thing that must always be present is the text entry field as described
	above in the Standard Greeter.
      </para>

      <para>
	You can always get a menu of available actions by pressing the F10 key.
	This can be useful if the theme doesn't provide certain buttons when you
	really wish to do some action.
      </para>

    </sect2>

    <sect2 id="logging">
      <title>Logging</title>

      <para>
	GDM itself will use syslog to log errors or status.  It can also 
	log debugging information, but this is not generally useful unless
	something is very wrong, and this must be enabled in the configuration
	file.
      </para>

      <para>
	Output from the various X servers is stored in the GDM log directory,	
	which is configurable, but is usually <filename>var/log/gdm/</filename>.
	The output from the session can be found in a file called
	<filename>&lt;display&gt;.log</filename>.  Four older files are
	also stored with <filename>.1</filename> through 
	<filename>.4</filename> appended.  These will be rotated as new
	sessions on that display are started.  You can use these logs
	to view what the X server said when it started up.
      </para>

      <para>
	The output from the user session is redirected to
	<filename>~/.xsession-errors</filename>
	before even the <filename>PreSession</filename> script is started.  So
	it is not really necessary to redirect this again in the session setup
	script.  As is usually done.  If the user session lasted less then
	10 seconds, GDM assumes that the session crashed and allows the user to
	view this file in a dialog before returning to the login screen.
	This way the user can view the session errors from
	the last session and correct the problem this way.
      </para>

      <para>
	The session output is piped through the GDM daemon and so the
	<filename>~/.xsession-errors</filename> file is capped at about
	200 kilobytes by GDM to prevent a possible denial of service attack
	on the session.  An app could perhaps on reading some wrong data print out
	warnings or errors on the stderr or stdout.  This could perhaps
	fill up the users home directory who would then have to log out and
	log back in to clear this.  This could be especially nasty if quotas
	are set.  GDM also correctly traps the XFSZ signal and stops writing
	the file, which would lead to killed sessions if the file was
	redirected in the old fashioned way from the script.
      </para>

      <para>
	Note that some distributors seem to
	override the <filename>~/.xsession-errors</filename> redirection and
	do it themselves in their own Xsession script (set by the
	<filename>BaseXsession</filename> configuration key) which means that
	GDM will not be able to trap the output and cap this file.  You also
	lose output from the <filename>PreSession</filename> script which can
	make debugging things harder to figure out as perhaps useful output
	of what is wrong will not be printed out.  See the description of the
	<filename>BaseXsession</filename> configuration key for more
	information, especially on how to handle multiple display managers
	using the same script.
      </para>

      <para>
	Note that if the session is a failsafe session, or if GDM can't open
	this file for some reason, then a fallback file will be created in the
	<filename>/tmp</filename> directory named
	<filename>/tmp/xses-&lt;user&gt;.XXXXXX</filename> where the
	<filename>XXXXXX</filename> are some random characters.
      </para>

      <para>
	If you run a system with quotas set, it would be good to delete the
	<filename>~/.xsession-errors</filename> in the
	<filename>PostSession</filename> script.  Such that this log file
	doesn't unneccesairly stay around.
      </para>

    </sect2>

    <sect2 id="gdmuser">
      <title>Security and the GDM User</title>

      <para>
	The GDM daemon normally runs as root, as does the slave.
	However GDM should also have a dedicated user id and a group
	id which it uses for its graphical interfaces such
	as <filename>gdmgreeter</filename> and <filename>gdmlogin</filename>.
	You can choose the name of this user and group in the
	<filename>[daemon]</filename> section of the configuration
	file.
      </para>

      <para>
	The GDM user, and group, which are normally just
	<filename>gdm</filename> should not be user or group of
	any particular privilage.  The reason for using them is
	to have the user interface run as a user without privilages
	so that in the unlikely case that someone finds a weakness
	in the GUI, they cannot access root on the machine.
      </para>

      <para>
	It should however be noted that the GDM user and
	group have some privilages that make them somewhat
	dangerous.  For one they have access to the server
	authorization directory (the <filename>ServAuthDir</filename>),
	which contains all the X server authorization files
	and other private information.  This means that
	someone who gains the GDM user/group privilages
	can then connect to any session.  So you should
	not, under any circumstances, make this some user/group
	which may be easy to get access to, such as the
	user <filename>nobody</filename>.
      </para>

      <para>
	The server authorization directory
	(the <filename>ServAuthDir</filename>) is used for
	a host of random internal data in addition to the
	X server authorization files, and the naming is really
	a relic of history.  GDM daemon enforces this dirctory
	to be owned by <filename>root.gdm</filename> with
	the permissions of 1770.  This way, only root and
	the GDM group have write access to this directory,
	but the GDM group cannot remove the root owned files
	from this directory, such as the X server authorization
	files.
      </para>

      <para>
	GDM by default doesn't trust the server authorization
	directory and treats it in the same way as the temporary
	directory with respect to creating files.  This way
	someone breaking the GDM user cannot mount attacks by
	creating links in this directory.  Similarly the X server
	log directory is treated safely, but that directory should
	really be owned and writable only by root.
      </para>

      <para>
	Anybody found not using a dedicated user for GDM
	should be whacked over the head with a large, blunt,
	heavy and rusty object, although the rusty requirement
	may be dropped if there is not enough time to have the
	object develop rust.
      </para>
    </sect2>
	  
  </sect1>

  <sect1 id="configuration">
    <title>Configuration</title>

    <para> 
      This section will cover the configuration of GDM
      and the format of the configuration file.  However you 
      can use the <filename>gdmsetup</filename> binary to configure
      GDM from a graphical environment.  The configuration program
      does not however let you configure every aspect of GDM however,
      so if the setup program does not cover your needs
      you may find information in this section.
    </para>

    <para>
      The configuration files, and especially the <filename>gdm.conf</filename>
      file, contain lots of useful comments, so also read these when
      changing your setup.
    </para>

    <para>
      Some keys in the configuration file as shipped are commented out
      while others are set.  This is done so that defaults can be easily
      changed in the future for some keys.  If you wish to set such a key
      you must first remove the leading hash mark that marks it as a
      comment.
    </para>

    <para> 
      The configuration files for GDM are located in the
      <filename>etc/gdm/</filename> directory.  And some which
      can be shared among other display managers are
      located in the <filename>etc/dm/</filename> directory.
    </para>

    <para>
      This is a listing of the config directory contents:
    </para>

    <screen>
	Init/
	PostLogin/
	PostSession/
	PreSession/
	gdm.conf
	factory-gdm.conf
	locale.alias
	Xsession
	XKeepsCrashing</screen>

    <para> 
      <filename>gdm.conf</filename> is the main GDM configuration file. The
      options will be described later in this section.
      <filename>factory-gdm.conf</filename> is the configuration file as shipped
      with the daemon.  This can be useful if you wish to revert to the default
      configuration.
    </para>

    <para> 
      <filename>locale.alias</filename> is a file which looks much like the
      system locale alias but in fact it is not the same.  These are the languages
      that are available on your system.  All the languages are still tested to
      see if they actually exist before presenting them to the user.
    </para>

    <para> 
      <filename>Xsession</filename> is a script which sets up a user session
      and then executes the users choice of session.
    </para>

    <para> 
      <filename>XKeepsCrashing</filename> is a script which gets run when the
      X server keeps crashing and we cannot recover.  The shipped default script
      will work with most Linux distributions and can run the X configuration
      program provided the person on the console knows the root password.
    </para>

    <para>
      <filename>gdm.conf</filename> is configuration file for both <filename>
      gdm</filename>, <filename>gdmgreeter</filename>, <filename>gdmlogin</filename>,
      and <filename>gdmchooser</filename> since a lot of parameters overlap.
    </para>

    <para>
      The remaining configuration is done by dropping scripts in the
      subdirectories of the <filename>etc/gdm</filename> folder or
      dropping <filename>.desktop</filename> style files in
      <filename>etc/dm/Sessions</filename>. This
      approach makes it easy for package management systems to install
      window managers and different session types without requiring
      the sysadmin to edit files.
    </para>

    <sect2 id="scriptdirs">
      <title>The Script Directories</title>
      
      <para>
	In this section we will explain the <filename>Init</filename>,
	<filename>PostLogin</filename>,
	<filename>PreSession</filename> and <filename>PostSession</filename> directories as
	they are very similar.
      </para>

      <para>
	When the X server has been successfully started, GDM will try
	to run the script called
	<filename>Init/&lt;displayname&gt;</filename>. I.e. <filename>Init/:0</filename>
	for the first local display.  If this file is not found, GDM
	will attempt to to run
	<filename>Init/&lt;hostname&gt;</filename>. I.e. <filename>Init/somehost</filename>.
	If this still is not found, GDM will try
	<filename>Init/XDMCP</filename> for all XDMCP logins or
	<filename>Init/Flexi</filename> for all on demand flexible
	servers.  If none of the above were found, GDM will run
	<filename>Init/Default</filename>. The
	script will be run as root and GDM blocks until it
	terminates. Use the <filename>Init/*</filename> script for
	programs that are supposed to run alongside with the GDM login
	window. xconsole for instance.  Commands to set the background
	etc. goes in this file too.
      </para>

      <para> 
	It is up to the sysadmin to decide whether clients started by
	the Init script should be killed before starting the user
	session. This is controlled with the <filename>KillInitClients</filename>
	option in <filename>gdm.conf</filename>.
      </para>

      <para>
	When the user has been successfully authenticated GDM tries the
	scripts in the <filename>PostLogin</filename> directory in the
	same manner as for the <filename>Init</filename> directory.
	This is done before any session setup is done, and so this
	would be the script where you might setup the home directory
	if you need to (though you should use the
	<filename>pam_mount</filename> module if you can for this).
	You have the $USER and $DISPLAY environment variables set for this script,
	and again it is run as root.  The script should return 0 on success
	as otherwise the user won't be logged in.  This is not true for
	failsafe session however.
      </para>

      <para>
	After the user session has been setup from the GDM side of
	things, GDM will run the scripts in the <filename>PreSession</filename>
	directory, again in the same manner as the <filename>Init</filename>
	directory.  Use this
	script for local session management or accounting stuff. The
	$USER environment variable contains the login of the
	authenticated user and $DISPLAY is set to the current display.
	The script should return 0 on success.  Any
	other value will cause GDM to terminate the current login
	process.  This is not true for failsafe sessions however.
	Also $X_SERVERS environmental variable is set and this points
	to a fake generated x servers file for use with the
	sessreg accounting program.
      </para>

      <para>
	After this the base <filename>Xsession</filename> script is
	run with the selected session executable as the first argument.
	This is run as the user, and really this is the user session.
	The available session executables are taken from the
	<filename>Exec=</filename> line in the
	<filename>.desktop</filename> files in the
	<filename>etc/dm/Sessions</filename> directory.  The user
	either picks from these sessions or GDM will look inside
	the file <filename>~/.dmrc</filename> for the stored
	preference.
      </para>

      <para>
        This script should really load the users profile and generally
	do all the voodoo that is needed to launch a session.  Since
	many systems reset the language selections done by GDM, GDM
	will also set the GDM_LANG variable to the selected language.
	You can use this to reset the language environmental
	variables after you run the users profile.  If the user
	elected to use the system language, then GDM_LANG is not run. 
      </para>

      <para> 
	When the user terminates his session, the <filename>PostSession</filename> script
	will be run. Again operation is similar to <filename>Init</filename>,
	<filename>PostLogin</filename> and
	<filename>PreSession</filename>.
	Again the script will be run with root
	privileges, the slave daemon will block and the $USER
	environment variable will contain the name of the user who
	just logged out and $DISPLAY will be set to the display
	the user used, however note that the X server for this display
	may already be dead and so you shouldn't try to access it.
	Also $X_SERVERS environmental variable is set and this points
	to a fake generated x servers file for use with the
	sessreg accounting program.
      </para>

      <para>
	Note that the PostSession script will be run even when the
	display fails to respond due to an I/O error or similar. Thus,
	there is no guarantee that X applications will work during
	script execution.
      </para>

      <para>
	Except for the <filename>Xsession</filename> script all of these
	scripts will also have the environment of
	<filename>RUNNING_UNDER_GDM=yes</filename> set, so that you could
	perhaps use similar scripts for different display managers.
      </para>

      <para> 
	Neither of the <filename>Init</filename>, <filename>PostLogin</filename>,
	<filename>PreSession</filename> or <filename>PostSession</filename> scripts are
	necessary and can be left out. At least one session script is
	required for proper operation.
      </para>

    </sect2>

    <sect2 id="configfile">
      <title>The Configuration File - <filename>gdm.conf</filename></title>
      
      <para>
	The daemon and the accompanying utilities share a common
	configuration file: <filename>etc/gdm/gdm.conf</filename>.
      </para>

      <para>
	The configuration file is divided into sections each
	containing variables that define the behavior for a specific
	part of the GDM suite.  The file is fairly well commented
	as well.
      </para>

      <para>
	<filename>gdm.conf</filename> follows the standard <filename>.ini</filename>
	style configuration
	file syntax. Keywords in brackets define sections, strings
	before an equal sign (=) are variables and the data after
	equal sign represents their value.  Empty lines or lines
	starting with the hash mark (#) are ignored.
      </para>

      <sect3 id="daemonsection">
	<title>Daemon Configuration</title>

	<variablelist>
	  <title>[daemon]</title>

	  <varlistentry>
	    <term>AddGtkModules</term>
		<listitem>
	      <synopsis>AddGtkModules=false</synopsis>
	      <para>
	    If true, then enables gdmgreeter/gdmlogin to be launched with
	    additional Gtk+ modules. This is useful when extra features are
	    required such as accessible login. Note that only "trusted"
	    modules should be used to minimize security issues.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>AlwaysRestartServer</term>
	    <listitem>
	      <synopsis>AlwaysRestartServer=false</synopsis>
	      <para>
		If true, then gdm never tries to reuse existing X servers by
		reinitializing them.  It will just kill the existing server and
		start over.  Normally, just reinitializing is a nicer way to go
		but if the X server memory usage keeps growing this may be
		a safer option.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>AutomaticLoginEnable</term>
	    <listitem>
	      <synopsis>AutomaticLoginEnable=false</synopsis>
	      <para>
	 	If the user given in AutomaticLogin should be logged in upon
		first bootup.  No password will be asked.  This is useful
		for single user workstations where local console security
		is not an issue.  Also could be useful for public terminals,
		although there see <filename>TimedLogin</filename>.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>AutomaticLogin</term>
	    <listitem>
	      <synopsis>AutomaticLogin=</synopsis>
	      <para>
		This user should be automatically logged in on first bootup.
		AutomaticLoginEnable must be true and this must be
		a valid user for this to happen.  "root" can never be
		autologged in however and gdm will just refuse to do it even
		if you set it up.
	      </para>

              <para>
                The following control chars are recognized within the specified name:
              </para>

              <para>
                &percnt;&percnt; &mdash; the `&percnt;' character
              </para>

              <para>
                &percnt;d &mdash; display's name
              </para>

              <para>
                &percnt;h &mdash; display's hostname
              </para>

              <para>
                Alternatively, the name may end with a vertical bar |, the pipe symbol.
                The name is then used as a program to execute which returns the desired
                username on standard output. If an empty or otherwise invalid username
                is returned, automatic login is not performed. This feature is typically
                used when several remote displays are used as internet kiosks, with a
                specific user to automatically login for each display.
              </para>
            </listitem>
          </varlistentry>

	  <varlistentry>
	    <term>BaseXsession</term>
	    <listitem>
	      <synopsis>BaseXsession=etc/gdm/Xsession</synopsis>
	      <para>
		This is the base X session file.  When a user logs in, this script
		will be run with the selected session as the first argument.  The
		selected session will be the <filename>Exec=</filename> from
		the <filename>.desktop</filename> file of the session.
	      </para>

              <para>
		If you wish to use the same script for several different display
		managers, and wish to have some of the script run only for GDM, then
		you can check the presence of the <filename>GDMSESSION</filename>
		environmental variable.  This will always be set to the basename of
		<filename>.desktop</filename> file that is being used for this
		session, and will only be set for GDM sessions.  Previously some
		scripts were checking for <filename>GDM_LANG</filename>, but that
		is only set when the user picks a non-system default language.
	      </para>

              <para>
		This script should take care of doing the "login" for the user
		and so it should source the <filename>/etc/profile</filename>
		and friends.  The standard script shipped with GDM sources
		the files in this order: <filename>/etc/profile</filename>
		then <filename>~/.profile</filename> then
		<filename>/etc/xprofile</filename> and finally
		<filename>~/.xprofile</filename>.  Note that different distributions
		may change this however.  Sometimes users personal setup will
		be in <filename>~/.bash_profile</filename>, however broken
		that is.
              </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>Chooser</term>
	    <listitem>
	      <synopsis>Chooser=bin/gdmchooser</synopsis>
	      <para>
		Full path and name of the chooser executable followed by optional arguments.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>Configurator</term>
	    <listitem>
	      <synopsis>Configurator=bin/gdmsetup --disable-sound --disable-crash-dialog</synopsis>
	      <para>
		The pathname to the configurator binary.  If the greeter
		<filename>ConfigAvailable</filename> option is set to true then run this binary
		when somebody chooses Configuration from the Actions menu.
		Of course GDM will first ask for root password however.
		And it will never allow this to happen from a remote display.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>DefaultPath</term>
	    <listitem>
	      <synopsis>DefaultPath=/bin:/usr/bin:/usr/bin/X11:/usr/local/bin</synopsis>
	      <para>
		Specifies the path which will be set in the user's session.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>DefaultSession</term>
	    <listitem>
	      <synopsis>DefaultSession=gnome.desktop</synopsis>
	      <para>
		The session that is used by default if the user does not have
		a saved preference and has picked 'Last' from the list of
		sessions.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  
	  <varlistentry>
	    <term>DisplayInitDir</term>
	    <listitem>
	      <synopsis>DisplayInitDir=etc/gdm/Init</synopsis>
	      <para>
		Directory containing the display init scripts. See the
		``Script Directories'' section for more info.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>DoubleLoginWarning</term>
	    <listitem>
	      <synopsis>DoubleLoginWarning=true</synopsis>
	      <para>
		If true, GDM will warn the user if they are already logged in on
		another virtual terminal.  On systems where GDM supports checking
		the X virtual terminals, GDM will let the user switch to the
		previous login virtual terminal instead of logging in.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>FailsafeXServer</term>
	    <listitem>
	      <synopsis>FailsafeXServer=</synopsis>
	      <para>
		An X command line in case we can't start the normal X server.
		should probably be some sort of a script that runs an
		appropriate low resolution server that will just work.
		This is tried before the XKeepsCrashing script is run.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>FirstVT</term>
	    <listitem>
	      <synopsis>FirstVT=7</synopsis>
	      <para>
		On systems where GDM supports automatic VT (virtual terminal)
		allocation, this is the first vt to try.  Usually standard text
		logins are run on the lower vts.  See also <filename>VTAllocation</filename>.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>FlexibleXServers</term>
	    <listitem>
	      <synopsis>FlexibleXServers=5</synopsis>
	      <para>
		The maximum number of allowed flexible servers.  These are
		servers that can be run using the /tmp/.gdm_socket socket
		connection.  This is used for both full servers and for
		Xnest servers.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>Greeter</term>
	    <listitem>
	      <synopsis>Greeter=bin/gdmlogin</synopsis>
	      <para>
		Full path and name of the greeter executable followed by optional arguments.
		This is the greeter used for all servers except for the XDMCP remote servers.
		See also <filename>RemoteGreeter</filename>
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>Group</term>
	    <listitem>
	      <synopsis>Group=gdm</synopsis>
	      <para>
		The group name under which <filename>gdmlogin</filename>,
		<filename>gdmgreeter</filename>,
		<filename>gdmchooser</filename> and the internal
		failsafe GTK+ dialogs are run.  Also see <filename>User</filename>.
		This user will have access to all the X authorization files,
		and perhaps to other internal GDM data and it should not
		therefore be a user such as nobody, but rather a dedicated
		user.  The <filename>ServAuthDir</filename> is owned by this
		group.  The ownership and permissions of <filename>ServAuthDir</filename>
		should be <filename>root.gdm</filename> and 1770.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>GtkModulesList</term>
	    <listitem>
	      <synopsis>GtkModuleList=module-1:module-2:...</synopsis>
	      <para>
	    A colon separated list of Gtk+ modules that gdmgreeter/gdmlogin
	    will be invoked with if AddGtkModules is true. The format is the 
	    same as the standard Gtk+ module interface.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>HaltCommand</term>
	    <listitem>
	      <synopsis>HaltCommand=/sbin/shutdown -h now</synopsis>
	      <para>
		Full path and arguments to command to be executed when
		user selects Shut Down from the Actions menu.  This can be a ';'
		separated list of commands to try.
		If missing, the shutdown command is not available.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>KillInitClients</term>
	    <listitem>
	      <synopsis>KillInitClients=true</synopsis>
	      <para>
		Determines whether GDM should kill X clients started by
		the init scripts when the user logs in.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>LogDir</term>
	    <listitem>
	      <synopsis>LogDir=var/gdm</synopsis>
	      <para>
		Directory containing the log files for the individual
		displays.  By default this is the same as the
		ServAuthDir.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>PidFile</term>
	    <listitem>
	      <synopsis>PidFile=var/run/gdm.pid</synopsis>
	      <para>
		Name of the file containing the <filename>gdm</filename>
		process id.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>PostLoginScriptDir</term>
	    <listitem>
	      <synopsis>PostLoginScriptDir=etc/gdm/PostLogin</synopsis>
	      <para>
		Directory containing the scripts run right after the
		user logs in, but before any session setup is done.
		See the ``Script Directories'' section for more info.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>PostSessionScriptDir</term>
	    <listitem>
	      <synopsis>PostSessionScriptDir=etc/gdm/PostSession</synopsis>
	      <para>
		Directory containing the scripts run after the user logs
		out.  See the ``Script Directories'' section for more
		info.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>PreSessionScriptDir</term>
	    <listitem>
	      <synopsis>PreSessionScriptDir=etc/gdm/PreSession</synopsis>
	      <para>
		Directory containing the scripts run before the user
		logs in.  See the ``Script Directories'' section for
		more info.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>RebootCommand</term>
	    <listitem>
	      <synopsis>RebootCommand=/sbin/shutdown -r now</synopsis>
	      <para>
		Full path and optional arguments to the program to be
		executed when user selects Reboot from the Actions menu.
		This can be a ';' separated list of commands to try.
		If missing, the reboot command is not available.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>RemoteGreeter</term>
	    <listitem>
	      <synopsis>RemoteGreeter=bin/gdmlogin</synopsis>
	      <para>
		Full path and name of the greeter executable followed by optional arguments.  This
		is used for all remote XDMCP sessions.  It is useful to have the less 
		graphically demanding greeter here if you use the Graphical Greeter for your main
		greeter.
		See also the <filename>Greeter</filename> key.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>RootPath</term>
	    <listitem>
	      <synopsis>RootPath=/sbin:/usr/sbin:/bin:/usr/bin:/usr/bin/X11:/usr/local/bin</synopsis>
	      <para>
		Specifies the path which will be set in the root's
		session and the {Init,PostLogin,PreSession,PostSession} scripts
		executed by GDM.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>ServAuthDir</term>
	    <listitem>
	      <synopsis>ServAuthDir=/var/gdm</synopsis>
	      <para>
		Directory containing the X authentication files for the
		individual displays.  Should be owned by
		<filename>root.gdm</filename> with permissions 1770,
		where <filename>gdm</filename> is the GDM group as defined
		by the <filename>Group</filename> option.
		That is should be owned by root, with <filename>gdm</filename> group having
		full write permissions and the directory should be
		sticky and others should have no permission to the directory.
		This way the gdm user can't remove files owned
		by root in that directory, while still being able to
		write its own files there.  GDM will attempt to change
		permissions for you when it's first run if the permissions
		are not the above.
		This directory is also used for other private files that
		the daemon needs to store.  Other users should not
		have any way to get into this directory and read/change
		it's contents.  Anybody who can read this directory can
		connect to any display on this machine.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>SessionDesktopDir</term>
	    <listitem>
	      <synopsis>SessionDesktopDir=etc/dm/Sessions</synopsis>
	      <para>
		Directory containing the .desktop files which are the available
		sessions on the system.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>StandardXServer</term>
	    <listitem>
	      <synopsis>StandardXServer=/usr/bin/X11/X</synopsis>
	      <para>
		Full path and arguments to the standard X server command.
		This is used when gdm cannot find any other definition,
		and it's used as the default and failsafe fallback in a
		number of places.  This should be able to run some sort
		of X server.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>SuspendCommand</term>
	    <listitem>
	      <synopsis>SuspendCommand=</synopsis>
	      <para>
		Full path and arguments to command to be executed when
		user selects Suspend from the Actions menu.  If empty
		there is no such menu item.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>TimedLoginEnable</term>
	    <listitem>
	      <synopsis>TimedLoginEnable=false</synopsis>
	      <para>
	 	If the user given in TimedLogin should be logged in after
		a number of seconds (set with TimedLoginDelay) of inactivity
		on the login screen.  This is useful for public access
		terminals or perhaps even home use.  If the user uses the
		keyboard or browses the menus, the timeout will be reset to
		TimedLoginDelay or 30 seconds, whichever is higher.  Note that
		no password will be asked for this user so you should be
		careful.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>TimedLogin</term>
	    <listitem>
	      <synopsis>TimedLogin=</synopsis>
	      <para>
		This is the user that should be logged in after a specified
		number of seconds of inactivity.  This can never be "root"
		and gdm will refuse to log in root this way.
		The same features as for <filename>AutomaticLogin</filename>
		are supported.  The same control chars and piping to a
		program are supported.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>TimedLoginDelay</term>
	    <listitem>
	      <synopsis>TimedLoginDelay=30</synopsis>
	      <para>
		This is the delay before the TimedLogin user will be logged
		in.  It must be greater then or equal to 10.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>User</term>
	    <listitem>
	      <synopsis>User=gdm</synopsis>
	      <para>
		The username under which <filename>gdmlogin</filename>,
		<filename>gdmgreeter</filename>,
		<filename>gdmchooser</filename> and the internal
		failsafe GTK+ dialogs are run.  Also see <filename>Group</filename>.
		This user will have access to all the X authorization files,
		and perhaps to other internal GDM data and it should not
		therefore be a user such as nobody, but rather a dedicated
		user.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>UserAuthDir</term>
	    <listitem>
	      <synopsis>UserAuthDir=</synopsis>
	      <para>
		The directory where user's
		<filename>.Xauthority</filename> file should be
		saved.  When nothing is specified the user's home
		directory is used.  This is tilde expanded so you
		can set it to things like: <filename>~/authdir/</filename>.
	      </para>

	      <para>
		If you do not use the tilde expansion, then
		the filename created will be random, like in
		<filename>UserAuthFBDir</filename>.  This way many
		users can have the same authentication directory.
		For example you might want to set this to
		<filename>/tmp</filename> when
		user has the home directory on NFS, since you really don't
		want cookie files to go over the wire.  The users should
		really have write privilages to this directory, and this
		directory should really be sticky and all that, just like
		the <filename>/tmp</filename> directory.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>UserAuthFBDir</term>
	    <listitem>
	      <synopsis>UserAuthFBDir=/tmp</synopsis>
	      <para>
		If GDM fails to update the user's
		<filename>.Xauthority</filename> file a
		fallback cookie is created in this directory.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>UserAuthFile</term>
	    <listitem>
	      <synopsis>UserAuthFile=.Xauthority</synopsis>
	      <para>
		Name of the file used for storing user cookies.  
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>VTAllocation</term>
	    <listitem>
	      <synopsis>VTAllocation=true</synopsis>
	      <para>
		On systems where GDM supports automatic VT (virtual terminal)
		allocation (currently Linux only), you can have GDM automatically append the vt argument
		to the X server executable.  This way races that come up from each X
		server managing it's own vt allocation can be avoided.
		See also <filename>FirstVT</filename>.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>XKeepsCrashing</term>
	    <listitem>
	      <synopsis>XKeepsCrashing=etc/gdm/XKeepsCrashing</synopsis>
	      <para>
		A script to run in case X keeps crashing.  This is for running
		An X configuration or whatever else to make the X configuration
		work.  See the script that came with the distribution for an
		example.  The distributed XKeepsCrashing script is tested
		on Red Hat, but may work elsewhere.  Your system integrator should
		make sure this script is up to date for your particular system.
	      </para>
	      <para>
		In case FailsafeXServer is setup, that will be tried first.
		and this only used as a backup if even that server keeps
		crashing.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>Xnest</term>
	    <listitem>
	      <synopsis>Xnest=/usr/bin/X11/Xnest</synopsis>
	      <para>
		The full path and arguments to the Xnest command.  This is used
		for the flexible Xnest servers.  This way the user can start new
		login screens in a nested window.  Of course you must have the Xnest
		server from your X server packages installed for this to work.
	      </para>
	    </listitem>
	  </varlistentry>
	</variablelist>
	
      </sect3>

      <sect3 id="securitysection">
	<title>Security Options</title>
	
	<variablelist>
	  <title>[security]</title>
	  
	  <varlistentry>
	    <term>AllowRoot</term>
	    <listitem>
	      <synopsis>AllowRoot=true</synopsis>
	      <para>
		Allow root (privileged user) to log in through GDM.  Set
		this to false if you want to disallow such logins.
	      </para>
	      <para>
		On systems that support PAM, this parameter is
		not as useful as you can use PAM to do the same thing,
		and in fact do even more.  However it is still followed,
		so you should probably leave it true for PAM systems.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>AllowRemoteRoot</term>
	    <listitem>
	      <synopsis>AllowRemoteRoot=true</synopsis>
	      <para>
		Allow root (privileged user) to log in remotely through GDM.
		Set this to false if you want to disallow such logins.  Remote
		logins are any logins that come in through the xdmcp.
	      </para>
	      <para>
		On systems that support PAM, this parameter is
		not as useful as you can use PAM to do the same thing,
		and in fact do even more.  However it is still followed,
		so you should probably leave it true for PAM systems.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>AllowRemoteAutoLogin</term>
	    <listitem>
	      <synopsis>AllowRemoteAutoLogin=false</synopsis>
	      <para>
		Allow the timed login to work remotely.  That is, remote
		connections through XDMCP will be allowed to log into the
		"TimedLogin" user by letting the login window time out, just
		like the local user on the first console.
	      </para>
	      <para>
		Note that this can make a system quite insecure, and thus is
		off by default.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>DisallowTCP</term>
	    <listitem>
	      <synopsis>DisallowTCP=true</synopsis>
	      <para>
		If true, then always append "-nolisten tcp" to the command line
		of local X servers, thus disallowing TCP connection.  This is
		useful if you do not care for allowing remote connections, since
		the X protocol could really be potentially a security hazard to
		leave open, even though no known security problems exist.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>RelaxPermissions</term>
	    <listitem>
	      <synopsis>RelaxPermissions=0</synopsis>
	      <para>
		By default GDM ignores files and directories writable to
		other users than the owner. 
	      </para> 
	      
	      <para> 
		Changing the value of RelaxPermissions makes it
		possible to alter this behavior:
	      </para>
	      
	      <para>
        	0 - Paranoia option. Only accepts user owned files and directories.
	      </para>
	      <para>
        	1 - Allow group writable files and directories.
	      </para>
	      <para>
        	2 - Allow world writable files and directories.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>RetryDelay</term>
	    <listitem>
	      <synopsis>RetryDelay=3</synopsis>
	      <para>
		The number of seconds GDM should wait before
		reactivating the entry field after a failed login.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>UserMaxFile</term>
	    <listitem>
	      <synopsis>UserMaxFile=65536</synopsis>
	      <para>
		GDM will refuse to read/write files bigger than this number
		(specified in bytes).
	      </para>
	      
	      <para>
        	In addition to the size check GDM is extremely picky
        	about accessing files in user directories.  It will not
        	follow symlinks and can optionally refuse to
        	read files and directories writable by other than the
        	owner. See the RelaxPermissions option for more info.
	      </para>
	    </listitem>
	  </varlistentry>
	</variablelist>
	
      </sect3>

      <sect3 id="xdmcpsection">
	<title>XDCMP Support</title>

	<variablelist>
	  <title>[xdmcp]</title>
	  
	  <varlistentry>
	    <term>DisplaysPerHost</term>
	    <listitem>
	      <synopsis>DisplaysPerHost=1</synopsis>
	      <para>
		To prevent attackers from filling up the pending
		queue, GDM will only allow one connection for each
		remote machine.  If you want to provide display
		services to machines with more than one screen, you
		should increase the DisplaysPerHost value accordingly.
	      </para>

	      <para>
		Note that the number of connections from the local
		machine is unlimited.  Only remote connections
		are limited by this number.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>Enable</term>
	    <listitem>
	      <synopsis>Enable=false</synopsis>
	      <para>
		Setting this to true enables XDMCP support allowing remote displays/X
		terminals to be managed by GDM.
	      </para>
	      
	      <para>
		<filename>gdm</filename> listens for requests on UDP
		port 177. See the Port option for more information.
	      </para>
	      
	      <para>
		If GDM is compiled to support it, access from remote displays
		can be controlled using the TCP Wrappers library. The service name is 
		<filename>gdm</filename>
	      </para>
	      
	      <para>
		You should add 
	        <screen>
  gdm:	.my.domain</screen>
		to your <filename>/etc/hosts.allow</filename>, depending on your
		TCP Wrappers configuration.  See the
		<ulink type="help" url="man:hosts.allow">hosts.allow(5)</ulink> man page for details.
	      </para>
	      
	      <para>
		Please note that XDMCP is not a particularly secure protocol
		and that it is a good idea to block UDP port 177 on your
		firewall unless you really need it.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>HonorIndirect</term>
	    <listitem>
	      <synopsis>HonorIndirect=true</synopsis>
	      <para>
		Enables XDMCP INDIRECT choosing (i.e. remote execution
		of <filename>gdmchooser</filename>) for X-terminals
		which don't supply their own display browser.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>MaxPending</term>
	    <listitem>
	      <synopsis>MaxPending=4</synopsis>
	      <para>
		To avoid denial of service attacks, GDM has fixed size
		queue of pending connections. Only MaxPending displays
		can start at the same time.
	      </para>
	      
	      <para>
		Please note that this parameter does *not* limit the
		number of remote displays which can be managed. It only
		limits the number of displays initiating a connection
		simultaneously.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>MaxPendingIndirect</term>
	    <listitem>
	      <synopsis>MaxPendingIndirect=4</synopsis>
	      <para>
		GDM will only provide MaxPendingIndirect displays with
		host choosers simultaneously.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>MaxSessions</term>
	    <listitem>
	      <synopsis>MaxSessions=16</synopsis>
	      <para>
		Determines the maximum number of remote display
		connections which will be managed
		simultaneously. I.e. the total number of remote displays
		that can use your host.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>MaxWait</term>
	    <listitem>
	      <synopsis>MaxWait=30</synopsis>
	      <para>
		When GDM is ready to manage a display an ACCEPT packet
		is sent to it containing a unique session id which will
		be used in future XDMCP conversations.
	      </para>
	      
	      <para>
		GDM will then place the session id in the pending queue
		waiting for the display to respond with a MANAGE request.
	      </para>
	      
	      <para>
		If no response is received within MaxWait seconds, GDM
		will declare the display dead and erase it from the pending
		queue freeing up the slot for other displays.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>MaxWaitIndirect</term>
	    <listitem>
	      <synopsis>MaxWaitIndirect=30</synopsis>
	      <para>
		The MaxWaitIndirect parameter determines the maximum
		number of seconds between the time where a user chooses
		a host and the subsequent indirect query where the user is
		connected to the host.  When the timeout is exceeded, the
		information about the chosen host is removed and the indirect
		slot freed up for under displays.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>Port</term>
	    <listitem>
	      <synopsis>Port=177</synopsis>
	      <para>
		The UDP port number <filename>gdm</filename> should
		listen to for XDMCP requests. Don't change this unless
		you know what you're doing.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>PingIntervalSeconds</term>
	    <listitem>
	      <synopsis>PingIntervalSeconds=15</synopsis>
	      <para>
		Interval in which to ping the X server in seconds.  If the
		X server doesn't return before the next time we ping it,
		the connection is stopped and the session ended.  This is
		a combination of the XDM PingInterval and PingTimeout,
		but in seconds.
	      </para>

	      <para>
		Note that GDM in the past used to have a <filename>PingInterval</filename>
		configuration key which was also in minutes.  For most purposes
		you'd want this setting to be lower then one minute however since
		in most cases where XDMCP would be used (such as terminal labs),
		a lag of more then 15 or so seconds would really mean that the
		terminal was turned off or rebooted and you would want to end
		the session.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>Willing</term>
	    <listitem>
	      <synopsis>Willing=etc/gdm/Xwilling</synopsis>
	      <para>
		When the server sends a WILLING packet back after a QUERY
		it sends a string that gives the current status of this
		server.  The default message is the system ID, but it is
		possible to create a script that displays customized
		message.  If this script doesn't exist or this key is
		empty the default message is sent.  If this script succeeds
		and produces some output, the first line of it's output
		is sent (and only the first line).  It runs at most once
		every 3 seconds to prevent possible denial of service
		by flooding the server with QUERY packets.
	      </para>
	    </listitem>
	  </varlistentry>
	</variablelist>
	
      </sect3>

      <sect3 id="commonguioptions">
	<title>Common GUI Configuration Options</title>

	<variablelist>
	  <title>[gui]</title>
	  
	  <varlistentry>
	    <term>Gtkrc</term>
	    <listitem>
	      <synopsis>Gtkrc=</synopsis>
	      <para>
		Path to a <filename>gtkrc</filename> containing the
		theme for use in <filename>gdmlogin</filename> /
		<filename>gdmchooser</filename>.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>MaxIconWidth</term>
	    <listitem>
	      <synopsis>MaxIconWidth=128</synopsis>
	      <para>
		Specifies the maximum icon width (in pixels) that the
		face browser will display. Icons larger than this will
		be scaled.  This also affects icons in the XDMCP chooser.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>MaxIconHeight</term>
	    <listitem>
	      <synopsis>MaxIconHeight=128</synopsis>
	      <para>
		Specifies the maximum icon height (in pixels) that the
		face browser will display. Icons larger than this will
		be scaled.  This also affects icons in the XDMCP chooser.
	      </para>
	    </listitem>
	  </varlistentry>
	</variablelist>
	
      </sect3>
	
      <sect3 id="greetersection">

	<title>Greeter Configuration</title>

	<variablelist>
	  <title>[greeter]</title>

	  <varlistentry>
	    <term>BackgroundColor</term>
	    <listitem>
	      <synopsis>BackgroundColor=#007777</synopsis>
	      <para>
		If the BackgroundType is 2, use this color in the background
		of the greeter.  Also use it as the back of transparent images
		set on the background and if the BackgroundRemoteOnlyColor
		is set and this is a remote display.
		This only affects the Standard Greeter.
	      </para>
	    </listitem>
	  </varlistentry>	

	  <varlistentry>
	    <term>BackgroundImage</term>
	    <listitem>
	      <synopsis>BackgroundImage=somefile.png</synopsis>
	      <para>
		If the BackgroundType is 1, then display this file as the
		background in the greeter.
		This only affects the Standard Greeter.
	      </para>
	    </listitem>
	  </varlistentry>	

	  <varlistentry>
	    <term>BackgroundProgram</term>
	    <listitem>
	      <synopsis>BackgroundProgram=/usr/bin/xeyes</synopsis>
	      <para>
		If set this program will be run in the background while
                the login window is being displayed.  Note that not all
		programs will run this way, since gdm does not usually have
		a home directory.  You could set up home directory for the
		gdm user if you wish to run applications which require it.
		This only affects the Standard Greeter.
	      </para>
	    </listitem>
	  </varlistentry>	

	  <varlistentry>
	    <term>BackgroundRemoteOnlyColor</term>
	    <listitem>
	      <synopsis>BackgroundRemoteOnlyColor=true</synopsis>
	      <para>
		On remote displays only set the color background.  This is
		to make network load lighter.  The BackgroundProgram is also
		not run.  This only affects the Standard Greeter.
	      </para>
	    </listitem>
	  </varlistentry>	

	  <varlistentry>
	    <term>BackgroundScaleToFit</term>
	    <listitem>
	      <synopsis>BackgroundScaleToFit=true</synopsis>
	      <para>
		Scale background image to fit the screen.
		This only affects the Standard Greeter.
	      </para>
	    </listitem>
	  </varlistentry>	

	  <varlistentry>
	    <term>BackgroundType</term>
	    <listitem>
	      <synopsis>BackgroundType=2</synopsis>
	      <para>
		The type of background to set.  0 is none, 1 is image and 2
		is color.
		This only affects the Standard Greeter.
	      </para>
	    </listitem>
	  </varlistentry>	

	  <varlistentry>
	    <term>Browser</term>
	    <listitem>
	      <synopsis>Browser=true</synopsis>
	      <para>
		Set to true to enable the face browser. See the ``The Standard Greeter''
		section for more information on the face browser.  This option only
		works for the Standard Greeter.  For the Graphical Greeter,
		the face browser is enabled by choosing a theme which includes a
		face browser
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>ChooserButton</term>
	    <listitem>
	      <synopsis>ChooserButton=true</synopsis>
	      <para>
		If true, add a chooser button to the Actions menu that will
		restart the current server with a chooser.  XDMCP does not need
		to be enabled on the local machine for this to work.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>ConfigAvailable</term>
	    <listitem>
	      <synopsis>ConfigAvailable=true</synopsis>
	      <para>
		Allow the configurator to be run from the greeter.  Note that
		the user will need to type in the root password before the
		configurator is run however.  See the <filename>Configurator</filename> option
		in the daemon section.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>DefaultFace</term>
	    <listitem>
	      <synopsis>DefaultFace=share/pixmaps/nophoto.png</synopsis>
	      <para>
		Default icon file for users without a personal picture
		in <filename>~/gnome/photo</filename>. The image must be
		in an gdk-pixbuf supported format and the file must be
		readable for the gdm user.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>Exclude</term>
	    <listitem>
	      <synopsis>Exclude=bin,daemon,adm,lp,sync,shutdown,halt,mail,...</synopsis>
	      <para>
		Comma-separated list of usernames to exclude from the
		face browser. The excluded users will still be able to
		log in.  See also <filename>MinimalUID</filename>.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>GlobalFaceDir</term>
	    <listitem>
	      <synopsis>GlobalFaceDir=share/faces/</synopsis>
	      <para>
		Systemwide directory for face files. The sysadmin can
		place icons for users here without touching their
		homedirs. Faces are named after their users' logins.
	      </para>
	      
	      <para>
		I.e. <filename>&lt;GlobalFaceDir&gt;/johndoe</filename>
		would contain the face icon for the user ``johndoe''. No
		image format extension should be specified. 
	      </para>
	      
	      <para>
		The face images must be stored in gdk-pixbuf supported formats and
		they must be readable for the GDM user.
	      </para>
	      
	      <para>
		A user's own icon file will always take precedence over the sysadmin
		provided one.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>GraphicalTheme</term>
	    <listitem>
	      <synopsis>GraphicalTheme=circles</synopsis>
	      <para>
		The graphical theme that the Graphical Greeter should use.
		it should refer to a directory in the theme directory
		set by <filename>GraphicalThemeDir</filename>.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>GraphicalThemeDir</term>
	    <listitem>
	      <synopsis>GraphicalThemeDir=share/gdm/themes/</synopsis>
	      <para>
		The directory where themes for the Graphical Greeter are
		installed.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>LocaleFile</term>
	    <listitem>
	      <synopsis>LocaleFile=etc/gdm/locale.alias</synopsis>
	      <para>
		File in format similar to the GNU locale format with entries
		for all supported languages on the system.  The format is
		described above or in a comment inside that file.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>LockPosition</term>
	    <listitem>
	      <synopsis>LockPosition=true</synopsis>
	      <para>
		If true the position of the login window of the Standard Greeter
		cannot be changed even if the title bar is turned on.
	      </para>
	    </listitem>
	  </varlistentry>	
	  
	  <varlistentry>
	    <term>Logo</term>
	    <listitem>
	      <synopsis>Logo=share/pixmaps/gnome-logo-large.png</synopsis>
	      <para>
		Image file to display in the logo box. The file must be
		in an gdk-pixbuf supported format and it must be readable by
		the GDM user. If no file is specified the logo feature
		is disabled.
		This only affects the Standard Greeter.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>MinimalUID</term>
	    <listitem>
	      <synopsis>MinimalUID=100</synopsis>
	      <para>
		The minimal UID that gdm should consider a user.  All
		users with a lower UID will be excluded from the face browser.
		See also <filename>Exclude</filename>.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>PositionX</term>
	    <listitem>
	      <synopsis>PositionX=200</synopsis>
	      <para>
		The horizontal position of the login window of the Standard Greeter.
	      </para>
	    </listitem>
	  </varlistentry>	

	  <varlistentry>
	    <term>PositionY</term>
	    <listitem>
	      <synopsis>PositionY=100</synopsis>
	      <para>
		The vertical position of the login window of the Standard Greeter.
	      </para>
	    </listitem>
	  </varlistentry>	
	  
	  <varlistentry>
	    <term>Quiver</term>
	    <listitem>
	      <synopsis>Quiver=true</synopsis>
	      <para>
		Controls whether <filename>gdmlogin</filename> should
		shake the display when an incorrect username/password is
		entered.
		This only affects the Standard Greeter.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>RemoteWelcome</term>
	    <listitem>
	      <synopsis>RemoteWelcome=Welcome to &percnt;n</synopsis>
	      <para>
		Controls which text to display next to the logo image in the
		greeter for remote XDMCP sessions.  The same expansion is
		done here as in the <filename>Welcome</filename> string.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>RunBackgroundProgramAlways</term>
	    <listitem>
	      <synopsis>RunBackgroundProgramAlways=false</synopsis>
	      <para>
		If this is true then the background program is run always, otherwise
		it is only run when the <filename>BackgroundType</filename> is 0 (None)
		This only affects the Standard Greeter.
	      </para>
	    </listitem>
	  </varlistentry>	

	  <varlistentry>
	    <term>SetPosition</term>
	    <listitem>
	      <synopsis>SetPosition=true</synopsis>
	      <para>
		If true the position of the login window of the Standard Greeter
		is determined by PositionX/PositionY.
	      </para>
	    </listitem>
	  </varlistentry>	

	  <varlistentry>
	    <term>ShowGnomeFailsafeSession</term>
	    <listitem>
	      <synopsis>ShowGnomeFailsafeSession=true</synopsis>
	      <para>
		Should the greeter show the Gnome Failsafe session
		in the sessions list.
	      </para>
	    </listitem>
	  </varlistentry>	

	  <varlistentry>
	    <term>ShowXtermFailsafeSession</term>
	    <listitem>
	      <synopsis>ShowXtermFailsafeSession=true</synopsis>
	      <para>
		Should the greeter show the Xterm Failsafe session
		in the sessions list.
	      </para>
	    </listitem>
	  </varlistentry>	
	  
	  <varlistentry>
	    <term>SystemMenu</term>
	    <listitem>
	      <synopsis>SystemMenu=true</synopsis>
	      <para>
		Turns the Actions menu (which used to be called System menu) on
		or off.  If this is off then one of the
		actions will be available anywhere.  These actions include
		Shutdown, Reboot, Configure, XDMCP chooser and such.  All of
		those can however be turned off individually.  Shutdown, Reboot
		and Suspend can be turned off by just setting the corresponding
		keys to empty.  Note that the
		actions menu is only shown on local logins as it would not be
		safe or even desirable on remote logins, so you don't have to
		worry about remote users having any sort of console privilages.
	      </para>

	      <para>
		Note that if this is off none of the actions will be available
		even if a theme for a graphical greeter mistakenly shows them.
		Also note that sometimes a graphical theme may not show all
		the available actions as buttons and you may have to press
		F10 to see the menu.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>TitleBar</term>
	    <listitem>
	      <synopsis>TitleBar=true</synopsis>
	      <para>
		Display the title bar in the greeter.
		This only affects the Standard Greeter.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>Use24Clock</term>
	    <listitem>
	      <synopsis>Use24Clock=false</synopsis>
	      <para>
		Force the use of 24 hour clock even if the locale would default
		to a 12 hour clock.  In some locales that normally use 24 hour
		format (like cs_CZ) this setting has no effect.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>UseCirclesInEntry</term>
	    <listitem>
	      <synopsis>UseCirclesInEntry=false</synopsis>
	      <para>
		Use circles instead of asterisks in the password entry.
		This may not work with all fonts however.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>Welcome</term>
	    <listitem>
	      <synopsis>Welcome=Welcome</synopsis>
	      <para>
		Controls which text to display next to the logo image in the
		standard greeter. The following control chars are supported:
	      </para>
	      
	      <para>
		&percnt;&percnt; &mdash; the `&percnt;' character
	      </para>
	      
	      <para>
		&percnt;d &mdash; display's hostname
	      </para>
	      
	      <para>
		&percnt;h &mdash; Fully qualified hostname
	      </para>

	      <para>
		&percnt;m &mdash; machine (processor type)
	      </para>

	      <para>
		&percnt;n &mdash; Nodename (i.e. hostname without .domain)
	      </para>
	      
	      <para>
		&percnt;r &mdash; release (OS version)
	      </para>
	      
	      <para>
		&percnt;s &mdash; sysname (i.e. OS)
	      </para>

	      <para>
		This string is only used for local logins.  For remote XDMCP
		logins we use <filename>RemoteWelcome</filename>.
	      </para>

	      <para>
		In the Graphical Greeter the location of this text depends on
		the theme.  Unless the theme uses the stock welcome string
		somewhere this string will not be displayed at all.
	      </para>
	      	      
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>XineramaScreen</term>
	    <listitem>
	      <synopsis>XineramaScreen=0</synopsis>
	      <para>
		If the Xinerama extension is active the login window
                will be centered on this physical screen (use 0 for
                the first screen, 1 for the second..).
	      </para>
	    </listitem>
	  </varlistentry>	

	</variablelist>

      </sect3>

      <sect3 id="choosersection">

	<title>XDCMP Chooser Options</title>

	<variablelist>
	  <title>[chooser]</title>

	  <varlistentry>
	    <term>AllowAdd</term>
	    <listitem>
	      <synopsis>AllowAdd=true</synopsis>
	      <para>
		If true, allow the user to add arbitrary hosts to the
		chooser.  This way the user could connect to any host
		that responds to XDMCP queries from the chooser.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>Broadcast</term>
	    <listitem>
	      <synopsis>Broadcast=true</synopsis>
	      <para>
		If true, the chooser will broadcast a query to the local
		network and collect responses.  This way the chooser will
		always show all available managers on the network.  If you
		need to add some hosts not local to this network, or if you
		don't want to use Broadcast, you can list them in the Hosts
		key.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>DefaultHostImage</term>
	    <listitem>
	      <synopsis>DefaultHostImage=share/pixmaps/nohost.png</synopsis>
	      <para>
		File name for the default host icon. This image will be
		displayed if no icon is specified for a given host. The
		file must be in an gdk-pixbuf supported format and it must be
		readable for the GDM user.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>HostImageDir</term>
	    <listitem>
	      <synopsis>HostImageDir=share/hosts</synopsis>
	      <para>
		Repository for host icon files. The sysadmin can place
		icons for remote hosts here and they will appear in
		<filename>gdmchooser</filename>.
	      </para>
	      
	      <para>
		The file name must match the fully qualified name (FQDN) for
		the host.  The icons must be stored in gdk-pixbuf supported formats
		and they must be readable to the gdm user.
	      </para>
	      
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>Hosts</term>
	    <listitem>
	      <synopsis>Hosts=host1,host2</synopsis>
	      <para>
		The hosts which should be listed in the chooser.  The chooser
		will only list them if they respond.  This is done in addition
		to broadcast (if Broadcast is set), so you need not list
		hosts on the local network.  This is useful if your
		networking setup doesn't allow all hosts to be reachable
		by a broadcast packet.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>ScanTime</term>
	    <listitem>
	      <synopsis>ScanTime=4</synopsis>
	      <para>
		Specifies how many seconds the chooser should wait for
		replies to its BROADCAST_QUERY.  Really this is only the time
		in which we expect a reply.  We will still add hosts to the list
		even if they reply after this time.
	      </para>
	    </listitem>
	  </varlistentry>
	</variablelist>
	
      </sect3>

      <sect3 id="serverdefs">

	<title>X Server definitions</title>

	<para>
	  To set up X servers, you need to provide gdm with
	  information about the installed X servers.  You can
	  have as many different definitions as you wish, each
	  identified with a unique name.  The name
	  <filename>Standard</filename>
	  is required.  If you do not specify this server, gdm
	  will assume default values for a 'Standard' server
	  and the path given by <filename>daemon/StandardXServer</filename>.
	  <filename>Standard</filename> is used as the default,
	  in situations when no other server has been defined.
	</para>

	<para>
	  Servers are defined by sections named <filename>server-</filename>
	  followed by the identifier of this server.  This should be a 
	  simple ASCII string with no spaces.  If you use the GUI
	  configurator, it will use random words for these.  These will
	  not be user visible, they are just needed to uniquely identify the
	  server.
	</para>
	
	<variablelist>
	  <title>[server-Standard]</title>

	  <varlistentry>
	    <term>name</term>
	    <listitem>
	      <synopsis>name=Standard server</synopsis>
	      <para>
		The name that will be displayed to the user.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	  <varlistentry>
	    <term>command</term>
	    <listitem>
	      <synopsis>command=/usr/bin/X11/X</synopsis>
	      <para>
		The command to execute, with full path to the binary
		of the X server, and any extra arguments needed.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>flexible</term>
	    <listitem>
	      <synopsis>flexible=true</synopsis>
	      <para>
		Indicates if this server is available as a choice when a
		user wishes to run a flexible, on demand server.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>handled</term>
	    <listitem>
	      <synopsis>handled=true</synopsis>
	      <para>
		Indicates that GDM should run the login window on this server
		and allow a user to log in.  If set to false, then GDM will just
		run this server and wait for it to terminate.  This can be useful
		to run an X terminal using GDM.  When this is done you should
		normally also add <filename>-terminate</filename> to the command
		line of the server to make the server terminate after each session.
		otherwise the control of the slave will never come back to GDM
		and for example soft restarts won't work, since GDM assumes there
		is a login in progress for the entire time this server is
		active.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>chooser</term>
	    <listitem>
	      <synopsis>chooser=false</synopsis>
	      <para>
		Indicates that GDM should instead of a login window run a chooser on
		this window and allow the user to choose which server to log into.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	</variablelist>

      </sect3>

      <sect3 id="localservers">

	<title>Local Static X Server Configuration</title>

	<para>
	  The static X servers are servers that are always running, when the server
	  ever dies, it is restarted.  You can have as many local static servers as
	  you wish.  Each key in the <filename>[servers]</filename> section corresponds
	  to the display number of the server to run.  For example normally there
	  is only one key, which is the key <filename>0</filename>, which corresponds
	  to the display <filename>:0</filename>.
	</para>

	<variablelist>
	  <title>[servers]</title>
	  
	  <varlistentry>
	    <term>&lt;display number&gt;</term>
	    <listitem>
	      <synopsis>0=Standard</synopsis>
	      <para>
		Control section for local X servers. Each line indicates
		the local display number and the command that needs to
		be run to start the X server(s).
	      </para>

	      <para>
		The command can either be a path to an X executable, or
		a name of one of the server definitions.  This can be
		followed by some arguments that should be passed to the
		X server when executed.
	      </para>

	      <para>
		The gdm daemon doesn't enforce the numbers to be in
		order or for them to be "packed".  However when you use
		the GUI configurator, the servers will always start from
		0 and go up by 1.  That is, leaving no holes.
	      </para>
	      
	      <para>
		GDM will splice "<filename>-auth
		  &lt;ServAuthDir&gt;/:n.Xauth :n</filename>", where n is
		the display number.  Inside the command line before all
		other arguments before running the server.
	      </para>

	      <para>
		On some systems it is necessary for gdm to know on which
		virtual consoles to run the X server.  In this case,
		(if running XFree86) add "vt7" to the command line for example
		to run on virtual console 7.  However on Linux this is normally
		done automatically if <filename>VTAllocation</filename> key
		is set.
	      </para>

	      <para>
		Normally you do not need to add a <filename>-nolisten tcp</filename>
		flag as this is added automatically for local servers when
		the <filename>DisallowTCP</filename> option is set.
	      </para>
	    </listitem>
	  </varlistentry>
	  
	</variablelist>

      </sect3>
	
    </sect2>

    <sect2 id="userconfig">
      <title>Per User Configuration</title>

      <para>
	There are some per user configuration settings that control how GDM behaves.
	Firstly there is the <filename>~/.dmrc</filename> file.  In theory this
	file should be shared between GDM and KDM, so users only have to configure
	things once.  This is a standard <filename>.ini</filename> style configuration
	file.  It has one section called <filename>[Desktop]</filename> and can have
	two keys, <filename>Session</filename>, which is the basename of the session
	<filename>.desktop</filename> file that the user wishes to normally use
	and a <filename>Language</filename> key that is the language that the user
	wishes to use.  If either of these keys is missing, the system default is
	used.  The file would normally look as follows:
      </para>

      <screen>
	[Desktop]
	Session=gnome.desktop
	Language=cs_CZ.UTF-8</screen>

      <para>
	The user can also configure a face image for the face browser.  This is
	done by copying an image into a file called <filename>~/.face</filename>.
	This should be a standard image that GTK+ can read, such as PNG.
      </para>

      <para>
	Face images can also be placed in the global face directory, which is
	normally <filename>share/faces/</filename>
        (though this can be configured with the <filename>GlobalFaceDir</filename>
        configuration option) and the filename should be the name of
        the user, optionally with a <filename>.png</filename> appended.
      </para>
    </sect2>
    
  </sect1>

  <sect1 id="controlling">
    <title>Controlling GDM</title>

    <para>
      You can control GDM behavior during runtime in several different ways.  You can
      either run certain commands, or you can talk to GDM using either a unix socket
      protocol, or a FIFO protocol.
    </para>

    <sect2 id="commands">
      <title>Commands</title>

      <para>
	To stop GDM, you can either send the TERM signal to the main daemon or run
	the <filename>gdm-stop</filename> command which is in the <filename>sbin/</filename>
	directory.  To restart GDM, you can either send the HUP signal to the main daemon or run
	the <filename>gdm-restart</filename> command which is also in the <filename>sbin/</filename>
	directory.
	To restart GDM but only after all the users have logged out, you can either send
	the USR1 signal to the main daemon or run
	the <filename>gdm-safe-restart</filename> command which is in the <filename>sbin/</filename>
	directory as well.
      </para>

      <para>
	The <filename>gdmflexiserver</filename> command can be used to start new flexible (on demand)
	servers.  Run <filename>gdmflexiserver --help</filename> to get a listing of possible
	options.  This command will also lock the current screen with xscreensaver so that
	the user can safely walk away from the machine and let someone else log in.  XFree86 will
	automatically switch back to the same virtual terminal (if your operating system supports it),
	after the new session has ended, so this should work quite transparently to the users.
      </para>
      
    </sect2>

    <sect2 id="socketprot">
      <title>Socket Protocol</title>

      <para>
	GDM provides a unix domain socket for communication at <filename>/tmp/.gdm_socket</filename>.
	Using this you can check if GDM is running, the version of the daemon, the current
	servers that are running and who is logged in on them, and if GDM supports it on your
	operating system, also the virtual terminals of all the console logins.  You can also request
	new flexible servers to be run with this protocol, but this is best done with the
	<filename>gdmflexiserver</filename> command.
      </para>

      <para>
	Full and up to date documentation of the commands and their use is contained in the 
	GDM source tree in the file <filename>daemon/gdm.h</filename>.  Look for the
	defines starting with <filename>GDM_SUP_</filename>.
      </para>

    </sect2>

    <sect2 id="fifoprot">
      <title>The FIFO protocol</title>

      <para>
	GDM also provides a FIFO called <filename>.gdmfifo</filename> in the
	<filename>ServAuthDir</filename> directory
	(usually <filename>var/gdm/.gdmfifo</filename>).  You must be root to use this protocol,
	and it is mostly used for internal GDM chatter.  It is a very simple protocol where
	you just echo a command on a single line to this file.  It can be used to tell
	GDM things such as restart, suspend the machine, or restart all X servers next
	time it has a chance (which would be useful from an X configuration program).
      </para>

      <para>
	Full and up to date documentation of the commands and their use is contained in the 
	GDM source tree in the file <filename>daemon/gdm.h</filename>.  Look for the
	defines starting with <filename>GDM_SOP_</filename>.  The commands which require the
	pid of the slave as an argument are the ones that are really used for internal
	communication of the slave with the master and should not be used.
      </para>

    </sect2>
  </sect1>

  <sect1 id="binaries">
    <title>GDM and Related Commands</title>

    <para>
      The GDM package provides quite a few different commands.
    </para>

    <sect2 id="gdmcommandline">
      <title>GDM Command Line Options</title>

      <para>
        First command is the <filename>gdm</filename> command which is really just a script
        which runs the <filename>gdm-binary</filename>.  If you really need to set
        some environment before launching GDM, you can do it in this file.  This command
	accepts several command line parameters.
      </para>

      <variablelist>
	<title><filename>gdm</filename> Command Line Options</title>

	<varlistentry>
	  <term>--help</term>
	  <listitem>
	    <para>
              Gives a brief overview of the command line options.
	    </para>
	  </listitem>
	</varlistentry>

	<varlistentry>
	  <term>-nodaemon</term>
	  <listitem>
	    <para>
              If this option is specified, then gdm does not fork into the background when
              run.  You can use just a single dash with this option to preserve compatibility
              with XDM.
	    </para>
	  </listitem>
	</varlistentry>

	<varlistentry>
	  <term>--no-console</term>
	  <listitem>
	    <para>
              Tell the daemon that it should not run anything on the console.  This means that
              none of the local servers from the <filename>[servers]</filename> section will
              be run, and the console will not be used for communicating errors to the user.
              An empty <filename>[servers]</filename> section automatically implies this
              option.
	    </para>
	  </listitem>
	</varlistentry>

	<varlistentry>
	  <term>--preserve-ld-vars</term>
	  <listitem>
	    <para>
              When clearing the environment internally, preserve all variables starting with
              LD_.  This is mostly for debugging purposes.
	    </para>
	  </listitem>
	</varlistentry>
      </variablelist>

    </sect2>

    <sect2 id="mainbinaries">
      <title>Other Main GDM Commands</title>

      <para>
        Next are the two greeters, <filename>gdmlogin</filename> which is the
        Standard Greeter, and <filename>gdmgreeter</filename> which is the
        Graphical Greeter.  There is also the <filename>gdmchooser</filename>
	which is the XDMCP chooser application.  These should all be run
	only from GDM and not by itself, although <filename>gdmchooser</filename>
	could theoretically be run as a standalone application which prints
	the chosen host on the standard output.
      </para>

      <para>
	There is also the setup program which is the <filename>gdmsetup</filename>
	command.  Normally on systems that support the PAM userhelper, this
	is setup such that when you run <filename>gdmsetup</filename> as
	an ordinary user, it will first ask you for your root password.
      </para>

      <para>
	There is also the user picture setup program, <filename>gdmphotosetup</filename>.
	This is run by users to setup their face browser picture.
      </para>

      <para>
	There are also the commands <filename>gdm-stop</filename>, <filename>gdm-restart</filename>
	and <filename>gdm-safe-restart</filename> which stop, restart, or restart the
	GDM daemon after all users have logged out, respectively.  These are
	installed in the <filename>sbin/</filename> directory.
      </para>

      <para>
	Finally there is the <filename>gdmflexiserver</filename> command which runs
	flexible (on demand) X servers.
      </para>

    </sect2>

    <sect2 id="extrabins">
      <title>Extra GDM Commands</title>

      <para>
	There are some extra commands provided as well.  First is the <filename>gdmXnestchooser</filename>
	command.  This command can run Xnest with all the right options and automatically getting
	the correct display number and setting up access, and runs the server as an indirect query
	to the local host by default.  This way you get an XDMCP chooser provided by your machine.
	You can also supply as an argument the hostname whose chooser should be displayed, so
	<filename>gdmXnestchooser somehost</filename> will run the XDMCP chooser from host
	<filename>somehost</filename> inside an Xnest.  You can make this command do a direct query
	instead by passing the <filename>-d</filename> option as well.
      </para>

      <para>
	Also useful is the <filename>gdmXnest</filename> command which is just for more
	easily running Xnest on your machine.  It will print out the display setting on standard
	output that you can use to connect to this server.  This is useful mostly for developers
	who perhaps wish to test their apps running on a completely separate server.
      </para>

      <para>
	For Graphical Greeter theme developers, there is the <filename>gdmthemetester</filename>
	command which can run the Graphical Greeter in a simulated debug environment for any
	selected theme.  Run the command with no options to get help.
      </para>

    </sect2>
  </sect1>

  <!-- ============= Theme manual ============================= -->

  <sect1 id="thememanual">
    <title>Graphical Greeter Themes</title>

    <para>
      This section describes the creation of themes for the Graphical
      Greeter.  For examples including screenshots, see the standard installed
      themes and the themes from
      <ulink type="http" url="http://art.gnome.org/themes/gdm_greeter/index.php">
      the theme website</ulink>.
    </para>

    <sect2 id="themeover">
      <title>Theme Overview</title>

      <para>
        GDM Themes can be created by creating an XML file that follows the
        specification in gui/greeter/greeter.dtd.  Theme files are stored
        in the directory <filename>share/gdm/themes/&lt;theme_name&gt;</filename>.
        Usually this would be under /usr/share.  The theme directory should contain a
        file called <filename>GdmGreeterTheme.desktop</filename> which has similar format to other
        .desktop files and looks like:
      </para>

      <screen>
     [GdmGreeterTheme]
     Encoding=UTF-8
     Greeter=circles.xml
     Name=Circles
     Description=Theme with blue circles
     Author=Bond, James Bond
     Copyright=(c) 2002 Bond, James Bond
     Screenshot=screenshot.png</screen>

      <para>
        The Name, Description, Author and Copyright fields can be translated just
        like the other <filename>.desktop</filename>files.  All the files that are mentioned should
        be in the theme directory itself.  The Screenshot field points to a file
        which should be a 200x150 screenshot of the theme in action (it is OK
        not to have one, but it makes it nicer for user).  The Greeter field points
        to an XML file that contains the description of the theme.   The description
        will be given later.
      </para>

      <para>
        Once you have theme ready and installed you can test it with the installed
        <filename>gdmthemetester</filename> script.  This script assumes that you also have installed
        the Xnest X server.  It takes two arguments, first the environment that
        should be used.  This is one of console, console-timed, flexi, remote-flexi,
        xdmcp.  Where console is a standard console login, console-timed is a
        console login with a timed login going on, flexi is for any local
        flexible server, remote-flexi is for flexi server that is not local (such
        as an Xnest flexiserver run from a remote display) and xdmcp is for remote
        xdmcp connections.  The second argument is the theme name.  So for example
        to test how things look in the xdmcp mode with the circles theme you would
        run:
      <screen>
     gdmthemetester xdmcp circles</screen>
        Be sure to test all the environments with your theme, and make sure to test
        how the caps lock warning looks by pressing caps lock.  This is also a good
        way to take screenshots, just take a screenshot of the Xnest window.  This
        can be done in GNOME by focusing the Xnest window and pressing
        Alt-PrintScreen.
      </para>

      <para>
        Once you have all this done, then make a tarball that contains the directory
        name (so that you could just untar it in the <filename>/usr/share/gdm/themes</filename> directory).
        And this is the tarball you distribute and people can install from the
        graphical setup program.  You can do this with the commands:
      <screen>
     cd /usr/share/gdm/themes
     tar czvf &lt;theme_name&gt;.tar.gz &lt;theme_name&gt;/</screen>
      </para>

    </sect2>

    <sect2 id="descofthemeformat">
      <title>Detailed Description of Theme XML format</title>

      <sect3 id="boxnodes">
        <title>Box Nodes</title>

        <para>
          Box nodes are container nodes for item nodes.  Box nodes are
          specified as follows:
      <screen>
     &lt;box orientation="alignment" min-width="num" xpadding="num"
      ypadding="num" spacing="num" homogeneous="bool"&gt;</screen>
	  Where "num" means number and bool means either "true"
	  or "false".  The alignment value can be either "horizontal" or "vertical".
	  If you leave any property off it will default to
	  zero or "false" in case of "homogeneous", and "vertical" for
	  the orientation.
        </para>

	<para>
	  If the box is homogeneous then the children are allocated equal
	  amount of space.
	</para>
      </sect3>

      <sect3 id="itemnodes">
        <title>Item Nodes</title>

        <para>
          A GDM Theme is created by specifying a hierarchy of item and box
          nodes.  Item nodes can have the following value for "type":
        </para>

	<variablelist>
	  <varlistentry>
	    <term>entry</term>
	    <listitem>
	      <para>
		Text entry field.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>list</term>
	    <listitem>
	      <para>
		A list widget.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>label</term>
	    <listitem>
	      <para>
		A text label.  Must have a "text" node to specify the text.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>pixmap</term>
	    <listitem>
	      <para>
		An pixmap image in a format that gdk-pixbuf supports like
		PNG, JPEG, Tiff, etc...)
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>rect</term>
	    <listitem>
	      <para>
		Rectangle.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>svg</term>
	    <listitem>
	      <para>
		Scaled Vector Graphic image.
	      </para>
	    </listitem>
	  </varlistentry>
	</variablelist>

        <para>
          For example: 
        <screen>
       &lt;item type="label"&gt;</screen>
          Items can specify ID values which gives them a specific look
          and feel or formatting.  Furthermore you can customize the login
          process by adding custom widgets with custom id's for some items
          (currently only the list item)
        </para>

        <para>
          Entry items can have id values as follows:
        </para>

	<variablelist>
	  <varlistentry>
	    <term>user-pw-entry</term>
	    <listitem>
	      <para>
                Entry field for userid and password entry.  This is
                the field used for responses for the PAM/GDM questions
                (Username, Password, etc..).
	      </para>
	    </listitem>
	  </varlistentry>
	</variablelist>


        <para>
          List items can have id values as follows:
        </para>

	<variablelist>
	  <varlistentry>
	    <term>userlist</term>
	    <listitem>
	      <para>
                A user browser list, so that users can pick
                their username by clicking on this instead
                of typing.
	      </para>
	    </listitem>
	  </varlistentry>
	</variablelist>

        <para>
          Furthermore, you can have an arbitrary id (I'd recommend starting
          the id with 'custom' not to conflict with future additions to this
          spec) and ask extra information of the user.  See the section
          'Custom Widgetry'
        </para>

        <para>
          Label items can have id values as follows:
        </para>

	<variablelist>
	  <varlistentry>
	    <term>clock</term>
	    <listitem>
	      <para>
                Label the displays the date and time.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>pam-prompt</term>
	    <listitem>
	      <para>
	        Label the displays PAM prompt.  This is the prompt that
		PAM uses to ask for username, password, etc...
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>pam-error</term>
	    <listitem>
	      <para>
	        Label the displays PAM/GDM error messages.  Such as when
		user can't log in.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>pam-message</term>
	    <listitem>
	      <para>
	        Label the displays PAM message.  These are messages that
		PAM/GDM gives about state of the account, help about the
		prompts and other information.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>timed-label</term>
	    <listitem>
	      <para>
	        Label that displays timed login information.
	      </para>
	    </listitem>
	  </varlistentry>
	</variablelist>
                     
        <para>
          Rectangles can have id values as follows:
        </para>

	<variablelist>
	  <varlistentry>
	    <term>caps-lock-warning</term>
	    <listitem>
	      <para>
	        Displays an icon that shows if the
		CAPS LOCK key is depressed.  This rectangle
		will be hidden/shown appropriately
	      </para>
	    </listitem>
	  </varlistentry>
	</variablelist>

        <para>
          If an item is of type rect, the item can be a button.  Buttons
          must also include a "button" value as follows:
	<screen>
       &lt;item type="rect" id="disconnect_button" button="true"&gt;.</screen>
        </para>

        <para>
          Possible values for button ids are as follows:
        </para>

	<variablelist>
	  <varlistentry>
	    <term>chooser_button</term>
	    <listitem>
	      <para>
	        Runs the XDMCP chooser.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>config_button</term>
	    <listitem>
	      <para>
	        Runs the GDM Setup program.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>disconnect_button</term>
	    <listitem>
	      <para>
	        Disconnect from remote session.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>language_button</term>
	    <listitem>
	      <para>
	        Displays the language selection dialog.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>halt_button</term>
	    <listitem>
	      <para>
		Halt (shuts down) the system.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>reboot_button</term>
	    <listitem>
	      <para>
		Reboot the system.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>session_button</term>
	    <listitem>
	      <para>
	        List and select from available sessions.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>suspend_button</term>
	    <listitem>
	      <para>
	        Suspend the system.
	      </para>
	    </listitem>
	  </varlistentry>

	  <varlistentry>
	    <term>system_button</term>
	    <listitem>
	      <para>
		Perform halt/reboot/suspend/etc. options
		(if allowed by gdm configuration).  Also
		allows user to run configurator if user
		enters root password (again if allowed
	        by gdm configuration).  This is usually
		now labeled Actions, and referred to as
		the Actions menu.
	      </para>
	    </listitem>
	  </varlistentry>

	</variablelist>
      </sect3>

      <sect3 id="positionnodes">
        <title>Position Node</title>

        <para>
          Each item can specify its position and size via the "pos" node.
          For example:
        <screen>
       &lt;pos x="0" y="4" width="100%" height="100%"/&gt;</screen>
        </para>

	<para>
	  Both position and size can be given in percent and it will be taken
	  as the percentage of the size of the current container.  For toplevel
	  items it's the percentage of the whole screen.
	</para>

	<para>
	  For x and y, you can also specify a negative position which means position
	  from the right or bottom edge.  But this only applies with absolute
	  coordinates.  With percentage you can specify negative position and
	  it will be still from the same edge.
	</para>

	<para>
	  The position also specifies the anchor of the item, this can be
	  "n", "ne", "e", "se", "s", "sw", "w" and "nw" or "center" which stand
	  for the different edges/corners or "center" for center.  For example:
        <screen>
       &lt;pos x="10%" y="50%" anchor="w" width="80%" height="95"/&gt;</screen>
	</para>

	<para>
	  If the item contains a box, you can specify width and height to be
	  "box" to mean that they are supposed to be the width and height
	  of the box, that is the items in the box plus the padding.
	</para>

	<para>
	  You can also specify an "expand" property to either be "true"
	  or false.  If true then the child will be expanded in the box
	  as much as possible (that is it will be given more space if available).
	</para>
      </sect3>

      <sect3 id="shownodes">
        <title>Show Node</title>

        <para>
          Some items may only display in certain modes, like when doing a
          remote display.  Multiple values can be specified and must be
          separated with commas.  The following values are possible:
	</para>

	<para>
          <filename>console</filename> - In console mode.
	</para>
	<para>
          <filename>console-fixed</filename> - In console non-flexi mode.
	</para>
	<para>
          <filename>console-flexi</filename> - In console &amp; flexi mode.
	</para>
	<para>
          <filename>flexi</filename> - In flexi mode.
	</para>
	<para>
          <filename>remote</filename> - In remote mode.
	</para>
	<para>
          <filename>remote-flexi</filename> - In remote &amp; flexi mode.
	</para>

	<para>
	  For example:
	<screen>
       &lt;show modes="flexi,remote"/&gt;</screen>
	</para>

        <para>
          You can also specify the "type" value to indicate that certain
          items should only be displayed if the type is true.  Valid values
          include the following:
	</para>

	<para>
          <filename>chooser</filename>, if ChooserButton is set to "true" in <filename>gdm.conf</filename> file.
	</para>
	<para>
          <filename>config</filename>, if ConfigAvailable is set to "true" in <filename>gdm.conf</filename> file.
	</para>
	<para>
          <filename>halt</filename>, if HaltDaemon is specified in <filename>gdm.conf</filename> file.
	</para>
	<para>
          <filename>reboot</filename>, if RebootCommand is specified in <filename>gdm.conf</filename> file.
	</para>
	<para>
          <filename>suspend</filename>, if SuspendCommand is specified in <filename>gdm.conf</filename> file.
	</para>
	<para>
          <filename>system</filename>, if SystemMenu is specified in <filename>gdm.conf</filename> file
	</para>
	<para>
          <filename>timed</filename>, if TimedLoginEnabled is set to "true" in <filename>gdm.conf</filename> file.
	</para>

	<para>
          For example:
	<screen>
       &lt;show modes="console" type="system"/&gt;</screen>
	</para>

	<para>
          Note that if SystemMenu is off then all of halt, reboot, suspend, chooser
          and config will not show, so this is a global toggle for them all.
          See some of the standard themes for how the show modes are used.
	</para>
      </sect3>

      <sect3 id="noractprenodes">
        <title>Normal/Active/Prelight Nodes</title>

        <para>
  	  Depending on the item type, it can specify its color, font, or
	  image via the following tags:
        </para>

        <para>
          <filename>normal</filename> - normal state.
        </para>
        <para>
          <filename>active</filename> - when the item has active focus.
        </para>
        <para>
          <filename>prelight</filename> - when the mouse is hovering over the item.
        </para>

        <para>
	  When item is "rect" (alpha can be omitted and defaults to 0.0):
	<screen>
       &lt;normal color="#ffffff" alpha="0.0"&gt;</screen>
        </para>

        <para>
	  When item is "label":
	<screen>
       &lt;normal color="#ffffff" font="Sans 14"/&gt;</screen>
        </para>

        <para>
	  When the item type is "pixmap" or "SVG", then the normal, active,
	  and prelight tags specify the images to use as follows:
	<screen>
       &lt;normal file="picture.png" tint="#dddddd"/&gt;</screen>
        </para>

        <para>
	  Note that relative pathnames are assumed to be in the same 
	  directory as the theme .xml file in share/gdm/themes/&lt;theme_name&gt;.
        </para>
      </sect3>

      <sect3 id="textnodes">
        <title>Text Node</title>

        <para>
	  Text tags are used by labels.   They can be used to display
	  localized text as follows (if the "xml:lang" attribute is
	  omitted, the C locale is assumed):
	<screen>
       &lt;text xml:lang="fr"&gt;Option&lt;/text&gt;</screen>
        </para>

	<para>
	  You can include pango markup in the text nodes for labels, however
	  you must encode it.  So for example to have the label of
	  "foo&lt;sup&gt;bar&lt;/sup&gt;", you must type:
	<screen>
       &lt;text"&gt;foo&amp;lt;sup&amp;gt;bar&amp;lt;/sup&amp;gt;&lt;/text&gt;</screen>
	</para>

      </sect3>

      <sect3 id="stocklabels">
        <title>Stock</title>

        <para>
	  Certain common localized labels can be specified via the stock
	  tags.  The "text" tag is ignored if the "stock" tag is used.   You
	  should really use the stock labels rather then just putting all
	  the translations into the themes.  This gives faster load times
	  and likely better translations.  The following values are valid:
        </para>

	<para>
          <filename>caps-lock-warning</filename>, _("You've got capslock on!") 
        </para>
        <para>
          <filename>chooser</filename>, _("_XDMCP Chooser")
        </para>
        <para>
          <filename>disconnect</filename>, _("D_isconnect")
        </para>
        <para>
          <filename>halt</filename>, _("Shut_down")
        </para>
        <para>
          <filename>language</filename>, _("_Language")
        </para>
        <para>
          <filename>quit</filename>, _("_Quit")
        </para>
        <para>
          <filename>reboot</filename>, _("_Reboot")
        </para>
        <para>
          <filename>session</filename>, _("_Session")
        </para>
        <para>
          <filename>suspend</filename>, _("Sus_pend")
        </para>
        <para>
          <filename>system</filename>, _("_Actions")  (Formerly "S_ystem")
        </para>
        <para>
          <filename>timed-label</filename>, _("User %s will login in %d seconds")
        </para>
        <para>
          <filename>username-label</filename>, _("Username:")
        </para>
        <para>
          <filename>welcome-label</filename>, _("Welcome to %h")
        </para>

        <para>
	  For example:
	<screen>
       &lt;stock type="welcome-label"/&gt;</screen>
        </para>

      </sect3>

      <sect3 id="customwidgetry">
        <title>Custom Widgetry</title>

        <para>
	  Currently there is one item which can be customizable and this is
	  the list item.  If you need to ask the user extra things, such as
	  to pick from a list of places to log into, or set of custom login
	  sessions you can setup the list item and add listitem children that
	  describe the choices.  Each listitem must have an id and a text child.
	  The choice will be recorded in the file
	  <filename>&lt;ServAuthDir&gt;/&lt;display&gt;.GreeterInfo</filename>
	  as <filename>&lt;list id&gt;=&lt;listitem id&gt;</filename>.
        </para>

        <para>
	  For example suppose we are on display :0, ServAuthDir is /var/gdm
	  and we have the following in the theme:
        </para>

	<screen>
    &lt;item type="list" id="custom-config"&gt;
      &lt;pos anchor="nw" x="1" y="1" height="200" width="100"/&gt;
      &lt;listitem id="foo"&gt;
        &lt;text&gt;Foo&lt;/text&gt;
      &lt;/listitem&gt;
      &lt;listitem id="bar"&gt;
        &lt;text&gt;Bar&lt;/text&gt;
      &lt;/listitem&gt;
    &lt;/item&gt;</screen>

        <para>
	  Then if the user chooses 'Foo' then <filename>/var/gdm/:0.GreeterInfo</filename> will
	  contain:
        <screen>
       custom-config=foo</screen>
        </para>

      </sect3>
    </sect2>
  </sect1>

  <sect1 id="exampleconf">
    <title>Example Configurations</title>

    <para>
      This section has some example configurations that are useful for
      various setups.
    </para>

    <sect2 id="terminallab">
      <title>Terminal Lab With One Server</title>

      <para>
	Suppose you want to make a lab full of X terminals that all connect
	to one main server.  So let's call one X terminal <filename>xterminal</filename>
	and lets call the server <filename>appserver</filename>.  You install
	GDM on both.
      </para>

      <para>
	On <filename>appserver</filename> you enable XDMCP, so you have
        <screen>
   [xdmcp]
   Enable=true</screen>
	If you want no local screens here, you can then
	make the <filename>[servers]</filename> section empty.
      </para>

      <para>
	On the <filename>xterminal</filename> you disable XDMCP (you don't
	want anyone to connect to the xterminal really).  You will add a server type
	perhaps called <filename>Terminal</filename> as follows:
	<screen>
   [server-Terminal]
   name=Terminal server
   command=/usr/X11R6/bin/X -terminate
   flexible=false
   handled=false</screen>
	This definition should in fact be included in the standard configuration
	file.  Notice that we made the <filename>handled</filename> key false
	since we don't want GDM to handle this server localy.  Also note that
	we have not yet added the <filename>-query</filename> argument, you can add
	that here, or in the <filename>[servers]</filename> section.  We'll define
	our local servers as follows:
	<screen>
   [servers]
   0=Terminal -query appserver</screen>
	This will run a direct XDMCP query to the server named
	<filename>appserver</filename>.
      </para>
    </sect2>

    <sect2 id="terminallabtwo">
      <title>Terminal Lab With Two Or More Servers</title>

      <para>
	Suppose you want to make a lab full of X terminals that all connect
	to some choice of servers.  For now let's make it <filename>appserverone</filename>
	and <filename>appservertwo</filename>.  Again we'll call our example
	X terminal machine <filename>xterminal</filename>.  The setup on
	both servers is the same as with the case of one server in the previous
	section.  You do not need to explicitly enable indirect queries on the
	server since we'll run the choosers locally on the X terminals.
      </para>

      <para>
	So on the <filename>xterminal</filename> you again disable XDMCP.
	You will add a server type perhaps called <filename>Chooser</filename> as follows:
	<screen>
    [server-Chooser]
    name=Chooser server
    command=/usr/X11R6/bin/X
    flexible=false
    chooser=true</screen>
	And again this definition should in fact be included in the standard configuration
	file.  Notice that we made the <filename>chooser</filename> key true here.
	This will run the XDMCP chooser for this server, and when the user chooses
	a host GDM will run a query for that host.  Then we'll define
	our local servers as follows:
	<screen>
   [servers]
   0=Chooser</screen>
      </para>

      <para>
	The XDMCP chooser on the X terminal will normally give a broadcast query to
	see which servers exist on the network.  If the two servers are not reachable
	by a broadcast query, you must add them by hand to the configuration file.
	So in the <filename>[chooser]</filename> section you would have:
	<screen>
   Hosts=appserverone,appservertwo</screen>
	and any other servers you wish the users to be able to connect to.
      </para>

      <para>
	Sometimes you may want to run the chooser on the server side however.  Then
	what you want to do is to run a configuration similar to the previous
	section about the one server configuration with XDMCP indirect queries
	enabled on <filename>appserver</filename> and on the X terminals you'd have
	<screen>
   [servers]
   0=Terminal -indirect appserver</screen>
	This way for example you only have to maintain one <filename>Hosts</filename>
	entry.  However as a disadvantage then, the <filename>appserver</filename>
	must then always be available.  So it's not good for situations where
	you want to have serveral servers and not all of them have to be on
	all the time.  You could also have one of the X terminals handle
	indirect XDMCP queries and serve up the chooser to the other X terminals.
      </para>
    </sect2>
  </sect1>

  <!-- ============= Application License ============================= -->

  <sect1 id="license">
    <title>License</title>
    <para>
      This program is free software; you can redistribute it and/or
      modify it under the terms of the  <ulink type="help" url="gnome-help:gpl">
      <citetitle>GNU General Public License</citetitle></ulink> as
      published by the Free Software Foundation; 
      either version 2 of the License, or (at your option) any later
      version.
    </para>
    <para>
      This program is distributed in the hope that it will be useful, but
      WITHOUT ANY WARRANTY; without even the implied warranty of
      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      <citetitle>GNU General Public License</citetitle> for more details.
    </para>
    <para>
      A copy of the <citetitle>GNU General Public License</citetitle> is
      included as an appendix to the <citetitle>GNOME Users
      Guide</citetitle>.  You may also obtain a copy of the
      <citetitle>GNU General Public License</citetitle> from the Free
      Software Foundation by visiting <ulink type="http"
      url="http://www.fsf.org">their Web site</ulink> or by writing to
      <address>
      Free Software Foundation, Inc.
      <street>59 Temple Place</street> - Suite 330
      <city>Boston</city>, <state>MA</state> <postcode>02111-1307</postcode>
      <country>USA</country>
      </address>
    </para>
  </sect1>
  
</article>

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:2
sgml-indent-data:t
sgml-parent-document:nil
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->