You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

114 lines
3.5 KiB

  1. if PACKAGE_privoxy
  2. comment "Shared libraries settings"
  3. config PRIVOXY_disable-pthread
  4. bool "Don't use POSIX libpthread (-5489b)"
  5. default n
  6. config PRIVOXY_disable-dynamic-pcre
  7. bool "Use the built-in, static pcre, even if libpcre is available (+25669b)"
  8. default n
  9. config PRIVOXY_disable-zlib
  10. bool "Don't use zlib to decompress data before filtering. (-1336b)"
  11. default n
  12. comment "Config options. Overwrites/ignore configuration file settings"
  13. config PRIVOXY_disable-toggle
  14. bool "Don't support temporary disable (+2797b)"
  15. default n
  16. config PRIVOXY_disable-force
  17. bool "Don't allow single-page disable (-434b)"
  18. default n
  19. config PRIVOXY_disable-fast-redirects
  20. bool "Don't support fast redirects (-1393b)"
  21. default n
  22. config PRIVOXY_disable-stats
  23. bool "Don't keep statistics (+2870b)"
  24. default n
  25. config PRIVOXY_enable-ie-images
  26. bool "Enable MS IE image handling. !Read help! (+2694b)"
  27. help
  28. Enable a quick but not always reliable auto-detect whether
  29. requests from MS Internet Explorer are for an image or not.
  30. default n
  31. config PRIVOXY_disable-image-blocking
  32. bool "Don't check for image request - assume HTML (-655b)"
  33. help
  34. Don't try to figure out whether a request is
  35. for an image or HTML - assume HTML.
  36. default n
  37. config PRIVOXY_disable-acl-support
  38. bool "Disable ACL access control (-3496b)"
  39. help
  40. Prevents the use of ACLs to control access to Privoxy by IP address.
  41. default n
  42. config PRIVOXY_disable-trust-files
  43. bool "Prevents the use of trust files. (-1302b)"
  44. default n
  45. config PRIVOXY_disable-editor
  46. bool "Disable web-based editor. !Read help! (-44979b)"
  47. help
  48. Prevents the use of the web-based actions file
  49. editor and web-based temporary disable setting.
  50. default n
  51. config PRIVOXY_enable-no-gifs
  52. bool "Use politically correct PNG format. !Read help! (+112b)"
  53. help
  54. Use politically correct PNG format instead of GIF
  55. for built-in images. May not work with all browsers.
  56. default n
  57. config PRIVOXY_enable-graceful-termination
  58. bool "Allow to shutdown Privoxy through the webinterface. (+1685b)"
  59. default n
  60. config PRIVOXY_enable-extended-host-patterns
  61. bool "Enable and require PCRE syntax in host patterns. !Read help! (-1329b)"
  62. help
  63. Enable and require PCRE syntax in host patterns. This feature hasn't
  64. been announced yet and it's not clear if it's a good idea. It's expected
  65. to work, but undocumented. You should only enable it if you know what
  66. PCRE is and are sure that you need it for your host patterns. You can
  67. use tools/url-pattern-translator.pl to convert existing action files to
  68. use PCRE host patterns. Please don't enable this option when creating
  69. packages for others that may not be expecting it.
  70. default n
  71. config PRIVOXY_enable-external-filters
  72. bool "Allow to filter content with scripts and programs. Experimental. (+4821b)"
  73. default n
  74. config PRIVOXY_enable-accept-filter
  75. bool "Try to use accf_http(9) if supported. (+-0b)"
  76. default n
  77. config PRIVOXY_enable-strptime-sanity-checks
  78. bool "Only trust strptime() results if ... !Read help! (+407b)"
  79. help
  80. Only trust strptime() results if an additional strftime()/strptime()
  81. conversion doesn't change the result. Can be useful if strptime() is
  82. known or suspected to be broken.
  83. default n
  84. config PRIVOXY_enable-compression
  85. bool "Allow Privoxy to compress buffered content. (+1275b)"
  86. help
  87. Allow Privoxy to compress buffered content
  88. if the client supports it. Requires zlib support.
  89. depends on !PRIVOXY_no_zlib
  90. default n
  91. endif