fzdefaults.xml.example 3.0 KB

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