- Shorten white space after debug directives.
[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.30 2008/03/27 18:31:20 fabiankeil Exp $
7
8  Copyright (C) 2001-2008 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  Again, the main configuration file is named <filename>config</filename> on
54  Linux/Unix/BSD and OS/2, and <filename>config.txt</filename> on Windows.
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).
85 </para>
86
87 ]]>
88
89
90 <![%config-file;[
91 <!-- This part only goes into the config file -->
92 <sect1 id="config">
93 <title>
94  @@TITLE<!-- between the @@ is stripped by Makefile -->@@
95  Sample Configuration File for Privoxy v&p-version;
96 </title>
97 <para>
98  $Id: p-config.sgml,v 2.30 2008/03/27 18:31:20 fabiankeil Exp $
99 </para>
100 <para>
101 Copyright (C) 2001-2008 Privoxy Developers http://www.privoxy.org/
102 </para>
103
104 <para>
105  <literallayout>
106 #################################################################
107                                                                 #
108                     Table of Contents                           #
109                                                                 #
110       I. INTRODUCTION                                           #
111      II. FORMAT OF THE CONFIGURATION FILE                       #
112                                                                 #
113       1. LOCAL SET-UP DOCUMENTATION                             #
114       2. CONFIGURATION AND LOG FILE LOCATIONS                   #
115       3. DEBUGGING                                              #
116       4. ACCESS CONTROL AND SECURITY                            #
117       5. FORWARDING                                             #
118       6. WINDOWS GUI OPTIONS                                    #
119                                                                 #
120 #################################################################
121  </literallayout>
122 </para>
123
124 <literallayout>I. INTRODUCTION
125  ===============  <!-- fuck this madness --></literallayout>
126
127 <para>
128  This file holds Privoxy's main configuration.  Privoxy detects
129  configuration changes automatically, so you don't have to restart it
130  unless you want to load a different configuration file.
131 </para>
132 <para>
133  The configuration will be reloaded with the first request after the
134  change was done, this request itself will still use the old configuration,
135  though. In other words: it takes two requests before you see the result of
136  your changes. Requests that are dropped due to ACL don't trigger reloads.
137 </para>
138 <para>
139  When starting Privoxy on Unix systems, give the location of this
140  file as last argument.  On Windows systems, Privoxy will look for
141  this file with the name 'config.txt' in the current working directory
142  of the Privoxy process.
143 </para>
144
145 <para>
146  <literallayout><!-- funky spacing -->
147
148 II. FORMAT OF THE CONFIGURATION FILE
149 ====================================</literallayout>
150 </para>
151 <para>
152  Configuration lines consist of an initial keyword followed by a list
153  of values, all separated by whitespace (any number of spaces or
154  tabs).  For example,
155 </para>
156 <para>
157  actionsfile default.action
158 </para>
159 <para>
160  Indicates that the actionsfile is named 'default.action'.
161 </para>
162 <para>
163  The '#' indicates a comment.  Any part of a line following a '#' is
164  ignored, except if the '#' is preceded by a '\'.
165 </para>
166 <para>
167  Thus, by placing a # at the start of an existing configuration line,
168  you can make it a comment and it will be treated as if it weren't there. 
169  This is called "commenting out" an option and can be useful. Removing
170  the # again is called "uncommenting".
171 </para>
172 <para>
173  Note that commenting out an option and leaving it at its default
174  are two completely different things! Most options behave very
175  differently when unset. See the "Effect if unset" explanation
176  in each option's description for details.
177 </para>
178 <para>
179  Long lines can be continued on the next line by using a `\' as
180  the last character.
181 </para>
182
183 ]]>
184
185 <!-- ************************************************ -->
186 <!-- The following is common to both outputs (mostly) -->
187 <!-- ************************************************ -->
188
189
190
191 <!--   ~~~~~       New section      ~~~~~     -->
192 <sect2 id="local-set-up">
193 <title>Local Set-up Documentation</title>
194
195   <para>
196     If you intend to operate <application>Privoxy</application> for more users
197     than just yourself, it might be a good idea to let them know how to reach
198     you, what you block and why you do that, your policies, etc.
199    </para>
200
201
202 <!--   ~~~~~       New section      ~~~~~     -->
203 <sect3 renderas="sect4" id="user-manual"><title>user-manual</title>
204 <variablelist>
205  <varlistentry>
206   <term>Specifies:</term>
207   <listitem>
208    <para>
209     Location of the <application>Privoxy</application> User Manual.
210    </para>
211   </listitem>
212  </varlistentry>
213  <varlistentry>
214   <term>Type of value:</term>
215   <listitem>
216    <para>A fully qualified URI</para>
217   </listitem>
218  </varlistentry>
219  <varlistentry>
220   <term>Default value:</term>
221   <listitem>
222    <para><emphasis>Unset</emphasis></para>
223   </listitem>
224  </varlistentry>
225  <varlistentry>
226   <term>Effect if unset:</term>
227   <listitem>
228    <para>
229     <ulink url="http://www.privoxy.org/user-manual/">http://www.privoxy.org/<replaceable class="parameter">version</replaceable>/user-manual/</ulink>
230     will be used, where <replaceable class="parameter">version</replaceable> is the <application>Privoxy</application> version.
231    </para>
232   </listitem>
233  </varlistentry>
234  <varlistentry>
235   <term>Notes:</term>
236   <listitem>
237     <para>
238     The User Manual URI is the single best source of information on 
239     <application>Privoxy</application>, and is used for help links from some
240     of the internal CGI pages. The manual itself is normally packaged with the
241     binary distributions, so you probably want to set this to a locally
242     installed copy. 
243    </para>
244    <para>
245     Examples:
246    </para>
247   <!--
248   <para>
249    Unix, in local filesystem (may not work with all browsers):
250   </para>
251   <para>
252    <screen>&nbsp;&nbsp;user-manual&nbsp;&nbsp;file:///usr/share/doc/privoxy-&p-version;/user-manual/</screen>
253   </para>
254   <para>
255    Windows, in local filesystem, <emphasis>must</emphasis> use forward slash notation:
256   </para>
257   <para>
258    <screen>&nbsp;&nbsp;user-manual&nbsp;&nbsp;file:/c:/some-dir/privoxy-&p-version;/user-manual/</screen>
259   </para>
260   <para>
261    Windows, UNC notation (with forward slashes):
262   </para>
263   <para>
264    <screen>&nbsp;&nbsp;user-manual&nbsp;&nbsp;file://///some-server/some-path/privoxy-&p-version;/user-manual/</screen>
265   </para>
266  --> 
267   <para>
268    The best all purpose solution is simply to put the full local
269    <literal>PATH</literal> to where the <citetitle>User Manual</citetitle> is
270    located:
271   </para>
272   <para>
273    <screen>&nbsp;&nbsp;user-manual&nbsp;&nbsp;/usr/share/doc/privoxy/user-manual</screen>
274   </para>
275   <para>
276    The User Manual is then available to anyone with access to
277    <application>Privoxy</application>, by following the built-in URL:
278    <literal>http://config.privoxy.org/user-manual/</literal>
279    (or the shortcut: <literal>http://p.p/user-manual/</literal>).
280   </para>
281   <para>
282    If the documentation is not on the local system, it can be accessed 
283    from a remote server, as:
284   </para>
285   <para>
286    <screen>&nbsp;&nbsp;user-manual&nbsp;&nbsp;http://example.com/privoxy/user-manual/</screen>
287   </para>
288   <![%user-man;[
289    <!-- this gets hammered in conversion to config. Text repeated below. -->
290   <warning>
291    <para>
292      If set, this option should be <emphasis>the first option in the config
293      file</emphasis>, because it is used while the config file is being read
294      on start-up.
295    </para>
296   </warning>     
297   ]]>
298
299   <![%config-file;[
300    <!-- alternate -->
301    <para>
302     WARNING!!!
303    </para>
304    <blockquote>
305     <para> 
306      If set, this option should be the first option in the config
307      file, because it is used while the config file is being read.
308     </para>
309    </blockquote>
310   ]]>
311
312  </listitem>
313  </varlistentry>
314 </variablelist>
315
316 <![%config-file;[<literallayout>@@#user-manual http://www.privoxy.org/user-manual/</literallayout>]]>
317 </sect3>
318
319
320 <!--   ~~~~~       New section      ~~~~~     -->
321 <sect3 renderas="sect4" id="trust-info-url"><title>trust-info-url</title>
322
323 <variablelist>
324  <varlistentry>
325   <term>Specifies:</term>
326   <listitem>
327    <para>
328     A URL to be displayed in the error page that users will see if access to an untrusted page is denied.    
329    </para>
330   </listitem>
331  </varlistentry>
332  <varlistentry>
333   <term>Type of value:</term>
334   <listitem>
335    <para>URL</para>
336   </listitem>
337  </varlistentry>
338  <varlistentry>
339   <term>Default value:</term>
340   <listitem>
341    <para>Two example URLs are provided</para>
342   </listitem>
343  </varlistentry>
344  <varlistentry>
345   <term>Effect if unset:</term>
346   <listitem>
347    <para>
348     No links are displayed on the "untrusted" error page.
349    </para>
350   </listitem>
351  </varlistentry>
352  <varlistentry>
353   <term>Notes:</term>
354   <listitem>
355    <para>
356     The value of this option only matters if the experimental trust mechanism has been
357     activated. (See <link linkend="trustfile"><emphasis>trustfile</emphasis></link> below.)
358    </para>
359    <para>
360     If you use the trust mechanism, it is a good idea to write up some on-line
361     documentation about your trust policy and to specify the URL(s) here.
362     Use multiple times for multiple URLs.
363    </para>
364    <para>
365     The URL(s) should be added to the trustfile as well, so users don't end up
366     locked out from the information on why they were locked out in the first place!
367    </para>
368   </listitem>
369  </varlistentry>
370 </variablelist>
371
372 <![%config-file;[<literallayout>@@trust-info-url  http://www.example.com/why_we_block.html</literallayout>]]>
373 <![%config-file;[<literallayout>@@trust-info-url  http://www.example.com/what_we_allow.html</literallayout>]]>
374 </sect3>
375
376
377 <!--   ~~~~~       New section      ~~~~~     -->
378 <sect3 renderas="sect4" id="admin-address"><title>admin-address</title>
379
380 <variablelist>
381  <varlistentry>
382   <term>Specifies:</term>
383   <listitem>
384    <para>
385     An email address to reach the <application>Privoxy</application> administrator.
386    </para>
387   </listitem>
388  </varlistentry>
389  <varlistentry>
390   <term>Type of value:</term>
391   <listitem>
392    <para>Email address</para>
393   </listitem>
394  </varlistentry>
395  <varlistentry>
396   <term>Default value:</term>
397   <listitem>
398    <para><emphasis>Unset</emphasis></para>
399   </listitem>
400  </varlistentry>
401  <varlistentry>
402   <term>Effect if unset:</term>
403   <listitem>
404    <para>
405     No email address is displayed on error pages and the CGI user interface.
406    </para>
407   </listitem>
408  </varlistentry>
409  <varlistentry>
410   <term>Notes:</term>
411   <listitem>
412    <para>
413     If both <literal>admin-address</literal> and <literal>proxy-info-url</literal>
414     are unset, the whole "Local Privoxy Support" box on all generated pages will
415     not be shown.
416    </para>  
417   </listitem>
418  </varlistentry>
419 </variablelist>
420
421 <![%config-file;[<literallayout>@@#admin-address privoxy-admin@example.com</literallayout>]]>
422 </sect3>
423
424
425 <!--   ~~~~~       New section      ~~~~~     -->
426 <sect3 renderas="sect4" id="proxy-info-url"><title>proxy-info-url</title>
427
428 <variablelist>
429  <varlistentry>
430   <term>Specifies:</term>
431   <listitem>
432    <para>
433     A URL to documentation about the local <application>Privoxy</application> setup,
434     configuration or policies.
435    </para>
436   </listitem>
437  </varlistentry>
438  <varlistentry>
439   <term>Type of value:</term>
440   <listitem>
441    <para>URL</para>
442   </listitem>
443  </varlistentry>
444  <varlistentry>
445   <term>Default value:</term>
446   <listitem>
447    <para><emphasis>Unset</emphasis></para>
448   </listitem>
449  </varlistentry>
450  <varlistentry>
451   <term>Effect if unset:</term>
452   <listitem>
453    <para>
454     No link to local documentation is displayed on error pages and the CGI user interface.
455    </para>
456   </listitem>
457  </varlistentry>
458  <varlistentry>
459   <term>Notes:</term>
460   <listitem>
461    <para>
462     If both <literal>admin-address</literal> and <literal>proxy-info-url</literal>
463     are unset, the whole "Local Privoxy Support" box on all generated pages will
464     not be shown.
465    </para>  
466    <para>
467     This URL shouldn't be blocked ;-)
468    </para> 
469   </listitem>
470  </varlistentry>
471 </variablelist>
472
473 <![%config-file;[<literallayout>@@#proxy-info-url http://www.example.com/proxy-service.html</literallayout>]]>
474 </sect3>
475
476 </sect2>
477 <!--  ~  End section  ~  -->
478
479
480
481 <!--   ~~~~~       New section      ~~~~~     -->
482
483 <sect2 id="conf-log-loc">
484 <title>Configuration and Log File Locations</title>
485
486 <para>
487  <application>Privoxy</application> can (and normally does) use a number of
488  other files for additional configuration, help and logging.
489  This section of the configuration file tells <application>Privoxy</application>
490  where to find those other files. 
491 </para>
492
493 <para>
494  The user running <application>Privoxy</application>, must have read
495  permission for all configuration files, and write permission to any files
496  that would be modified, such as log files and actions files.
497 </para>
498
499
500 <!--   ~~~~~       New section      ~~~~~     -->
501 <sect3 renderas="sect4" id="confdir"><title>confdir</title>
502
503 <variablelist>
504  <varlistentry>
505   <term>Specifies:</term>
506   <listitem>
507    <para>The directory where the other configuration files are located.</para>
508   </listitem>
509  </varlistentry>
510  <varlistentry>
511   <term>Type of value:</term>
512   <listitem>
513    <para>Path name</para>
514   </listitem>
515  </varlistentry>
516  <varlistentry>
517   <term>Default value:</term>
518   <listitem>
519    <para>/etc/privoxy (Unix) <emphasis>or</emphasis> <application>Privoxy</application> installation dir (Windows) </para>
520   </listitem>
521  </varlistentry>
522  <varlistentry>
523   <term>Effect if unset:</term>
524   <listitem>
525    <para><emphasis>Mandatory</emphasis></para>
526   </listitem>
527  </varlistentry>
528  <varlistentry>
529   <term>Notes:</term>
530   <listitem>
531    <para>
532     No trailing <quote><literal>/</literal></quote>, please.
533    </para>
534   <!-- 
535    This is really outdated and not likely to happen. HB 09/20/06
536    <para>
537     When development goes modular and multi-user, the blocker, filter, and
538     per-user config will be stored in subdirectories of <quote>confdir</quote>.
539     For now, the configuration directory structure is flat, except for 
540     <filename>confdir/templates</filename>, where the HTML templates for CGI 
541     output reside (e.g. <application>Privoxy's</application> 404 error page). 
542    </para>
543   --> 
544   </listitem>
545  </varlistentry>
546 </variablelist>
547
548 <![%config-file;[<literallayout>@@confdir .</literallayout>]]>
549 </sect3>
550
551 <!--   ~~~~~       New section      ~~~~~     -->
552 <sect3 renderas="sect4" id="templdir"><title>templdir</title>
553
554 <variablelist>
555  <varlistentry>
556   <term>Specifies:</term>
557   <listitem>
558    <para>An alternative directory where the templates are loaded from.</para>
559   </listitem>
560  </varlistentry>
561  <varlistentry>
562   <term>Type of value:</term>
563   <listitem>
564    <para>Path name</para>
565   </listitem>
566  </varlistentry>
567  <varlistentry>
568   <term>Default value:</term>
569   <listitem>
570    <para>unset</para>
571   </listitem>
572  </varlistentry>
573  <varlistentry>
574   <term>Effect if unset:</term>
575   <listitem>
576    <para>The templates are assumed to be located in confdir/template.</para>
577   </listitem>
578  </varlistentry>
579  <varlistentry>
580   <term>Notes:</term>
581   <listitem>
582    <para>
583     <application>Privoxy's</application> original templates are usually
584     overwritten with each update. Use this option to relocate customized
585     templates that should be kept. As template variables might change
586     between updates, you shouldn't expect templates to work with
587     <application>Privoxy</application> releases other than the one
588     they were part of, though.
589    </para>
590   </listitem>
591  </varlistentry>
592 </variablelist>
593
594 <![%config-file;[<literallayout>@@#templdir .</literallayout>]]>
595 </sect3>
596
597
598 <!--   ~~~~~       New section      ~~~~~     -->
599 <sect3 renderas="sect4" id="logdir"><title>logdir</title>
600
601 <variablelist>
602  <varlistentry>
603   <term>Specifies:</term>
604   <listitem>
605    <para>
606     The directory where all logging takes place
607     (i.e. where <filename>logfile</filename> and
608     <filename>jarfile</filename> are located).
609    </para>
610   </listitem>
611  </varlistentry>
612  <varlistentry>
613   <term>Type of value:</term>
614   <listitem>
615    <para>Path name</para>
616   </listitem>
617  </varlistentry>
618  <varlistentry>
619   <term>Default value:</term>
620   <listitem>
621    <para>/var/log/privoxy (Unix) <emphasis>or</emphasis> <application>Privoxy</application> installation dir (Windows) </para>
622   </listitem>
623  </varlistentry>
624  <varlistentry>
625   <term>Effect if unset:</term>
626   <listitem>
627    <para><emphasis>Mandatory</emphasis></para>
628   </listitem>
629  </varlistentry>
630  <varlistentry>
631   <term>Notes:</term>
632   <listitem>
633    <para>
634     No trailing <quote><literal>/</literal></quote>, please.
635    </para>
636   </listitem>
637  </varlistentry>
638 </variablelist>
639
640 <![%config-file;[<literallayout>@@logdir .</literallayout>]]>
641 </sect3>
642
643
644 <!--   ~~~~~       New section      ~~~~~     -->
645 <sect3 renderas="sect4" id="actionsfile"><title>
646 actionsfile
647 </title>
648 <anchor id="default.action">
649 <anchor id="standard.action">
650 <anchor id="user.action">
651 <!-- Note: slightly modified this section 04/28/02, hal. See NOTE. -->
652 <variablelist>
653  <varlistentry>
654   <term>Specifies:</term>
655   <listitem>
656    <para>
657     The <link linkend="actions-file">actions file(s)</link> to use
658    </para>
659   </listitem>
660  </varlistentry>
661  <varlistentry>
662   <term>Type of value:</term>
663   <listitem>
664    <para>Complete file name, relative to <literal>confdir</literal></para>
665   </listitem>
666  </varlistentry>
667  <varlistentry>
668   <term>Default values:</term>
669   <listitem>
670    <simplelist>
671     <member>
672      <msgtext><literallayout>  standard.action     # Internal purposes, no editing recommended</literallayout></msgtext>
673     </member>
674     <member>
675      <msgtext><literallayout>  default.action      # Main actions file</literallayout></msgtext>
676     </member>
677     <member>
678      <msgtext><literallayout>  user.action         # User customizations</literallayout></msgtext>
679     </member>
680    </simplelist>
681   </listitem>
682  </varlistentry>
683  <varlistentry>
684   <term>Effect if unset:</term>
685   <listitem>
686    <para>
687     No actions are taken at all. More or less neutral proxying. 
688    </para>
689   </listitem>
690  </varlistentry>
691  <varlistentry>
692   <term>Notes:</term>
693   <listitem>
694    <para>
695     Multiple <literal>actionsfile</literal> lines are permitted, and are in fact recommended!
696    </para>
697    <para> 
698     The default values include <filename>standard.action</filename>, which is used
699     for internal purposes and should be loaded, <filename>default.action</filename>,
700     which is the <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 standard.action  # Internal purpose, recommended</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>). For Red Hat based Linux distributions, a
860     <command>logrotate</command> script has been included.
861    </para> 
862    <para>
863     Any log files must be writable by whatever user <application>Privoxy</application>
864     is being run as (on Unix, default user id is <quote>privoxy</quote>).
865    </para>
866   </listitem>
867  </varlistentry>
868 </variablelist>
869
870 <![%config-file;[<literallayout>@@logfile logfile</literallayout>]]>
871 </sect3>
872
873
874 <!--   ~~~~~       New section      ~~~~~     -->
875 <sect3 renderas="sect4" id="jarfile"><title>jarfile</title>
876
877 <variablelist>
878  <varlistentry>
879   <term>Specifies:</term>
880   <listitem>
881    <para>
882     The file to store intercepted cookies in
883    </para>
884   </listitem>
885  </varlistentry>
886  <varlistentry>
887   <term>Type of value:</term>
888   <listitem>
889    <para>File name, relative to <literal>logdir</literal></para>
890   </listitem>
891  </varlistentry>
892  <varlistentry>
893   <term>Default value:</term>
894   <listitem>
895    <para><emphasis>Unset (commented out)</emphasis>. When activated: jarfile (Unix) <emphasis>or</emphasis> privoxy.jar (Windows).</para>
896   </listitem>
897  </varlistentry>
898  <varlistentry>
899   <term>Effect if unset:</term>
900   <listitem>
901    <para>
902     Intercepted cookies are not stored in a dedicated log file.
903    </para>
904   </listitem>
905  </varlistentry>
906  <varlistentry>
907   <term>Notes:</term>
908   <listitem>
909    <para>
910     The jarfile may grow to ridiculous sizes over time.
911    </para>
912    <para>
913     If debug 8 (show header parsing) is enabled, cookies are
914     also written to the logfile with the rest of the headers.
915     Therefore this option isn't very useful and may be removed
916     in future releases. Please report to the developers if you
917     are still using it.
918    </para>
919   </listitem>
920  </varlistentry>
921 </variablelist>
922
923 <![%config-file;[<literallayout>@@#jarfile jarfile</literallayout>]]>
924 </sect3>
925
926
927 <!--   ~~~~~       New section      ~~~~~     -->
928 <sect3 renderas="sect4" id="trustfile"><title>trustfile</title>
929 <variablelist>
930  <varlistentry>
931   <term>Specifies:</term>
932   <listitem>
933    <para>
934     The name of the trust file to use
935    </para>
936   </listitem>
937  </varlistentry>
938  <varlistentry>
939   <term>Type of value:</term>
940   <listitem>
941    <para>File name, relative to <literal>confdir</literal></para>
942   </listitem>
943  </varlistentry>
944  <varlistentry>
945   <term>Default value:</term>
946   <listitem>
947    <para><emphasis>Unset (commented out)</emphasis>. When activated: trust (Unix) <emphasis>or</emphasis> trust.txt (Windows)</para>
948   </listitem>
949  </varlistentry>
950  <varlistentry>
951   <term>Effect if unset:</term>
952   <listitem>
953    <para>
954     The entire trust mechanism is disabled.
955    </para>
956   </listitem>
957  </varlistentry>
958  <varlistentry>
959   <term>Notes:</term>
960   <listitem>
961    <para>
962     The trust mechanism is an experimental feature for building white-lists and should
963     be used with care. It is <emphasis>NOT</emphasis> recommended for the casual user.
964    </para>
965    <para>
966     If you specify a trust file, <application>Privoxy</application> will only allow
967     access to sites that are specified in the trustfile. Sites can be listed 
968     in one of two ways:
969    </para>
970    <para>
971     Prepending a <literal>~</literal> character limits access to this site 
972     only (and any sub-paths within this site), e.g. 
973     <literal>~www.example.com</literal> allows access to
974     <literal>~www.example.com/features/news.html</literal>, etc. 
975    </para>
976    <para>
977     Or, you can designate sites as <emphasis>trusted referrers</emphasis>, by
978     prepending the name with a <literal>+</literal> character. The effect is that
979     access to untrusted sites will be granted -- but only if a link from this
980     trusted referrer was used to get there. The link target will then be added
981     to the <quote>trustfile</quote> so that future, direct accesses will be
982     granted. Sites added via this mechanism do not become trusted referrers
983     themselves (i.e. they are added with a <literal>~</literal> designation).
984     There is a limit of 512 such entries, after which new entries will not be
985     made.
986    </para>
987    <para>
988     If you use the <literal>+</literal> operator in the trust file, it may grow 
989     considerably over time.
990    </para>
991    <para>
992     It is recommended that <application>Privoxy</application> be compiled with
993     the <literal>--disable-force</literal>, <literal>--disable-toggle</literal> and
994     <literal> --disable-editor</literal> options, if this feature is to be
995     used.
996    </para>
997    <para>
998     Possible applications include limiting Internet access for children.
999    </para>
1000    
1001   </listitem>
1002  </varlistentry>
1003 </variablelist>
1004
1005 <![%config-file;[<literallayout>@@#trustfile trust</literallayout>]]>
1006 </sect3>
1007 </sect2>
1008
1009 <!--  ~  End section  ~  -->
1010
1011 <!--   ~~~~~       New section      ~~~~~     -->
1012 <sect2 id="debugging">
1013 <title>Debugging</title>
1014
1015  <para>
1016   These options are mainly useful when tracing a problem.
1017   Note that you might also want to invoke
1018   <application>Privoxy</application> with the <literal>--no-daemon</literal>
1019   command line option when debugging.
1020  </para>
1021
1022 <sect3 renderas="sect4" id="debug"><title>debug</title>
1023
1024 <variablelist>
1025  <varlistentry>
1026   <term>Specifies:</term>
1027   <listitem>
1028    <para>
1029     Key values that determine what information gets logged.
1030    </para>
1031   </listitem>
1032  </varlistentry>
1033  <varlistentry>
1034   <term>Type of value:</term>
1035   <listitem>
1036    <para>Integer values</para>
1037   </listitem>
1038  </varlistentry>
1039  <varlistentry>
1040   <term>Default value:</term>
1041   <listitem>
1042    <para>0 (i.e.: only fatal errors (that cause Privoxy to exit) are logged)</para>
1043   </listitem>
1044  </varlistentry>
1045  <varlistentry>
1046   <term>Effect if unset:</term>
1047   <listitem>
1048    <para>
1049     Default value is used (see above).
1050    </para>
1051   </listitem>
1052  </varlistentry>
1053  <varlistentry>
1054   <term>Notes:</term>
1055   <listitem>
1056    <para>
1057     The available debug levels are:
1058    </para>
1059    <para>
1060     <programlisting>
1061   debug     1 # log each request destination (and the crunch reason if &my-app; intercepted the request)
1062   debug     2 # show each connection status
1063   debug     4 # show I/O status
1064   debug     8 # show header parsing
1065   debug    16 # log all data written to the network into the logfile
1066   debug    32 # debug force feature
1067   debug    64 # debug regular expression filters
1068   debug   128 # debug redirects
1069   debug   256 # debug GIF de-animation
1070   debug   512 # Common Log Format
1071   debug  2048 # CGI user interface
1072   debug  4096 # Startup banner and warnings.
1073   debug  8192 # Non-fatal errors
1074 </programlisting>
1075    </para>
1076    <para>
1077     To select multiple debug levels, you can either add them or use
1078     multiple <literal>debug</literal> lines.
1079    </para>
1080    <para>
1081     A debug level of 1 is informative because it will show you each request
1082     as it happens. <emphasis>1, 4096 and 8192 are recommended</emphasis>
1083     so that you will notice when things go wrong. The other levels are
1084     probably only of interest if you are hunting down a specific problem.
1085     They can produce a hell of an output (especially 16).
1086     <!-- LOL -->
1087    </para>
1088    <para>
1089     &my-app; used to ship with the debug levels recommended above enabled by
1090     default, but due to privacy concerns 3.0.7 and later are configured to
1091     only log fatal errors.
1092    </para>
1093    <para>
1094     If you are used to the more verbose settings, simply enable the debug lines
1095     below again.
1096    </para>
1097    <para>
1098     If you want to use pure CLF (Common Log Format), you should set <quote>debug
1099     512</quote> <emphasis>ONLY</emphasis> and not enable anything else.
1100    </para>
1101    <para>
1102     <application>Privoxy</application> has a hard-coded limit for the
1103     length of log messages. If it's reached, messages are logged truncated
1104     and marked with <quote>... [too long, truncated]</quote>.
1105    </para>
1106    <para>
1107     Please don't file any support requests without trying to reproduce
1108     the problem with increased debug level first. Once you read the log
1109     messages, you may even be able to solve the problem on your own.
1110    </para>
1111   </listitem>
1112  </varlistentry>
1113 </variablelist>
1114
1115 <![%config-file;[<literallayout>@@#debug     1 # log each request destination (and the crunch reason if &my-app; intercepted the request)</literallayout>]]>
1116 <![%config-file;[<literallayout>@@#debug  4096 # Startup banner and warnings</literallayout>]]>
1117 <![%config-file;[<literallayout>@@#debug  8192 # Non-fatal errors</literallayout>]]>
1118 </sect3>
1119
1120
1121 <!--   ~~~~~       New section      ~~~~~     -->
1122 <sect3 renderas="sect4" id="single-threaded"><title>single-threaded</title>
1123
1124 <variablelist>
1125  <varlistentry>
1126   <term>Specifies:</term>
1127   <listitem>
1128    <para>
1129     Whether to run only one server thread.
1130    </para>
1131   </listitem>
1132  </varlistentry>
1133  <varlistentry>
1134   <term>Type of value:</term>
1135   <listitem>
1136    <para><emphasis>None</emphasis></para>
1137   </listitem>
1138  </varlistentry>
1139  <varlistentry>
1140   <term>Default value:</term>
1141   <listitem>
1142    <para><emphasis>Unset</emphasis></para>
1143   </listitem>
1144  </varlistentry>
1145  <varlistentry>
1146   <term>Effect if unset:</term>
1147   <listitem>
1148    <para>
1149     Multi-threaded (or, where unavailable: forked) operation, i.e. the ability to
1150     serve multiple requests simultaneously.
1151    </para>
1152   </listitem>
1153  </varlistentry>
1154  <varlistentry>
1155   <term>Notes:</term>
1156   <listitem>
1157    <para>
1158     This option is only there for debugging purposes.
1159     <emphasis>It will drastically reduce performance.</emphasis>
1160    </para>
1161   </listitem>
1162  </varlistentry>
1163 </variablelist>
1164
1165 <![%config-file;[<literallayout>@@#single-threaded</literallayout>]]>
1166 </sect3>
1167
1168 <!--   ~~~~~       New section      ~~~~~     -->
1169 <sect3 renderas="sect4" id="hostname"><title>hostname</title>
1170
1171 <variablelist>
1172  <varlistentry>
1173   <term>Specifies:</term>
1174   <listitem>
1175    <para>
1176     The hostname shown on the CGI pages.
1177    </para>
1178   </listitem>
1179  </varlistentry>
1180  <varlistentry>
1181   <term>Type of value:</term>
1182   <listitem>
1183    <para>Text</para>
1184   </listitem>
1185  </varlistentry>
1186  <varlistentry>
1187   <term>Default value:</term>
1188   <listitem>
1189    <para><emphasis>Unset</emphasis></para>
1190   </listitem>
1191  </varlistentry>
1192  <varlistentry>
1193   <term>Effect if unset:</term>
1194   <listitem>
1195    <para>
1196     The hostname provided by the operating system is used.
1197    </para>
1198   </listitem>
1199  </varlistentry>
1200  <varlistentry>
1201   <term>Notes:</term>
1202   <listitem>
1203    <para>
1204     On some misconfigured systems resolving the hostname fails or
1205     takes too much time and slows Privoxy down. Setting a fixed hostname
1206     works around the problem.
1207    </para>
1208    <para>
1209     In other circumstances it might be desirable to show a hostname
1210     other than the one returned by the operating system. For example
1211     if the system has several different hostnames and you don't want
1212     to use the first one.
1213    </para>
1214    <para>
1215     Note that Privoxy does not validate the specified hostname value.
1216    </para>
1217   </listitem>
1218  </varlistentry>
1219 </variablelist>
1220
1221 <![%config-file;[<literallayout>@@#hostname hostname.example.org</literallayout>]]>
1222 </sect3>
1223
1224 </sect2>
1225
1226 <!--  ~  End section  ~  -->
1227
1228
1229 <!--   ~~~~~       New section      ~~~~~     -->
1230 <sect2 id="access-control">
1231 <title>Access Control and Security</title>
1232
1233  <para>
1234   This section of the config file controls the security-relevant aspects
1235   of <application>Privoxy</application>'s configuration.
1236  </para>
1237
1238
1239 <!--   ~~~~~       New section      ~~~~~     -->
1240 <sect3 renderas="sect4" id="listen-address"><title>listen-address</title>
1241
1242 <variablelist>
1243  <varlistentry>
1244   <term>Specifies:</term>
1245   <listitem>
1246    <para>
1247     The IP address and TCP port on which <application>Privoxy</application> will
1248     listen for client requests.
1249    </para>
1250   </listitem>
1251  </varlistentry>
1252  <varlistentry>
1253   <term>Type of value:</term>
1254   <listitem>
1255    <para>[<replaceable class="parameter">IP-Address</replaceable>]:<replaceable class="parameter">Port</replaceable></para>
1256   </listitem>
1257  </varlistentry>
1258
1259  <varlistentry>
1260   <term>Default value:</term>
1261   <listitem>
1262    <para>127.0.0.1:8118</para>
1263   </listitem>
1264  </varlistentry>
1265  <varlistentry>
1266   <term>Effect if unset:</term>
1267   <listitem>
1268    <para>
1269     Bind to 127.0.0.1 (localhost), port 8118. This is suitable and recommended for
1270     home users who run <application>Privoxy</application> on the same machine as
1271     their browser.
1272    </para>
1273   </listitem>
1274  </varlistentry>
1275  <varlistentry>
1276   <term>Notes:</term>
1277   <listitem>
1278    <para>
1279     You will need to configure your browser(s) to this proxy address and port.
1280    </para>
1281    <para>
1282     If you already have another service running on port 8118, or if you want to
1283     serve requests from other machines (e.g. on your local network) as well, you
1284     will need to override the default.
1285    </para>
1286    <para>
1287     If you leave out the IP address, <application>Privoxy</application> will
1288     bind to all interfaces (addresses) on your machine and may become reachable
1289     from the Internet. In that case, consider using <link
1290     linkend="acls">access control lists</link> (ACL's, see below), and/or
1291     a firewall.
1292    </para>
1293    <para>
1294     If you open <application>Privoxy</application> to untrusted users, you will
1295     also want to make sure that the following actions are disabled:  <literal><link
1296     linkend="enable-edit-actions">enable-edit-actions</link></literal> and
1297     <literal><link linkend="enable-remote-toggle">enable-remote-toggle</link></literal>
1298    </para>
1299   </listitem>
1300  </varlistentry>
1301  <varlistentry>
1302   <term>Example:</term>
1303   <listitem>
1304    <para>
1305      Suppose you are running <application>Privoxy</application> on
1306      a machine which has the address 192.168.0.1 on your local private network
1307      (192.168.0.0) and has another outside connection with a different address.
1308      You want it to serve requests from inside only:
1309    </para>
1310    <para>
1311     <programlisting>
1312   listen-address  192.168.0.1:8118
1313 </programlisting>
1314    </para>
1315   </listitem>
1316  </varlistentry>
1317 </variablelist>
1318
1319 <![%config-file;[<literallayout>@@listen-address  127.0.0.1:8118</literallayout>]]>
1320 </sect3>
1321
1322
1323 <!--   ~~~~~       New section      ~~~~~     -->
1324 <sect3 renderas="sect4" id="toggle"><title>toggle</title>
1325
1326 <variablelist>
1327  <varlistentry>
1328   <term>Specifies:</term>
1329   <listitem>
1330    <para>
1331     Initial state of "toggle" status
1332    </para>
1333   </listitem>
1334  </varlistentry>
1335  <varlistentry>
1336   <term>Type of value:</term>
1337   <listitem>
1338    <para>1 or 0</para>
1339   </listitem>
1340  </varlistentry>
1341  <varlistentry>
1342   <term>Default value:</term>
1343   <listitem>
1344    <para>1</para>
1345   </listitem>
1346  </varlistentry>
1347  <varlistentry>
1348   <term>Effect if unset:</term>
1349   <listitem>
1350    <para>
1351     Act as if toggled on
1352    </para>
1353   </listitem>
1354  </varlistentry>
1355  <varlistentry>
1356   <term>Notes:</term>
1357   <listitem>
1358    <para>
1359     If set to 0, <application>Privoxy</application> will start in
1360     <quote>toggled off</quote> mode, i.e. mostly behave like a normal,
1361     content-neutral proxy with both ad blocking and content filtering
1362     disabled. See <literal>enable-remote-toggle</literal> below.
1363 <!--
1364     This is not really useful
1365     anymore, since toggling is much easier via <ulink
1366     url="http://config.privoxy.org/toggle">the web interface</ulink> than via
1367     editing the <filename>conf</filename> file.
1368
1369     Remote toggling is now disabled by default. fk 2007-11-07)
1370 -->
1371    </para>
1372    <para>
1373     The windows version will only display the toggle icon in the system tray
1374     if this option is present.
1375    </para>
1376   </listitem>
1377  </varlistentry>
1378 </variablelist>
1379
1380 <![%config-file;[<literallayout>@@toggle  1</literallayout>]]>
1381 </sect3>
1382
1383
1384 <!--   ~~~~~       New section      ~~~~~     -->
1385 <sect3 renderas="sect4" id="enable-remote-toggle"><title>enable-remote-toggle</title>
1386 <variablelist>
1387  <varlistentry>
1388   <term>Specifies:</term>
1389   <listitem>
1390    <para>
1391     Whether or not the <ulink url="http://config.privoxy.org/toggle">web-based toggle
1392     feature</ulink> may be used
1393    </para>
1394   </listitem>
1395  </varlistentry>
1396  <varlistentry>
1397   <term>Type of value:</term>
1398   <listitem>
1399    <para>0 or 1</para>
1400   </listitem>
1401  </varlistentry>
1402  <varlistentry>
1403   <term>Default value:</term>
1404   <listitem>
1405    <para>0</para>
1406   </listitem>
1407  </varlistentry>
1408  <varlistentry>
1409   <term>Effect if unset:</term>
1410   <listitem>
1411    <para>
1412     The web-based toggle feature is disabled.
1413    </para>
1414   </listitem>
1415  </varlistentry>
1416  <varlistentry>
1417   <term>Notes:</term>
1418   <listitem>
1419    <para>
1420     When toggled off, <application>Privoxy</application> mostly acts like a normal,
1421     content-neutral proxy, i.e. doesn't block ads or filter content.
1422    </para>
1423    <para>
1424     Access to the toggle feature can <emphasis>not</emphasis> be
1425     controlled separately by <quote>ACLs</quote> or HTTP authentication,
1426     so that everybody who can access <application>Privoxy</application> (see
1427     <quote>ACLs</quote> and <literal>listen-address</literal> above) can
1428     toggle it for all users. So this option is <emphasis>not recommended</emphasis>
1429     for multi-user environments with untrusted users.
1430    </para>
1431    <para>
1432     Note that malicious client side code (e.g Java) is also
1433     capable of using this option.
1434    </para>
1435    <para>
1436     As a lot of <application>Privoxy</application> users don't read
1437     documentation, this feature is disabled by default.
1438    </para>
1439    <para>
1440     Note that you must have compiled <application>Privoxy</application> with
1441     support for this feature, otherwise this option has no effect. 
1442    </para>
1443   </listitem>
1444  </varlistentry>
1445 </variablelist>
1446
1447 <![%config-file;[<literallayout>@@enable-remote-toggle  0</literallayout>]]>
1448 </sect3>
1449
1450
1451 <!--   ~~~~~       New section      ~~~~~     -->
1452 <sect3 renderas="sect4" id="enable-remote-http-toggle"><title>enable-remote-http-toggle</title>
1453 <variablelist>
1454  <varlistentry>
1455   <term>Specifies:</term>
1456   <listitem>
1457    <para>
1458     Whether or not Privoxy recognizes special HTTP headers to change its behaviour.
1459    </para>
1460   </listitem>
1461  </varlistentry>
1462  <varlistentry>
1463   <term>Type of value:</term>
1464   <listitem>
1465    <para>0 or 1</para>
1466   </listitem>
1467  </varlistentry>
1468  <varlistentry>
1469   <term>Default value:</term>
1470   <listitem>
1471    <para>0</para>
1472   </listitem>
1473  </varlistentry>
1474  <varlistentry>
1475   <term>Effect if unset:</term>
1476   <listitem>
1477    <para>
1478     Privoxy ignores special HTTP headers.
1479    </para>
1480   </listitem>
1481  </varlistentry>
1482  <varlistentry>
1483   <term>Notes:</term>
1484   <listitem>
1485    <para>
1486     When toggled on, the client can change <application>Privoxy's</application>
1487     behaviour by setting special HTTP headers. Currently the only supported
1488     special header is <quote>X-Filter: No</quote>, to disable filtering for
1489     the ongoing request, even if it is enabled in one of the action files.
1490    </para>
1491    <para>
1492     This feature is disabled by default. If you are using
1493     <application>Privoxy</application> in a environment with trusted clients,
1494     you may enable this feature at your discretion. Note that malicious client
1495     side code (e.g Java) is also capable of using this feature.
1496    </para>
1497    <para>
1498     This option will be removed in future releases as it has been obsoleted
1499     by the more general header taggers.
1500    </para>
1501   </listitem>
1502  </varlistentry>
1503 </variablelist>
1504
1505 <![%config-file;[<literallayout>@@enable-remote-http-toggle  0</literallayout>]]>
1506 </sect3>
1507
1508
1509 <!--   ~~~~~       New section      ~~~~~     -->
1510 <sect3 renderas="sect4" id="enable-edit-actions"><title>enable-edit-actions</title>
1511 <variablelist>
1512  <varlistentry>
1513   <term>Specifies:</term>
1514   <listitem>
1515    <para>
1516     Whether or not the <ulink url="http://config.privoxy.org/show-status">web-based actions
1517     file editor</ulink> may be used
1518    </para>
1519   </listitem>
1520  </varlistentry>
1521  <varlistentry>
1522   <term>Type of value:</term>
1523   <listitem>
1524    <para>0 or 1</para>
1525   </listitem>
1526  </varlistentry>
1527  <varlistentry>
1528   <term>Default value:</term>
1529   <listitem>
1530    <para>0</para>
1531   </listitem>
1532  </varlistentry>
1533  <varlistentry>
1534   <term>Effect if unset:</term>
1535   <listitem>
1536    <para>
1537     The web-based actions file editor is disabled.
1538    </para>
1539   </listitem>
1540  </varlistentry>
1541  <varlistentry>
1542   <term>Notes:</term>
1543   <listitem>
1544    <para>
1545     Access to the editor can <emphasis>not</emphasis> be
1546     controlled separately by <quote>ACLs</quote> or HTTP authentication,
1547     so that everybody who can access <application>Privoxy</application> (see
1548     <quote>ACLs</quote> and <literal>listen-address</literal> above) can
1549     modify its configuration for all users.
1550    </para>
1551    <para>
1552     This option is <emphasis>not recommended</emphasis> for environments
1553     with untrusted users and as a lot of <application>Privoxy</application>
1554     users don't read documentation, this feature is disabled by default.
1555    </para>
1556    <para>
1557     Note that malicious client side code (e.g Java) is also
1558     capable of using the actions editor and you shouldn't enable
1559     this options unless you understand the consequences and are
1560     sure your browser is configured correctly.
1561    </para>
1562    <para>
1563     Note that you must have compiled <application>Privoxy</application> with
1564     support for this feature, otherwise this option has no effect. 
1565    </para>
1566   </listitem>
1567  </varlistentry>
1568 </variablelist>
1569
1570 <![%config-file;[<literallayout>@@enable-edit-actions 0</literallayout>]]>
1571 </sect3>
1572
1573
1574 <sect3 renderas="sect4" id="enforce-blocks"><title>enforce-blocks</title>
1575 <variablelist>
1576  <varlistentry>
1577   <term>Specifies:</term>
1578   <listitem>
1579    <para>
1580     Whether the user is allowed to ignore blocks and can <quote>go there anyway</quote>.
1581    </para>
1582   </listitem>
1583  </varlistentry>
1584  <varlistentry>
1585   <term>Type of value:</term>
1586   <listitem>
1587    <para>
1588     <replaceable>0 or 1</replaceable>
1589    </para>
1590   </listitem>
1591  </varlistentry>
1592  <varlistentry>
1593   <term>Default value:</term>
1594   <listitem>
1595    <para><emphasis>0</emphasis></para>
1596   </listitem>
1597  </varlistentry>
1598  <varlistentry>
1599   <term>Effect if unset:</term>
1600   <listitem>
1601    <para>
1602     Blocks are not enforced.
1603    </para>
1604   </listitem>
1605  </varlistentry>
1606  <varlistentry>
1607   <term>Notes:</term>
1608   <listitem>
1609    <para>
1610     <application>Privoxy</application> is mainly used to block and filter
1611     requests as a service to the user, for example to block ads and other
1612     junk that clogs the pipes. <application>Privoxy's</application> configuration
1613     isn't perfect and sometimes innocent pages are blocked. In this situation it
1614     makes sense to allow the user to enforce the request and have
1615     <application>Privoxy</application> ignore the block.
1616    </para>
1617    <para>
1618     In the default configuration <application>Privoxy's</application>
1619     <quote>Blocked</quote> page contains a <quote>go there anyway</quote>
1620     link to adds a special string (the force prefix) to the request URL.
1621     If that link is used, <application>Privoxy</application> will
1622     detect the force prefix, remove it again and let the request pass.
1623    </para>
1624    <para>
1625     Of course <application>Privoxy</application> can also be used to enforce
1626     a network policy. In that case the user obviously should not be able to
1627     bypass any blocks, and that's what the <quote>enforce-blocks</quote>
1628     option is for. If it's enabled, <application>Privoxy</application> hides
1629     the <quote>go there anyway</quote> link. If the user adds the force
1630     prefix by hand, it will not be accepted and the circumvention attempt
1631     is logged.
1632    </para>
1633   </listitem>
1634  </varlistentry>
1635  <varlistentry>
1636   <term>Examples:</term>
1637   <listitem>
1638    <para>
1639     enforce-blocks 1
1640    </para>
1641   </listitem>
1642  </varlistentry>
1643 </variablelist>
1644 <![%config-file;[<literallayout>@@enforce-blocks 0</literallayout>]]>
1645 </sect3>
1646
1647
1648 <!--   ~~~~~       New section      ~~~~~     -->
1649 <sect3 renderas="sect4" id="acls"><title>
1650 ACLs: permit-access and deny-access</title>
1651 <anchor id="permit-access">
1652 <anchor id="deny-access">
1653
1654 <variablelist>
1655  <varlistentry>
1656   <term>Specifies:</term>
1657   <listitem>
1658    <para>
1659     Who can access what.
1660    </para>
1661   </listitem>
1662  </varlistentry>
1663  <varlistentry>
1664   <term>Type of value:</term>
1665   <listitem>
1666    <para>
1667     <replaceable class="parameter">src_addr</replaceable>[/<replaceable class="parameter">src_masklen</replaceable>]
1668     [<replaceable class="parameter">dst_addr</replaceable>[/<replaceable class="parameter">dst_masklen</replaceable>]]
1669    </para>
1670    <para>
1671     Where <replaceable class="parameter">src_addr</replaceable> and 
1672    <replaceable class="parameter">dst_addr</replaceable> are IP addresses in dotted decimal notation or valid
1673     DNS names, and <replaceable class="parameter">src_masklen</replaceable> and
1674     <replaceable class="parameter">dst_masklen</replaceable> are subnet masks in CIDR notation, i.e. integer
1675     values from 2 to 30 representing the length (in bits) of the network address. The masks and the whole
1676     destination part are optional.
1677    </para>
1678   </listitem>
1679  </varlistentry>
1680  <varlistentry>
1681   <term>Default value:</term>
1682   <listitem>
1683    <para><emphasis>Unset</emphasis></para>
1684   </listitem>
1685  </varlistentry>
1686  <varlistentry>
1687   <term>Effect if unset:</term>
1688   <listitem>
1689    <para>
1690     Don't restrict access further than implied by <literal>listen-address</literal>
1691    </para>
1692   </listitem>
1693  </varlistentry>
1694  <varlistentry>
1695   <term>Notes:</term>
1696   <listitem>
1697    <para>
1698     Access controls are included at the request of ISPs and systems
1699     administrators, and <emphasis>are not usually needed by individual users</emphasis>.
1700     For a typical home user, it will normally suffice to ensure that 
1701     <application>Privoxy</application> only listens on the localhost
1702     (127.0.0.1) or internal (home) network address by means of the
1703     <link linkend="listen-address"><emphasis>listen-address</emphasis></link>
1704     option. 
1705    </para>
1706    <para>
1707     Please see the warnings in the FAQ that <application>Privoxy</application>
1708     is not intended to be a substitute for a firewall or to encourage anyone
1709     to defer addressing basic security weaknesses.
1710    </para>
1711    <para>
1712     Multiple ACL lines are OK.
1713     If any ACLs are specified, <application>Privoxy</application> only talks
1714     to IP addresses that match at least one <literal>permit-access</literal> line
1715     and don't match any subsequent <literal>deny-access</literal> line. In other words, the
1716     last match wins, with the default being <literal>deny-access</literal>.
1717    </para>
1718    <para>
1719     If <application>Privoxy</application> is using a forwarder (see <literal>forward</literal> below)
1720     for a particular destination URL, the <replaceable class="parameter">dst_addr</replaceable>
1721     that is examined is the address of the forwarder and <emphasis>NOT</emphasis> the address
1722     of the ultimate target. This is necessary because it may be impossible for the local
1723     <application>Privoxy</application> to determine the IP address of the
1724     ultimate target (that's often what gateways are used for).
1725    </para>
1726    <para>
1727     You should prefer using IP addresses over DNS names, because the address lookups take
1728     time. All DNS names must resolve! You can <emphasis>not</emphasis> use domain patterns
1729     like <quote>*.org</quote> or partial domain names. If a DNS name resolves to multiple
1730     IP addresses, only the first one is used.
1731    </para>
1732    <para>
1733     Denying access to particular sites by ACL may have undesired side effects
1734     if the site in question is hosted on a machine which also hosts other sites
1735     (most sites are).
1736    </para>
1737   </listitem>
1738  </varlistentry>
1739  <varlistentry>
1740   <term>Examples:</term>
1741   <listitem>
1742    <para>
1743     Explicitly define the default behavior if no ACL and
1744     <literal>listen-address</literal> are set: <quote>localhost</quote>
1745     is OK. The absence of a <replaceable class="parameter">dst_addr</replaceable> implies that
1746     <emphasis>all</emphasis> destination addresses are OK:
1747    </para>
1748    <para>
1749     <screen>
1750   permit-access  localhost
1751 </screen>
1752    </para>
1753    <para>
1754     Allow any host on the same class C subnet as www.privoxy.org access to
1755     nothing but www.example.com (or other domains hosted on the same system):
1756    </para>
1757    <para>
1758     <screen>
1759   permit-access  www.privoxy.org/24 www.example.com/32
1760 </screen>
1761    </para>
1762    <para>
1763     Allow access from any host on the 26-bit subnet 192.168.45.64 to anywhere,
1764     with the exception that 192.168.45.73 may not access the IP address behind
1765     www.dirty-stuff.example.com:
1766    </para>
1767    <para>
1768     <screen>
1769   permit-access  192.168.45.64/26
1770   deny-access    192.168.45.73    www.dirty-stuff.example.com
1771 </screen>
1772    </para>
1773   </listitem>
1774  </varlistentry>
1775 </variablelist>
1776 </sect3>
1777
1778
1779 <!--   ~~~~~       New section      ~~~~~     -->
1780 <sect3 renderas="sect4" id="buffer-limit"><title>buffer-limit</title>
1781
1782 <variablelist>
1783  <varlistentry>
1784   <term>Specifies:</term>
1785   <listitem>
1786    <para>
1787     Maximum size of the buffer for content filtering.
1788    </para>
1789   </listitem>
1790  </varlistentry>
1791  <varlistentry>
1792   <term>Type of value:</term>
1793   <listitem>
1794    <para>Size in Kbytes</para>
1795   </listitem>
1796  </varlistentry>
1797  <varlistentry>
1798   <term>Default value:</term>
1799   <listitem>
1800    <para>4096</para>
1801   </listitem>
1802  </varlistentry>
1803  <varlistentry>
1804   <term>Effect if unset:</term>
1805   <listitem>
1806    <para>
1807     Use a 4MB (4096 KB) limit.
1808    </para>
1809   </listitem>
1810  </varlistentry>
1811  <varlistentry>
1812   <term>Notes:</term>
1813   <listitem>
1814    <para>
1815     For content filtering, i.e. the <literal>+filter</literal> and
1816     <literal>+deanimate-gif</literal> actions, it is necessary that 
1817     <application>Privoxy</application> buffers the entire document body.
1818     This can be potentially dangerous, since a server could just keep sending
1819     data indefinitely and wait for your RAM to exhaust -- with nasty consequences.
1820     Hence this option.
1821    </para>
1822    <para>
1823     When a document buffer size reaches the <literal>buffer-limit</literal>, it is
1824     flushed to the client unfiltered and no further attempt to
1825     filter the rest of the document is made. Remember that there may be multiple threads
1826     running, which might require up to <literal>buffer-limit</literal> Kbytes
1827     <emphasis>each</emphasis>, unless you have enabled <quote>single-threaded</quote>
1828     above.
1829    </para>
1830   </listitem>
1831  </varlistentry>
1832 </variablelist>
1833
1834 <![%config-file;[<literallayout>@@buffer-limit 4096</literallayout>]]>
1835 </sect3>
1836
1837 </sect2>
1838
1839 <!--  ~  End section  ~  -->
1840
1841
1842 <!--   ~~~~~       New section      ~~~~~     -->
1843
1844 <sect2 id="forwarding">
1845 <title>Forwarding</title>
1846
1847 <para>
1848  This feature allows routing of HTTP requests through a chain of
1849  multiple proxies.
1850 </para>
1851 <para>
1852  Forwarding can be used to chain Privoxy with a caching proxy to speed
1853  up browsing. Using a parent proxy may also be necessary if the machine
1854  that <application>Privoxy</application> runs on has no direct Internet access.
1855 </para>
1856 <para>
1857  Note that parent proxies can severely decrease your privacy level.
1858  For example a parent proxy could add your IP address to the request
1859  headers and if it's a caching proxy it may add the <quote>Etag</quote>
1860  header to revalidation requests again, even though you configured Privoxy
1861  to remove it. It may also ignore Privoxy's header time randomization and use the
1862  original values which could be used by the server as cookie replacement
1863  to track your steps between visits.
1864 </para>
1865
1866 <para>
1867  Also specified here are SOCKS proxies. <application>Privoxy</application>
1868  supports the SOCKS 4 and SOCKS 4A protocols.
1869 </para>
1870
1871 <sect3 renderas="sect4" id="forward"><title>forward</title>
1872 <variablelist>
1873  <varlistentry>
1874   <term>Specifies:</term>
1875   <listitem>
1876    <para>
1877     To which parent HTTP proxy specific requests should be routed.
1878    </para>
1879   </listitem>
1880  </varlistentry>
1881  <varlistentry>
1882   <term>Type of value:</term>
1883   <listitem>
1884    <para>
1885     <replaceable class="parameter">target_pattern</replaceable>
1886     <replaceable class="parameter">http_parent</replaceable>[:<replaceable class="parameter">port</replaceable>]
1887    </para>
1888    <para>
1889     where <replaceable class="parameter">target_pattern</replaceable> is a <link linkend="af-patterns">URL pattern</link> 
1890     that specifies to which requests (i.e. URLs) this forward rule shall apply. Use <literal>/</literal> to
1891     denote <quote>all URLs</quote>.
1892     <replaceable class="parameter">http_parent</replaceable>[:<replaceable class="parameter">port</replaceable>]
1893     is the DNS name or IP address of the parent HTTP proxy through which the requests should be forwarded,
1894     optionally followed by its listening port (default: 8080).
1895     Use a single dot (<literal>.</literal>) to denote <quote>no forwarding</quote>.
1896    </para>
1897   </listitem>
1898  </varlistentry>
1899  <varlistentry>
1900   <term>Default value:</term>
1901   <listitem>
1902    <para><emphasis>Unset</emphasis></para>
1903   </listitem>
1904  </varlistentry>
1905  <varlistentry>
1906   <term>Effect if unset:</term>
1907   <listitem>
1908    <para>
1909     Don't use parent HTTP proxies.
1910    </para>
1911   </listitem>
1912  </varlistentry>
1913  <varlistentry>
1914   <term>Notes:</term>
1915   <listitem>
1916    <para>
1917     If <replaceable class="parameter">http_parent</replaceable> is <quote>.</quote>, then requests are not
1918     forwarded to another HTTP proxy but are made directly to the web servers.
1919    </para>
1920    <para>
1921     Multiple lines are OK, they are checked in sequence, and the last match wins.
1922    </para>
1923   </listitem>
1924  </varlistentry>
1925  <varlistentry>
1926   <term>Examples:</term>
1927   <listitem>
1928    <para>
1929     Everything goes to an example parent proxy, except SSL on port 443 (which it doesn't handle):
1930    </para>
1931    <para>
1932     <screen>
1933   forward   /      parent-proxy.example.org:8080
1934   forward   :443   .
1935 </screen>
1936    </para>
1937    <para>
1938     Everything goes to our example ISP's caching proxy, except for requests
1939     to that ISP's sites:
1940    </para>
1941    <para>
1942     <screen>
1943   forward   /                  caching-proxy.isp.example.net:8000
1944   forward   .isp.example.net   .
1945 </screen>
1946    </para>
1947   </listitem>
1948  </varlistentry>
1949 </variablelist>
1950 </sect3>
1951
1952
1953 <!--   ~~~~~       New section      ~~~~~     -->
1954 <sect3 renderas="sect4" id="socks"><title>
1955 forward-socks4, forward-socks4a and forward-socks5</title>
1956 <anchor id="forward-socks4">
1957 <anchor id="forward-socks4a">
1958
1959 <variablelist>
1960  <varlistentry>
1961   <term>Specifies:</term>
1962   <listitem>
1963    <para>
1964     Through which SOCKS proxy (and optionally to which parent HTTP proxy) specific requests should be routed.
1965    </para>
1966   </listitem>
1967  </varlistentry>
1968  <varlistentry>
1969   <term>Type of value:</term>
1970   <listitem>
1971    <para>
1972     <replaceable class="parameter">target_pattern</replaceable>
1973     <replaceable class="parameter">socks_proxy</replaceable>[:<replaceable class="parameter">port</replaceable>]
1974     <replaceable class="parameter">http_parent</replaceable>[:<replaceable class="parameter">port</replaceable>]
1975    </para>
1976    <para>
1977     where <replaceable class="parameter">target_pattern</replaceable> is a
1978     <link linkend="af-patterns">URL pattern</link> that specifies to which
1979     requests (i.e. URLs) this forward rule shall apply. Use <literal>/</literal> to
1980     denote <quote>all URLs</quote>. <replaceable class="parameter">http_parent</replaceable>
1981     and <replaceable class="parameter">socks_proxy</replaceable>
1982     are IP addresses in dotted decimal notation or valid DNS names
1983     (<replaceable class="parameter">http_parent</replaceable>
1984     may be <quote>.</quote> to denote <quote>no HTTP forwarding</quote>), and the optional 
1985     <replaceable class="parameter">port</replaceable> parameters are TCP ports,
1986     i.e. integer values from 1 to 65535
1987    </para>
1988   </listitem>
1989  </varlistentry>
1990  <varlistentry>
1991   <term>Default value:</term>
1992   <listitem>
1993    <para><emphasis>Unset</emphasis></para>
1994   </listitem>
1995  </varlistentry>
1996  <varlistentry>
1997   <term>Effect if unset:</term>
1998   <listitem>
1999    <para>
2000     Don't use SOCKS proxies.
2001    </para>
2002   </listitem>
2003  </varlistentry>
2004  <varlistentry>
2005   <term>Notes:</term>
2006   <listitem>
2007    <para>
2008     Multiple lines are OK, they are checked in sequence, and the last match wins.
2009    </para>
2010    <para>
2011     The difference between <literal>forward-socks4</literal> and <literal>forward-socks4a</literal>
2012     is that in the SOCKS 4A protocol, the DNS resolution of the target hostname happens on the SOCKS
2013     server, while in SOCKS 4 it happens locally.
2014    </para>
2015    <para>
2016     With <literal>forward-socks5</literal> the DNS resolution will happen on the remote server as well.
2017    </para>
2018    <para>
2019     If <replaceable class="parameter">http_parent</replaceable> is <quote>.</quote>, then requests are not
2020     forwarded to another HTTP proxy but are made (HTTP-wise) directly to the web servers, albeit through
2021     a SOCKS proxy.
2022    </para>
2023   </listitem>
2024  </varlistentry>
2025  <varlistentry>
2026   <term>Examples:</term>
2027   <listitem>
2028    <para>
2029      From the company example.com, direct connections are made to all
2030      <quote>internal</quote> domains, but everything outbound goes through
2031      their ISP's proxy by way of example.com's corporate SOCKS 4A gateway to
2032      the Internet.
2033    </para>
2034    <para>
2035     <screen>
2036   forward-socks4a   /              socks-gw.example.com:1080  www-cache.isp.example.net:8080
2037   forward           .example.com   .
2038 </screen>
2039    </para>
2040    <para>
2041     A rule that uses a SOCKS 4 gateway for all destinations but no HTTP parent looks like this:
2042    </para>
2043    <para>
2044     <screen>
2045   forward-socks4   /               socks-gw.example.com:1080  .
2046 </screen>
2047    </para>
2048   
2049     <para>
2050     To chain Privoxy and Tor, both running on the same system, you would use 
2051     something like:
2052    </para>
2053    <para>
2054     <screen>
2055   forward-socks4a   /               127.0.0.1:9050 .
2056 </screen>
2057    </para>
2058
2059     <para>
2060     The public <application>Tor</application> network can't be used to
2061     reach your local network, if you need to access local servers you
2062     therefore might want to make some exceptions:
2063    </para>
2064    <para>
2065     <screen>
2066   forward         192.168.*.*/     .
2067   forward            10.*.*.*/     .
2068   forward           127.*.*.*/     .
2069 </screen>
2070    </para>
2071    <para>
2072     Unencrypted connections to systems in these address ranges will
2073     be as (un)secure as the local network is, but the alternative is that you
2074     can't reach the local network through <application>Privoxy</application>
2075     at all. Of course this may actually be desired and there is no reason
2076     to make these exceptions if you aren't sure you need them.
2077    </para>
2078    <para>
2079     If you also want to be able to reach servers in your local network by
2080     using their names, you will need additional exceptions that look like
2081     this:
2082    </para>
2083    <para>
2084     <screen>
2085  forward           localhost/     .
2086 </screen>
2087    </para>
2088
2089   </listitem>
2090  </varlistentry>
2091 </variablelist>
2092 </sect3>
2093
2094 <![%user-man;[     <!-- not included in config due to length -->
2095 <!--   ~~~~~       New section      ~~~~~     -->
2096 <sect3 renderas="sect4" id="advanced-forwarding-examples"><title>Advanced Forwarding Examples</title>
2097
2098 <para>
2099  If you have links to multiple ISPs that provide various special content 
2100  only to their subscribers, you can configure multiple <application>Privoxies</application>
2101  which have connections to the respective ISPs to act as forwarders to each other, so that
2102  <emphasis>your</emphasis> users can see the internal content of all ISPs.
2103 </para>
2104
2105 <para>
2106  Assume that host-a has a PPP connection to isp-a.example.net. And host-b has a PPP connection to
2107  isp-b.example.org. Both run <application>Privoxy</application>. Their forwarding
2108  configuration can look like this:
2109 </para>
2110
2111 <para>
2112  host-a:
2113 </para>
2114
2115 <para>
2116  <screen>
2117   forward    /           .
2118   forward    .isp-b.example.net  host-b:8118
2119 </screen>
2120 </para>
2121
2122 <para>
2123  host-b:
2124 </para>
2125
2126 <para>
2127  <screen>
2128   forward    /           .
2129   forward    .isp-a.example.org  host-a:8118
2130 </screen>
2131 </para>
2132
2133 <para>
2134  Now, your users can set their browser's proxy to use either
2135  host-a or host-b and be able to browse the internal content
2136  of both isp-a and isp-b.
2137 </para>
2138
2139 <para>
2140  If you intend to chain <application>Privoxy</application> and 
2141  <application>squid</application> locally, then chaining as 
2142  <literal>browser -> squid -> privoxy</literal> is the recommended way. 
2143 </para>
2144
2145 <para>
2146  Assuming that <application>Privoxy</application> and <application>squid</application>
2147  run on the same box, your <application>squid</application> configuration could then look like this:
2148 </para>
2149
2150 <para>
2151  <screen>
2152   # Define Privoxy as parent proxy (without ICP) 
2153   cache_peer 127.0.0.1 parent 8118 7 no-query 
2154
2155   # Define ACL for protocol FTP 
2156   acl ftp proto FTP 
2157
2158   # Do not forward FTP requests to Privoxy
2159   always_direct allow ftp 
2160
2161   # Forward all the rest to Privoxy
2162   never_direct allow all</screen>
2163 </para>
2164
2165 <para>
2166  You would then need to change your browser's proxy settings to <application>squid</application>'s address and port.
2167  Squid normally uses port 3128. If unsure consult <literal>http_port</literal> in <filename>squid.conf</filename>.
2168 </para>
2169
2170 <para>
2171  You could just as well decide to only forward requests you suspect
2172  of leading to Windows executables through a virus-scanning parent proxy,
2173  say, on <literal>antivir.example.com</literal>, port 8010:
2174 </para>
2175
2176 <para>
2177  <screen>
2178   forward   /                          .
2179   forward   /.*\.(exe|com|dll|zip)$    antivir.example.com:8010</screen> 
2180 </para>
2181
2182 </sect3>
2183 ]]>
2184
2185 <sect3 renderas="sect4" id="forwarded-connect-retries"><title>forwarded-connect-retries</title>
2186 <variablelist>
2187  <varlistentry>
2188   <term>Specifies:</term>
2189   <listitem>
2190    <para>
2191     How often Privoxy retries if a forwarded connection request fails. 
2192    </para>
2193   </listitem>
2194  </varlistentry>
2195  <varlistentry>
2196   <term>Type of value:</term>
2197   <listitem>
2198    <para>
2199     <replaceable class="parameter">Number of retries.</replaceable>
2200    </para>
2201   </listitem>
2202  </varlistentry>
2203  <varlistentry>
2204   <term>Default value:</term>
2205   <listitem>
2206    <para><emphasis>0</emphasis></para>
2207   </listitem>
2208  </varlistentry>
2209  <varlistentry>
2210   <term>Effect if unset:</term>
2211   <listitem>
2212    <para>
2213     Connections forwarded through other proxies are treated like direct connections and no retry attempts are made.
2214    </para>
2215   </listitem>
2216  </varlistentry>
2217  <varlistentry>
2218   <term>Notes:</term>
2219   <listitem>
2220    <para>
2221     <replaceable class="parameter">forwarded-connect-retries</replaceable> is mainly interesting
2222     for socks4a connections, where <application>Privoxy</application> can't detect why the connections failed.
2223     The connection might have failed because of a DNS timeout in which case a retry makes sense,
2224     but it might also have failed because the server doesn't exist or isn't reachable. In this
2225     case the retry will just delay the appearance of Privoxy's error message.
2226    </para>
2227    <para>
2228     Note that in the context of this option, <quote>forwarded connections</quote> includes all connections
2229     that Privoxy forwards through other proxies. This option is not limited to the HTTP CONNECT method.
2230    </para>
2231    <para>
2232     Only use this option, if you are getting lots of forwarding-related error messages
2233     that go away when you try again manually. Start with a small value and check Privoxy's
2234     logfile from time to time, to see how many retries are usually needed.
2235    </para>
2236   </listitem>
2237  </varlistentry>
2238  <varlistentry>
2239   <term>Examples:</term>
2240   <listitem>
2241    <para>
2242     forwarded-connect-retries 1
2243    </para>
2244   </listitem>
2245  </varlistentry>
2246 </variablelist>
2247 <![%config-file;[<literallayout>@@forwarded-connect-retries  0</literallayout>]]>
2248 </sect3>
2249
2250 <sect3 renderas="sect4" id="accept-intercepted-requests"><title>accept-intercepted-requests</title>
2251 <variablelist>
2252  <varlistentry>
2253   <term>Specifies:</term>
2254   <listitem>
2255    <para>
2256     Whether intercepted requests should be treated as valid.
2257    </para>
2258   </listitem>
2259  </varlistentry>
2260  <varlistentry>
2261   <term>Type of value:</term>
2262   <listitem>
2263    <para>
2264     <replaceable>0 or 1</replaceable>
2265    </para>
2266   </listitem>
2267  </varlistentry>
2268  <varlistentry>
2269   <term>Default value:</term>
2270   <listitem>
2271    <para><emphasis>0</emphasis></para>
2272   </listitem>
2273  </varlistentry>
2274  <varlistentry>
2275   <term>Effect if unset:</term>
2276   <listitem>
2277    <para>
2278     Only proxy requests are accepted, intercepted requests are treated as invalid.
2279    </para>
2280   </listitem>
2281  </varlistentry>
2282  <varlistentry>
2283   <term>Notes:</term>
2284   <listitem>
2285    <para>
2286     If you don't trust your clients and want to force them
2287     to use <application>Privoxy</application>, enable this
2288     option and configure your packet filter to redirect outgoing
2289     HTTP connections into <application>Privoxy</application>. 
2290    </para>
2291    <para>
2292     Make sure that <application>Privoxy's</application> own requests
2293     aren't redirected as well. Additionally take care that
2294     <application>Privoxy</application> can't intentionally connect
2295     to itself, otherwise you could run into redirection loops if
2296     <application>Privoxy's</application> listening port is reachable
2297     by the outside or an attacker has access to the pages you visit.
2298    </para>
2299   </listitem>
2300  </varlistentry>
2301  <varlistentry>
2302   <term>Examples:</term>
2303   <listitem>
2304    <para>
2305     accept-intercepted-requests 1
2306    </para>
2307   </listitem>
2308  </varlistentry>
2309 </variablelist>
2310 <![%config-file;[<literallayout>@@accept-intercepted-requests 0</literallayout>]]>
2311 </sect3>
2312
2313 <sect3 renderas="sect4" id="allow-cgi-request-crunching"><title>allow-cgi-request-crunching</title>
2314 <variablelist>
2315  <varlistentry>
2316   <term>Specifies:</term>
2317   <listitem>
2318    <para>
2319     Whether requests to <application>Privoxy's</application> CGI pages can be blocked or redirected.
2320    </para>
2321   </listitem>
2322  </varlistentry>
2323  <varlistentry>
2324   <term>Type of value:</term>
2325   <listitem>
2326    <para>
2327     <replaceable>0 or 1</replaceable>
2328    </para>
2329   </listitem>
2330  </varlistentry>
2331  <varlistentry>
2332   <term>Default value:</term>
2333   <listitem>
2334    <para><emphasis>0</emphasis></para>
2335   </listitem>
2336  </varlistentry>
2337  <varlistentry>
2338   <term>Effect if unset:</term>
2339   <listitem>
2340    <para>
2341     <application>Privoxy</application> ignores block and redirect actions for its CGI pages.
2342    </para>
2343   </listitem>
2344  </varlistentry>
2345  <varlistentry>
2346   <term>Notes:</term>
2347   <listitem>
2348    <para>
2349     By default <application>Privoxy</application> ignores block or redirect actions
2350     for its CGI pages. Intercepting these requests can be useful in multi-user
2351     setups to implement fine-grained access control, but it can also render the complete
2352     web interface useless and make debugging problems painful if done without care.
2353    </para>
2354    <para>
2355     Don't enable this option unless you're sure that you really need it.
2356    </para>
2357   </listitem>
2358  </varlistentry>
2359  <varlistentry>
2360   <term>Examples:</term>
2361   <listitem>
2362    <para>
2363     allow-cgi-request-crunching 1
2364    </para>
2365   </listitem>
2366  </varlistentry>
2367 </variablelist>
2368 <![%config-file;[<literallayout>@@allow-cgi-request-crunching 0</literallayout>]]>
2369 </sect3>
2370
2371 <sect3 renderas="sect4" id="split-large-forms"><title>split-large-forms</title>
2372 <variablelist>
2373  <varlistentry>
2374   <term>Specifies:</term>
2375   <listitem>
2376    <para>
2377     Whether the CGI interface should stay compatible with broken HTTP clients.
2378    </para>
2379   </listitem>
2380  </varlistentry>
2381  <varlistentry>
2382   <term>Type of value:</term>
2383   <listitem>
2384    <para>
2385     <replaceable>0 or 1</replaceable>
2386    </para>
2387   </listitem>
2388  </varlistentry>
2389  <varlistentry>
2390   <term>Default value:</term>
2391   <listitem>
2392    <para><emphasis>0</emphasis></para>
2393   </listitem>
2394  </varlistentry>
2395  <varlistentry>
2396   <term>Effect if unset:</term>
2397   <listitem>
2398    <para>
2399     The CGI form generate long GET URLs.
2400    </para>
2401   </listitem>
2402  </varlistentry>
2403  <varlistentry>
2404   <term>Notes:</term>
2405   <listitem>
2406    <para>
2407     <application>Privoxy's</application> CGI forms can lead to
2408     rather long URLs. This isn't a problem as far as the HTTP
2409     standard is concerned, but it can confuse clients with arbitrary
2410     URL length limitations.
2411    </para>
2412    <para>
2413     Enabling split-large-forms causes <application>Privoxy</application>
2414     to divide big forms into smaller ones to keep the URL length down.
2415     It makes editing a lot less convenient and you can no longer
2416     submit all changes at once, but at least it works around this
2417     browser bug.
2418    </para>
2419    <para>
2420     If you don't notice any editing problems, there is no reason
2421     to enable this option, but if one of the submit buttons appears
2422     to be broken, you should give it a try.
2423    </para>
2424   </listitem>
2425  </varlistentry>
2426  <varlistentry>
2427   <term>Examples:</term>
2428   <listitem>
2429    <para>
2430     split-large-forms 1
2431    </para>
2432   </listitem>
2433  </varlistentry>
2434 </variablelist>
2435 <![%config-file;[<literallayout>@@split-large-forms 0</literallayout>]]>
2436 </sect3>
2437
2438 </sect2>
2439
2440 <!--  ~  End section  ~  -->
2441
2442
2443 <!--   ~~~~~       New section      ~~~~~     -->
2444
2445 <sect2 id="windows-gui">
2446 <title>Windows GUI Options</title>
2447 <para>
2448  <application>Privoxy</application> has a number of options specific to the
2449  Windows GUI interface:
2450 </para>
2451
2452 <anchor id="activity-animation">
2453 <![%config-file;[<para>@@</para>]]> <!-- for spacing -->
2454 <para>
2455  If <quote>activity-animation</quote> is set to 1, the
2456  <application>Privoxy</application> icon will animate when
2457  <quote>Privoxy</quote> is active. To turn off, set to 0.
2458 </para>
2459
2460 <![%config-file;[<literallayout>@@#activity-animation   1</literallayout>]]>
2461 <![%user-man;[
2462 <para>
2463  <literal>
2464   <msgtext> 
2465    <literallayout>
2466   <emphasis>activity-animation   1</emphasis>
2467    </literallayout>
2468   </msgtext> 
2469  </literal>
2470 </para>
2471 ]]>
2472
2473 <anchor id="log-messages">
2474 <![%config-file;[<para>@@</para>]]> <!-- for spacing -->
2475 <para>
2476  If <quote>log-messages</quote> is set to 1,
2477  <application>Privoxy</application> will log messages to the console
2478  window:
2479 </para>
2480
2481 <![%config-file;[<literallayout>@@#log-messages   1</literallayout>]]>
2482 <![%user-man;[
2483 <para>
2484  <literal>
2485   <msgtext> 
2486    <literallayout>
2487   <emphasis>log-messages       1</emphasis>
2488    </literallayout>
2489   </msgtext> 
2490  </literal>
2491 </para>
2492 ]]>
2493
2494 <anchor id="log-buffer-size">
2495 <![%config-file;[<para>@@</para>]]> <!-- for spacing -->
2496 <para> 
2497  If <quote>log-buffer-size</quote> is set to 1, the size of the log buffer,
2498  i.e. the amount of memory used for the log messages displayed in the
2499  console window, will be limited to <quote>log-max-lines</quote> (see below).
2500 </para>
2501
2502 <para>
2503  Warning: Setting this to 0 will result in the buffer to grow infinitely and
2504  eat up all your memory!
2505 </para>
2506
2507 <![%config-file;[<literallayout>@@#log-buffer-size 1</literallayout>]]>
2508 <![%user-man;[
2509 <para>
2510  <literal>
2511   <msgtext> 
2512    <literallayout>
2513   <emphasis>log-buffer-size      1</emphasis>
2514    </literallayout>
2515   </msgtext> 
2516  </literal>
2517 </para>
2518 ]]>
2519
2520 <anchor id="log-max-lines">
2521 <![%config-file;[<para>@@</para>]]> <!-- for spacing -->
2522 <para>
2523  <application>log-max-lines</application> is the maximum number of lines held
2524  in the log buffer. See above.
2525 </para>
2526
2527 <![%config-file;[<literallayout>@@#log-max-lines 200</literallayout>]]>
2528 <![%user-man;[
2529 <para>
2530  <literal>
2531   <msgtext> 
2532    <literallayout>
2533   <emphasis>log-max-lines      200</emphasis>
2534    </literallayout>
2535   </msgtext> 
2536  </literal>
2537 </para>
2538 ]]>
2539
2540 <anchor id="log-highlight-messages">
2541 <![%config-file;[<para>@@</para>]]> <!-- for spacing -->
2542 <para>
2543  If <quote>log-highlight-messages</quote> is set to 1,
2544  <application>Privoxy</application> will highlight portions of the log
2545  messages with a bold-faced font:
2546 </para>
2547
2548 <![%config-file;[<literallayout>@@#log-highlight-messages 1</literallayout>]]>
2549 <![%user-man;[
2550 <para>
2551  <literal>
2552   <msgtext> 
2553    <literallayout>
2554   <emphasis>log-highlight-messages   1</emphasis>
2555    </literallayout>
2556   </msgtext> 
2557  </literal>
2558 </para>
2559 ]]>
2560
2561 <anchor id="log-font-name">
2562 <![%config-file;[<para>@@</para>]]> <!-- for spacing -->
2563 <para>
2564  The font used in the console window:
2565 </para>
2566
2567 <![%config-file;[<literallayout>@@#log-font-name Comic Sans MS</literallayout>]]>
2568 <![%user-man;[
2569 <para>
2570  <literal>
2571   <msgtext> 
2572    <literallayout>
2573   <emphasis>log-font-name        Comic Sans MS</emphasis>
2574    </literallayout>
2575   </msgtext> 
2576  </literal>
2577 </para>
2578 ]]>
2579
2580 <anchor id="log-font-size">
2581 <![%config-file;[<para>@@</para>]]> <!-- for spacing -->
2582 <para>
2583  Font size used in the console window:
2584 </para>
2585
2586 <![%config-file;[<literallayout>@@#log-font-size 8</literallayout>]]>
2587 <![%user-man;[
2588 <para>
2589  <literal>
2590   <msgtext> 
2591    <literallayout>
2592   <emphasis>log-font-size        8</emphasis>
2593    </literallayout>
2594   </msgtext> 
2595  </literal>
2596 </para>
2597 ]]>
2598
2599 <anchor id="show-on-task-bar">
2600 <![%config-file;[<para>@@</para>]]> <!-- for spacing -->
2601 <para>  
2602  <quote>show-on-task-bar</quote> controls whether or not
2603  <application>Privoxy</application> will appear as a button on the Task bar
2604  when minimized:
2605 </para>
2606
2607 <![%config-file;[<literallayout>@@#show-on-task-bar 0</literallayout>]]>
2608 <![%user-man;[
2609 <para>
2610  <literal>
2611   <msgtext> 
2612    <literallayout>
2613   <emphasis>show-on-task-bar     0</emphasis>
2614    </literallayout>
2615   </msgtext> 
2616  </literal>
2617 </para>
2618 ]]>
2619
2620 <anchor id="close-button-minimizes">
2621 <![%config-file;[<para>@@</para>]]> <!-- for spacing -->
2622 <para>
2623  If <quote>close-button-minimizes</quote> is set to 1, the Windows close
2624  button will minimize <application>Privoxy</application> instead of closing
2625  the program (close with the exit option on the File menu).
2626 </para>
2627
2628 <![%config-file;[<literallayout>@@#close-button-minimizes 1</literallayout>]]>
2629 <![%user-man;[
2630 <para>
2631  <literal>
2632   <msgtext> 
2633    <literallayout>
2634   <emphasis>close-button-minimizes  1</emphasis>
2635    </literallayout>
2636   </msgtext> 
2637  </literal>
2638 </para>
2639 ]]>
2640
2641 <anchor id="hide-console">
2642 <![%config-file;[<para>@@</para>]]> <!-- for spacing -->
2643 <para>
2644  The <quote>hide-console</quote> option is specific to the MS-Win console
2645  version of <application>Privoxy</application>. If this option is used,
2646  <application>Privoxy</application> will disconnect from and hide the
2647  command console.
2648 </para>
2649
2650 <![%config-file;[<literallayout>@@#hide-console</literallayout>]]>
2651 <![%user-man;[
2652 <para>
2653  <literal>
2654   <msgtext> 
2655    <literallayout>
2656   #<emphasis>hide-console</emphasis>
2657    </literallayout>
2658   </msgtext> 
2659  </literal>
2660 </para>
2661 ]]>
2662
2663 </sect2>
2664 </sect1>
2665
2666 <!-- end config content common to both outputs -->
2667
2668 <![%config-file;[
2669 <!-- These are dummy anchors to keep the processor quiet            -->
2670 <!-- when building config-file only (ie. they are used in u-m only) -->
2671 <sect1 label="">
2672 <title></title>
2673 <anchor id="filter">
2674 <anchor id="filter-file">
2675 <anchor id="regex">
2676 <anchor id="actions-file">
2677 <anchor id="af-patterns">
2678 </sect1>
2679 ]]>
2680
2681 <!-- eof p-config.sgml -->