Remove a useless comment in the toggle section
[privoxy.git] / doc / source / p-config.sgml
1 <!--
2  File        :  $Source: /cvsroot/ijbswa/current/doc/source/p-config.sgml,v $
3
4  Purpose     :  Used with other docs and files only.
5
6  $Id: p-config.sgml,v 2.89 2012/12/07 12:46:32 fabiankeil Exp $
7
8  Copyright (C) 2001-2011 Privoxy Developers http://www.privoxy.org/
9  See LICENSE.
10
11  ========================================================================
12  NOTE: Please read developer-manual/documentation.html before touching
13  anything in this, or other Privoxy documentation.
14  ========================================================================
15
16
17  This file contains all the config file comments and options. It used to
18  build both the user-manual config sections, and all of config (yes, the main
19  config file) itself.
20
21  Rationale: This is broken up into two files since a file with a prolog
22  (DTD, etc) cannot be sourced as a secondary file. config.sgml is basically
23  a wrapper for this file.
24
25  IMPORTANT:
26
27  OPTIONS: The actual options are included in this file and prefixed with
28  '@@', and processed by the Makefile to strip the '@@'. Default options
29  that should appear commented out should be listed as: '@@#OPTION'.
30  Otherwise, as '@@OPTION'. Example:
31
32   @@listen-address  127.0.0.1:8118
33
34  The Makefile does significant other processing too. The final results
35  should be checked to make sure that the perl processing does not
36  fubar something!!! Makefile processing requires w3m, fmt (shell line
37  formatter), and perl.
38
39
40  This file is included into:
41
42    user-manual.sgml
43    config   (the actual Privoxy config file)
44
45 -->
46
47 <![%user-man;[
48 <!-- This part only goes into user-manual -->
49 <sect1 id="config">
50 <title>The Main Configuration File</title>
51
52 <para>
53  By default, the main configuration file is named <filename>config</filename>,
54  with the exception of Windows, where it is named <filename>config.txt</filename>.
55  Configuration lines consist of an initial keyword followed by a list of
56  values, all separated by whitespace (any number of spaces or tabs). For
57  example:
58 </para>
59
60 <para>
61  <literal>
62   <msgtext>
63    <literallayout>
64   <emphasis>confdir /etc/privoxy</emphasis></literallayout>
65   </msgtext>
66  </literal>
67 </para>
68
69 <para>
70  Assigns the value <literal>/etc/privoxy</literal> to the option
71  <literal>confdir</literal> and thus indicates that the configuration
72  directory is named <quote>/etc/privoxy/</quote>.
73 </para>
74
75 <para>
76  All options in the config file except for <literal>confdir</literal> and
77  <literal>logdir</literal> are optional. Watch out in the below description
78  for what happens if you leave them unset.
79 </para>
80
81 <para>
82  The main config file controls all aspects of <application>Privoxy</application>'s
83  operation that are not location dependent (i.e. they apply universally, no matter
84  where you may be surfing). Like the filter and action files, the config file is
85  a plain text file and can be modified with a text editor like emacs, vim or
86  notepad.exe.
87 </para>
88
89 ]]>
90
91
92 <![%config-file;[
93 <!-- This part only goes into the config file -->
94 <sect1 id="config">
95 <title>
96  @@TITLE<!-- between the @@ is stripped by Makefile -->@@
97  Sample Configuration File for Privoxy v&p-version;
98 </title>
99 <para>
100  $Id: p-config.sgml,v 2.89 2012/12/07 12:46:32 fabiankeil Exp $
101 </para>
102 <para>
103 Copyright (C) 2001-2011 Privoxy Developers http://www.privoxy.org/
104 </para>
105
106 <para>
107  <literallayout>
108 #################################################################
109                                                                 #
110                     Table of Contents                           #
111                                                                 #
112       I. INTRODUCTION                                           #
113      II. FORMAT OF THE CONFIGURATION FILE                       #
114                                                                 #
115       1. LOCAL SET-UP DOCUMENTATION                             #
116       2. CONFIGURATION AND LOG FILE LOCATIONS                   #
117       3. DEBUGGING                                              #
118       4. ACCESS CONTROL AND SECURITY                            #
119       5. FORWARDING                                             #
120       6. WINDOWS GUI OPTIONS                                    #
121                                                                 #
122 #################################################################
123  </literallayout>
124 </para>
125
126 <literallayout>I. INTRODUCTION
127  ===============  <!-- fuck this madness --></literallayout>
128
129 <para>
130  This file holds Privoxy's main configuration.  Privoxy detects
131  configuration changes automatically, so you don't have to restart it
132  unless you want to load a different configuration file.
133 </para>
134 <para>
135  The configuration will be reloaded with the first request after the
136  change was done, this request itself will still use the old configuration,
137  though. In other words: it takes two requests before you see the result of
138  your changes. Requests that are dropped due to ACL don't trigger reloads.
139 </para>
140 <para>
141  When starting Privoxy on Unix systems, give the location of this
142  file as last argument.  On Windows systems, Privoxy will look for
143  this file with the name 'config.txt' in the current working directory
144  of the Privoxy process.
145 </para>
146
147 <para>
148  <literallayout><!-- funky spacing -->
149
150 II. FORMAT OF THE CONFIGURATION FILE
151 ====================================</literallayout>
152 </para>
153 <para>
154  Configuration lines consist of an initial keyword followed by a list
155  of values, all separated by whitespace (any number of spaces or
156  tabs).  For example,
157 </para>
158 <para>
159  actionsfile default.action
160 </para>
161 <para>
162  Indicates that the actionsfile is named 'default.action'.
163 </para>
164 <para>
165  The '#' indicates a comment.  Any part of a line following a '#' is
166  ignored, except if the '#' is preceded by a '\'.
167 </para>
168 <para>
169  Thus, by placing a # at the start of an existing configuration line,
170  you can make it a comment and it will be treated as if it weren't there.
171  This is called "commenting out" an option and can be useful. Removing
172  the # again is called "uncommenting".
173 </para>
174 <para>
175  Note that commenting out an option and leaving it at its default
176  are two completely different things! Most options behave very
177  differently when unset. See the "Effect if unset" explanation
178  in each option's description for details.
179 </para>
180 <para>
181  Long lines can be continued on the next line by using a `\' as
182  the last character.
183 </para>
184
185 ]]>
186
187 <!-- ************************************************ -->
188 <!-- The following is common to both outputs (mostly) -->
189 <!-- ************************************************ -->
190
191
192
193 <!--   ~~~~~       New section      ~~~~~     -->
194 <sect2 id="local-set-up">
195 <title>Local Set-up Documentation</title>
196
197   <para>
198     If you intend to operate <application>Privoxy</application> for more users
199     than just yourself, it might be a good idea to let them know how to reach
200     you, what you block and why you do that, your policies, etc.
201    </para>
202
203
204 <!--   ~~~~~       New section      ~~~~~     -->
205 <sect3 renderas="sect4" id="user-manual"><title>user-manual</title>
206 <variablelist>
207  <varlistentry>
208   <term>Specifies:</term>
209   <listitem>
210    <para>
211     Location of the <application>Privoxy</application> User Manual.
212    </para>
213   </listitem>
214  </varlistentry>
215  <varlistentry>
216   <term>Type of value:</term>
217   <listitem>
218    <para>A fully qualified URI</para>
219   </listitem>
220  </varlistentry>
221  <varlistentry>
222   <term>Default value:</term>
223   <listitem>
224    <para><emphasis>Unset</emphasis></para>
225   </listitem>
226  </varlistentry>
227  <varlistentry>
228   <term>Effect if unset:</term>
229   <listitem>
230    <para>
231     <ulink url="http://www.privoxy.org/user-manual/">http://www.privoxy.org/<replaceable class="parameter">version</replaceable>/user-manual/</ulink>
232     will be used, where <replaceable class="parameter">version</replaceable> is the <application>Privoxy</application> version.
233    </para>
234   </listitem>
235  </varlistentry>
236  <varlistentry>
237   <term>Notes:</term>
238   <listitem>
239     <para>
240     The User Manual URI is the single best source of information on
241     <application>Privoxy</application>, and is used for help links from some
242     of the internal CGI pages. The manual itself is normally packaged with the
243     binary distributions, so you probably want to set this to a locally
244     installed copy.
245    </para>
246    <para>
247     Examples:
248    </para>
249   <!--
250   <para>
251    Unix, in local filesystem (may not work with all browsers):
252   </para>
253   <para>
254    <screen>&nbsp;&nbsp;user-manual&nbsp;&nbsp;file:///usr/share/doc/privoxy-&p-version;/user-manual/</screen>
255   </para>
256   <para>
257    Windows, in local filesystem, <emphasis>must</emphasis> use forward slash notation:
258   </para>
259   <para>
260    <screen>&nbsp;&nbsp;user-manual&nbsp;&nbsp;file:/c:/some-dir/privoxy-&p-version;/user-manual/</screen>
261   </para>
262   <para>
263    Windows, UNC notation (with forward slashes):
264   </para>
265   <para>
266    <screen>&nbsp;&nbsp;user-manual&nbsp;&nbsp;file://///some-server/some-path/privoxy-&p-version;/user-manual/</screen>
267   </para>
268  -->
269   <para>
270    The best all purpose solution is simply to put the full local
271    <literal>PATH</literal> to where the <citetitle>User Manual</citetitle> is
272    located:
273   </para>
274   <para>
275    <screen>&nbsp;&nbsp;user-manual&nbsp;&nbsp;/usr/share/doc/privoxy/user-manual</screen>
276   </para>
277   <para>
278    The User Manual is then available to anyone with access to
279    <application>Privoxy</application>, by following the built-in URL:
280    <literal>http://config.privoxy.org/user-manual/</literal>
281    (or the shortcut: <literal>http://p.p/user-manual/</literal>).
282   </para>
283   <para>
284    If the documentation is not on the local system, it can be accessed
285    from a remote server, as:
286   </para>
287   <para>
288    <screen>&nbsp;&nbsp;user-manual&nbsp;&nbsp;http://example.com/privoxy/user-manual/</screen>
289   </para>
290   <![%user-man;[
291    <!-- this gets hammered in conversion to config. Text repeated below. -->
292   <warning>
293    <para>
294      If set, this option should be <emphasis>the first option in the config
295      file</emphasis>, because it is used while the config file is being read
296      on start-up.
297    </para>
298   </warning>
299   ]]>
300
301   <![%config-file;[
302    <!-- alternate -->
303    <para>
304     WARNING!!!
305    </para>
306    <blockquote>
307     <para>
308      If set, this option should be the first option in the config
309      file, because it is used while the config file is being read.
310     </para>
311    </blockquote>
312   ]]>
313
314  </listitem>
315  </varlistentry>
316 </variablelist>
317
318 <![%config-file;[<literallayout>@@#user-manual http://www.privoxy.org/user-manual/</literallayout>]]>
319 </sect3>
320
321
322 <!--   ~~~~~       New section      ~~~~~     -->
323 <sect3 renderas="sect4" id="trust-info-url"><title>trust-info-url</title>
324
325 <variablelist>
326  <varlistentry>
327   <term>Specifies:</term>
328   <listitem>
329    <para>
330     A URL to be displayed in the error page that users will see if access to an untrusted page is denied.
331    </para>
332   </listitem>
333  </varlistentry>
334  <varlistentry>
335   <term>Type of value:</term>
336   <listitem>
337    <para>URL</para>
338   </listitem>
339  </varlistentry>
340  <varlistentry>
341   <term>Default value:</term>
342   <listitem>
343    <para><emphasis>Unset</emphasis></para>
344   </listitem>
345  </varlistentry>
346  <varlistentry>
347   <term>Effect if unset:</term>
348   <listitem>
349    <para>
350     No links are displayed on the "untrusted" error page.
351    </para>
352   </listitem>
353  </varlistentry>
354  <varlistentry>
355   <term>Notes:</term>
356   <listitem>
357    <para>
358     The value of this option only matters if the experimental trust mechanism has been
359     activated. (See <link linkend="trustfile"><emphasis>trustfile</emphasis></link> below.)
360    </para>
361    <para>
362     If you use the trust mechanism, it is a good idea to write up some on-line
363     documentation about your trust policy and to specify the URL(s) here.
364     Use multiple times for multiple URLs.
365    </para>
366    <para>
367     The URL(s) should be added to the trustfile as well, so users don't end up
368     locked out from the information on why they were locked out in the first place!
369    </para>
370   </listitem>
371  </varlistentry>
372 </variablelist>
373
374 <![%config-file;[<literallayout>@@#trust-info-url  http://www.example.com/why_we_block.html</literallayout>]]>
375 <![%config-file;[<literallayout>@@#trust-info-url  http://www.example.com/what_we_allow.html</literallayout>]]>
376 </sect3>
377
378
379 <!--   ~~~~~       New section      ~~~~~     -->
380 <sect3 renderas="sect4" id="admin-address"><title>admin-address</title>
381
382 <variablelist>
383  <varlistentry>
384   <term>Specifies:</term>
385   <listitem>
386    <para>
387     An email address to reach the <application>Privoxy</application> administrator.
388    </para>
389   </listitem>
390  </varlistentry>
391  <varlistentry>
392   <term>Type of value:</term>
393   <listitem>
394    <para>Email address</para>
395   </listitem>
396  </varlistentry>
397  <varlistentry>
398   <term>Default value:</term>
399   <listitem>
400    <para><emphasis>Unset</emphasis></para>
401   </listitem>
402  </varlistentry>
403  <varlistentry>
404   <term>Effect if unset:</term>
405   <listitem>
406    <para>
407     No email address is displayed on error pages and the CGI user interface.
408    </para>
409   </listitem>
410  </varlistentry>
411  <varlistentry>
412   <term>Notes:</term>
413   <listitem>
414    <para>
415     If both <literal>admin-address</literal> and <literal>proxy-info-url</literal>
416     are unset, the whole "Local Privoxy Support" box on all generated pages will
417     not be shown.
418    </para>
419   </listitem>
420  </varlistentry>
421 </variablelist>
422
423 <![%config-file;[<literallayout>@@#admin-address privoxy-admin@example.com</literallayout>]]>
424 </sect3>
425
426
427 <!--   ~~~~~       New section      ~~~~~     -->
428 <sect3 renderas="sect4" id="proxy-info-url"><title>proxy-info-url</title>
429
430 <variablelist>
431  <varlistentry>
432   <term>Specifies:</term>
433   <listitem>
434    <para>
435     A URL to documentation about the local <application>Privoxy</application> setup,
436     configuration or policies.
437    </para>
438   </listitem>
439  </varlistentry>
440  <varlistentry>
441   <term>Type of value:</term>
442   <listitem>
443    <para>URL</para>
444   </listitem>
445  </varlistentry>
446  <varlistentry>
447   <term>Default value:</term>
448   <listitem>
449    <para><emphasis>Unset</emphasis></para>
450   </listitem>
451  </varlistentry>
452  <varlistentry>
453   <term>Effect if unset:</term>
454   <listitem>
455    <para>
456     No link to local documentation is displayed on error pages and the CGI user interface.
457    </para>
458   </listitem>
459  </varlistentry>
460  <varlistentry>
461   <term>Notes:</term>
462   <listitem>
463    <para>
464     If both <literal>admin-address</literal> and <literal>proxy-info-url</literal>
465     are unset, the whole "Local Privoxy Support" box on all generated pages will
466     not be shown.
467    </para>
468    <para>
469     This URL shouldn't be blocked ;-)
470    </para>
471   </listitem>
472  </varlistentry>
473 </variablelist>
474
475 <![%config-file;[<literallayout>@@#proxy-info-url http://www.example.com/proxy-service.html</literallayout>]]>
476 </sect3>
477
478 </sect2>
479 <!--  ~  End section  ~  -->
480
481
482
483 <!--   ~~~~~       New section      ~~~~~     -->
484
485 <sect2 id="conf-log-loc">
486 <title>Configuration and Log File Locations</title>
487
488 <para>
489  <application>Privoxy</application> can (and normally does) use a number of
490  other files for additional configuration, help and logging.
491  This section of the configuration file tells <application>Privoxy</application>
492  where to find those other files.
493 </para>
494
495 <para>
496  The user running <application>Privoxy</application>, must have read
497  permission for all configuration files, and write permission to any files
498  that would be modified, such as log files and actions files.
499 </para>
500
501
502 <!--   ~~~~~       New section      ~~~~~     -->
503 <sect3 renderas="sect4" id="confdir"><title>confdir</title>
504
505 <variablelist>
506  <varlistentry>
507   <term>Specifies:</term>
508   <listitem>
509    <para>The directory where the other configuration files are located.</para>
510   </listitem>
511  </varlistentry>
512  <varlistentry>
513   <term>Type of value:</term>
514   <listitem>
515    <para>Path name</para>
516   </listitem>
517  </varlistentry>
518  <varlistentry>
519   <term>Default value:</term>
520   <listitem>
521    <para>/etc/privoxy (Unix) <emphasis>or</emphasis> <application>Privoxy</application> installation dir (Windows) </para>
522   </listitem>
523  </varlistentry>
524  <varlistentry>
525   <term>Effect if unset:</term>
526   <listitem>
527    <para><emphasis>Mandatory</emphasis></para>
528   </listitem>
529  </varlistentry>
530  <varlistentry>
531   <term>Notes:</term>
532   <listitem>
533    <para>
534     No trailing <quote><literal>/</literal></quote>, please.
535    </para>
536   <!--
537    This is really outdated and not likely to happen. HB 09/20/06
538    <para>
539     When development goes modular and multi-user, the blocker, filter, and
540     per-user config will be stored in subdirectories of <quote>confdir</quote>.
541     For now, the configuration directory structure is flat, except for
542     <filename>confdir/templates</filename>, where the HTML templates for CGI
543     output reside (e.g. <application>Privoxy's</application> 404 error page).
544    </para>
545   -->
546   </listitem>
547  </varlistentry>
548 </variablelist>
549
550 <![%config-file;[<literallayout>@@confdir .</literallayout>]]>
551 </sect3>
552
553 <!--   ~~~~~       New section      ~~~~~     -->
554 <sect3 renderas="sect4" id="templdir"><title>templdir</title>
555
556 <variablelist>
557  <varlistentry>
558   <term>Specifies:</term>
559   <listitem>
560    <para>An alternative directory where the templates are loaded from.</para>
561   </listitem>
562  </varlistentry>
563  <varlistentry>
564   <term>Type of value:</term>
565   <listitem>
566    <para>Path name</para>
567   </listitem>
568  </varlistentry>
569  <varlistentry>
570   <term>Default value:</term>
571   <listitem>
572    <para>unset</para>
573   </listitem>
574  </varlistentry>
575  <varlistentry>
576   <term>Effect if unset:</term>
577   <listitem>
578    <para>The templates are assumed to be located in confdir/template.</para>
579   </listitem>
580  </varlistentry>
581  <varlistentry>
582   <term>Notes:</term>
583   <listitem>
584    <para>
585     <application>Privoxy's</application> original templates are usually
586     overwritten with each update. Use this option to relocate customized
587     templates that should be kept. As template variables might change
588     between updates, you shouldn't expect templates to work with
589     <application>Privoxy</application> releases other than the one
590     they were part of, though.
591    </para>
592   </listitem>
593  </varlistentry>
594 </variablelist>
595
596 <![%config-file;[<literallayout>@@#templdir .</literallayout>]]>
597 </sect3>
598
599
600 <!--   ~~~~~       New section      ~~~~~     -->
601 <sect3 renderas="sect4" id="logdir"><title>logdir</title>
602
603 <variablelist>
604  <varlistentry>
605   <term>Specifies:</term>
606   <listitem>
607    <para>
608     The directory where all logging takes place
609     (i.e. where the <filename>logfile</filename> is located).
610    </para>
611   </listitem>
612  </varlistentry>
613  <varlistentry>
614   <term>Type of value:</term>
615   <listitem>
616    <para>Path name</para>
617   </listitem>
618  </varlistentry>
619  <varlistentry>
620   <term>Default value:</term>
621   <listitem>
622    <para>/var/log/privoxy (Unix) <emphasis>or</emphasis> <application>Privoxy</application> installation dir (Windows) </para>
623   </listitem>
624  </varlistentry>
625  <varlistentry>
626   <term>Effect if unset:</term>
627   <listitem>
628    <para><emphasis>Mandatory</emphasis></para>
629   </listitem>
630  </varlistentry>
631  <varlistentry>
632   <term>Notes:</term>
633   <listitem>
634    <para>
635     No trailing <quote><literal>/</literal></quote>, please.
636    </para>
637   </listitem>
638  </varlistentry>
639 </variablelist>
640
641 <![%config-file;[<literallayout>@@logdir .</literallayout>]]>
642 </sect3>
643
644
645 <!--   ~~~~~       New section      ~~~~~     -->
646 <sect3 renderas="sect4" id="actionsfile"><title>
647 actionsfile
648 </title>
649 <anchor id="default.action">
650 <anchor id="standard.action">
651 <anchor id="user.action">
652 <!-- Note: slightly modified this section 04/28/02, hal. See NOTE. -->
653 <variablelist>
654  <varlistentry>
655   <term>Specifies:</term>
656   <listitem>
657    <para>
658     The <link linkend="actions-file">actions file(s)</link> to use
659    </para>
660   </listitem>
661  </varlistentry>
662  <varlistentry>
663   <term>Type of value:</term>
664   <listitem>
665    <para>Complete file name, relative to <literal>confdir</literal></para>
666   </listitem>
667  </varlistentry>
668  <varlistentry>
669   <term>Default values:</term>
670   <listitem>
671    <simplelist>
672     <member>
673      <msgtext><literallayout>  match-all.action # Actions that are applied to all sites and maybe overruled later on.</literallayout></msgtext>
674     </member>
675     <member>
676      <msgtext><literallayout>  default.action   # Main actions file</literallayout></msgtext>
677     </member>
678     <member>
679      <msgtext><literallayout>  user.action      # User customizations</literallayout></msgtext>
680     </member>
681    </simplelist>
682   </listitem>
683  </varlistentry>
684  <varlistentry>
685   <term>Effect if unset:</term>
686   <listitem>
687    <para>
688     No actions are taken at all. More or less neutral proxying.
689    </para>
690   </listitem>
691  </varlistentry>
692  <varlistentry>
693   <term>Notes:</term>
694   <listitem>
695    <para>
696     Multiple <literal>actionsfile</literal> lines are permitted, and are in fact recommended!
697    </para>
698    <para>
699     The default values are <filename>default.action</filename>, which is the
700     <quote>main</quote> actions file maintained by the developers, and
701     <filename>user.action</filename>, where you can make your personal additions.
702    </para>
703    <para>
704     Actions files contain all the per site and per URL configuration for
705     ad blocking, cookie management, privacy considerations, etc.
706     There is no point in using <application>Privoxy</application> without at
707     least one actions file.
708    </para>
709    <para>
710     Note that since Privoxy 3.0.7, the complete filename, including the <quote>.action</quote>
711     extension has to be specified.  The syntax change was necessary to be consistent
712     with the other file options and to allow previously forbidden characters.
713    </para>
714   </listitem>
715  </varlistentry>
716 </variablelist>
717
718 <!-- NOTE: alternate markup to make a simpler list doesn't work due to -->
719 <!-- html -> text conversion, blah -->
720 <![%config-file;[<literallayout>@@actionsfile match-all.action # Actions that are applied to all sites and maybe overruled later on.</literallayout>]]>
721 <![%config-file;[<literallayout>@@actionsfile default.action   # Main actions file</literallayout>]]>
722 <!--
723  XXX: Like user.filter, user.action should probably be commented out
724  by default as not all packages install it into the default directory.
725  fk 2007-11-07
726 -->
727 <![%config-file;[<literallayout>@@actionsfile user.action      # User customizations</literallayout>]]>
728 </sect3>
729
730 <!--   ~~~~~       New section      ~~~~~     -->
731 <sect3 renderas="sect4" id="filterfile"><title>filterfile</title>
732 <anchor id="default.filter">
733 <variablelist>
734  <varlistentry>
735   <term>Specifies:</term>
736   <listitem>
737    <para>
738     The <link linkend="filter-file">filter file(s)</link> to use
739    </para>
740   </listitem>
741  </varlistentry>
742  <varlistentry>
743   <term>Type of value:</term>
744   <listitem>
745    <para>File name, relative to <literal>confdir</literal></para>
746   </listitem>
747  </varlistentry>
748  <varlistentry>
749   <term>Default value:</term>
750   <listitem>
751    <para>default.filter (Unix) <emphasis>or</emphasis> default.filter.txt (Windows)</para>
752   </listitem>
753  </varlistentry>
754  <varlistentry>
755   <term>Effect if unset:</term>
756   <listitem>
757    <para>
758     No textual content filtering takes place, i.e. all
759     <literal>+<link linkend="filter">filter</link>{<replaceable class="parameter">name</replaceable>}</literal>
760     actions in the actions files are turned neutral.
761    </para>
762   </listitem>
763  </varlistentry>
764  <varlistentry>
765   <term>Notes:</term>
766   <listitem>
767    <para>
768     Multiple <literal>filterfile</literal> lines are permitted.
769    </para>
770    <para>
771     The <link linkend="filter-file">filter files</link> contain content modification
772     rules that use <link linkend="regex">regular expressions</link>. These rules permit
773     powerful changes on the content of Web pages, and optionally the headers
774     as well, e.g., you could try to disable your favorite JavaScript annoyances,
775     re-write the actual displayed text, or just have some fun
776     playing buzzword bingo with web pages.
777    </para>
778    <para>
779     The
780     <literal>+<link linkend="filter">filter</link>{<replaceable class="parameter">name</replaceable>}</literal>
781     actions rely on the relevant filter (<replaceable class="parameter">name</replaceable>)
782     to be defined in a filter file!
783    </para>
784    <para>
785     A pre-defined filter file called <filename>default.filter</filename> that contains
786     a number of useful filters for common problems is included in the distribution.
787     See the section on the <literal><link linkend="filter">filter</link></literal>
788     action for a list.
789    </para>
790    <para>
791     It is recommended to place any locally adapted filters into a separate
792     file, such as <filename>user.filter</filename>.
793    </para>
794   </listitem>
795  </varlistentry>
796 </variablelist>
797
798 <![%config-file;[<literallayout>@@filterfile default.filter</literallayout>]]>
799 <![%config-file;[<literallayout>@@filterfile user.filter      # User customizations</literallayout>]]>
800 </sect3>
801
802
803 <!--   ~~~~~       New section      ~~~~~     -->
804 <sect3 renderas="sect4" id="logfile"><title>logfile</title>
805
806 <variablelist>
807  <varlistentry>
808   <term>Specifies:</term>
809   <listitem>
810    <para>
811     The log file to use
812    </para>
813   </listitem>
814  </varlistentry>
815  <varlistentry>
816   <term>Type of value:</term>
817   <listitem>
818    <para>File name, relative to <literal>logdir</literal></para>
819   </listitem>
820  </varlistentry>
821  <varlistentry>
822   <term>Default value:</term>
823   <listitem>
824    <para><emphasis>Unset (commented out)</emphasis>. When activated: logfile (Unix) <emphasis>or</emphasis> privoxy.log (Windows).</para>
825   </listitem>
826  </varlistentry>
827  <varlistentry>
828   <term>Effect if unset:</term>
829   <listitem>
830    <para>
831     No logfile is written.
832    </para>
833   </listitem>
834  </varlistentry>
835  <varlistentry>
836   <term>Notes:</term>
837   <listitem>
838    <para>
839     The logfile is where all logging and error messages are written. The level
840     of detail and number of messages are set with the <literal>debug</literal>
841     option (see below). The logfile can be useful for tracking down a problem with
842     <application>Privoxy</application> (e.g., it's not blocking an ad you
843     think it should block) and it can help you to monitor what your browser
844     is doing.
845    </para>
846    <para>
847     Depending on the debug options below, the logfile may be a privacy risk
848     if third parties can get access to it. As most users will never look
849     at it, <application>Privoxy</application> 3.0.7 and later only log fatal
850     errors by default.
851    </para>
852    <para>
853     For most troubleshooting purposes, you will have to change that,
854     please refer to the debugging section for details.
855    </para>
856    <para>
857     Your logfile will grow indefinitely, and you will probably want to
858     periodically remove it.  On Unix systems, you can do this with a cron job
859     (see <quote>man cron</quote>).
860    </para>
861    <para>
862     Any log files must be writable by whatever user <application>Privoxy</application>
863     is being run as (on Unix, default user id is <quote>privoxy</quote>).
864    </para>
865   </listitem>
866  </varlistentry>
867 </variablelist>
868
869 <![%config-file;[<literallayout>@@logfile logfile</literallayout>]]>
870 </sect3>
871
872
873 <!--   ~~~~~       New section      ~~~~~     -->
874 <sect3 renderas="sect4" id="trustfile"><title>trustfile</title>
875 <variablelist>
876  <varlistentry>
877   <term>Specifies:</term>
878   <listitem>
879    <para>
880     The name of the trust file to use
881    </para>
882   </listitem>
883  </varlistentry>
884  <varlistentry>
885   <term>Type of value:</term>
886   <listitem>
887    <para>File name, relative to <literal>confdir</literal></para>
888   </listitem>
889  </varlistentry>
890  <varlistentry>
891   <term>Default value:</term>
892   <listitem>
893    <para><emphasis>Unset (commented out)</emphasis>. When activated: trust (Unix) <emphasis>or</emphasis> trust.txt (Windows)</para>
894   </listitem>
895  </varlistentry>
896  <varlistentry>
897   <term>Effect if unset:</term>
898   <listitem>
899    <para>
900     The entire trust mechanism is disabled.
901    </para>
902   </listitem>
903  </varlistentry>
904  <varlistentry>
905   <term>Notes:</term>
906   <listitem>
907    <para>
908     The trust mechanism is an experimental feature for building white-lists and should
909     be used with care. It is <emphasis>NOT</emphasis> recommended for the casual user.
910    </para>
911    <para>
912     If you specify a trust file, <application>Privoxy</application> will only allow
913     access to sites that are specified in the trustfile. Sites can be listed
914     in one of two ways:
915    </para>
916    <para>
917     Prepending a <literal>~</literal> character limits access to this site
918     only (and any sub-paths within this site), e.g.
919     <literal>~www.example.com</literal> allows access to
920     <literal>~www.example.com/features/news.html</literal>, etc.
921    </para>
922    <para>
923     Or, you can designate sites as <emphasis>trusted referrers</emphasis>, by
924     prepending the name with a <literal>+</literal> character. The effect is that
925     access to untrusted sites will be granted -- but only if a link from this
926     trusted referrer was used to get there. The link target will then be added
927     to the <quote>trustfile</quote> so that future, direct accesses will be
928     granted. Sites added via this mechanism do not become trusted referrers
929     themselves (i.e. they are added with a <literal>~</literal> designation).
930     There is a limit of 512 such entries, after which new entries will not be
931     made.
932    </para>
933    <para>
934     If you use the <literal>+</literal> operator in the trust file, it may grow
935     considerably over time.
936    </para>
937    <para>
938     It is recommended that <application>Privoxy</application> be compiled with
939     the <literal>--disable-force</literal>, <literal>--disable-toggle</literal> and
940     <literal> --disable-editor</literal> options, if this feature is to be
941     used.
942    </para>
943    <para>
944     Possible applications include limiting Internet access for children.
945    </para>
946
947   </listitem>
948  </varlistentry>
949 </variablelist>
950
951 <![%config-file;[<literallayout>@@#trustfile trust</literallayout>]]>
952 </sect3>
953 </sect2>
954
955 <!--  ~  End section  ~  -->
956
957 <!--   ~~~~~       New section      ~~~~~     -->
958 <sect2 id="debugging">
959 <title>Debugging</title>
960
961  <para>
962   These options are mainly useful when tracing a problem.
963   Note that you might also want to invoke
964   <application>Privoxy</application> with the <literal>--no-daemon</literal>
965   command line option when debugging.
966  </para>
967
968 <sect3 renderas="sect4" id="debug"><title>debug</title>
969
970 <variablelist>
971  <varlistentry>
972   <term>Specifies:</term>
973   <listitem>
974    <para>
975     Key values that determine what information gets logged.
976    </para>
977   </listitem>
978  </varlistentry>
979  <varlistentry>
980   <term>Type of value:</term>
981   <listitem>
982    <para>Integer values</para>
983   </listitem>
984  </varlistentry>
985  <varlistentry>
986   <term>Default value:</term>
987   <listitem>
988    <para>0 (i.e.: only fatal errors (that cause Privoxy to exit) are logged)</para>
989   </listitem>
990  </varlistentry>
991  <varlistentry>
992   <term>Effect if unset:</term>
993   <listitem>
994    <para>
995     Default value is used (see above).
996    </para>
997   </listitem>
998  </varlistentry>
999  <varlistentry>
1000   <term>Notes:</term>
1001   <listitem>
1002    <para>
1003     The available debug levels are:
1004    </para>
1005    <para>
1006     <programlisting>
1007   debug     1 # Log the destination for each request &my-app; let through. See also debug 1024.
1008   debug     2 # show each connection status
1009   debug     4 # show I/O status
1010   debug     8 # show header parsing
1011   debug    16 # log all data written to the network
1012   debug    32 # debug force feature
1013   debug    64 # debug regular expression filters
1014   debug   128 # debug redirects
1015   debug   256 # debug GIF de-animation
1016   debug   512 # Common Log Format
1017   debug  1024 # Log the destination for requests &my-app; didn't let through, and the reason why.
1018   debug  2048 # CGI user interface
1019   debug  4096 # Startup banner and warnings.
1020   debug  8192 # Non-fatal errors
1021   debug 32768 # log all data read from the network
1022   debug 65536 # Log the applying actions
1023 </programlisting>
1024    </para>
1025    <para>
1026     To select multiple debug levels, you can either add them or use
1027     multiple <literal>debug</literal> lines.
1028    </para>
1029    <para>
1030     A debug level of 1 is informative because it will show you each request
1031     as it happens. <emphasis>1, 1024, 4096 and 8192 are recommended</emphasis>
1032     so that you will notice when things go wrong. The other levels are
1033     probably only of interest if you are hunting down a specific problem.
1034     They can produce a hell of an output (especially 16).
1035     <!-- LOL -->
1036    </para>
1037    <para>
1038     &my-app; used to ship with the debug levels recommended above enabled by
1039     default, but due to privacy concerns 3.0.7 and later are configured to
1040     only log fatal errors.
1041    </para>
1042    <para>
1043     If you are used to the more verbose settings, simply enable the debug lines
1044     below again.
1045    </para>
1046    <para>
1047     If you want to use pure CLF (Common Log Format), you should set <quote>debug
1048     512</quote> <emphasis>ONLY</emphasis> and not enable anything else.
1049    </para>
1050    <para>
1051     <application>Privoxy</application> has a hard-coded limit for the
1052     length of log messages. If it's reached, messages are logged truncated
1053     and marked with <quote>... [too long, truncated]</quote>.
1054    </para>
1055    <para>
1056     Please don't file any support requests without trying to reproduce
1057     the problem with increased debug level first. Once you read the log
1058     messages, you may even be able to solve the problem on your own.
1059    </para>
1060   </listitem>
1061  </varlistentry>
1062 </variablelist>
1063
1064 <![%config-file;[<literallayout>@@#debug     1 # Log the destination for each request &my-app; let through.</literallayout>]]>
1065 <![%config-file;[<literallayout>@@#debug  1024 # Log the destination for requests &my-app; didn't let through, and the reason why.</literallayout>]]>
1066 <![%config-file;[<literallayout>@@#debug  4096 # Startup banner and warnings</literallayout>]]>
1067 <![%config-file;[<literallayout>@@#debug  8192 # Non-fatal errors</literallayout>]]>
1068 </sect3>
1069
1070
1071 <!--   ~~~~~       New section      ~~~~~     -->
1072 <sect3 renderas="sect4" id="single-threaded"><title>single-threaded</title>
1073
1074 <variablelist>
1075  <varlistentry>
1076   <term>Specifies:</term>
1077   <listitem>
1078    <para>
1079     Whether to run only one server thread.
1080    </para>
1081   </listitem>
1082  </varlistentry>
1083  <varlistentry>
1084   <term>Type of value:</term>
1085   <listitem>
1086    <para><emphasis>None</emphasis></para>
1087   </listitem>
1088  </varlistentry>
1089  <varlistentry>
1090   <term>Default value:</term>
1091   <listitem>
1092    <para><emphasis>Unset</emphasis></para>
1093   </listitem>
1094  </varlistentry>
1095  <varlistentry>
1096   <term>Effect if unset:</term>
1097   <listitem>
1098    <para>
1099     Multi-threaded (or, where unavailable: forked) operation, i.e. the ability to
1100     serve multiple requests simultaneously.
1101    </para>
1102   </listitem>
1103  </varlistentry>
1104  <varlistentry>
1105   <term>Notes:</term>
1106   <listitem>
1107    <para>
1108     This option is only there for debugging purposes.
1109     <emphasis>It will drastically reduce performance.</emphasis>
1110    </para>
1111   </listitem>
1112  </varlistentry>
1113 </variablelist>
1114
1115 <![%config-file;[<literallayout>@@#single-threaded</literallayout>]]>
1116 </sect3>
1117
1118 <!--   ~~~~~       New section      ~~~~~     -->
1119 <sect3 renderas="sect4" id="hostname"><title>hostname</title>
1120
1121 <variablelist>
1122  <varlistentry>
1123   <term>Specifies:</term>
1124   <listitem>
1125    <para>
1126     The hostname shown on the CGI pages.
1127    </para>
1128   </listitem>
1129  </varlistentry>
1130  <varlistentry>
1131   <term>Type of value:</term>
1132   <listitem>
1133    <para>Text</para>
1134   </listitem>
1135  </varlistentry>
1136  <varlistentry>
1137   <term>Default value:</term>
1138   <listitem>
1139    <para><emphasis>Unset</emphasis></para>
1140   </listitem>
1141  </varlistentry>
1142  <varlistentry>
1143   <term>Effect if unset:</term>
1144   <listitem>
1145    <para>
1146     The hostname provided by the operating system is used.
1147    </para>
1148   </listitem>
1149  </varlistentry>
1150  <varlistentry>
1151   <term>Notes:</term>
1152   <listitem>
1153    <para>
1154     On some misconfigured systems resolving the hostname fails or
1155     takes too much time and slows Privoxy down. Setting a fixed hostname
1156     works around the problem.
1157    </para>
1158    <para>
1159     In other circumstances it might be desirable to show a hostname
1160     other than the one returned by the operating system. For example
1161     if the system has several different hostnames and you don't want
1162     to use the first one.
1163    </para>
1164    <para>
1165     Note that Privoxy does not validate the specified hostname value.
1166    </para>
1167   </listitem>
1168  </varlistentry>
1169 </variablelist>
1170
1171 <![%config-file;[<literallayout>@@#hostname hostname.example.org</literallayout>]]>
1172 </sect3>
1173
1174 </sect2>
1175
1176 <!--  ~  End section  ~  -->
1177
1178
1179 <!--   ~~~~~       New section      ~~~~~     -->
1180 <sect2 id="access-control">
1181 <title>Access Control and Security</title>
1182
1183  <para>
1184   This section of the config file controls the security-relevant aspects
1185   of <application>Privoxy</application>'s configuration.
1186  </para>
1187
1188
1189 <!--   ~~~~~       New section      ~~~~~     -->
1190 <sect3 renderas="sect4" id="listen-address"><title>listen-address</title>
1191
1192 <variablelist>
1193  <varlistentry>
1194   <term>Specifies:</term>
1195   <listitem>
1196    <para>
1197     The address and TCP port on which <application>Privoxy</application> will
1198     listen for client requests.
1199    </para>
1200   </listitem>
1201  </varlistentry>
1202  <varlistentry>
1203   <term>Type of value:</term>
1204   <listitem>
1205    <para>[<replaceable class="parameter">IP-Address</replaceable>]:<replaceable class="parameter">Port</replaceable></para>
1206    <para>[<replaceable class="parameter">Hostname</replaceable>]:<replaceable class="parameter">Port</replaceable></para>
1207   </listitem>
1208  </varlistentry>
1209
1210  <varlistentry>
1211   <term>Default value:</term>
1212   <listitem>
1213    <para>127.0.0.1:8118</para>
1214   </listitem>
1215  </varlistentry>
1216  <varlistentry>
1217   <term>Effect if unset:</term>
1218   <listitem>
1219    <para>
1220     Bind to 127.0.0.1 (IPv4 localhost), port 8118. This is suitable and
1221     recommended for home users who run <application>Privoxy</application> on
1222     the same machine as their browser.
1223    </para>
1224   </listitem>
1225  </varlistentry>
1226  <varlistentry>
1227   <term>Notes:</term>
1228   <listitem>
1229    <para>
1230     You will need to configure your browser(s) to this proxy address and port.
1231    </para>
1232    <para>
1233     If you already have another service running on port 8118, or if you want to
1234     serve requests from other machines (e.g. on your local network) as well, you
1235     will need to override the default.
1236    </para>
1237    <para>
1238     You can use this statement multiple times to make
1239     <application>Privoxy</application> listen on more ports or more
1240     <abbrev>IP</abbrev> addresses. Suitable if your operating system does not
1241     support sharing <abbrev>IPv6</abbrev> and <abbrev>IPv4</abbrev> protocols
1242     on the same socket.
1243    </para>
1244    <para>
1245     If a hostname is used instead of an IP address, <application>Privoxy</application>
1246     will try to resolve it to an IP address and if there are multiple, use the first
1247     one returned.
1248    </para>
1249    <para>
1250     If the address for the hostname isn't already known on the system
1251     (for example because it's in /etc/hostname), this may result in DNS
1252     traffic.
1253    </para>
1254    <para>
1255     If the specified address isn't available on the system, or if the
1256     hostname can't be resolved, <application>Privoxy</application>
1257     will fail to start.
1258    </para>
1259    <para>
1260     IPv6 addresses containing colons have to be quoted by brackets.
1261     They can only be used if <application>Privoxy</application> has
1262     been compiled with IPv6 support. If you aren't sure if your version
1263     supports it, have a look at
1264     <literal>http://config.privoxy.org/show-status</literal>.
1265    </para>
1266    <para>
1267     Some operating systems will prefer IPv6 to IPv4 addresses even if the
1268     system has no IPv6 connectivity which is usually not expected by the user.
1269     Some even rely on DNS to resolve localhost which mean the "localhost" address
1270     used may not actually be local.
1271    </para>
1272    <para>
1273     It is therefore recommended to explicitly configure the intended IP address
1274     instead of relying on the operating system, unless there's a strong reason not to.
1275    </para>
1276    <para>
1277     If you leave out the address, <application>Privoxy</application> will bind to all
1278     IPv4 interfaces (addresses) on your machine and may become reachable from the
1279     Internet and/or the local network. Be aware that some GNU/Linux distributions
1280     modify that behaviour without updating the documentation. Check for non-standard
1281     patches if your <application>Privoxy</application> version behaves differently.
1282    </para>
1283    <para>
1284     If you configure <application>Privoxy</application> to be reachable from the
1285     network, consider using <link linkend="acls">access control lists</link>
1286     (ACL's, see below), and/or a firewall.
1287    </para>
1288    <para>
1289     If you open <application>Privoxy</application> to untrusted users, you will
1290     also want to make sure that the following actions are disabled:  <literal><link
1291     linkend="enable-edit-actions">enable-edit-actions</link></literal> and
1292     <literal><link linkend="enable-remote-toggle">enable-remote-toggle</link></literal>
1293    </para>
1294   </listitem>
1295  </varlistentry>
1296  <varlistentry>
1297   <term>Example:</term>
1298   <listitem>
1299    <para>
1300      Suppose you are running <application>Privoxy</application> on
1301      a machine which has the address 192.168.0.1 on your local private network
1302      (192.168.0.0) and has another outside connection with a different address.
1303      You want it to serve requests from inside only:
1304    </para>
1305    <para>
1306     <programlisting>
1307   listen-address  192.168.0.1:8118
1308 </programlisting>
1309    </para>
1310    <para>
1311     Suppose you are running <application>Privoxy</application> on an
1312     IPv6-capable machine and you want it to listen on the IPv6 address
1313     of the loopback device:
1314    </para>
1315    <para>
1316     <programlisting>
1317   listen-address [::1]:8118
1318 </programlisting>
1319    </para>
1320   </listitem>
1321  </varlistentry>
1322 </variablelist>
1323
1324 <![%config-file;[<literallayout>@@listen-address  127.0.0.1:8118</literallayout>]]>
1325 </sect3>
1326
1327
1328 <!--   ~~~~~       New section      ~~~~~     -->
1329 <sect3 renderas="sect4" id="toggle"><title>toggle</title>
1330
1331 <variablelist>
1332  <varlistentry>
1333   <term>Specifies:</term>
1334   <listitem>
1335    <para>
1336     Initial state of "toggle" status
1337    </para>
1338   </listitem>
1339  </varlistentry>
1340  <varlistentry>
1341   <term>Type of value:</term>
1342   <listitem>
1343    <para>1 or 0</para>
1344   </listitem>
1345  </varlistentry>
1346  <varlistentry>
1347   <term>Default value:</term>
1348   <listitem>
1349    <para>1</para>
1350   </listitem>
1351  </varlistentry>
1352  <varlistentry>
1353   <term>Effect if unset:</term>
1354   <listitem>
1355    <para>
1356     Act as if toggled on
1357    </para>
1358   </listitem>
1359  </varlistentry>
1360  <varlistentry>
1361   <term>Notes:</term>
1362   <listitem>
1363    <para>
1364     If set to 0, <application>Privoxy</application> will start in
1365     <quote>toggled off</quote> mode, i.e. mostly behave like a normal,
1366     content-neutral proxy with both ad blocking and content filtering
1367     disabled. See <literal>enable-remote-toggle</literal> below.
1368    </para>
1369    <para>
1370     The windows version will only display the toggle icon in the system tray
1371     if this option is present.
1372    </para>
1373   </listitem>
1374  </varlistentry>
1375 </variablelist>
1376
1377 <![%config-file;[<literallayout>@@toggle  1</literallayout>]]>
1378 </sect3>
1379
1380
1381 <!--   ~~~~~       New section      ~~~~~     -->
1382 <sect3 renderas="sect4" id="enable-remote-toggle"><title>enable-remote-toggle</title>
1383 <variablelist>
1384  <varlistentry>
1385   <term>Specifies:</term>
1386   <listitem>
1387    <para>
1388     Whether or not the <ulink url="http://config.privoxy.org/toggle">web-based toggle
1389     feature</ulink> may be used
1390    </para>
1391   </listitem>
1392  </varlistentry>
1393  <varlistentry>
1394   <term>Type of value:</term>
1395   <listitem>
1396    <para>0 or 1</para>
1397   </listitem>
1398  </varlistentry>
1399  <varlistentry>
1400   <term>Default value:</term>
1401   <listitem>
1402    <para>0</para>
1403   </listitem>
1404  </varlistentry>
1405  <varlistentry>
1406   <term>Effect if unset:</term>
1407   <listitem>
1408    <para>
1409     The web-based toggle feature is disabled.
1410    </para>
1411   </listitem>
1412  </varlistentry>
1413  <varlistentry>
1414   <term>Notes:</term>
1415   <listitem>
1416    <para>
1417     When toggled off, <application>Privoxy</application> mostly acts like a normal,
1418     content-neutral proxy, i.e. doesn't block ads or filter content.
1419    </para>
1420    <para>
1421     Access to the toggle feature can <emphasis>not</emphasis> be
1422     controlled separately by <quote>ACLs</quote> or HTTP authentication,
1423     so that everybody who can access <application>Privoxy</application> (see
1424     <quote>ACLs</quote> and <literal>listen-address</literal> above) can
1425     toggle it for all users. So this option is <emphasis>not recommended</emphasis>
1426     for multi-user environments with untrusted users.
1427    </para>
1428    <para>
1429     Note that malicious client side code (e.g Java) is also
1430     capable of using this option.
1431    </para>
1432    <para>
1433     As a lot of <application>Privoxy</application> users don't read
1434     documentation, this feature is disabled by default.
1435    </para>
1436    <para>
1437     Note that you must have compiled <application>Privoxy</application> with
1438     support for this feature, otherwise this option has no effect.
1439    </para>
1440   </listitem>
1441  </varlistentry>
1442 </variablelist>
1443
1444 <![%config-file;[<literallayout>@@enable-remote-toggle  0</literallayout>]]>
1445 </sect3>
1446
1447
1448 <!--   ~~~~~       New section      ~~~~~     -->
1449 <sect3 renderas="sect4" id="enable-remote-http-toggle"><title>enable-remote-http-toggle</title>
1450 <variablelist>
1451  <varlistentry>
1452   <term>Specifies:</term>
1453   <listitem>
1454    <para>
1455     Whether or not Privoxy recognizes special HTTP headers to change its behaviour.
1456    </para>
1457   </listitem>
1458  </varlistentry>
1459  <varlistentry>
1460   <term>Type of value:</term>
1461   <listitem>
1462    <para>0 or 1</para>
1463   </listitem>
1464  </varlistentry>
1465  <varlistentry>
1466   <term>Default value:</term>
1467   <listitem>
1468    <para>0</para>
1469   </listitem>
1470  </varlistentry>
1471  <varlistentry>
1472   <term>Effect if unset:</term>
1473   <listitem>
1474    <para>
1475     Privoxy ignores special HTTP headers.
1476    </para>
1477   </listitem>
1478  </varlistentry>
1479  <varlistentry>
1480   <term>Notes:</term>
1481   <listitem>
1482    <para>
1483     When toggled on, the client can change <application>Privoxy's</application>
1484     behaviour by setting special HTTP headers. Currently the only supported
1485     special header is <quote>X-Filter: No</quote>, to disable filtering for
1486     the ongoing request, even if it is enabled in one of the action files.
1487    </para>
1488    <para>
1489     This feature is disabled by default. If you are using
1490     <application>Privoxy</application> in a environment with trusted clients,
1491     you may enable this feature at your discretion. Note that malicious client
1492     side code (e.g Java) is also capable of using this feature.
1493    </para>
1494    <para>
1495     This option will be removed in future releases as it has been obsoleted
1496     by the more general header taggers.
1497    </para>
1498   </listitem>
1499  </varlistentry>
1500 </variablelist>
1501
1502 <![%config-file;[<literallayout>@@enable-remote-http-toggle  0</literallayout>]]>
1503 </sect3>
1504
1505
1506 <!--   ~~~~~       New section      ~~~~~     -->
1507 <sect3 renderas="sect4" id="enable-edit-actions"><title>enable-edit-actions</title>
1508 <variablelist>
1509  <varlistentry>
1510   <term>Specifies:</term>
1511   <listitem>
1512    <para>
1513     Whether or not the <ulink url="http://config.privoxy.org/show-status">web-based actions
1514     file editor</ulink> may be used
1515    </para>
1516   </listitem>
1517  </varlistentry>
1518  <varlistentry>
1519   <term>Type of value:</term>
1520   <listitem>
1521    <para>0 or 1</para>
1522   </listitem>
1523  </varlistentry>
1524  <varlistentry>
1525   <term>Default value:</term>
1526   <listitem>
1527    <para>0</para>
1528   </listitem>
1529  </varlistentry>
1530  <varlistentry>
1531   <term>Effect if unset:</term>
1532   <listitem>
1533    <para>
1534     The web-based actions file editor is disabled.
1535    </para>
1536   </listitem>
1537  </varlistentry>
1538  <varlistentry>
1539   <term>Notes:</term>
1540   <listitem>
1541    <para>
1542     Access to the editor can <emphasis>not</emphasis> be
1543     controlled separately by <quote>ACLs</quote> or HTTP authentication,
1544     so that everybody who can access <application>Privoxy</application> (see
1545     <quote>ACLs</quote> and <literal>listen-address</literal> above) can
1546     modify its configuration for all users.
1547    </para>
1548    <para>
1549     This option is <emphasis>not recommended</emphasis> for environments
1550     with untrusted users and as a lot of <application>Privoxy</application>
1551     users don't read documentation, this feature is disabled by default.
1552    </para>
1553    <para>
1554     Note that malicious client side code (e.g Java) is also
1555     capable of using the actions editor and you shouldn't enable
1556     this options unless you understand the consequences and are
1557     sure your browser is configured correctly.
1558    </para>
1559    <para>
1560     Note that you must have compiled <application>Privoxy</application> with
1561     support for this feature, otherwise this option has no effect.
1562    </para>
1563   </listitem>
1564  </varlistentry>
1565 </variablelist>
1566
1567 <![%config-file;[<literallayout>@@enable-edit-actions 0</literallayout>]]>
1568 </sect3>
1569
1570
1571 <sect3 renderas="sect4" id="enforce-blocks"><title>enforce-blocks</title>
1572 <variablelist>
1573  <varlistentry>
1574   <term>Specifies:</term>
1575   <listitem>
1576    <para>
1577     Whether the user is allowed to ignore blocks and can <quote>go there anyway</quote>.
1578    </para>
1579   </listitem>
1580  </varlistentry>
1581  <varlistentry>
1582   <term>Type of value:</term>
1583   <listitem>
1584    <para>
1585     <replaceable>0 or 1</replaceable>
1586    </para>
1587   </listitem>
1588  </varlistentry>
1589  <varlistentry>
1590   <term>Default value:</term>
1591   <listitem>
1592    <para><emphasis>0</emphasis></para>
1593   </listitem>
1594  </varlistentry>
1595  <varlistentry>
1596   <term>Effect if unset:</term>
1597   <listitem>
1598    <para>
1599     Blocks are not enforced.
1600    </para>
1601   </listitem>
1602  </varlistentry>
1603  <varlistentry>
1604   <term>Notes:</term>
1605   <listitem>
1606    <para>
1607     <application>Privoxy</application> is mainly used to block and filter
1608     requests as a service to the user, for example to block ads and other
1609     junk that clogs the pipes. <application>Privoxy's</application> configuration
1610     isn't perfect and sometimes innocent pages are blocked. In this situation it
1611     makes sense to allow the user to enforce the request and have
1612     <application>Privoxy</application> ignore the block.
1613    </para>
1614    <para>
1615     In the default configuration <application>Privoxy's</application>
1616     <quote>Blocked</quote> page contains a <quote>go there anyway</quote>
1617     link to adds a special string (the force prefix) to the request URL.
1618     If that link is used, <application>Privoxy</application> will
1619     detect the force prefix, remove it again and let the request pass.
1620    </para>
1621    <para>
1622     Of course <application>Privoxy</application> can also be used to enforce
1623     a network policy. In that case the user obviously should not be able to
1624     bypass any blocks, and that's what the <quote>enforce-blocks</quote>
1625     option is for. If it's enabled, <application>Privoxy</application> hides
1626     the <quote>go there anyway</quote> link. If the user adds the force
1627     prefix by hand, it will not be accepted and the circumvention attempt
1628     is logged.
1629    </para>
1630   </listitem>
1631  </varlistentry>
1632  <varlistentry>
1633   <term>Examples:</term>
1634   <listitem>
1635    <para>
1636     enforce-blocks 1
1637    </para>
1638   </listitem>
1639  </varlistentry>
1640 </variablelist>
1641 <![%config-file;[<literallayout>@@enforce-blocks 0</literallayout>]]>
1642 </sect3>
1643
1644
1645 <!--   ~~~~~       New section      ~~~~~     -->
1646 <sect3 renderas="sect4" id="acls"><title>
1647 ACLs: permit-access and deny-access</title>
1648 <anchor id="permit-access">
1649 <anchor id="deny-access">
1650
1651 <variablelist>
1652  <varlistentry>
1653   <term>Specifies:</term>
1654   <listitem>
1655    <para>
1656     Who can access what.
1657    </para>
1658   </listitem>
1659  </varlistentry>
1660  <varlistentry>
1661   <term>Type of value:</term>
1662   <listitem>
1663    <para>
1664     <replaceable class="parameter">src_addr</replaceable>[:<replaceable class="parameter">port</replaceable>][/<replaceable class="parameter">src_masklen</replaceable>]
1665     [<replaceable class="parameter">dst_addr</replaceable>[:<replaceable class="parameter">port</replaceable>][/<replaceable class="parameter">dst_masklen</replaceable>]]
1666    </para>
1667    <para>
1668     Where <replaceable class="parameter">src_addr</replaceable> and
1669    <replaceable class="parameter">dst_addr</replaceable> are IPv4 addresses in dotted decimal notation or valid
1670     DNS names, <replaceable class="parameter">port</replaceable> is a port
1671     number, and <replaceable class="parameter">src_masklen</replaceable> and
1672     <replaceable class="parameter">dst_masklen</replaceable> are subnet masks in CIDR notation, i.e. integer
1673     values from 2 to 30 representing the length (in bits) of the network address. The masks and the whole
1674     destination part are optional.
1675    </para>
1676    <para>
1677     If your system implements
1678     <ulink url="http://tools.ietf.org/html/rfc3493">RFC 3493</ulink>, then
1679     <replaceable class="parameter">src_addr</replaceable> and <replaceable
1680     class="parameter">dst_addr</replaceable> can be IPv6 addresses delimeted by
1681     brackets, <replaceable class="parameter">port</replaceable> can be a number
1682     or a service name, and
1683     <replaceable class="parameter">src_masklen</replaceable> and
1684     <replaceable class="parameter">dst_masklen</replaceable> can be a number
1685     from 0 to 128.
1686    </para>
1687   </listitem>
1688  </varlistentry>
1689  <varlistentry>
1690   <term>Default value:</term>
1691   <listitem>
1692    <para><emphasis>Unset</emphasis></para>
1693    <para>
1694     If no <replaceable class="parameter">port</replaceable> is specified,
1695     any port will match. If no <replaceable class="parameter">src_masklen</replaceable> or
1696     <replaceable class="parameter">src_masklen</replaceable> is given, the complete IP
1697     address has to match (i.e. 32 bits for IPv4 and 128 bits for IPv6).
1698    </para>
1699   </listitem>
1700  </varlistentry>
1701  <varlistentry>
1702   <term>Effect if unset:</term>
1703   <listitem>
1704    <para>
1705     Don't restrict access further than implied by <literal>listen-address</literal>
1706    </para>
1707   </listitem>
1708  </varlistentry>
1709  <varlistentry>
1710   <term>Notes:</term>
1711   <listitem>
1712    <para>
1713     Access controls are included at the request of ISPs and systems
1714     administrators, and <emphasis>are not usually needed by individual users</emphasis>.
1715     For a typical home user, it will normally suffice to ensure that
1716     <application>Privoxy</application> only listens on the localhost
1717     (127.0.0.1) or internal (home) network address by means of the
1718     <link linkend="listen-address"><emphasis>listen-address</emphasis></link>
1719     option.
1720    </para>
1721    <para>
1722     Please see the warnings in the FAQ that <application>Privoxy</application>
1723     is not intended to be a substitute for a firewall or to encourage anyone
1724     to defer addressing basic security weaknesses.
1725    </para>
1726    <para>
1727     Multiple ACL lines are OK.
1728     If any ACLs are specified, <application>Privoxy</application> only talks
1729     to IP addresses that match at least one <literal>permit-access</literal> line
1730     and don't match any subsequent <literal>deny-access</literal> line. In other words, the
1731     last match wins, with the default being <literal>deny-access</literal>.
1732    </para>
1733    <para>
1734     If <application>Privoxy</application> is using a forwarder (see <literal>forward</literal> below)
1735     for a particular destination URL, the <replaceable class="parameter">dst_addr</replaceable>
1736     that is examined is the address of the forwarder and <emphasis>NOT</emphasis> the address
1737     of the ultimate target. This is necessary because it may be impossible for the local
1738     <application>Privoxy</application> to determine the IP address of the
1739     ultimate target (that's often what gateways are used for).
1740    </para>
1741    <para>
1742     You should prefer using IP addresses over DNS names, because the address lookups take
1743     time. All DNS names must resolve! You can <emphasis>not</emphasis> use domain patterns
1744     like <quote>*.org</quote> or partial domain names. If a DNS name resolves to multiple
1745     IP addresses, only the first one is used.
1746    </para>
1747    <para>
1748      Some systems allow IPv4 clients to connect to IPv6 server sockets.
1749      Then the client's IPv4 address will be translated by the system into
1750      IPv6 address space with special prefix ::ffff:0:0/96 (so called IPv4
1751      mapped IPv6 address). <application>Privoxy</application> can handle it
1752      and maps such ACL addresses automatically.
1753    </para>
1754    <para>
1755     Denying access to particular sites by ACL may have undesired side effects
1756     if the site in question is hosted on a machine which also hosts other sites
1757     (most sites are).
1758    </para>
1759   </listitem>
1760  </varlistentry>
1761  <varlistentry>
1762   <term>Examples:</term>
1763   <listitem>
1764    <para>
1765     Explicitly define the default behavior if no ACL and
1766     <literal>listen-address</literal> are set: <quote>localhost</quote>
1767     is OK. The absence of a <replaceable class="parameter">dst_addr</replaceable> implies that
1768     <emphasis>all</emphasis> destination addresses are OK:
1769    </para>
1770    <para>
1771     <screen>
1772   permit-access  localhost
1773 </screen>
1774    </para>
1775    <para>
1776     Allow any host on the same class C subnet as www.privoxy.org access to
1777     nothing but www.example.com (or other domains hosted on the same system):
1778    </para>
1779    <para>
1780     <screen>
1781   permit-access  www.privoxy.org/24 www.example.com/32
1782 </screen>
1783    </para>
1784    <para>
1785     Allow access from any host on the 26-bit subnet 192.168.45.64 to anywhere,
1786     with the exception that 192.168.45.73 may not access the IP address behind
1787     www.dirty-stuff.example.com:
1788    </para>
1789    <para>
1790     <screen>
1791   permit-access  192.168.45.64/26
1792   deny-access    192.168.45.73    www.dirty-stuff.example.com
1793 </screen>
1794    </para>
1795    <para>
1796      Allow access from the IPv4 network 192.0.2.0/24 even if listening on
1797      an IPv6 wild card address (not supported on all platforms):
1798    </para>
1799    <para>
1800     <programlisting>
1801   permit-access  192.0.2.0/24
1802 </programlisting>
1803    </para>
1804    <para>
1805      This is equivalent to the following line even if listening on an
1806      IPv4 address (not supported on all platforms):
1807    </para>
1808    <para>
1809     <programlisting>
1810   permit-access  [::ffff:192.0.2.0]/120
1811 </programlisting>
1812    </para>
1813   </listitem>
1814  </varlistentry>
1815 </variablelist>
1816 </sect3>
1817
1818
1819 <!--   ~~~~~       New section      ~~~~~     -->
1820 <sect3 renderas="sect4" id="buffer-limit"><title>buffer-limit</title>
1821
1822 <variablelist>
1823  <varlistentry>
1824   <term>Specifies:</term>
1825   <listitem>
1826    <para>
1827     Maximum size of the buffer for content filtering.
1828    </para>
1829   </listitem>
1830  </varlistentry>
1831  <varlistentry>
1832   <term>Type of value:</term>
1833   <listitem>
1834    <para>Size in Kbytes</para>
1835   </listitem>
1836  </varlistentry>
1837  <varlistentry>
1838   <term>Default value:</term>
1839   <listitem>
1840    <para>4096</para>
1841   </listitem>
1842  </varlistentry>
1843  <varlistentry>
1844   <term>Effect if unset:</term>
1845   <listitem>
1846    <para>
1847     Use a 4MB (4096 KB) limit.
1848    </para>
1849   </listitem>
1850  </varlistentry>
1851  <varlistentry>
1852   <term>Notes:</term>
1853   <listitem>
1854    <para>
1855     For content filtering, i.e. the <literal>+filter</literal> and
1856     <literal>+deanimate-gif</literal> actions, it is necessary that
1857     <application>Privoxy</application> buffers the entire document body.
1858     This can be potentially dangerous, since a server could just keep sending
1859     data indefinitely and wait for your RAM to exhaust -- with nasty consequences.
1860     Hence this option.
1861    </para>
1862    <para>
1863     When a document buffer size reaches the <literal>buffer-limit</literal>, it is
1864     flushed to the client unfiltered and no further attempt to
1865     filter the rest of the document is made. Remember that there may be multiple threads
1866     running, which might require up to <literal>buffer-limit</literal> Kbytes
1867     <emphasis>each</emphasis>, unless you have enabled <quote>single-threaded</quote>
1868     above.
1869    </para>
1870   </listitem>
1871  </varlistentry>
1872 </variablelist>
1873
1874 <![%config-file;[<literallayout>@@buffer-limit 4096</literallayout>]]>
1875 </sect3>
1876
1877 </sect2>
1878
1879 <!--  ~  End section  ~  -->
1880
1881
1882 <!--   ~~~~~       New section      ~~~~~     -->
1883
1884 <sect2 id="forwarding">
1885 <title>Forwarding</title>
1886
1887 <para>
1888  This feature allows routing of HTTP requests through a chain of
1889  multiple proxies.
1890 </para>
1891 <para>
1892  Forwarding can be used to chain Privoxy with a caching proxy to speed
1893  up browsing. Using a parent proxy may also be necessary if the machine
1894  that <application>Privoxy</application> runs on has no direct Internet access.
1895 </para>
1896 <para>
1897  Note that parent proxies can severely decrease your privacy level.
1898  For example a parent proxy could add your IP address to the request
1899  headers and if it's a caching proxy it may add the <quote>Etag</quote>
1900  header to revalidation requests again, even though you configured Privoxy
1901  to remove it. It may also ignore Privoxy's header time randomization and use the
1902  original values which could be used by the server as cookie replacement
1903  to track your steps between visits.
1904 </para>
1905
1906 <para>
1907  Also specified here are SOCKS proxies. <application>Privoxy</application>
1908  supports the SOCKS 4 and SOCKS 4A protocols.
1909 </para>
1910
1911 <sect3 renderas="sect4" id="forward"><title>forward</title>
1912 <variablelist>
1913  <varlistentry>
1914   <term>Specifies:</term>
1915   <listitem>
1916    <para>
1917     To which parent HTTP proxy specific requests should be routed.
1918    </para>
1919   </listitem>
1920  </varlistentry>
1921  <varlistentry>
1922   <term>Type of value:</term>
1923   <listitem>
1924    <para>
1925     <replaceable class="parameter">target_pattern</replaceable>
1926     <replaceable class="parameter">http_parent</replaceable>[:<replaceable class="parameter">port</replaceable>]
1927    </para>
1928    <para>
1929     where <replaceable class="parameter">target_pattern</replaceable> is a <link linkend="af-patterns">URL pattern</link>
1930     that specifies to which requests (i.e. URLs) this forward rule shall apply. Use <literal>/</literal> to
1931     denote <quote>all URLs</quote>.
1932     <replaceable class="parameter">http_parent</replaceable>[:<replaceable class="parameter">port</replaceable>]
1933     is the DNS name or IP address of the parent HTTP proxy through which the requests should be forwarded,
1934     optionally followed by its listening port (default: 8000).
1935     Use a single dot (<literal>.</literal>) to denote <quote>no forwarding</quote>.
1936    </para>
1937   </listitem>
1938  </varlistentry>
1939  <varlistentry>
1940   <term>Default value:</term>
1941   <listitem>
1942    <para><emphasis>Unset</emphasis></para>
1943   </listitem>
1944  </varlistentry>
1945  <varlistentry>
1946   <term>Effect if unset:</term>
1947   <listitem>
1948    <para>
1949     Don't use parent HTTP proxies.
1950    </para>
1951   </listitem>
1952  </varlistentry>
1953  <varlistentry>
1954   <term>Notes:</term>
1955   <listitem>
1956    <para>
1957     If <replaceable class="parameter">http_parent</replaceable> is <quote>.</quote>, then requests are not
1958     forwarded to another HTTP proxy but are made directly to the web servers.
1959    </para>
1960    <para>
1961     <replaceable class="parameter">http_parent</replaceable> can be a
1962      numerical IPv6 address (if
1963     <ulink url="http://tools.ietf.org/html/rfc3493">RFC 3493</ulink> is
1964     implemented). To prevent clashes with the port delimiter, the whole IP
1965     address has to be put into brackets. On the other hand a <replaceable
1966     class="parameter">target_pattern</replaceable> containing an IPv6 address
1967     has to be put into angle brackets (normal brackets are reserved for
1968     regular expressions already).
1969    </para>
1970    <para>
1971     Multiple lines are OK, they are checked in sequence, and the last match wins.
1972    </para>
1973   </listitem>
1974  </varlistentry>
1975  <varlistentry>
1976   <term>Examples:</term>
1977   <listitem>
1978    <para>
1979     Everything goes to an example parent proxy, except SSL on port 443 (which it doesn't handle):
1980    </para>
1981    <para>
1982     <screen>
1983   forward   /      parent-proxy.example.org:8080
1984   forward   :443   .
1985 </screen>
1986    </para>
1987    <para>
1988     Everything goes to our example ISP's caching proxy, except for requests
1989     to that ISP's sites:
1990    </para>
1991    <para>
1992     <screen>
1993   forward   /                  caching-proxy.isp.example.net:8000
1994   forward   .isp.example.net   .
1995 </screen>
1996    </para>
1997    <para>
1998     Parent proxy specified by an IPv6 address:
1999    </para>
2000    <para>
2001     <programlisting>
2002   forward   /                   [2001:DB8::1]:8000
2003 </programlisting>
2004    </para>
2005    <para>
2006     Suppose your parent proxy doesn't support IPv6:
2007    </para>
2008    <para>
2009     <programlisting>
2010   forward  /                        parent-proxy.example.org:8000
2011   forward  ipv6-server.example.org  .
2012   forward  &lt;[2-3][0-9a-f][0-9a-f][0-9a-f]:*&gt;   .
2013 </programlisting>
2014    </para>
2015   </listitem>
2016  </varlistentry>
2017 </variablelist>
2018 </sect3>
2019
2020
2021 <!--   ~~~~~       New section      ~~~~~     -->
2022 <sect3 renderas="sect4" id="socks"><title>
2023 forward-socks4, forward-socks4a, forward-socks5 and forward-socks5t</title>
2024 <anchor id="forward-socks4">
2025 <anchor id="forward-socks4a">
2026
2027 <variablelist>
2028  <varlistentry>
2029   <term>Specifies:</term>
2030   <listitem>
2031    <para>
2032     Through which SOCKS proxy (and optionally to which parent HTTP proxy) specific requests should be routed.
2033    </para>
2034   </listitem>
2035  </varlistentry>
2036  <varlistentry>
2037   <term>Type of value:</term>
2038   <listitem>
2039    <para>
2040     <replaceable class="parameter">target_pattern</replaceable>
2041     <replaceable class="parameter">socks_proxy</replaceable>[:<replaceable class="parameter">port</replaceable>]
2042     <replaceable class="parameter">http_parent</replaceable>[:<replaceable class="parameter">port</replaceable>]
2043    </para>
2044    <para>
2045     where <replaceable class="parameter">target_pattern</replaceable> is a
2046     <link linkend="af-patterns">URL pattern</link> that specifies to which
2047     requests (i.e. URLs) this forward rule shall apply. Use <literal>/</literal> to
2048     denote <quote>all URLs</quote>. <replaceable class="parameter">http_parent</replaceable>
2049     and <replaceable class="parameter">socks_proxy</replaceable>
2050     are IP addresses in dotted decimal notation or valid DNS names
2051     (<replaceable class="parameter">http_parent</replaceable>
2052     may be <quote>.</quote> to denote <quote>no HTTP forwarding</quote>), and the optional
2053     <replaceable class="parameter">port</replaceable> parameters are TCP ports,
2054     i.e. integer values from 1 to 65535
2055    </para>
2056   </listitem>
2057  </varlistentry>
2058  <varlistentry>
2059   <term>Default value:</term>
2060   <listitem>
2061    <para><emphasis>Unset</emphasis></para>
2062   </listitem>
2063  </varlistentry>
2064  <varlistentry>
2065   <term>Effect if unset:</term>
2066   <listitem>
2067    <para>
2068     Don't use SOCKS proxies.
2069    </para>
2070   </listitem>
2071  </varlistentry>
2072  <varlistentry>
2073   <term>Notes:</term>
2074   <listitem>
2075    <para>
2076     Multiple lines are OK, they are checked in sequence, and the last match wins.
2077    </para>
2078    <para>
2079     The difference between <literal>forward-socks4</literal> and <literal>forward-socks4a</literal>
2080     is that in the SOCKS 4A protocol, the DNS resolution of the target hostname happens on the SOCKS
2081     server, while in SOCKS 4 it happens locally.
2082    </para>
2083    <para>
2084     With <literal>forward-socks5</literal> the DNS resolution will happen on the remote server as well.
2085    </para>
2086    <para>
2087     <literal>forward-socks5t</literal> works like vanilla <literal>forward-socks5</literal> but
2088     lets &my-app; additionally use Tor-specific SOCKS extensions. Currently the only supported
2089     SOCKS extension is optimistic data which can reduce the latency for the first request made
2090     on a newly created connection.
2091    </para>
2092    <para>
2093     <replaceable class="parameter">socks_proxy</replaceable> and
2094     <replaceable class="parameter">http_parent</replaceable> can be a
2095      numerical IPv6 address (if
2096     <ulink url="http://tools.ietf.org/html/rfc3493">RFC 3493</ulink> is
2097     implemented). To prevent clashes with the port delimiter, the whole IP
2098     address has to be put into brackets. On the other hand a <replaceable
2099     class="parameter">target_pattern</replaceable> containing an IPv6 address
2100     has to be put into angle brackets (normal brackets are reserved for
2101     regular expressions already).
2102    </para>
2103    <para>
2104     If <replaceable class="parameter">http_parent</replaceable> is <quote>.</quote>, then requests are not
2105     forwarded to another HTTP proxy but are made (HTTP-wise) directly to the web servers, albeit through
2106     a SOCKS proxy.
2107    </para>
2108   </listitem>
2109  </varlistentry>
2110  <varlistentry>
2111   <term>Examples:</term>
2112   <listitem>
2113    <para>
2114      From the company example.com, direct connections are made to all
2115      <quote>internal</quote> domains, but everything outbound goes through
2116      their ISP's proxy by way of example.com's corporate SOCKS 4A gateway to
2117      the Internet.
2118    </para>
2119    <para>
2120     <screen>
2121   forward-socks4a   /              socks-gw.example.com:1080  www-cache.isp.example.net:8080
2122   forward           .example.com   .
2123 </screen>
2124    </para>
2125    <para>
2126     A rule that uses a SOCKS 4 gateway for all destinations but no HTTP parent looks like this:
2127    </para>
2128    <para>
2129     <screen>
2130   forward-socks4   /               socks-gw.example.com:1080  .
2131 </screen>
2132    </para>
2133
2134     <para>
2135     To chain Privoxy and Tor, both running on the same system, you would use
2136     something like:
2137    </para>
2138    <para>
2139     <screen>
2140   forward-socks5   /               127.0.0.1:9050 .
2141 </screen>
2142    </para>
2143
2144     <para>
2145     The public <application>Tor</application> network can't be used to
2146     reach your local network, if you need to access local servers you
2147     therefore might want to make some exceptions:
2148    </para>
2149    <para>
2150     <screen>
2151   forward         192.168.*.*/     .
2152   forward            10.*.*.*/     .
2153   forward           127.*.*.*/     .
2154 </screen>
2155    </para>
2156    <para>
2157     Unencrypted connections to systems in these address ranges will
2158     be as (un)secure as the local network is, but the alternative is that you
2159     can't reach the local network through <application>Privoxy</application>
2160     at all. Of course this may actually be desired and there is no reason
2161     to make these exceptions if you aren't sure you need them.
2162    </para>
2163    <para>
2164     If you also want to be able to reach servers in your local network by
2165     using their names, you will need additional exceptions that look like
2166     this:
2167    </para>
2168    <para>
2169     <screen>
2170  forward           localhost/     .
2171 </screen>
2172    </para>
2173
2174   </listitem>
2175  </varlistentry>
2176 </variablelist>
2177 </sect3>
2178
2179 <![%user-man;[     <!-- not included in config due to length -->
2180 <!--   ~~~~~       New section      ~~~~~     -->
2181 <sect3 renderas="sect4" id="advanced-forwarding-examples"><title>Advanced Forwarding Examples</title>
2182
2183 <para>
2184  If you have links to multiple ISPs that provide various special content
2185  only to their subscribers, you can configure multiple <application>Privoxies</application>
2186  which have connections to the respective ISPs to act as forwarders to each other, so that
2187  <emphasis>your</emphasis> users can see the internal content of all ISPs.
2188 </para>
2189
2190 <para>
2191  Assume that host-a has a PPP connection to isp-a.example.net. And host-b has a PPP connection to
2192  isp-b.example.org. Both run <application>Privoxy</application>. Their forwarding
2193  configuration can look like this:
2194 </para>
2195
2196 <para>
2197  host-a:
2198 </para>
2199
2200 <para>
2201  <screen>
2202   forward    /           .
2203   forward    .isp-b.example.net  host-b:8118
2204 </screen>
2205 </para>
2206
2207 <para>
2208  host-b:
2209 </para>
2210
2211 <para>
2212  <screen>
2213   forward    /           .
2214   forward    .isp-a.example.org  host-a:8118
2215 </screen>
2216 </para>
2217
2218 <para>
2219  Now, your users can set their browser's proxy to use either
2220  host-a or host-b and be able to browse the internal content
2221  of both isp-a and isp-b.
2222 </para>
2223
2224 <para>
2225  If you intend to chain <application>Privoxy</application> and
2226  <application>squid</application> locally, then chaining as
2227  <literal>browser -> squid -> privoxy</literal> is the recommended way.
2228 </para>
2229
2230 <para>
2231  Assuming that <application>Privoxy</application> and <application>squid</application>
2232  run on the same box, your <application>squid</application> configuration could then look like this:
2233 </para>
2234
2235 <para>
2236  <screen>
2237   # Define Privoxy as parent proxy (without ICP)
2238   cache_peer 127.0.0.1 parent 8118 7 no-query
2239
2240   # Define ACL for protocol FTP
2241   acl ftp proto FTP
2242
2243   # Do not forward FTP requests to Privoxy
2244   always_direct allow ftp
2245
2246   # Forward all the rest to Privoxy
2247   never_direct allow all</screen>
2248 </para>
2249
2250 <para>
2251  You would then need to change your browser's proxy settings to <application>squid</application>'s address and port.
2252  Squid normally uses port 3128. If unsure consult <literal>http_port</literal> in <filename>squid.conf</filename>.
2253 </para>
2254
2255 <para>
2256  You could just as well decide to only forward requests you suspect
2257  of leading to Windows executables through a virus-scanning parent proxy,
2258  say, on <literal>antivir.example.com</literal>, port 8010:
2259 </para>
2260
2261 <para>
2262  <screen>
2263   forward   /                          .
2264   forward   /.*\.(exe|com|dll|zip)$    antivir.example.com:8010</screen>
2265 </para>
2266
2267 </sect3>
2268 ]]>
2269
2270 <sect3 renderas="sect4" id="forwarded-connect-retries"><title>forwarded-connect-retries</title>
2271 <variablelist>
2272  <varlistentry>
2273   <term>Specifies:</term>
2274   <listitem>
2275    <para>
2276     How often Privoxy retries if a forwarded connection request fails.
2277    </para>
2278   </listitem>
2279  </varlistentry>
2280  <varlistentry>
2281   <term>Type of value:</term>
2282   <listitem>
2283    <para>
2284     <replaceable class="parameter">Number of retries.</replaceable>
2285    </para>
2286   </listitem>
2287  </varlistentry>
2288  <varlistentry>
2289   <term>Default value:</term>
2290   <listitem>
2291    <para><emphasis>0</emphasis></para>
2292   </listitem>
2293  </varlistentry>
2294  <varlistentry>
2295   <term>Effect if unset:</term>
2296   <listitem>
2297    <para>
2298     Connections forwarded through other proxies are treated like direct connections and no retry attempts are made.
2299    </para>
2300   </listitem>
2301  </varlistentry>
2302  <varlistentry>
2303   <term>Notes:</term>
2304   <listitem>
2305    <para>
2306     <replaceable class="parameter">forwarded-connect-retries</replaceable> is mainly interesting
2307     for socks4a connections, where <application>Privoxy</application> can't detect why the connections failed.
2308     The connection might have failed because of a DNS timeout in which case a retry makes sense,
2309     but it might also have failed because the server doesn't exist or isn't reachable. In this
2310     case the retry will just delay the appearance of Privoxy's error message.
2311    </para>
2312    <para>
2313     Note that in the context of this option, <quote>forwarded connections</quote> includes all connections
2314     that Privoxy forwards through other proxies. This option is not limited to the HTTP CONNECT method.
2315    </para>
2316    <para>
2317     Only use this option, if you are getting lots of forwarding-related error messages
2318     that go away when you try again manually. Start with a small value and check Privoxy's
2319     logfile from time to time, to see how many retries are usually needed.
2320    </para>
2321   </listitem>
2322  </varlistentry>
2323  <varlistentry>
2324   <term>Examples:</term>
2325   <listitem>
2326    <para>
2327     forwarded-connect-retries 1
2328    </para>
2329   </listitem>
2330  </varlistentry>
2331 </variablelist>
2332 <![%config-file;[<literallayout>@@forwarded-connect-retries  0</literallayout>]]>
2333 </sect3>
2334
2335 </sect2>
2336
2337 <sect2 id="misc">
2338 <title>Miscellaneous</title>
2339
2340 <sect3 renderas="sect4" id="accept-intercepted-requests"><title>accept-intercepted-requests</title>
2341 <variablelist>
2342  <varlistentry>
2343   <term>Specifies:</term>
2344   <listitem>
2345    <para>
2346     Whether intercepted requests should be treated as valid.
2347    </para>
2348   </listitem>
2349  </varlistentry>
2350  <varlistentry>
2351   <term>Type of value:</term>
2352   <listitem>
2353    <para>
2354     <replaceable>0 or 1</replaceable>
2355    </para>
2356   </listitem>
2357  </varlistentry>
2358  <varlistentry>
2359   <term>Default value:</term>
2360   <listitem>
2361    <para><emphasis>0</emphasis></para>
2362   </listitem>
2363  </varlistentry>
2364  <varlistentry>
2365   <term>Effect if unset:</term>
2366   <listitem>
2367    <para>
2368     Only proxy requests are accepted, intercepted requests are treated as invalid.
2369    </para>
2370   </listitem>
2371  </varlistentry>
2372  <varlistentry>
2373   <term>Notes:</term>
2374   <listitem>
2375    <para>
2376     If you don't trust your clients and want to force them
2377     to use <application>Privoxy</application>, enable this
2378     option and configure your packet filter to redirect outgoing
2379     HTTP connections into <application>Privoxy</application>.
2380    </para>
2381    <para>
2382     Make sure that <application>Privoxy's</application> own requests
2383     aren't redirected as well. Additionally take care that
2384     <application>Privoxy</application> can't intentionally connect
2385     to itself, otherwise you could run into redirection loops if
2386     <application>Privoxy's</application> listening port is reachable
2387     by the outside or an attacker has access to the pages you visit.
2388    </para>
2389   </listitem>
2390  </varlistentry>
2391  <varlistentry>
2392   <term>Examples:</term>
2393   <listitem>
2394    <para>
2395     accept-intercepted-requests 1
2396    </para>
2397   </listitem>
2398  </varlistentry>
2399 </variablelist>
2400 <![%config-file;[<literallayout>@@accept-intercepted-requests 0</literallayout>]]>
2401 </sect3>
2402
2403 <sect3 renderas="sect4" id="allow-cgi-request-crunching"><title>allow-cgi-request-crunching</title>
2404 <variablelist>
2405  <varlistentry>
2406   <term>Specifies:</term>
2407   <listitem>
2408    <para>
2409     Whether requests to <application>Privoxy's</application> CGI pages can be blocked or redirected.
2410    </para>
2411   </listitem>
2412  </varlistentry>
2413  <varlistentry>
2414   <term>Type of value:</term>
2415   <listitem>
2416    <para>
2417     <replaceable>0 or 1</replaceable>
2418    </para>
2419   </listitem>
2420  </varlistentry>
2421  <varlistentry>
2422   <term>Default value:</term>
2423   <listitem>
2424    <para><emphasis>0</emphasis></para>
2425   </listitem>
2426  </varlistentry>
2427  <varlistentry>
2428   <term>Effect if unset:</term>
2429   <listitem>
2430    <para>
2431     <application>Privoxy</application> ignores block and redirect actions for its CGI pages.
2432    </para>
2433   </listitem>
2434  </varlistentry>
2435  <varlistentry>
2436   <term>Notes:</term>
2437   <listitem>
2438    <para>
2439     By default <application>Privoxy</application> ignores block or redirect actions
2440     for its CGI pages. Intercepting these requests can be useful in multi-user
2441     setups to implement fine-grained access control, but it can also render the complete
2442     web interface useless and make debugging problems painful if done without care.
2443    </para>
2444    <para>
2445     Don't enable this option unless you're sure that you really need it.
2446    </para>
2447   </listitem>
2448  </varlistentry>
2449  <varlistentry>
2450   <term>Examples:</term>
2451   <listitem>
2452    <para>
2453     allow-cgi-request-crunching 1
2454    </para>
2455   </listitem>
2456  </varlistentry>
2457 </variablelist>
2458 <![%config-file;[<literallayout>@@allow-cgi-request-crunching 0</literallayout>]]>
2459 </sect3>
2460
2461 <sect3 renderas="sect4" id="split-large-forms"><title>split-large-forms</title>
2462 <variablelist>
2463  <varlistentry>
2464   <term>Specifies:</term>
2465   <listitem>
2466    <para>
2467     Whether the CGI interface should stay compatible with broken HTTP clients.
2468    </para>
2469   </listitem>
2470  </varlistentry>
2471  <varlistentry>
2472   <term>Type of value:</term>
2473   <listitem>
2474    <para>
2475     <replaceable>0 or 1</replaceable>
2476    </para>
2477   </listitem>
2478  </varlistentry>
2479  <varlistentry>
2480   <term>Default value:</term>
2481   <listitem>
2482    <para><emphasis>0</emphasis></para>
2483   </listitem>
2484  </varlistentry>
2485  <varlistentry>
2486   <term>Effect if unset:</term>
2487   <listitem>
2488    <para>
2489     The CGI form generate long GET URLs.
2490    </para>
2491   </listitem>
2492  </varlistentry>
2493  <varlistentry>
2494   <term>Notes:</term>
2495   <listitem>
2496    <para>
2497     <application>Privoxy's</application> CGI forms can lead to
2498     rather long URLs. This isn't a problem as far as the HTTP
2499     standard is concerned, but it can confuse clients with arbitrary
2500     URL length limitations.
2501    </para>
2502    <para>
2503     Enabling split-large-forms causes <application>Privoxy</application>
2504     to divide big forms into smaller ones to keep the URL length down.
2505     It makes editing a lot less convenient and you can no longer
2506     submit all changes at once, but at least it works around this
2507     browser bug.
2508    </para>
2509    <para>
2510     If you don't notice any editing problems, there is no reason
2511     to enable this option, but if one of the submit buttons appears
2512     to be broken, you should give it a try.
2513    </para>
2514   </listitem>
2515  </varlistentry>
2516  <varlistentry>
2517   <term>Examples:</term>
2518   <listitem>
2519    <para>
2520     split-large-forms 1
2521    </para>
2522   </listitem>
2523  </varlistentry>
2524 </variablelist>
2525 <![%config-file;[<literallayout>@@split-large-forms 0</literallayout>]]>
2526 </sect3>
2527
2528 <sect3 renderas="sect4" id="keep-alive-timeout"><title>keep-alive-timeout</title>
2529 <variablelist>
2530  <varlistentry>
2531   <term>Specifies:</term>
2532   <listitem>
2533    <para>
2534     Number of seconds after which an open connection will no longer be reused.
2535    </para>
2536   </listitem>
2537  </varlistentry>
2538  <varlistentry>
2539   <term>Type of value:</term>
2540   <listitem>
2541    <para>
2542     <replaceable>Time in seconds.</replaceable>
2543    </para>
2544   </listitem>
2545  </varlistentry>
2546  <varlistentry>
2547   <term>Default value:</term>
2548   <listitem>
2549    <para>None</para>
2550   </listitem>
2551  </varlistentry>
2552  <varlistentry>
2553   <term>Effect if unset:</term>
2554   <listitem>
2555    <para>
2556     Connections are not kept alive.
2557    </para>
2558   </listitem>
2559  </varlistentry>
2560  <varlistentry>
2561   <term>Notes:</term>
2562   <listitem>
2563    <para>
2564     This option allows clients to keep the connection to &my-app;
2565     alive. If the server supports it, &my-app; will keep
2566     the connection to the server alive as well. Under certain
2567     circumstances this may result in speed-ups.
2568    </para>
2569    <para>
2570     By default, &my-app; will close the connection to the server if
2571     the client connection gets closed, or if the specified timeout
2572     has been reached without a new request coming in. This behaviour
2573     can be changed with the <ulink
2574      url="#CONNECTION-SHARING">connection-sharing</ulink> option.
2575    </para>
2576    <para>
2577     This option has no effect if <application>Privoxy</application>
2578     has been compiled without keep-alive support.
2579    </para>
2580    <para>
2581     Note that a timeout of five seconds as used in the default
2582     configuration file significantly decreases the number of
2583     connections that will be reused. The value is used because
2584     some browsers limit the number of connections they open to
2585     a single host and apply the same limit to proxies. This can
2586     result in a single website <quote>grabbing</quote> all the
2587     connections the browser allows, which means connections to
2588     other websites can't be opened until the connections currently
2589     in use time out.
2590    </para>
2591    <para>
2592     Several users have reported this as a Privoxy bug, so the
2593     default value has been reduced. Consider increasing it to
2594     300 seconds or even more if you think your browser can handle
2595     it. If your browser appears to be hanging, it probably can't.
2596    </para>
2597   </listitem>
2598  </varlistentry>
2599  <varlistentry>
2600   <term>Examples:</term>
2601   <listitem>
2602    <para>
2603     keep-alive-timeout 300
2604    </para>
2605   </listitem>
2606  </varlistentry>
2607 </variablelist>
2608 <![%config-file;[<literallayout>@@keep-alive-timeout 5</literallayout>]]>
2609 </sect3>
2610
2611
2612 <sect3 renderas="sect4" id="tolerate-pipelining"><title>tolerate-pipelining</title>
2613 <variablelist>
2614  <varlistentry>
2615   <term>Specifies:</term>
2616   <listitem>
2617    <para>
2618     Whether or not pipelined requests should be served.
2619    </para>
2620   </listitem>
2621  </varlistentry>
2622  <varlistentry>
2623   <term>Type of value:</term>
2624   <listitem>
2625    <para>
2626     <replaceable>0 or 1.</replaceable>
2627    </para>
2628   </listitem>
2629  </varlistentry>
2630  <varlistentry>
2631   <term>Default value:</term>
2632   <listitem>
2633    <para>None</para>
2634   </listitem>
2635  </varlistentry>
2636  <varlistentry>
2637   <term>Effect if unset:</term>
2638   <listitem>
2639    <para>
2640     If Privoxy receives more than one request at once, it terminates the
2641     client connection after serving the first one.
2642    </para>
2643   </listitem>
2644  </varlistentry>
2645  <varlistentry>
2646   <term>Notes:</term>
2647   <listitem>
2648    <para>
2649     &my-app; currently doesn't pipeline outgoing requests,
2650     thus allowing pipelining on the client connection is not
2651     guaranteed to improve the performance.
2652    </para>
2653    <para>
2654     By default &my-app; tries to discourage clients from pipelining
2655     by discarding aggressively pipelined requests, which forces the
2656     client to resend them through a new connection.
2657    </para>
2658    <para>
2659     This option lets &my-app; tolerate pipelining. Whether or not
2660     that improves performance mainly depends on the client configuration.
2661    </para>
2662    <para>
2663     This options is new and should be considered experimental.
2664    </para>
2665   </listitem>
2666  </varlistentry>
2667  <varlistentry>
2668   <term>Examples:</term>
2669   <listitem>
2670    <para>
2671     tolerate-pipelining 1
2672    </para>
2673   </listitem>
2674  </varlistentry>
2675 </variablelist>
2676 <![%config-file;[<literallayout>@@#tolerate-pipelining 1</literallayout>]]>
2677 </sect3>
2678
2679
2680 <sect3 renderas="sect4" id="default-server-timeout"><title>default-server-timeout</title>
2681 <variablelist>
2682  <varlistentry>
2683   <term>Specifies:</term>
2684   <listitem>
2685    <para>
2686     Assumed server-side keep-alive timeout if not specified by the server.
2687    </para>
2688   </listitem>
2689  </varlistentry>
2690  <varlistentry>
2691   <term>Type of value:</term>
2692   <listitem>
2693    <para>
2694     <replaceable>Time in seconds.</replaceable>
2695    </para>
2696   </listitem>
2697  </varlistentry>
2698  <varlistentry>
2699   <term>Default value:</term>
2700   <listitem>
2701    <para>None</para>
2702   </listitem>
2703  </varlistentry>
2704  <varlistentry>
2705   <term>Effect if unset:</term>
2706   <listitem>
2707    <para>
2708     Connections for which the server didn't specify the keep-alive
2709     timeout are not reused.
2710    </para>
2711   </listitem>
2712  </varlistentry>
2713  <varlistentry>
2714   <term>Notes:</term>
2715   <listitem>
2716    <para>
2717     Enabling this option significantly increases the number of connections
2718     that are reused, provided the <ulink
2719      url="#KEEP-ALIVE-TIMEOUT">keep-alive-timeout</ulink> option
2720     is also enabled.
2721    </para>
2722    <para>
2723     While it also increases the number of connections problems
2724     when &my-app; tries to reuse a connection that already has
2725     been closed on the server side, or is closed while &my-app;
2726     is trying to reuse it, this should only be a problem if it
2727     happens for the first request sent by the client. If it happens
2728     for requests on reused client connections, &my-app; will simply
2729     close the connection and the client is supposed to retry the
2730     request without bothering the user.
2731    </para>
2732    <para>
2733     Enabling this option is therefore only recommended if the
2734     <ulink
2735      url="#CONNECTION-SHARING">connection-sharing</ulink> option
2736     is disabled.
2737    </para>
2738    <para>
2739     It is an error to specify a value larger than the <ulink
2740      url="#KEEP-ALIVE-TIMEOUT">keep-alive-timeout</ulink> value.
2741    </para>
2742    <para>
2743     This option has no effect if <application>Privoxy</application>
2744     has been compiled without keep-alive support.
2745    </para>
2746   </listitem>
2747  </varlistentry>
2748  <varlistentry>
2749   <term>Examples:</term>
2750   <listitem>
2751    <para>
2752     default-server-timeout 60
2753    </para>
2754   </listitem>
2755  </varlistentry>
2756 </variablelist>
2757 <![%config-file;[<literallayout>@@#default-server-timeout 60</literallayout>]]>
2758 </sect3>
2759
2760
2761 <sect3 renderas="sect4" id="connection-sharing"><title>connection-sharing</title>
2762 <variablelist>
2763  <varlistentry>
2764   <term>Specifies:</term>
2765   <listitem>
2766    <para>
2767     Whether or not outgoing connections that have been kept alive
2768     should be shared between different incoming connections.
2769    </para>
2770   </listitem>
2771  </varlistentry>
2772  <varlistentry>
2773   <term>Type of value:</term>
2774   <listitem>
2775    <para>
2776     <replaceable>0 or 1</replaceable>
2777    </para>
2778   </listitem>
2779  </varlistentry>
2780  <varlistentry>
2781   <term>Default value:</term>
2782   <listitem>
2783    <para>None</para>
2784   </listitem>
2785  </varlistentry>
2786  <varlistentry>
2787   <term>Effect if unset:</term>
2788   <listitem>
2789    <para>
2790     Connections are not shared.
2791    </para>
2792   </listitem>
2793  </varlistentry>
2794  <varlistentry>
2795   <term>Notes:</term>
2796   <listitem>
2797    <para>
2798     This option has no effect if <application>Privoxy</application>
2799     has been compiled without keep-alive support, or if it's disabled.
2800    </para>
2801   </listitem>
2802  </varlistentry>
2803  <varlistentry>
2804   <term>Notes:</term>
2805   <listitem>
2806    <para>
2807     Note that reusing connections doesn't necessary cause speedups.
2808     There are also a few privacy implications you should be aware of.
2809    </para>
2810    <para>
2811     If this option is effective, outgoing connections are shared between
2812     clients (if there are more than one) and closing the browser that initiated
2813     the outgoing connection does no longer affect the connection between &my-app;
2814     and the server unless the client's request hasn't been completed yet.
2815    </para>
2816    <para>
2817     If the outgoing connection  is idle, it will not be closed until either
2818     <application>Privoxy's</application> or the server's timeout is reached.
2819     While it's open, the server knows that the system running &my-app; is still
2820     there.
2821    </para>
2822    <para>
2823     If there are more than one client (maybe even belonging to multiple users),
2824     they will be able to reuse each others connections. This is potentially
2825     dangerous in case of authentication schemes like NTLM where only the
2826     connection is authenticated, instead of requiring authentication for
2827     each request.
2828    </para>
2829    <para>
2830     If there is only a single client, and if said client can keep connections
2831     alive on its own, enabling this option has next to no effect. If the client
2832     doesn't support connection keep-alive, enabling this option may make sense
2833     as it allows &my-app; to keep outgoing connections alive even if the client
2834     itself doesn't support it.
2835    </para>
2836    <para>
2837     You should also be aware that enabling this option increases the likelihood
2838     of getting the "No server or forwarder data" error message, especially if you
2839     are using a slow connection to the Internet.
2840    </para>
2841    <para>
2842     This option should only be used by experienced users who
2843     understand the risks and can weight them against the benefits.
2844    </para>
2845   </listitem>
2846  </varlistentry>
2847  <varlistentry>
2848   <term>Examples:</term>
2849   <listitem>
2850    <para>
2851     connection-sharing 1
2852    </para>
2853   </listitem>
2854  </varlistentry>
2855 </variablelist>
2856 <![%config-file;[<literallayout>@@#connection-sharing 1</literallayout>]]>
2857 </sect3>
2858
2859
2860 <sect3 renderas="sect4" id="socket-timeout"><title>socket-timeout</title>
2861 <variablelist>
2862  <varlistentry>
2863   <term>Specifies:</term>
2864   <listitem>
2865    <para>
2866     Number of seconds after which a socket times out if
2867     no data is received.
2868    </para>
2869   </listitem>
2870  </varlistentry>
2871  <varlistentry>
2872   <term>Type of value:</term>
2873   <listitem>
2874    <para>
2875     <replaceable>Time in seconds.</replaceable>
2876    </para>
2877   </listitem>
2878  </varlistentry>
2879  <varlistentry>
2880   <term>Default value:</term>
2881   <listitem>
2882    <para>None</para>
2883   </listitem>
2884  </varlistentry>
2885  <varlistentry>
2886   <term>Effect if unset:</term>
2887   <listitem>
2888    <para>
2889     A default value of 300 seconds is used.
2890    </para>
2891   </listitem>
2892  </varlistentry>
2893  <varlistentry>
2894   <term>Notes:</term>
2895   <listitem>
2896    <para>
2897     The default is quite high and you probably want to reduce it.
2898     If you aren't using an occasionally slow proxy like Tor, reducing
2899     it to a few seconds should be fine.
2900    </para>
2901   </listitem>
2902  </varlistentry>
2903  <varlistentry>
2904   <term>Examples:</term>
2905   <listitem>
2906    <para>
2907     socket-timeout 300
2908    </para>
2909   </listitem>
2910  </varlistentry>
2911 </variablelist>
2912 <![%config-file;[<literallayout>@@socket-timeout 300</literallayout>]]>
2913 </sect3>
2914
2915
2916 <sect3 renderas="sect4" id="max-client-connections"><title>max-client-connections</title>
2917 <variablelist>
2918  <varlistentry>
2919   <term>Specifies:</term>
2920   <listitem>
2921    <para>
2922     Maximum number of client connections that will be served.
2923    </para>
2924   </listitem>
2925  </varlistentry>
2926  <varlistentry>
2927   <term>Type of value:</term>
2928   <listitem>
2929    <para>
2930     <replaceable>Positive number.</replaceable>
2931    </para>
2932   </listitem>
2933  </varlistentry>
2934  <varlistentry>
2935   <term>Default value:</term>
2936   <listitem>
2937    <para>None</para>
2938   </listitem>
2939  </varlistentry>
2940  <varlistentry>
2941   <term>Effect if unset:</term>
2942   <listitem>
2943    <para>
2944     Connections are served until a resource limit is reached.
2945    </para>
2946   </listitem>
2947  </varlistentry>
2948  <varlistentry>
2949   <term>Notes:</term>
2950   <listitem>
2951    <para>
2952     &my-app; creates one thread (or process) for every incoming client
2953     connection that isn't rejected based on the access control settings.
2954    </para>
2955    <para>
2956     If the system is powerful enough, &my-app; can theoretically deal with
2957     several hundred (or thousand) connections at the same time, but some
2958     operating systems enforce resource limits by shutting down offending
2959     processes and their default limits may be below the ones &my-app; would
2960     require under heavy load.
2961    </para>
2962    <para>
2963     Configuring &my-app; to enforce a connection limit below the thread
2964     or process limit used by the operating system makes sure this doesn't
2965     happen. Simply increasing the operating system's limit would work too,
2966     but if &my-app; isn't the only application running on the system,
2967     you may actually want to limit the resources used by &my-app;.
2968    </para>
2969    <para>
2970     If &my-app; is only used by a single trusted user, limiting the
2971     number of client connections is probably unnecessary. If there
2972     are multiple possibly untrusted users you probably still want to
2973     additionally use a packet filter to limit the maximal number of
2974     incoming connections per client. Otherwise a malicious user could
2975     intentionally create a high number of connections to prevent other
2976     users from using &my-app;.
2977    </para>
2978    <para>
2979     Obviously using this option only makes sense if you choose a limit
2980     below the one enforced by the operating system.
2981    </para>
2982   </listitem>
2983  </varlistentry>
2984  <varlistentry>
2985   <term>Examples:</term>
2986   <listitem>
2987    <para>
2988     max-client-connections 256
2989    </para>
2990   </listitem>
2991  </varlistentry>
2992 </variablelist>
2993 <![%config-file;[<literallayout>@@#max-client-connections 256</literallayout>]]>
2994 </sect3>
2995
2996
2997 <sect3 renderas="sect4" id="handle-as-empty-doc-returns-ok"><title>handle-as-empty-doc-returns-ok</title>
2998 <variablelist>
2999  <varlistentry>
3000   <term>Specifies:</term>
3001   <listitem>
3002    <para>
3003     The status code Privoxy returns for pages blocked with
3004     <!--  URL will only end up in the user manual so the relative link should work. -->
3005     <literal><ulink url="actions-file.html#HANDLE-AS-EMPTY-DOCUMENT">+handle-as-empty-document</ulink></literal>.
3006    </para>
3007   </listitem>
3008  </varlistentry>
3009  <varlistentry>
3010   <term>Type of value:</term>
3011   <listitem>
3012    <para>
3013     <replaceable>0 or 1</replaceable>
3014    </para>
3015   </listitem>
3016  </varlistentry>
3017  <varlistentry>
3018   <term>Default value:</term>
3019   <listitem>
3020    <para>0</para>
3021   </listitem>
3022  </varlistentry>
3023  <varlistentry>
3024   <term>Effect if unset:</term>
3025   <listitem>
3026    <para>
3027     Privoxy returns a status 403(forbidden) for all blocked pages.
3028    </para>
3029   </listitem>
3030  </varlistentry>
3031  <varlistentry>
3032   <term>Effect if set:</term>
3033   <listitem>
3034    <para>
3035     Privoxy returns a status 200(OK) for pages blocked with +handle-as-empty-document
3036     and a status 403(Forbidden) for all other blocked pages.
3037    </para>
3038   </listitem>
3039  </varlistentry>
3040  <varlistentry>
3041   <term>Notes:</term>
3042   <listitem>
3043    <para>
3044     This is a work-around for Firefox bug 492459:
3045     <quote>
3046     Websites are no longer rendered if SSL requests for JavaScripts are blocked by a proxy.
3047     </quote>
3048     (<ulink url="https://bugzilla.mozilla.org/show_bug.cgi?id=492459"
3049         >https://bugzilla.mozilla.org/show_bug.cgi?id=492459</ulink>)
3050     As the bug has been fixed for quite some time this option should no longer
3051     be needed and will be removed in a future release. Please speak up if you
3052     have a reason why the option should be kept around.
3053    </para>
3054   </listitem>
3055  </varlistentry>
3056 </variablelist>
3057 <![%config-file;[<literallayout>@@#handle-as-empty-doc-returns-ok 1</literallayout>]]>
3058 </sect3>
3059
3060
3061 <sect3 renderas="sect4" id="enable-compression"><title>enable-compression</title>
3062 <variablelist>
3063  <varlistentry>
3064   <term>Specifies:</term>
3065   <listitem>
3066    <para>
3067     Whether or not buffered content is compressed before delivery.
3068    </para>
3069   </listitem>
3070  </varlistentry>
3071  <varlistentry>
3072   <term>Type of value:</term>
3073   <listitem>
3074    <para>
3075     <replaceable>0 or 1</replaceable>
3076    </para>
3077   </listitem>
3078  </varlistentry>
3079  <varlistentry>
3080   <term>Default value:</term>
3081   <listitem>
3082    <para>0</para>
3083   </listitem>
3084  </varlistentry>
3085  <varlistentry>
3086   <term>Effect if unset:</term>
3087   <listitem>
3088    <para>
3089     Privoxy does not compress buffered content.
3090    </para>
3091   </listitem>
3092  </varlistentry>
3093  <varlistentry>
3094   <term>Effect if set:</term>
3095   <listitem>
3096    <para>
3097     Privoxy compresses buffered content before delivering it to the client,
3098     provided the client supports it.
3099    </para>
3100   </listitem>
3101  </varlistentry>
3102  <varlistentry>
3103   <term>Notes:</term>
3104   <listitem>
3105    <para>
3106     This directive is only supported if Privoxy has been compiled with
3107     FEATURE_COMPRESSION, which should not to be confused with FEATURE_ZLIB.
3108    </para>
3109    <para>
3110     Compressing buffered content is mainly useful if Privoxy and the
3111     client are running on different systems. If they are running on the
3112     same system, enabling compression is likely to slow things down.
3113     If you didn't measure otherwise, you should assume that it does
3114     and keep this option disabled.
3115    </para>
3116    <para>
3117     Privoxy will not compress buffered content below a certain length.
3118    </para>
3119   </listitem>
3120  </varlistentry>
3121 </variablelist>
3122 <![%config-file;[<literallayout>@@#enable-compression 1</literallayout>]]>
3123 </sect3>
3124
3125
3126 <sect3 renderas="sect4" id="compression-level"><title>compression-level</title>
3127 <variablelist>
3128  <varlistentry>
3129   <term>Specifies:</term>
3130   <listitem>
3131    <para>
3132     The compression level that is passed to the zlib library when compressing buffered content.
3133    </para>
3134   </listitem>
3135  </varlistentry>
3136  <varlistentry>
3137   <term>Type of value:</term>
3138   <listitem>
3139    <para>
3140     <replaceable>Positive number ranging from 0 to 9.</replaceable>
3141    </para>
3142   </listitem>
3143  </varlistentry>
3144  <varlistentry>
3145   <term>Default value:</term>
3146   <listitem>
3147    <para>1</para>
3148   </listitem>
3149  </varlistentry>
3150  <varlistentry>
3151   <term>Notes:</term>
3152   <listitem>
3153    <para>
3154      Compressing the data more takes usually longer than compressing
3155      it less or not compressing it at all. Which level is best depends
3156      on the connection between Privoxy and the client. If you can't
3157      be bothered to benchmark it for yourself, you should stick with
3158      the default and keep compression disabled.
3159    </para>
3160    <para>
3161      If compression is disabled, the compression level is irrelevant.
3162    </para>
3163   </listitem>
3164  </varlistentry>
3165  <varlistentry>
3166   <term>Examples:</term>
3167   <listitem>
3168    <para>
3169     <screen>
3170     # Best speed (compared to the other levels)
3171     compression-level 1
3172     # Best compression
3173     compression-level 9
3174     # No compression. Only useful for testing as the added header
3175     # slightly increases the amount of data that has to be sent.
3176     # If your benchmark shows that using this compression level
3177     # is superior to using no compression at all, the benchmark
3178     # is likely to be flawed.
3179     compression-level 0
3180     </screen>
3181    </para>
3182   </listitem>
3183  </varlistentry>
3184 </variablelist>
3185 <![%config-file;[<literallayout>@@#compression-level 1</literallayout>]]>
3186 </sect3>
3187
3188
3189 <sect3 renderas="sect4" id="client-header-order"><title>client-header-order</title>
3190 <variablelist>
3191  <varlistentry>
3192   <term>Specifies:</term>
3193   <listitem>
3194    <para>
3195     The order in which client headers are sorted before forwarding them.
3196    </para>
3197   </listitem>
3198  </varlistentry>
3199  <varlistentry>
3200   <term>Type of value:</term>
3201   <listitem>
3202    <para>
3203     <replaceable>Client header names delimited by spaces or tabs</replaceable>
3204    </para>
3205   </listitem>
3206  </varlistentry>
3207  <varlistentry>
3208   <term>Default value:</term>
3209   <listitem>
3210    <para>None</para>
3211   </listitem>
3212  </varlistentry>
3213  <varlistentry>
3214   <term>Notes:</term>
3215   <listitem>
3216    <para>
3217      By default &my-app; leaves the client headers in the order they
3218      were sent by the client. Headers are modified in-place, new headers
3219      are added at the end of the already existing headers.
3220    </para>
3221    <para>
3222      The header order can be used to fingerprint client requests
3223      independently of other headers like the User-Agent.
3224    </para>
3225    <para>
3226      This directive allows to sort the headers differently to better
3227      mimic a different User-Agent. Client headers will be emitted
3228      in the order given, headers whose name isn't explicitly specified
3229      are added at the end.
3230    </para>
3231    <para>
3232      Note that sorting headers in an uncommon way will make fingerprinting
3233      actually easier. Encrypted headers are not affected by this directive.
3234    </para>
3235   </listitem>
3236  </varlistentry>
3237 </variablelist>
3238 <![%config-file;[<literallayout>@@#client-header-order Host \
3239 # User-Agent \
3240 # Accept \
3241 # Accept-Language \
3242 # Accept-Encoding \
3243 # Proxy-Connection,\
3244 # Referer,Cookie \
3245 # If-Modified-Since \
3246 # Cache-Control \
3247 # Content-Length \
3248 # Content-Type
3249 </literallayout>]]>
3250 </sect3>
3251
3252
3253 </sect2>
3254
3255 <!--  ~  End section  ~  -->
3256
3257
3258 <!--   ~~~~~       New section      ~~~~~     -->
3259
3260 <sect2 id="windows-gui">
3261 <title>Windows GUI Options</title>
3262 <para>
3263  <application>Privoxy</application> has a number of options specific to the
3264  Windows GUI interface:
3265 </para>
3266
3267 <anchor id="activity-animation">
3268 <![%config-file;[<para>@@</para>]]> <!-- for spacing -->
3269 <para>
3270  If <quote>activity-animation</quote> is set to 1, the
3271  <application>Privoxy</application> icon will animate when
3272  <quote>Privoxy</quote> is active. To turn off, set to 0.
3273 </para>
3274
3275 <![%config-file;[<literallayout>@@#activity-animation   1</literallayout>]]>
3276 <![%user-man;[
3277 <para>
3278  <literal>
3279   <msgtext>
3280    <literallayout>
3281   <emphasis>activity-animation   1</emphasis>
3282    </literallayout>
3283   </msgtext>
3284  </literal>
3285 </para>
3286 ]]>
3287
3288 <anchor id="log-messages">
3289 <![%config-file;[<para>@@</para>]]> <!-- for spacing -->
3290 <para>
3291  If <quote>log-messages</quote> is set to 1,
3292  <application>Privoxy</application> copies log messages to the console
3293  window.
3294  The log detail depends on the <link linkend="debug">debug</link> directive.
3295 </para>
3296
3297 <![%config-file;[<literallayout>@@#log-messages   1</literallayout>]]>
3298 <![%user-man;[
3299 <para>
3300  <literal>
3301   <msgtext>
3302    <literallayout>
3303   <emphasis>log-messages       1</emphasis>
3304    </literallayout>
3305   </msgtext>
3306  </literal>
3307 </para>
3308 ]]>
3309
3310 <anchor id="log-buffer-size">
3311 <![%config-file;[<para>@@</para>]]> <!-- for spacing -->
3312 <para>
3313  If <quote>log-buffer-size</quote> is set to 1, the size of the log buffer,
3314  i.e. the amount of memory used for the log messages displayed in the
3315  console window, will be limited to <quote>log-max-lines</quote> (see below).
3316 </para>
3317
3318 <para>
3319  Warning: Setting this to 0 will result in the buffer to grow infinitely and
3320  eat up all your memory!
3321 </para>
3322
3323 <![%config-file;[<literallayout>@@#log-buffer-size 1</literallayout>]]>
3324 <![%user-man;[
3325 <para>
3326  <literal>
3327   <msgtext>
3328    <literallayout>
3329   <emphasis>log-buffer-size      1</emphasis>
3330    </literallayout>
3331   </msgtext>
3332  </literal>
3333 </para>
3334 ]]>
3335
3336 <anchor id="log-max-lines">
3337 <![%config-file;[<para>@@</para>]]> <!-- for spacing -->
3338 <para>
3339  <application>log-max-lines</application> is the maximum number of lines held
3340  in the log buffer. See above.
3341 </para>
3342
3343 <![%config-file;[<literallayout>@@#log-max-lines 200</literallayout>]]>
3344 <![%user-man;[
3345 <para>
3346  <literal>
3347   <msgtext>
3348    <literallayout>
3349   <emphasis>log-max-lines      200</emphasis>
3350    </literallayout>
3351   </msgtext>
3352  </literal>
3353 </para>
3354 ]]>
3355
3356 <anchor id="log-highlight-messages">
3357 <![%config-file;[<para>@@</para>]]> <!-- for spacing -->
3358 <para>
3359  If <quote>log-highlight-messages</quote> is set to 1,
3360  <application>Privoxy</application> will highlight portions of the log
3361  messages with a bold-faced font:
3362 </para>
3363
3364 <![%config-file;[<literallayout>@@#log-highlight-messages 1</literallayout>]]>
3365 <![%user-man;[
3366 <para>
3367  <literal>
3368   <msgtext>
3369    <literallayout>
3370   <emphasis>log-highlight-messages   1</emphasis>
3371    </literallayout>
3372   </msgtext>
3373  </literal>
3374 </para>
3375 ]]>
3376
3377 <anchor id="log-font-name">
3378 <![%config-file;[<para>@@</para>]]> <!-- for spacing -->
3379 <para>
3380  The font used in the console window:
3381 </para>
3382
3383 <![%config-file;[<literallayout>@@#log-font-name Comic Sans MS</literallayout>]]>
3384 <![%user-man;[
3385 <para>
3386  <literal>
3387   <msgtext>
3388    <literallayout>
3389   <emphasis>log-font-name        Comic Sans MS</emphasis>
3390    </literallayout>
3391   </msgtext>
3392  </literal>
3393 </para>
3394 ]]>
3395
3396 <anchor id="log-font-size">
3397 <![%config-file;[<para>@@</para>]]> <!-- for spacing -->
3398 <para>
3399  Font size used in the console window:
3400 </para>
3401
3402 <![%config-file;[<literallayout>@@#log-font-size 8</literallayout>]]>
3403 <![%user-man;[
3404 <para>
3405  <literal>
3406   <msgtext>
3407    <literallayout>
3408   <emphasis>log-font-size        8</emphasis>
3409    </literallayout>
3410   </msgtext>
3411  </literal>
3412 </para>
3413 ]]>
3414
3415 <anchor id="show-on-task-bar">
3416 <![%config-file;[<para>@@</para>]]> <!-- for spacing -->
3417 <para>
3418  <quote>show-on-task-bar</quote> controls whether or not
3419  <application>Privoxy</application> will appear as a button on the Task bar
3420  when minimized:
3421 </para>
3422
3423 <![%config-file;[<literallayout>@@#show-on-task-bar 0</literallayout>]]>
3424 <![%user-man;[
3425 <para>
3426  <literal>
3427   <msgtext>
3428    <literallayout>
3429   <emphasis>show-on-task-bar     0</emphasis>
3430    </literallayout>
3431   </msgtext>
3432  </literal>
3433 </para>
3434 ]]>
3435
3436 <anchor id="close-button-minimizes">
3437 <![%config-file;[<para>@@</para>]]> <!-- for spacing -->
3438 <para>
3439  If <quote>close-button-minimizes</quote> is set to 1, the Windows close
3440  button will minimize <application>Privoxy</application> instead of closing
3441  the program (close with the exit option on the File menu).
3442 </para>
3443
3444 <![%config-file;[<literallayout>@@#close-button-minimizes 1</literallayout>]]>
3445 <![%user-man;[
3446 <para>
3447  <literal>
3448   <msgtext>
3449    <literallayout>
3450   <emphasis>close-button-minimizes  1</emphasis>
3451    </literallayout>
3452   </msgtext>
3453  </literal>
3454 </para>
3455 ]]>
3456
3457 <anchor id="hide-console">
3458 <![%config-file;[<para>@@</para>]]> <!-- for spacing -->
3459 <para>
3460  The <quote>hide-console</quote> option is specific to the MS-Win console
3461  version of <application>Privoxy</application>. If this option is used,
3462  <application>Privoxy</application> will disconnect from and hide the
3463  command console.
3464 </para>
3465
3466 <![%config-file;[<literallayout>@@#hide-console</literallayout>]]>
3467 <![%user-man;[
3468 <para>
3469  <literal>
3470   <msgtext>
3471    <literallayout>
3472   #<emphasis>hide-console</emphasis>
3473    </literallayout>
3474   </msgtext>
3475  </literal>
3476 </para>
3477 ]]>
3478
3479 </sect2>
3480 </sect1>
3481
3482 <!-- end config content common to both outputs -->
3483
3484 <![%config-file;[
3485 <!-- These are dummy anchors to keep the processor quiet            -->
3486 <!-- when building config-file only (ie. they are used in u-m only) -->
3487 <sect1 label="">
3488 <title></title>
3489 <anchor id="filter">
3490 <anchor id="filter-file">
3491 <anchor id="regex">
3492 <anchor id="actions-file">
3493 <anchor id="af-patterns">
3494 </sect1>
3495 ]]>
3496
3497 <!-- eof p-config.sgml -->