Ticket #8128: fzdefaults.xml

File fzdefaults.xml, 2.8 KB (added by poet, 12 years ago)

my current fzdefaults.xml

Line 
1<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
2
3<!-- fzdefaults.xml documentation
4
5 The file fzdefaults.xml is used to provide system-wide default settings for
6 FileZilla.
7
8 Usage:
9
10 - Windows:
11
12 Put the file fzdefaults.xml into the same directory as filezilla.exe
13
14 - OS X:
15
16 Modify the app bundle, put fzdefaults.xml into the
17 Contents/SharedSupport/ subdirectory
18
19 - Other:
20
21 Put fzdefaults.xml into one of the following directories (in order of precedence):
22
23 - ~/.filezilla
24 - /etc/filezilla
25 - share/filezilla subdirectory of the install prefix.
26
27 Default site manager entries:
28
29 Create some new Site Manager entries and export the list of sites. Rename
30 the resulting XML file to fzdefaults.xml or copy the <Servers> block in it
31 to fzdefaults.xml. See example below.
32
33 Global configuration settings
34
35 Location of settings directory:
36
37 By default, FileZilla stores its settings in the user's home directory. If
38 you want to change this location, modify the "Config Location" setting (see
39 below).
40
41 "Config Location" either accepts absolute paths or paths relative to the
42 location of fzdefaults.xml
43 You can also use environment variables by preceding them with the dollar
44 sign, e.g. "$HOME/foo".
45 Use $$ to denote a path containing dollar signs, e.g. "c:\$$foobar\" if
46 settings should be located in "c:\$foobar".
47 A single dot denotes the directory containing fzdefaults.xml
48
49 Kiosk mode
50
51 If the "Kiosk mode" setting is set to 1, FileZilla will not write any
52 passwords to disk. If set to 2, FileZilla will not write to any
53 configuration file. The latter is useful if FileZilla gets executed from
54 read-only media.
55
56 Disable update check
57
58 If the "Disable update check" setting is set to 1, the capability to
59 check for new FileZilla versions will be completely disabled.
60
61-->
62
63<FileZilla3>
64 <Settings>
65 <Setting name="Config Location">$SOMEDIR/filezilla/</Setting>
66 <Setting name="Kiosk mode">2</Setting>
67 <Setting name="Disable update check">0</Setting>
68 </Settings>
69 <Servers>
70 <Server>
71 <Host>ftp.gnu.org</Host>
72 <Port>21</Port>
73 <Protocol>0</Protocol>
74 <Type>0</Type>
75 <Logontype>0</Logontype>
76 <User>anonymous</User>
77 <Pass>someone@example.com</Pass>
78 <TimezoneOffset>0</TimezoneOffset>
79 <PasvMode>MODE_DEFAULT</PasvMode>
80 <MaximumMultipleConnections>0</MaximumMultipleConnections>
81 <EncodingType>Auto</EncodingType>
82 <Comments></Comments>
83 <LocalDir></LocalDir>
84 <RemoteDir></RemoteDir>Primary GNU download server
85 </Server>
86 </Servers>
87</FileZilla3>