blob: 54ee70ad0bfd30e3e74957a67401008912ba7d83 (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<kcfg xmlns="http://www.kde.org/standards/kcfg/1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0
http://www.kde.org/standards/kcfg/1.0/kcfg.xsd" >
<include>tqdir.h</include>
<kcfgfile name="kcmcddbrc"/>
<group name="Lookup">
<entry name="hostname" type="String">
<default>gnudb.gnudb.org</default>
</entry>
<entry name="port" type="Int">
<default>80</default>
</entry>
<entry name="cachePolicy" type="Enum">
<choices>
<choice name="OnlyCache"></choice>
<choice name="UseCache"></choice>
<choice name="IgnoreCache"></choice>
</choices>
<default>UseCache</default>
</entry>
<entry name="lookupTransport" type="Enum">
<choices>
<choice name="CDDBP"></choice>
<choice name="HTTP"></choice>
</choices>
<default>HTTP</default>
</entry>
<entry name="cacheLocations" type="PathList">
<default code="true">TQDir::homeDirPath()+"/.cddb/"</default>
</entry>
</group>
<group name="Submit">
<entry name="submitTransport" type="Enum">
<choices>
<choice name="HTTP"></choice>
<choice name="SMTP"></choice>
</choices>
<default>HTTP</default>
</entry>
<entry name="emailAddress" type="String">
</entry>
<entry name="httpSubmitServer" type="String">
<default>gnudb.gnudb.org</default>
</entry>
<entry name="httpSubmitPort" type="Int">
<default>80</default>
</entry>
<entry name="smtpPort" type="Int">
<default>25</default>
</entry>
<entry name="smtpUsername" type="String">
</entry>
<entry name="useGlobalEmail" type="Bool">
<default>true</default>
</entry>
<entry name="replyTo" type="String">
</entry>
<entry name="smtpHostname" type="String">
</entry>
<entry name="submitAddress" type="String">
<default>freedb-submit@freedb.org</default>
</entry>
</group>
</kcfg>
|