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