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