blob: 5f72b9f278f4f7d2f2ae4f89ea9bd97beab048c6 (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="krb5-auth-dialog">
<schema id="org.gnome.KrbAuthDialog" path="/apps/krb5-auth-dialog/">
<key name="principal" type="s">
<default>''</default>
<summary>Kerberos principal</summary>
<description>The Kerberos principal to acquire the ticket for</description>
</key>
<key name="pk-userid" type="s">
<default>''</default>
<summary>PKINIT identifier</summary>
<description>The principal's public/private/certificate identifier when using PKINIT</description>
</key>
<key name="pk-anchors" type="s">
<default>''</default>
<summary>PKINIT trust anchors</summary>
<description>PKINIT CA certificates</description>
</key>
<key name="prompt-minutes" type="i">
<default>30</default>
<summary>Prompt minutes before expiry</summary>
<description>Start prompting/displaying notifications that many minutes before expiry</description>
</key>
<key name="forwardable" type="b">
<default>false</default>
<summary>Forwardable ticket</summary>
<description>Requested tickets should be forwardable</description>
</key>
<key name="renewable" type="b">
<default>false</default>
<summary>Renewable ticket</summary>
<description>Requested tickets should be renewable</description>
</key>
<key name="proxiable" type="b">
<default>false</default>
<summary>Proxiable ticket</summary>
<description>Requested tickets should be proxiable</description>
</key>
<key name="conf-tickets" type="b">
<default>false</default>
<summary>Configuration tickets</summary>
<description>Show configuration tickets</description>
</key>
<child name="notify" schema="org.gnome.KrbAuthDialog.notify"/>
<child name="plugins" schema="org.gnome.KrbAuthDialog.plugins"/>
</schema>
<schema id="org.gnome.KrbAuthDialog.notify" path="/apps/krb5-auth-dialog/notify/">
<key name="valid" type="b">
<default>true</default>
<summary>valid ticket notification</summary>
<description>Notify user when ticket becomes valid</description>
</key>
<key name="expiring" type="b">
<default>true</default>
<summary>ticket expiring notification</summary>
<description>Notify user when ticket is about to expire</description>
</key>
<key name="expired" type="b">
<default>true</default>
<summary>ticket expired notification</summary>
<description>Notify user when ticket has expired</description>
</key>
</schema>
<schema id="org.gnome.KrbAuthDialog.plugins" path="/apps/krb5-auth-dialog/plugins/">
<key name="enabled" type="as">
<default>[]</default>
<summary>Enabled plugins</summary>
<description>List of plugins that should be loaded and activated on startup.</description>
</key>
</schema>
</schemalist>
|