8223117d61b1d8ca8b9a8027dc2cc53ccf6ec8eb
[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.8 2006/09/06 02:17:53 hal9 Exp $
7
8  Copyright (C) 2001-2006 Privoxy Developers <developers@privoxy.org>
9  See LICENSE.
10
11  ========================================================================
12  NOTE: Please read developer-manual/documentation.html before touching 
13  anything in this, or other Privoxy documentation.
14  ========================================================================
15
16  
17  This file contains all the config file comments and options. It used to 
18  build both the user-manual config sections, and all of config (yes, the main
19  config file) itself.
20
21  Rationale: This is broken up into two files since a file with a prolog 
22  (DTD, etc) cannot be sourced as a secondary file. config.sgml is basically
23  a wrapper for this file.
24
25  IMPORTANT:
26
27  OPTIONS: The actual options are included in this file and prefixed with 
28  '@@', and processed by the Makefile to strip the '@@'. Default options 
29  that should appear commented out should be listed as: '@@#OPTION'. 
30  Otherwise, as '@@OPTION'. Example:
31
32   @@listen-address  127.0.0.1:8118
33
34  The Makefile does significant other processing too. The final results 
35  should be checked to make sure that the perl processing does not 
36  fubar something!!! Makefile processing requires w3m, fmt (shell line
37  formatter), and perl.
38  
39
40  This file is included into:
41
42    user-manual.sgml
43    config   (the actual Privoxy config file)
44
45 -->
46
47 <![%user-man;[
48 <!-- This part only goes into user-manual -->
49 <sect1 id="config">
50 <title>The Main Configuration File</title>
51
52 <para>
53  Again, the main configuration file is named <filename>config</filename> on
54  Linux/Unix/BSD and OS/2, and <filename>config.txt</filename> on Windows.
55  Configuration lines consist of an initial keyword followed by a list of
56  values, all separated by whitespace (any number of spaces or tabs). For
57  example:
58 </para>
59
60 <para>
61  <literal>
62   <msgtext> 
63    <literallayout>
64   <emphasis>confdir /etc/privoxy</emphasis></literallayout>
65   </msgtext>
66  </literal> 
67 </para>
68
69 <para>
70  Assigns the value <literal>/etc/privoxy</literal> to the option
71  <literal>confdir</literal> and thus indicates that the configuration
72  directory is named <quote>/etc/privoxy/</quote>.
73 </para>
74
75 <para>
76  All options in the config file except for <literal>confdir</literal> and
77  <literal>logdir</literal> are optional. Watch out in the below description
78  for what happens if you leave them unset.
79 </para>
80
81 <para>
82  The main config file controls all aspects of <application>Privoxy</application>'s
83  operation that are not location dependent (i.e. they apply universally, no matter
84  where you may be surfing).
85 </para>
86
87 ]]>
88
89
90 <![%config-file;[
91 <!-- This part only goes into the config file -->
92 <sect1 id="config">
93 <title>
94  @@TITLE<!-- between the @@ is stripped by Makefile -->@@
95  Sample Configuration File for Privoxy v&p-version;
96 </title>
97 <para>
98  $Id: p-config.sgml,v 2.8 2006/09/06 02:17:53 hal9 Exp $
99 </para>
100 <para>
101 Copyright (C) 2001-2006 Privoxy Developers http://privoxy.org
102 </para>
103
104 <para>
105  <literallayout>
106 #################################################################
107                                                                 #
108                     Table of Contents                           #
109                                                                 #
110       I. INTRODUCTION                                           #
111      II. FORMAT OF THE CONFIGURATION FILE                       #
112                                                                 #
113       1. CONFIGURATION AND LOG FILE LOCATIONS                   #
114       2. LOCAL SET-UP DOCUMENTATION                             #
115       3. DEBUGGING                                              #
116       4. ACCESS CONTROL AND SECURITY                            #
117       5. FORWARDING                                             #
118       6. WINDOWS GUI OPTIONS                                    #
119                                                                 #
120 #################################################################
121  </literallayout>
122 </para>
123
124 <literallayout>I. INTRODUCTION
125  ===============  <!-- fuck this madness --></literallayout>
126
127 <para>
128  This file holds the Privoxy configuration.  If you modify this
129  file, you will need to send a couple of requests (of any kind) to the proxy
130  before any changes take effect.
131 </para>
132 <para>
133  When starting Privoxy on Unix systems, give the name of this
134  file as an argument.  On Windows systems, Privoxy will look for
135  this file with the name 'config.txt' in the same directory where
136  Privoxy is installed.
137 </para>
138
139 <para>
140  <literallayout><!-- funky spacing -->
141
142 II. FORMAT OF THE CONFIGURATION FILE
143 ====================================</literallayout>
144 </para>
145 <para>
146  Configuration lines consist of an initial keyword followed by a list
147  of values, all separated by whitespace (any number of spaces or
148  tabs).  For example,
149 </para>
150 <para>
151  actionsfile default.action
152 </para>
153 <para>
154  Indicates that the actionsfile is named 'default.action'.
155 </para>
156 <para>
157  The '#' indicates a comment.  Any part of a line following a '#' is
158  ignored, except if the '#' is preceded by a '\'.
159 </para>
160 <para>
161  Thus, by placing a # at the start of an existing configuration line,
162  you can make it a comment and it will be treated as if it weren't there. 
163  This is called "commenting out" an option and can be useful.
164 </para>
165 <para>
166  Note that commenting out and option and leaving it at its default
167  are two completely different things! Most options behave very
168  differently when unset. See the the "Effect if unset" explanation
169  in each option's description for details.
170 </para>
171 <para>
172  Long lines can be continued on the next line by using a `\' as
173  the last character.
174 </para>
175
176 ]]>
177
178 <!-- ************************************************ -->
179 <!-- The following is common to both outputs (mostly) -->
180 <!-- ************************************************ -->
181
182 <!--   ~~~~~       New section      ~~~~~     -->
183
184 <sect2 id="conf-log-loc">
185 <title>Configuration and Log File Locations</title>
186
187 <para>
188  <application>Privoxy</application> can (and normally does) use a number of
189  other files for additional configuration, help and logging.
190  This section of the configuration file tells <application>Privoxy</application>
191  where to find those other files. 
192 </para>
193
194 <para>
195  The user running <application>Privoxy</application>, must have read
196  permission for all configuration files, and write permission to any files
197  that would be modified, such as log files and actions files.
198 </para>
199
200
201 <!--   ~~~~~       New section      ~~~~~     -->
202 <sect3 renderas="sect4" id="confdir"><title>confdir</title>
203
204 <variablelist>
205  <varlistentry>
206   <term>Specifies:</term>
207   <listitem>
208    <para>The directory where the other configuration files are located</para>
209   </listitem>
210  </varlistentry>
211  <varlistentry>
212   <term>Type of value:</term>
213   <listitem>
214    <para>Path name</para>
215   </listitem>
216  </varlistentry>
217  <varlistentry>
218   <term>Default value:</term>
219   <listitem>
220    <para>/etc/privoxy (Unix) <emphasis>or</emphasis> <application>Privoxy</application> installation dir (Windows) </para>
221   </listitem>
222  </varlistentry>
223  <varlistentry>
224   <term>Effect if unset:</term>
225   <listitem>
226    <para><emphasis>Mandatory</emphasis></para>
227   </listitem>
228  </varlistentry>
229  <varlistentry>
230   <term>Notes:</term>
231   <listitem>
232    <para>
233     No trailing <quote><literal>/</literal></quote>, please
234    </para>
235    <para>
236     When development goes modular and multi-user, the blocker, filter, and
237     per-user config will be stored in subdirectories of <quote>confdir</quote>.
238     For now, the configuration directory structure is flat, except for 
239     <filename>confdir/templates</filename>, where the HTML templates for CGI 
240     output reside (e.g. <application>Privoxy's</application> 404 error page). 
241    </para>
242   </listitem>
243  </varlistentry>
244 </variablelist>
245
246 <![%config-file;[<literallayout>@@confdir .</literallayout>]]>
247 </sect3>
248
249
250 <!--   ~~~~~       New section      ~~~~~     -->
251 <sect3 renderas="sect4" id="logdir"><title>logdir</title>
252
253 <variablelist>
254  <varlistentry>
255   <term>Specifies:</term>
256   <listitem>
257    <para>
258     The directory where all logging takes place (i.e. where <filename>logfile</filename> and 
259     <filename>jarfile</filename> are located) 
260    </para>
261   </listitem>
262  </varlistentry>
263  <varlistentry>
264   <term>Type of value:</term>
265   <listitem>
266    <para>Path name</para>
267   </listitem>
268  </varlistentry>
269  <varlistentry>
270   <term>Default value:</term>
271   <listitem>
272    <para>/var/log/privoxy (Unix) <emphasis>or</emphasis> <application>Privoxy</application> installation dir (Windows) </para>
273   </listitem>
274  </varlistentry>
275  <varlistentry>
276   <term>Effect if unset:</term>
277   <listitem>
278    <para><emphasis>Mandatory</emphasis></para>
279   </listitem>
280  </varlistentry>
281  <varlistentry>
282   <term>Notes:</term>
283   <listitem>
284    <para>
285     No trailing <quote><literal>/</literal></quote>, please
286    </para>
287   </listitem>
288  </varlistentry>
289 </variablelist>
290
291 <![%config-file;[<literallayout>@@logdir .</literallayout>]]>
292 </sect3>
293
294
295 <!--   ~~~~~       New section      ~~~~~     -->
296 <sect3 renderas="sect4" id="actionsfile"><title>
297 actionsfile
298 </title>
299 <anchor id="default.action">
300 <anchor id="standard.action">
301 <anchor id="user.action">
302 <!-- Note: slightly modified this section 04/28/02, hal. See NOTE. -->
303 <variablelist>
304  <varlistentry>
305   <term>Specifies:</term>
306   <listitem>
307    <para>
308     The <link linkend="actions-file">actions file(s)</link> to use
309    </para>
310   </listitem>
311  </varlistentry>
312  <varlistentry>
313   <term>Type of value:</term>
314   <listitem>
315    <para>File name, relative to <literal>confdir</literal>, without the <literal>.action</literal> suffix</para>
316   </listitem>
317  </varlistentry>
318  <varlistentry>
319   <term>Default values:</term>
320   <listitem>
321    <simplelist>
322     <member>
323      <msgtext><literallayout>  standard     # Internal purposes, no editing recommended</literallayout></msgtext>
324     </member>
325     <member>
326      <msgtext><literallayout>  default      # Main actions file</literallayout></msgtext>
327     </member>
328     <member>
329      <msgtext><literallayout>  user         # User customizations</literallayout></msgtext>
330     </member>
331    </simplelist>
332   </listitem>
333  </varlistentry>
334  <varlistentry>
335   <term>Effect if unset:</term>
336   <listitem>
337    <para>
338     No actions are taken at all. Simple neutral proxying. 
339    </para>
340   </listitem>
341  </varlistentry>
342  <varlistentry>
343   <term>Notes:</term>
344   <listitem>
345    <para>
346     Multiple <literal>actionsfile</literal> lines are permitted, and are in fact recommended!
347    </para>
348    <para> 
349     The default values include standard.action, which is used for internal
350     purposes and should be loaded, default.action, which is the
351     <quote>main</quote> actions file maintained by the developers, and
352     <filename>user.action</filename>, where you can make your personal additions.
353    </para>
354    <para> 
355     Actions files are where all the per site and per URL configuration is done for 
356     ad blocking, cookie management, privacy considerations, etc.
357     There is no point in using <application>Privoxy</application> without at 
358     least one actions file.
359    </para>
360   </listitem>
361  </varlistentry>
362 </variablelist>
363
364 <!-- NOTE: alternate markup to make a simpler list doesn't work due to -->
365 <!-- html -> text conversion, blah -->
366 <![%config-file;[<literallayout>@@actionsfile standard  # Internal purpose, recommended</literallayout>]]>
367 <![%config-file;[<literallayout>@@actionsfile default   # Main actions file</literallayout>]]>
368 <![%config-file;[<literallayout>@@actionsfile user      # User customizations</literallayout>]]>
369 </sect3>
370
371 <!--   ~~~~~       New section      ~~~~~     -->
372 <sect3 renderas="sect4" id="filterfile"><title>filterfile</title>
373 <anchor id="default.filter">
374 <variablelist>
375  <varlistentry>
376   <term>Specifies:</term>
377   <listitem>
378    <para>
379     The <link linkend="filter-file">filter file(s)</link> to use
380    </para>
381   </listitem>
382  </varlistentry>
383  <varlistentry>
384   <term>Type of value:</term>
385   <listitem>
386    <para>File name, relative to <literal>confdir</literal></para>
387   </listitem>
388  </varlistentry>
389  <varlistentry>
390   <term>Default value:</term>
391   <listitem>
392    <para>default.filter (Unix) <emphasis>or</emphasis> default.filter.txt (Windows)</para>
393   </listitem>
394  </varlistentry>
395  <varlistentry>
396   <term>Effect if unset:</term>
397   <listitem>
398    <para>
399     No textual content filtering takes place, i.e. all
400     <literal>+<link linkend="filter">filter</link>{<replaceable class="parameter">name</replaceable>}</literal>
401     actions in the actions files are turned neutral.
402    </para>
403   </listitem>
404  </varlistentry>
405  <varlistentry>
406   <term>Notes:</term>
407   <listitem>
408    <para>
409     Multiple <literal>filterfile</literal> lines are permitted.
410    </para>
411    <para>
412     The <link linkend="filter-file">filter files</link> contain content modification
413     rules that use <link linkend="regex">regular expressions</link>. These rules permit
414     powerful changes on the content of Web pages, and optionally the headers
415     as well, e.g., you could disable your favorite JavaScript annoyances,
416     re-write the actual displayed text, or just have some fun 
417     playing buzzword bingo with web pages.
418    </para>
419    <para>
420     The
421     <literal>+<link linkend="filter">filter</link>{<replaceable class="parameter">name</replaceable>}</literal>
422     actions rely on the relevant filter (<replaceable class="parameter">name</replaceable>)
423     to be defined in a filter file!
424    </para>
425    <para>
426     A pre-defined filter file called <filename>default.filter</filename> that contains
427     a number of useful filters for common problems is included in the distribution.
428     See the section on the <literal><link linkend="filter">filter</link></literal>
429     action for a list.
430    </para>
431    <para>
432     It is recommended to place any locally adapted filters into a separate
433     file, such as <filename>user.filter</filename>.
434    </para>
435   </listitem>
436  </varlistentry>
437 </variablelist>
438
439 <![%config-file;[<literallayout>@@filterfile default.filter</literallayout>]]>
440 <![%config-file;[<literallayout>@@#filterfile user.filter      # User customizations</literallayout>]]>
441 </sect3>
442
443
444 <!--   ~~~~~       New section      ~~~~~     -->
445 <sect3 renderas="sect4" id="logfile"><title>logfile</title>
446
447 <variablelist>
448  <varlistentry>
449   <term>Specifies:</term>
450   <listitem>
451    <para>
452     The log file to use
453    </para>
454   </listitem>
455  </varlistentry>
456  <varlistentry>
457   <term>Type of value:</term>
458   <listitem>
459    <para>File name, relative to <literal>logdir</literal></para>
460   </listitem>
461  </varlistentry>
462  <varlistentry>
463   <term>Default value:</term>
464   <listitem>
465    <para>logfile (Unix) <emphasis>or</emphasis> privoxy.log (Windows)</para>
466   </listitem>
467  </varlistentry>
468  <varlistentry>
469   <term>Effect if unset:</term>
470   <listitem>
471    <para>
472     No log file is used, all log messages go to the console (<literal>STDERR</literal>).
473    </para>
474   </listitem>
475  </varlistentry>
476  <varlistentry>
477   <term>Notes:</term>
478   <listitem>
479  <!--
480   removed per bug report 688728 02/20/03 HB
481   
482    <para>
483     The windows version will additionally log to the console.
484    </para>
485   --> 
486    <para>
487     The logfile is where all logging and error messages are written. The level
488     of detail and number of messages are set with the <literal>debug</literal>
489     option (see below). The logfile can be useful for tracking down a problem with
490     <application>Privoxy</application> (e.g., it's not blocking an ad you
491     think it should block) but in most cases you probably will never look at it.
492    </para>
493    <para>
494     Your logfile will grow indefinitely, and you will probably want to
495     periodically remove it.  On Unix systems, you can do this with a cron job
496     (see <quote>man cron</quote>). For Red Hat, a <command>logrotate</command> 
497     script has been included.
498    </para> 
499    <para>
500     On SuSE Linux systems, you can place a line like <quote>/var/log/privoxy.*
501     +1024k 644 nobody.nogroup</quote> in <filename>/etc/logfiles</filename>, with
502     the effect that cron.daily will automatically archive, gzip, and empty the
503     log, when it exceeds 1M size.
504    </para>
505    <para>
506     Any log files must be writable by whatever user <application>Privoxy</application>
507     is being run as (default on UNIX, user id is <quote>privoxy</quote>).
508    </para>
509   </listitem>
510  </varlistentry>
511 </variablelist>
512
513 <![%config-file;[<literallayout>@@logfile logfile</literallayout>]]>
514 </sect3>
515
516
517 <!--   ~~~~~       New section      ~~~~~     -->
518 <sect3 renderas="sect4" id="jarfile"><title>jarfile</title>
519
520 <variablelist>
521  <varlistentry>
522   <term>Specifies:</term>
523   <listitem>
524    <para>
525     The file to store intercepted cookies in
526    </para>
527   </listitem>
528  </varlistentry>
529  <varlistentry>
530   <term>Type of value:</term>
531   <listitem>
532    <para>File name, relative to <literal>logdir</literal></para>
533   </listitem>
534  </varlistentry>
535  <varlistentry>
536   <term>Default value:</term>
537   <listitem>
538    <para>Unset (commented out). When activated: jarfile (Unix) <emphasis>or</emphasis> privoxy.jar (Windows)</para>
539   </listitem>
540  </varlistentry>
541  <varlistentry>
542   <term>Effect if unset:</term>
543   <listitem>
544    <para>
545     Intercepted cookies are not stored in a dedicated log file.
546    </para>
547   </listitem>
548  </varlistentry>
549  <varlistentry>
550   <term>Notes:</term>
551   <listitem>
552    <para>
553     The jarfile may grow to ridiculous sizes over time.
554    </para>
555    <para>
556     If debug 8 (show header parsing) is enabled, cookies are
557     written to the logfile with the rest of the headers.
558    </para>
559   </listitem>
560  </varlistentry>
561 </variablelist>
562
563 <![%config-file;[<literallayout>@@#jarfile jarfile</literallayout>]]>
564 </sect3>
565
566
567 <!--   ~~~~~       New section      ~~~~~     -->
568 <sect3 renderas="sect4" id="trustfile"><title>trustfile</title>
569 <variablelist>
570  <varlistentry>
571   <term>Specifies:</term>
572   <listitem>
573    <para>
574     The trust file to use
575    </para>
576   </listitem>
577  </varlistentry>
578  <varlistentry>
579   <term>Type of value:</term>
580   <listitem>
581    <para>File name, relative to <literal>confdir</literal></para>
582   </listitem>
583  </varlistentry>
584  <varlistentry>
585   <term>Default value:</term>
586   <listitem>
587    <para><emphasis>Unset (commented out)</emphasis>. When activated: trust (Unix) <emphasis>or</emphasis> trust.txt (Windows)</para>
588   </listitem>
589  </varlistentry>
590  <varlistentry>
591   <term>Effect if unset:</term>
592   <listitem>
593    <para>
594     The entire trust mechanism is turned off.
595    </para>
596   </listitem>
597  </varlistentry>
598  <varlistentry>
599   <term>Notes:</term>
600   <listitem>
601    <para>
602     The trust mechanism is an experimental feature for building white-lists and should
603     be used with care. It is <emphasis>NOT</emphasis> recommended for the casual user.
604    </para>
605    <para>
606     If you specify a trust file, <application>Privoxy</application> will only allow
607     access to sites that are specified in the trustfile. Sites can be listed 
608     in one of two ways:
609    </para>
610    <para>
611     Prepending a <literal>~</literal> character limits access to this site 
612     only (and any sub-paths within this site), e.g. 
613     <literal>~www.example.com</literal>. 
614    </para>
615    <para>
616     Or, you can designate sites as <emphasis>trusted referrers</emphasis>, by
617     prepending the name with a <literal>+</literal> character. The effect is that
618     access to untrusted sites will be granted -- but only if a link from this
619     trusted referrer was used. The link target will then be added to the
620     <quote>trustfile</quote> so that future, direct accesses will be granted.
621     Sites added via this mechanism do not become trusted referrers themselves
622     (i.e. they are added with a <literal>~</literal> designation).
623    </para>
624    <para>
625     If you use the <literal>+</literal> operator in the trust file, it may grow 
626     considerably over time.
627    </para>
628    <para>
629     It is recommended that <application>Privoxy</application> be compiled with
630     the <literal>--disable-force</literal>, <literal>--disable-toggle</literal> and
631     <literal> --disable-editor</literal> options, if this feature is to be
632     used.
633    </para>
634    <para>
635     Possible applications include limiting Internet access for children.
636    </para>
637    
638   </listitem>
639  </varlistentry>
640 </variablelist>
641
642 <![%config-file;[<literallayout>@@#trustfile trust</literallayout>]]>
643 </sect3>
644 </sect2>
645
646 <!--  ~  End section  ~  -->
647
648
649 <!--   ~~~~~       New section      ~~~~~     -->
650 <sect2 id="local-set-up">
651 <title>Local Set-up Documentation</title>
652
653   <para>
654     If you intend to operate <application>Privoxy</application> for more users
655     than just yourself, it might be a good idea to let them know how to reach
656     you, what you block and why you do that, your policies, etc.
657    </para>
658
659
660 <!--   ~~~~~       New section      ~~~~~     -->
661 <sect3 renderas="sect4" id="user-manual"><title>user-manual</title>
662 <variablelist>
663  <varlistentry>
664   <term>Specifies:</term>
665   <listitem>
666    <para>
667     Location of the <application>Privoxy</application> User Manual.
668    </para>
669   </listitem>
670  </varlistentry>
671  <varlistentry>
672   <term>Type of value:</term>
673   <listitem>
674    <para>A fully qualified URI</para>
675   </listitem>
676  </varlistentry>
677  <varlistentry>
678   <term>Default value:</term>
679   <listitem>
680    <para><emphasis>Unset</emphasis></para>
681   </listitem>
682  </varlistentry>
683  <varlistentry>
684   <term>Effect if unset:</term>
685   <listitem>
686    <para>
687     <ulink url="http://www.privoxy.org/user-manual/">http://www.privoxy.org/<replaceable class="parameter">version</replaceable>/user-manual/</ulink>
688     will be used, where <replaceable class="parameter">version</replaceable> is the <application>Privoxy</application> version.
689    </para>
690   </listitem>
691  </varlistentry>
692  <varlistentry>
693   <term>Notes:</term>
694   <listitem>
695     <para>
696     The User Manual URI is used for help links from some of the internal CGI pages. 
697     The manual itself is normally packaged with the binary distributions, so you probably want
698     to set this to a locally installed copy. For multi-user setups, you could provide a copy on
699     a local webserver for all your users and use the corresponding URL here.
700    </para>
701    <para>
702     Examples:
703    </para>
704   <para>
705    Unix, in local filesystem:
706   </para>
707   <para>
708    <screen>&nbsp;&nbsp;user-manual&nbsp;&nbsp;file:///usr/share/doc/privoxy-&p-version;/user-manual/</screen>
709   </para>
710   <para>
711    Windows, in local filesystem, <emphasis>must</emphasis> use forward slash notation:
712   </para>
713   <para>
714    <screen>&nbsp;&nbsp;user-manual&nbsp;&nbsp;file:/c:/some-dir/privoxy-&p-version;/user-manual/</screen>
715   </para>
716   <para>
717    Windows, UNC notation (with forward slashes):
718   </para>
719   <para>
720    <screen>&nbsp;&nbsp;user-manual&nbsp;&nbsp;file://///some-server/some-path/privoxy-&p-version;/user-manual/</screen>
721   </para>
722   <para>
723    Any platform, on local webserver (called <quote>local-webserver</quote>):
724   </para>
725   <para>
726    <screen>&nbsp;&nbsp;user-manual&nbsp;&nbsp;http://local-webserver/privoxy-user-manual/</screen>
727   </para>
728   <![%user-man;[
729    <!-- this gets hammered in conversion to config. Text repeated below. -->
730   <warning>
731    <para>
732      If set, this option should be <emphasis>the first option in the config
733      file</emphasis>, because it is used while the config file is being read.
734    </para>
735   </warning>     
736   ]]>
737
738   <![%config-file;[
739    <!-- alternate -->
740    <para>
741     WARNING!!!
742    </para>
743    <blockquote>
744     <para> 
745      If set, this option should be the first option in the config
746      file, because it is used while the config file is being read.
747     </para>
748    </blockquote>
749   ]]>
750
751  </listitem>
752  </varlistentry>
753 </variablelist>
754
755 <![%config-file;[<literallayout>@@#user-manual http://www.privoxy.org/user-manual/</literallayout>]]>
756 </sect3>
757
758
759 <!--   ~~~~~       New section      ~~~~~     -->
760 <sect3 renderas="sect4" id="trust-info-url"><title>trust-info-url</title>
761
762 <variablelist>
763  <varlistentry>
764   <term>Specifies:</term>
765   <listitem>
766    <para>
767     A URL to be displayed in the error page that users will see if access to an untrusted page is denied.    
768    </para>
769   </listitem>
770  </varlistentry>
771  <varlistentry>
772   <term>Type of value:</term>
773   <listitem>
774    <para>URL</para>
775   </listitem>
776  </varlistentry>
777  <varlistentry>
778   <term>Default value:</term>
779   <listitem>
780    <para>Two example URL are provided</para>
781   </listitem>
782  </varlistentry>
783  <varlistentry>
784   <term>Effect if unset:</term>
785   <listitem>
786    <para>
787     No links are displayed on the "untrusted" error page.
788    </para>
789   </listitem>
790  </varlistentry>
791  <varlistentry>
792   <term>Notes:</term>
793   <listitem>
794    <para>
795     The value of this option only matters if the experimental trust mechanism has been
796     activated. (See <link linkend="trustfile"><emphasis>trustfile</emphasis></link> above.)
797    </para>
798    <para>
799     If you use the trust mechanism, it is a good idea to write up some on-line
800     documentation about your trust policy and to specify the URL(s) here.
801     Use multiple times for multiple URLs.
802    </para>
803    <para>
804     The URL(s) should be added to the trustfile as well, so users don't end up
805     locked out from the information on why they were locked out in the first place!
806    </para>
807   </listitem>
808  </varlistentry>
809 </variablelist>
810
811 <![%config-file;[<literallayout>@@trust-info-url  http://www.example.com/why_we_block.html</literallayout>]]>
812 <![%config-file;[<literallayout>@@trust-info-url  http://www.example.com/what_we_allow.html</literallayout>]]>
813 </sect3>
814
815
816 <!--   ~~~~~       New section      ~~~~~     -->
817 <sect3 renderas="sect4" id="admin-address"><title>admin-address</title>
818
819 <variablelist>
820  <varlistentry>
821   <term>Specifies:</term>
822   <listitem>
823    <para>
824     An email address to reach the proxy administrator.
825    </para>
826   </listitem>
827  </varlistentry>
828  <varlistentry>
829   <term>Type of value:</term>
830   <listitem>
831    <para>Email address</para>
832   </listitem>
833  </varlistentry>
834  <varlistentry>
835   <term>Default value:</term>
836   <listitem>
837    <para><emphasis>Unset</emphasis></para>
838   </listitem>
839  </varlistentry>
840  <varlistentry>
841   <term>Effect if unset:</term>
842   <listitem>
843    <para>
844     No email address is displayed on error pages and the CGI user interface.
845    </para>
846   </listitem>
847  </varlistentry>
848  <varlistentry>
849   <term>Notes:</term>
850   <listitem>
851     <para>
852     If both <literal>admin-address</literal> and <literal>proxy-info-url</literal>
853     are unset, the whole "Local Privoxy Support" box on all generated pages will
854     not be shown.
855    </para>  
856   </listitem>
857  </varlistentry>
858 </variablelist>
859
860 <![%config-file;[<literallayout>@@#admin-address privoxy-admin@example.com</literallayout>]]>
861 </sect3>
862
863
864 <!--   ~~~~~       New section      ~~~~~     -->
865 <sect3 renderas="sect4" id="proxy-info-url"><title>proxy-info-url</title>
866
867 <variablelist>
868  <varlistentry>
869   <term>Specifies:</term>
870   <listitem>
871    <para>
872     A URL to documentation about the local <application>Privoxy</application> setup,
873     configuration or policies.
874    </para>
875   </listitem>
876  </varlistentry>
877  <varlistentry>
878   <term>Type of value:</term>
879   <listitem>
880    <para>URL</para>
881   </listitem>
882  </varlistentry>
883  <varlistentry>
884   <term>Default value:</term>
885   <listitem>
886    <para><emphasis>Unset</emphasis></para>
887   </listitem>
888  </varlistentry>
889  <varlistentry>
890   <term>Effect if unset:</term>
891   <listitem>
892    <para>
893     No link to local documentation is displayed on error pages and the CGI user interface.
894    </para>
895   </listitem>
896  </varlistentry>
897  <varlistentry>
898   <term>Notes:</term>
899   <listitem>
900    <para>
901     If both <literal>admin-address</literal> and <literal>proxy-info-url</literal>
902     are unset, the whole "Local Privoxy Support" box on all generated pages will
903     not be shown.
904    </para>  
905    <para>
906     This URL shouldn't be blocked ;-)
907    </para> 
908   </listitem>
909  </varlistentry>
910 </variablelist>
911
912 <![%config-file;[<literallayout>@@#proxy-info-url http://www.example.com/proxy-service.html</literallayout>]]>
913 </sect3>
914
915 </sect2>
916 <!--  ~  End section  ~  -->
917
918 <!--   ~~~~~       New section      ~~~~~     -->
919 <sect2 id="debugging">
920 <title>Debugging</title>
921
922  <para>
923   These options are mainly useful when tracing a problem.
924   Note that you might also want to invoke
925   <application>Privoxy</application> with the <literal>--no-daemon</literal>
926   command line option when debugging.
927  </para>
928
929 <sect3 renderas="sect4" id="debug"><title>debug</title>
930
931 <variablelist>
932  <varlistentry>
933   <term>Specifies:</term>
934   <listitem>
935    <para>
936     Key values that determine what information gets logged to the 
937     <link linkend="logfile"><emphasis>logfile</emphasis></link>.
938    </para>
939   </listitem>
940  </varlistentry>
941  <varlistentry>
942   <term>Type of value:</term>
943   <listitem>
944    <para>Integer values</para>
945   </listitem>
946  </varlistentry>
947  <varlistentry>
948   <term>Default value:</term>
949   <listitem>
950    <para>12289 (i.e.: URLs plus informational and warning messages)</para>
951   </listitem>
952  </varlistentry>
953  <varlistentry>
954   <term>Effect if unset:</term>
955   <listitem>
956    <para>
957     Nothing gets logged.
958    </para>
959   </listitem>
960  </varlistentry>
961  <varlistentry>
962   <term>Notes:</term>
963   <listitem>
964    <para>
965     The available debug levels are:
966    </para>
967    <para>
968     <programlisting>
969   debug         1 # show each GET/POST/CONNECT request
970   debug         2 # show each connection status
971   debug         4 # show I/O status
972   debug         8 # show header parsing
973   debug        16 # log all data into the logfile
974   debug        32 # debug force feature
975   debug        64 # debug regular expression filter
976   debug       128 # debug fast redirects
977   debug       256 # debug GIF de-animation
978   debug       512 # Common Log Format
979   debug      1024 # debug kill pop-ups
980   debug      2048 # CGI user interface
981   debug      4096 # Startup banner and warnings.
982   debug      8192 # Non-fatal errors
983 </programlisting>
984    </para>
985    <para>
986     To select multiple debug levels, you can either add them or use
987     multiple <literal>debug</literal> lines.
988    </para>
989    <para>
990     A debug level of 1 is informative because it will show you each request
991     as it happens. <emphasis>1, 4096 and 8192 are highly recommended</emphasis>
992     so that you will notice when things go wrong. The other levels are probably
993     only of interest if you are hunting down a specific problem. They can produce
994     a hell of an output (especially 16).
995     <!-- LOL -->
996    </para>
997    <para>
998     The reporting of <emphasis>fatal</emphasis> errors (i.e. ones which crash 
999     <application>Privoxy</application>) is always on and cannot be disabled.
1000    </para>
1001    <para>
1002     If you want to use CLF (Common Log Format), you should set <quote>debug
1003     512</quote> <emphasis>ONLY</emphasis> and not enable anything else.
1004    </para>
1005   </listitem>
1006  </varlistentry>
1007 </variablelist>
1008
1009 <![%config-file;[<literallayout>@@debug   1    # show each GET/POST/CONNECT request</literallayout>]]>
1010 <![%config-file;[<literallayout>@@debug   4096 # Startup banner and warnings</literallayout>]]>
1011 <![%config-file;[<literallayout>@@debug   8192 # Errors - *we highly recommended enabling this*</literallayout>]]>
1012 </sect3>
1013
1014
1015 <!--   ~~~~~       New section      ~~~~~     -->
1016 <sect3 renderas="sect4" id="single-threaded"><title>single-threaded</title>
1017
1018 <variablelist>
1019  <varlistentry>
1020   <term>Specifies:</term>
1021   <listitem>
1022    <para>
1023     Whether to run only one server thread
1024    </para>
1025   </listitem>
1026  </varlistentry>
1027  <varlistentry>
1028   <term>Type of value:</term>
1029   <listitem>
1030    <para><emphasis>None</emphasis></para>
1031   </listitem>
1032  </varlistentry>
1033  <varlistentry>
1034   <term>Default value:</term>
1035   <listitem>
1036    <para><emphasis>Unset</emphasis></para>
1037   </listitem>
1038  </varlistentry>
1039  <varlistentry>
1040   <term>Effect if unset:</term>
1041   <listitem>
1042    <para>
1043     Multi-threaded (or, where unavailable: forked) operation, i.e. the ability to
1044     serve multiple requests simultaneously.
1045    </para>
1046   </listitem>
1047  </varlistentry>
1048  <varlistentry>
1049   <term>Notes:</term>
1050   <listitem>
1051    <para>
1052     This option is only there for debug purposes and you should never
1053     need to use it. <emphasis>It will drastically reduce performance.</emphasis>
1054    </para>
1055   </listitem>
1056  </varlistentry>
1057 </variablelist>
1058
1059 <![%config-file;[<literallayout>@@#single-threaded</literallayout>]]>
1060 </sect3>
1061
1062 </sect2>
1063
1064 <!--  ~  End section  ~  -->
1065
1066
1067 <!--   ~~~~~       New section      ~~~~~     -->
1068 <sect2 id="access-control">
1069 <title>Access Control and Security</title>
1070
1071  <para>
1072   This section of the config file controls the security-relevant aspects
1073   of <application>Privoxy</application>'s configuration.
1074  </para>
1075
1076
1077 <!--   ~~~~~       New section      ~~~~~     -->
1078 <sect3 renderas="sect4" id="listen-address"><title>listen-address</title>
1079
1080 <variablelist>
1081  <varlistentry>
1082   <term>Specifies:</term>
1083   <listitem>
1084    <para>
1085     The IP address and TCP port on which <application>Privoxy</application> will
1086     listen for client requests.
1087    </para>
1088   </listitem>
1089  </varlistentry>
1090  <varlistentry>
1091   <term>Type of value:</term>
1092   <listitem>
1093    <para>[<replaceable class="parameter">IP-Address</replaceable>]:<replaceable class="parameter">Port</replaceable></para>
1094   </listitem>
1095  </varlistentry>
1096
1097  <varlistentry>
1098   <term>Default value:</term>
1099   <listitem>
1100    <para>127.0.0.1:8118</para>
1101   </listitem>
1102  </varlistentry>
1103  <varlistentry>
1104   <term>Effect if unset:</term>
1105   <listitem>
1106    <para>
1107     Bind to 127.0.0.1 (localhost), port 8118. This is suitable and recommended for
1108     home users who run <application>Privoxy</application> on the same machine as
1109     their browser.
1110    </para>
1111   </listitem>
1112  </varlistentry>
1113  <varlistentry>
1114   <term>Notes:</term>
1115   <listitem>
1116    <para>
1117     You will need to configure your browser(s) to this proxy address and port.
1118    </para>
1119    <para>
1120     If you already have another service running on port 8118, or if you want to
1121     serve requests from other machines (e.g. on your local network) as well, you
1122     will need to override the default.
1123    </para>
1124    <para>
1125     If you leave out the IP address, <application>Privoxy</application> will
1126     bind to all interfaces (addresses) on your machine and may become reachable
1127     from the Internet. In that case, consider using <link
1128     linkend="acls">access control lists</link> (ACL's, see below), and/or
1129     a firewall.
1130    </para>
1131    <para>
1132     If you open <application>Privoxy</application> to untrusted users, you will
1133     also want to turn off the <literal><link
1134     linkend="enable-edit-actions">enable-edit-actions</link></literal> and
1135     <literal><link linkend="enable-remote-toggle">enable-remote-toggle</link></literal>
1136     options!
1137    </para>
1138   </listitem>
1139  </varlistentry>
1140  <varlistentry>
1141   <term>Example:</term>
1142   <listitem>
1143    <para>
1144      Suppose you are running <application>Privoxy</application> on
1145      a machine which has the address 192.168.0.1 on your local private network
1146      (192.168.0.0) and has another outside connection with a different address.
1147      You want it to serve requests from inside only:
1148    </para>
1149    <para>
1150     <programlisting>
1151   listen-address  192.168.0.1:8118
1152 </programlisting>
1153    </para>
1154   </listitem>
1155  </varlistentry>
1156 </variablelist>
1157
1158 <![%config-file;[<literallayout>@@listen-address  127.0.0.1:8118</literallayout>]]>
1159 </sect3>
1160
1161
1162 <!--   ~~~~~       New section      ~~~~~     -->
1163 <sect3 renderas="sect4" id="toggle"><title>toggle</title>
1164
1165 <variablelist>
1166  <varlistentry>
1167   <term>Specifies:</term>
1168   <listitem>
1169    <para>
1170     Initial state of "toggle" status
1171    </para>
1172   </listitem>
1173  </varlistentry>
1174  <varlistentry>
1175   <term>Type of value:</term>
1176   <listitem>
1177    <para>1 or 0</para>
1178   </listitem>
1179  </varlistentry>
1180  <varlistentry>
1181   <term>Default value:</term>
1182   <listitem>
1183    <para>1</para>
1184   </listitem>
1185  </varlistentry>
1186  <varlistentry>
1187   <term>Effect if unset:</term>
1188   <listitem>
1189    <para>
1190     Act as if toggled on
1191    </para>
1192   </listitem>
1193  </varlistentry>
1194  <varlistentry>
1195   <term>Notes:</term>
1196   <listitem>
1197    <para>
1198     If set to 0, <application>Privoxy</application> will start in
1199     <quote>toggled off</quote> mode, i.e. behave like a normal, content-neutral
1200     proxy where all ad blocking, filtering, etc are disabled. See
1201     <literal>enable-remote-toggle</literal> below. This is not really useful
1202     anymore, since toggling is much easier via <ulink
1203     url="http://config.privoxy.org/toggle">the web interface</ulink> than via
1204     editing the <filename>conf</filename> file.
1205    </para>
1206    <para>
1207     The windows version will only display the toggle icon in the system tray
1208     if this option is present.
1209    </para>
1210   </listitem>
1211  </varlistentry>
1212 </variablelist>
1213
1214 <![%config-file;[<literallayout>@@toggle  1</literallayout>]]>
1215 </sect3>
1216
1217
1218 <!--   ~~~~~       New section      ~~~~~     -->
1219 <sect3 renderas="sect4" id="enable-remote-toggle"><title>enable-remote-toggle</title>
1220 <variablelist>
1221  <varlistentry>
1222   <term>Specifies:</term>
1223   <listitem>
1224    <para>
1225     Whether or not the <ulink url="http://config.privoxy.org/toggle">web-based toggle
1226     feature</ulink> may be used
1227    </para>
1228   </listitem>
1229  </varlistentry>
1230  <varlistentry>
1231   <term>Type of value:</term>
1232   <listitem>
1233    <para>0 or 1</para>
1234   </listitem>
1235  </varlistentry>
1236  <varlistentry>
1237   <term>Default value:</term>
1238   <listitem>
1239    <para>1</para>
1240   </listitem>
1241  </varlistentry>
1242  <varlistentry>
1243   <term>Effect if unset:</term>
1244   <listitem>
1245    <para>
1246     The web-based toggle feature is disabled.
1247    </para>
1248   </listitem>
1249  </varlistentry>
1250  <varlistentry>
1251   <term>Notes:</term>
1252   <listitem>
1253    <para>
1254     When toggled off, <application>Privoxy</application> acts like a normal,
1255     content-neutral proxy, i.e. it acts as if none of the actions applied to
1256     any URL.
1257    </para>
1258    <para>
1259     For the time being, access to the toggle feature can <emphasis>not</emphasis> be
1260     controlled separately by <quote>ACLs</quote> or HTTP authentication,
1261     so that everybody who can access <application>Privoxy</application> (see
1262     <quote>ACLs</quote> and <literal>listen-address</literal> above) can
1263     toggle it for all users. So this option is <emphasis>not recommended</emphasis>
1264     for multi-user environments with untrusted users.
1265    </para>
1266    <para>
1267     Note that you must have compiled <application>Privoxy</application> with
1268     support for this feature, otherwise this option has no effect. 
1269    </para>
1270   </listitem>
1271  </varlistentry>
1272 </variablelist>
1273
1274 <![%config-file;[<literallayout>@@enable-remote-toggle  1</literallayout>]]>
1275 </sect3>
1276
1277
1278 <!--   ~~~~~       New section      ~~~~~     -->
1279 <sect3 renderas="sect4" id="enable-remote-http-toggle"><title>enable-remote-http-toggle</title>
1280 <variablelist>
1281  <varlistentry>
1282   <term>Specifies:</term>
1283   <listitem>
1284    <para>
1285     Whether or not Privoxy recognizes special HTTP headers to change its behaviour.
1286    </para>
1287   </listitem>
1288  </varlistentry>
1289  <varlistentry>
1290   <term>Type of value:</term>
1291   <listitem>
1292    <para>0 or 1</para>
1293   </listitem>
1294  </varlistentry>
1295  <varlistentry>
1296   <term>Default value:</term>
1297   <listitem>
1298    <para>1</para>
1299   </listitem>
1300  </varlistentry>
1301  <varlistentry>
1302   <term>Effect if unset:</term>
1303   <listitem>
1304    <para>
1305     Privoxy ignores special HTTP headers.
1306    </para>
1307   </listitem>
1308  </varlistentry>
1309  <varlistentry>
1310   <term>Notes:</term>
1311   <listitem>
1312    <para>
1313     When toggled on, the client can change <application>Privoxy's</application>
1314     behaviour by setting special HTTP headers. Currently the only supported
1315     special header is <quote>X-Filter: No</quote>, to disable filtering for
1316     the ongoing request, even if it is enabled in one of the action files.
1317    </para>
1318    <para>
1319     If you are using <application>Privoxy</application> in a
1320     multi-user environment or with untrustworthy clients and want to
1321     enforce filtering, you will have to disable this option,
1322     otherwise you can ignore it. 
1323    </para>
1324   </listitem>
1325  </varlistentry>
1326 </variablelist>
1327
1328 <![%config-file;[<literallayout>@@enable-remote-http-toggle  1</literallayout>]]>
1329 </sect3>
1330
1331
1332 <!--   ~~~~~       New section      ~~~~~     -->
1333 <sect3 renderas="sect4" id="enable-edit-actions"><title>enable-edit-actions</title>
1334 <variablelist>
1335  <varlistentry>
1336   <term>Specifies:</term>
1337   <listitem>
1338    <para>
1339     Whether or not the <ulink url="http://config.privoxy.org/show-status">web-based actions
1340     file editor</ulink> may be used
1341    </para>
1342   </listitem>
1343  </varlistentry>
1344  <varlistentry>
1345   <term>Type of value:</term>
1346   <listitem>
1347    <para>0 or 1</para>
1348   </listitem>
1349  </varlistentry>
1350  <varlistentry>
1351   <term>Default value:</term>
1352   <listitem>
1353    <para>1</para>
1354   </listitem>
1355  </varlistentry>
1356  <varlistentry>
1357   <term>Effect if unset:</term>
1358   <listitem>
1359    <para>
1360     The web-based actions file editor is disabled.
1361    </para>
1362   </listitem>
1363  </varlistentry>
1364  <varlistentry>
1365   <term>Notes:</term>
1366   <listitem>
1367    <para>
1368     For the time being, access to the editor can <emphasis>not</emphasis> be
1369     controlled separately by <quote>ACLs</quote> or HTTP authentication,
1370     so that everybody who can access <application>Privoxy</application> (see
1371     <quote>ACLs</quote> and <literal>listen-address</literal> above) can
1372     modify its configuration for all users. So this option is <emphasis>not
1373     recommended</emphasis> for multi-user environments with untrusted users.
1374    </para>
1375    <para>
1376     Note that you must have compiled <application>Privoxy</application> with
1377     support for this feature, otherwise this option has no effect. 
1378    </para>
1379   </listitem>
1380  </varlistentry>
1381 </variablelist>
1382
1383 <![%config-file;[<literallayout>@@enable-edit-actions 1</literallayout>]]>
1384 </sect3>
1385
1386 <!--   ~~~~~       New section      ~~~~~     -->
1387 <sect3 renderas="sect4" id="acls"><title>
1388 ACLs: permit-access and deny-access</title>
1389 <anchor id="permit-access">
1390 <anchor id="deny-access">
1391
1392 <variablelist>
1393  <varlistentry>
1394   <term>Specifies:</term>
1395   <listitem>
1396    <para>
1397     Who can access what.
1398    </para>
1399   </listitem>
1400  </varlistentry>
1401  <varlistentry>
1402   <term>Type of value:</term>
1403   <listitem>
1404    <para>
1405     <replaceable class="parameter">src_addr</replaceable>[/<replaceable class="parameter">src_masklen</replaceable>]
1406     [<replaceable class="parameter">dst_addr</replaceable>[/<replaceable class="parameter">dst_masklen</replaceable>]]
1407    </para>
1408    <para>
1409     Where <replaceable class="parameter">src_addr</replaceable> and 
1410    <replaceable class="parameter">dst_addr</replaceable> are IP addresses in dotted decimal notation or valid
1411     DNS names, and <replaceable class="parameter">src_masklen</replaceable> and
1412     <replaceable class="parameter">dst_masklen</replaceable> are subnet masks in CIDR notation, i.e. integer
1413     values from 2 to 30 representing the length (in bits) of the network address. The masks and the whole
1414     destination part are optional.
1415    </para>
1416   </listitem>
1417  </varlistentry>
1418  <varlistentry>
1419   <term>Default value:</term>
1420   <listitem>
1421    <para><emphasis>Unset</emphasis></para>
1422   </listitem>
1423  </varlistentry>
1424  <varlistentry>
1425   <term>Effect if unset:</term>
1426   <listitem>
1427    <para>
1428     Don't restrict access further than implied by <literal>listen-address</literal>
1429    </para>
1430   </listitem>
1431  </varlistentry>
1432  <varlistentry>
1433   <term>Notes:</term>
1434   <listitem>
1435    <para>
1436     Access controls are included at the request of ISPs and systems
1437     administrators, and <emphasis>are not usually needed by individual users</emphasis>.
1438     For a typical home user, it will normally suffice to ensure that 
1439     <application>Privoxy</application> only listens on the localhost
1440     (127.0.0.1) or internal (home) network address by means of the
1441     <link linkend="listen-address"><emphasis>listen-address</emphasis></link>
1442     option. 
1443    </para>
1444    <para>
1445     Please see the warnings in the FAQ that this proxy is not intended to be a substitute
1446     for a firewall or to encourage anyone to defer addressing basic security
1447     weaknesses.
1448    </para>
1449    <para>
1450     Multiple ACL lines are OK.
1451     If any ACLs are specified, then the <application>Privoxy</application>
1452     talks only to IP addresses that match at least one <literal>permit-access</literal> line
1453     and don't match any subsequent <literal>deny-access</literal> line. In other words, the
1454     last match wins, with the default being <literal>deny-access</literal>.
1455    </para>
1456    <para>
1457     If <application>Privoxy</application> is using a forwarder (see <literal>forward</literal> below)
1458     for a particular destination URL, the <replaceable class="parameter">dst_addr</replaceable>
1459     that is examined is the address of the forwarder and <emphasis>NOT</emphasis> the address
1460     of the ultimate target. This is necessary because it may be impossible for the local
1461     <application>Privoxy</application> to determine the IP address of the
1462     ultimate target (that's often what gateways are used for).
1463    </para>
1464    <para>
1465     You should prefer using IP addresses over DNS names, because the address lookups take
1466     time. All DNS names must resolve! You can <emphasis>not</emphasis> use domain patterns
1467     like <quote>*.org</quote> or partial domain names. If a DNS name resolves to multiple
1468     IP addresses, only the first one is used.
1469    </para>
1470    <para>
1471     Denying access to particular sites by ACL may have undesired side effects
1472     if the site in question is hosted on a machine which also hosts other sites.
1473    </para>
1474   </listitem>
1475  </varlistentry>
1476  <varlistentry>
1477   <term>Examples:</term>
1478   <listitem>
1479    <para>
1480     Explicitly define the default behavior if no ACL and
1481     <literal>listen-address</literal> are set: <quote>localhost</quote>
1482     is OK. The absence of a <replaceable class="parameter">dst_addr</replaceable> implies that
1483     <emphasis>all</emphasis> destination addresses are OK:
1484    </para>
1485    <para>
1486     <screen>
1487   permit-access  localhost
1488 </screen>
1489    </para>
1490    <para>
1491     Allow any host on the same class C subnet as www.privoxy.org access to
1492     nothing but www.example.com:
1493    </para>
1494    <para>
1495     <screen>
1496   permit-access  www.privoxy.org/24 www.example.com/32
1497 </screen>
1498    </para>
1499    <para>
1500     Allow access from any host on the 26-bit subnet 192.168.45.64 to anywhere,
1501     with the exception that 192.168.45.73 may not access www.dirty-stuff.example.com:
1502    </para>
1503    <para>
1504     <screen>
1505   permit-access  192.168.45.64/26
1506   deny-access    192.168.45.73    www.dirty-stuff.example.com
1507 </screen>
1508    </para>
1509   </listitem>
1510  </varlistentry>
1511 </variablelist>
1512 </sect3>
1513
1514
1515 <!--   ~~~~~       New section      ~~~~~     -->
1516 <sect3 renderas="sect4" id="buffer-limit"><title>buffer-limit</title>
1517
1518 <variablelist>
1519  <varlistentry>
1520   <term>Specifies:</term>
1521   <listitem>
1522    <para>
1523     Maximum size of the buffer for content filtering.
1524    </para>
1525   </listitem>
1526  </varlistentry>
1527  <varlistentry>
1528   <term>Type of value:</term>
1529   <listitem>
1530    <para>Size in Kbytes</para>
1531   </listitem>
1532  </varlistentry>
1533  <varlistentry>
1534   <term>Default value:</term>
1535   <listitem>
1536    <para>4096</para>
1537   </listitem>
1538  </varlistentry>
1539  <varlistentry>
1540   <term>Effect if unset:</term>
1541   <listitem>
1542    <para>
1543     Use a 4MB (4096 KB) limit.
1544    </para>
1545   </listitem>
1546  </varlistentry>
1547  <varlistentry>
1548   <term>Notes:</term>
1549   <listitem>
1550    <para>
1551     For content filtering, i.e. the <literal>+filter</literal> and
1552     <literal>+deanimate-gif</literal> actions, it is necessary that 
1553     <application>Privoxy</application> buffers the entire document body.
1554     This can be potentially dangerous, since a server could just keep sending
1555     data indefinitely and wait for your RAM to exhaust -- with nasty consequences.
1556     Hence this option.
1557    </para>
1558    <para>
1559     When a document buffer size reaches the <literal>buffer-limit</literal>, it is
1560     flushed to the client unfiltered and no further attempt to
1561     filter the rest of the document is made. Remember that there may be multiple threads
1562     running, which might require up to <literal>buffer-limit</literal> Kbytes
1563     <emphasis>each</emphasis>, unless you have enabled <quote>single-threaded</quote>
1564     above.
1565    </para>
1566   </listitem>
1567  </varlistentry>
1568 </variablelist>
1569
1570 <![%config-file;[<literallayout>@@buffer-limit 4096</literallayout>]]>
1571 </sect3>
1572
1573 </sect2>
1574
1575 <!--  ~  End section  ~  -->
1576
1577
1578 <!--   ~~~~~       New section      ~~~~~     -->
1579
1580 <sect2 id="forwarding">
1581 <title>Forwarding</title>
1582
1583 <para>
1584  This feature allows routing of HTTP requests through a chain of
1585  multiple proxies.
1586  It can be used to better protect privacy and confidentiality when
1587  accessing specific domains by routing requests to those domains
1588  through an anonymous public proxy (see e.g. <ulink
1589  url="http://www.multiproxy.org/anon_list.htm">http://www.multiproxy.org/anon_list.htm</ulink>)
1590  Or to use a caching proxy to speed up browsing. Or chaining to a parent
1591  proxy may be necessary because the machine that <application>Privoxy</application>
1592  runs on has no direct Internet access.
1593 </para>
1594
1595 <para>
1596  Also specified here are SOCKS proxies. <application>Privoxy</application>
1597  supports the SOCKS 4 and SOCKS 4A protocols.
1598 </para>
1599
1600 <sect3 renderas="sect4" id="forward"><title>forward</title>
1601 <variablelist>
1602  <varlistentry>
1603   <term>Specifies:</term>
1604   <listitem>
1605    <para>
1606     To which parent HTTP proxy specific requests should be routed.
1607    </para>
1608   </listitem>
1609  </varlistentry>
1610  <varlistentry>
1611   <term>Type of value:</term>
1612   <listitem>
1613    <para>
1614     <replaceable class="parameter">target_pattern</replaceable>
1615     <replaceable class="parameter">http_parent</replaceable>[:<replaceable class="parameter">port</replaceable>]
1616    </para>
1617    <para>
1618     where <replaceable class="parameter">target_pattern</replaceable> is a <link linkend="af-patterns">URL pattern</link> 
1619     that specifies to which requests (i.e. URLs) this forward rule shall apply. Use <literal>/</literal> to
1620     denote <quote>all URLs</quote>.
1621     <replaceable class="parameter">http_parent</replaceable>[:<replaceable class="parameter">port</replaceable>]
1622     is the DNS name or IP address of the parent HTTP proxy through which the requests should be forwarded,
1623     optionally followed by its listening port (default: 8080).
1624     Use a single dot (<literal>.</literal>) to denote <quote>no forwarding</quote>.
1625    </para>
1626   </listitem>
1627  </varlistentry>
1628  <varlistentry>
1629   <term>Default value:</term>
1630   <listitem>
1631    <para><emphasis>Unset</emphasis></para>
1632   </listitem>
1633  </varlistentry>
1634  <varlistentry>
1635   <term>Effect if unset:</term>
1636   <listitem>
1637    <para>
1638     Don't use parent HTTP proxies.
1639    </para>
1640   </listitem>
1641  </varlistentry>
1642  <varlistentry>
1643   <term>Notes:</term>
1644   <listitem>
1645    <para>
1646     If <replaceable class="parameter">http_parent</replaceable> is <quote>.</quote>, then requests are not
1647     forwarded to another HTTP proxy but are made directly to the web servers.
1648    </para>
1649    <para>
1650     Multiple lines are OK, they are checked in sequence, and the last match wins.
1651    </para>
1652   </listitem>
1653  </varlistentry>
1654  <varlistentry>
1655   <term>Examples:</term>
1656   <listitem>
1657    <para>
1658     Everything goes to an example anonymizing proxy, except SSL on port 443 (which it doesn't handle):
1659    </para>
1660    <para>
1661     <screen>
1662   forward   /      anon-proxy.example.org:8080
1663   forward   :443   .
1664 </screen>
1665    </para>
1666    <para>
1667     Everything goes to our example ISP's caching proxy, except for requests
1668     to that ISP's sites:
1669    </para>
1670    <para>
1671     <screen>
1672   forward   /                  caching-proxy.example-isp.net:8000
1673   forward   .example-isp.net   .
1674 </screen>
1675    </para>
1676   </listitem>
1677  </varlistentry>
1678 </variablelist>
1679 </sect3>
1680
1681
1682 <!--   ~~~~~       New section      ~~~~~     -->
1683 <sect3 renderas="sect4" id="socks"><title>
1684 forward-socks4 and forward-socks4a</title>
1685 <anchor id="forward-socks4">
1686 <anchor id="forward-socks4a">
1687
1688 <variablelist>
1689  <varlistentry>
1690   <term>Specifies:</term>
1691   <listitem>
1692    <para>
1693     Through which SOCKS proxy (and to which parent HTTP proxy) specific requests should be routed.
1694    </para>
1695   </listitem>
1696  </varlistentry>
1697  <varlistentry>
1698   <term>Type of value:</term>
1699   <listitem>
1700    <para>
1701     <replaceable class="parameter">target_pattern</replaceable>
1702     <replaceable class="parameter">socks_proxy</replaceable>[:<replaceable class="parameter">port</replaceable>]
1703     <replaceable class="parameter">http_parent</replaceable>[:<replaceable class="parameter">port</replaceable>]
1704    </para>
1705    <para>
1706     where <replaceable class="parameter">target_pattern</replaceable> is a <link linkend="af-patterns">URL pattern</link> 
1707     that specifies to which requests (i.e. URLs) this forward rule shall apply. Use <literal>/</literal> to
1708     denote <quote>all URLs</quote>.
1709     <replaceable class="parameter">http_parent</replaceable> and <replaceable class="parameter">socks_proxy</replaceable>
1710     are IP addresses in dotted decimal notation or valid DNS names (<replaceable class="parameter">http_parent</replaceable>
1711     may be <quote>.</quote> to denote <quote>no HTTP forwarding</quote>), and the optional 
1712     <replaceable class="parameter">port</replaceable> parameters are TCP ports, i.e. integer values from 1 to 64535
1713    </para>
1714   </listitem>
1715  </varlistentry>
1716  <varlistentry>
1717   <term>Default value:</term>
1718   <listitem>
1719    <para><emphasis>Unset</emphasis></para>
1720   </listitem>
1721  </varlistentry>
1722  <varlistentry>
1723   <term>Effect if unset:</term>
1724   <listitem>
1725    <para>
1726     Don't use SOCKS proxies.
1727    </para>
1728   </listitem>
1729  </varlistentry>
1730  <varlistentry>
1731   <term>Notes:</term>
1732   <listitem>
1733    <para>
1734     Multiple lines are OK, they are checked in sequence, and the last match wins.
1735    </para>
1736    <para>
1737     The difference between <literal>forward-socks4</literal> and <literal>forward-socks4a</literal>
1738     is that in the SOCKS 4A protocol, the DNS resolution of the target hostname happens on the SOCKS
1739     server, while in SOCKS 4 it happens locally.
1740    </para>
1741    <para>
1742     If <replaceable class="parameter">http_parent</replaceable> is <quote>.</quote>, then requests are not
1743     forwarded to another HTTP proxy but are made (HTTP-wise) directly to the web servers, albeit through
1744     a SOCKS proxy.
1745    </para>
1746   </listitem>
1747  </varlistentry>
1748  <varlistentry>
1749   <term>Examples:</term>
1750   <listitem>
1751    <para>
1752      From the company example.com, direct connections are made to all
1753      <quote>internal</quote> domains, but everything outbound goes through
1754      their ISP's proxy by way of example.com's corporate SOCKS 4A gateway to
1755      the Internet.
1756    </para>
1757    <para>
1758     <screen>
1759   forward-socks4a   /              socks-gw.example.com:1080  www-cache.example-isp.net:8080
1760   forward           .example.com   .
1761 </screen>
1762    </para>
1763    <para>
1764     A rule that uses a SOCKS 4 gateway for all destinations but no HTTP parent looks like this:
1765    </para>
1766    <para>
1767     <screen>
1768   forward-socks4   /               socks-gw.example.com:1080  .
1769 </screen>
1770    </para>
1771   
1772     <para>
1773     To chain Privoxy and Tor, both running on the same system, you should use 
1774     the rule:
1775    </para>
1776    <para>
1777     <screen>
1778   forward-socks4   /               127.0.0.1:9050 .
1779 </screen>
1780    </para>
1781
1782     <para>
1783     The public <application>Tor</application> network can't be used to reach your local network,
1784     therefore it's a good idea to make some exceptions:
1785    </para>
1786    <para>
1787     <screen>
1788   forward         192.168.*.*/     .
1789   forward            10.*.*.*/     .
1790   forward           127.*.*.*/     .
1791 </screen>
1792    </para>
1793    <para>
1794     Unencrypted connections to systems in these address ranges will
1795     be as (un)secure as the local network is, but the alternative is that you
1796     can't reach the network at all.
1797    </para>
1798    <para>
1799     If you also want to be able to reach servers in your local network by
1800     using their names, you will need additional exceptions that look like
1801     this:
1802    </para>
1803    <para>
1804     <screen>
1805  forward           localhost/     .
1806 </screen>
1807    </para>
1808
1809   </listitem>
1810  </varlistentry>
1811 </variablelist>
1812 </sect3>
1813
1814 <![%user-man;[     <!-- not included in config due to length -->
1815 <!--   ~~~~~       New section      ~~~~~     -->
1816 <sect3 renderas="sect4" id="advanced-forwarding-examples"><title>Advanced Forwarding Examples</title>
1817
1818 <para>
1819  If you have links to multiple ISPs that provide various special content 
1820  only to their subscribers, you can configure multiple <application>Privoxies</application>
1821  which have connections to the respective ISPs to act as forwarders to each other, so that
1822  <emphasis>your</emphasis> users can see the internal content of all ISPs.
1823 </para>
1824
1825 <para>
1826  Assume that host-a has a PPP connection to isp-a.net. And host-b has a PPP connection to
1827  isp-b.net. Both run <application>Privoxy</application>. Their forwarding
1828  configuration can look like this:
1829 </para>
1830
1831 <para>
1832  host-a:
1833 </para>
1834
1835 <para>
1836  <screen>
1837   forward    /           .
1838   forward    .isp-b.net  host-b:8118
1839 </screen>
1840 </para>
1841
1842 <para>
1843  host-b:
1844 </para>
1845
1846 <para>
1847  <screen>
1848   forward    /           .
1849   forward    .isp-a.net  host-a:8118
1850 </screen>
1851 </para>
1852
1853 <para>
1854  Now, your users can set their browser's proxy to use either
1855  host-a or host-b and be able to browse the internal content
1856  of both isp-a and isp-b.
1857 </para>
1858
1859 <para>
1860  If you intend to chain <application>Privoxy</application> and 
1861  <application>squid</application> locally, then chain as 
1862  <literal>browser -> squid -> privoxy</literal> is the recommended way. 
1863 </para>
1864
1865 <para>
1866  Assuming that <application>Privoxy</application> and <application>squid</application>
1867  run on the same box, your <application>squid</application> configuration could then look like this:
1868 </para>
1869
1870 <para>
1871  <screen>
1872   # Define Privoxy as parent proxy (without ICP) 
1873   cache_peer 127.0.0.1 parent 8118 7 no-query 
1874
1875   # Define ACL for protocol FTP 
1876   acl ftp proto FTP 
1877
1878   # Do not forward FTP requests to Privoxy
1879   always_direct allow ftp 
1880
1881   # Forward all the rest to Privoxy
1882   never_direct allow all</screen>
1883 </para>
1884
1885 <para>
1886  You would then need to change your browser's proxy settings to <application>squid</application>'s address and port.
1887  Squid normally uses port 3128. If unsure consult <literal>http_port</literal> in <filename>squid.conf</filename>.
1888 </para>
1889
1890 <para>
1891  You could just as well decide to only forward requests for Windows executables through
1892  a virus-scanning parent proxy, say, on <literal>antivir.example.com</literal>, port 8010:
1893 </para>
1894
1895 <para>
1896  <screen>
1897   forward   /                          .
1898   forward   /.*\.(exe|com|dll|zip)$    antivir.example.com:8010</screen> 
1899 </para>
1900
1901 </sect3>
1902 ]]>
1903
1904 <sect3 renderas="sect4" id="forwarded-connect-retries"><title>forwarded-connect-retries</title>
1905 <variablelist>
1906  <varlistentry>
1907   <term>Specifies:</term>
1908   <listitem>
1909    <para>
1910     How often Privoxy retries if a forwarded connection request fails. 
1911    </para>
1912   </listitem>
1913  </varlistentry>
1914  <varlistentry>
1915   <term>Type of value:</term>
1916   <listitem>
1917    <para>
1918     <replaceable class="parameter">Number of retries.</replaceable>
1919    </para>
1920   </listitem>
1921  </varlistentry>
1922  <varlistentry>
1923   <term>Default value:</term>
1924   <listitem>
1925    <para><emphasis>0</emphasis></para>
1926   </listitem>
1927  </varlistentry>
1928  <varlistentry>
1929   <term>Effect if unset:</term>
1930   <listitem>
1931    <para>
1932     Forwarded connections are treated like direct connections and no retry attempts are made.
1933    </para>
1934   </listitem>
1935  </varlistentry>
1936  <varlistentry>
1937   <term>Notes:</term>
1938   <listitem>
1939    <para>
1940     <replaceable class="parameter">forwarded-connect-retries</replaceable> is mainly interesting
1941     for socks4a connections, where Privoxy can't detect why the connections failed.
1942     The connection might have failed because of a DNS timeout in which case a retry makes sense,
1943     but it might also have failed because the server doesn't exist or isn't reachable. In this
1944     case the retry will just delay the appearance of Privoxy's error message.
1945    </para>
1946    <para>
1947     Only use this option, if you are getting many forwarding related error messages,
1948     that go away when you try again manually. Start with a small value and check Privoxy's
1949     logfile from time to time, to see how many retries are usually needed.
1950    </para>
1951   </listitem>
1952  </varlistentry>
1953  <varlistentry>
1954   <term>Examples:</term>
1955   <listitem>
1956    <para>
1957     forwarded-connect-retries 1
1958    </para>
1959   </listitem>
1960  </varlistentry>
1961 </variablelist>
1962 <![%config-file;[<literallayout>@@forwarded-connect-retries  0</literallayout>]]>
1963 </sect3>
1964
1965 </sect2>
1966
1967 <!--  ~  End section  ~  -->
1968
1969
1970 <!--   ~~~~~       New section      ~~~~~     -->
1971
1972 <sect2 id="windows-gui">
1973 <title>Windows GUI Options</title>
1974 <para>
1975  <application>Privoxy</application> has a number of options specific to the
1976  Windows GUI interface:
1977 </para>
1978
1979 <anchor id="activity-animation">
1980 <![%config-file;[<para>@@</para>]]> <!-- for spacing -->
1981 <para>
1982  If <quote>activity-animation</quote> is set to 1, the
1983  <application>Privoxy</application> icon will animate when
1984  <quote>Privoxy</quote> is active. To turn off, set to 0.
1985 </para>
1986
1987 <![%config-file;[<literallayout>@@#activity-animation   1</literallayout>]]>
1988 <![%user-man;[
1989 <para>
1990  <literal>
1991   <msgtext> 
1992    <literallayout>
1993   <emphasis>activity-animation   1</emphasis>
1994    </literallayout>
1995   </msgtext> 
1996  </literal>
1997 </para>
1998 ]]>
1999
2000 <anchor id="log-messages">
2001 <![%config-file;[<para>@@</para>]]> <!-- for spacing -->
2002 <para>
2003  If <quote>log-messages</quote> is set to 1,
2004  <application>Privoxy</application> will log messages to the console
2005  window:
2006 </para>
2007
2008 <![%config-file;[<literallayout>@@#log-messages   1</literallayout>]]>
2009 <![%user-man;[
2010 <para>
2011  <literal>
2012   <msgtext> 
2013    <literallayout>
2014   <emphasis>log-messages       1</emphasis>
2015    </literallayout>
2016   </msgtext> 
2017  </literal>
2018 </para>
2019 ]]>
2020
2021 <anchor id="log-buffer-size">
2022 <![%config-file;[<para>@@</para>]]> <!-- for spacing -->
2023 <para> 
2024  If <quote>log-buffer-size</quote> is set to 1, the size of the log buffer,
2025  i.e. the amount of memory used for the log messages displayed in the
2026  console window, will be limited to <quote>log-max-lines</quote> (see below).
2027 </para>
2028
2029 <para>
2030  Warning: Setting this to 0 will result in the buffer to grow infinitely and
2031  eat up all your memory!
2032 </para>
2033
2034 <![%config-file;[<literallayout>@@#log-buffer-size 1</literallayout>]]>
2035 <![%user-man;[
2036 <para>
2037  <literal>
2038   <msgtext> 
2039    <literallayout>
2040   <emphasis>log-buffer-size      1</emphasis>
2041    </literallayout>
2042   </msgtext> 
2043  </literal>
2044 </para>
2045 ]]>
2046
2047 <anchor id="log-max-lines">
2048 <![%config-file;[<para>@@</para>]]> <!-- for spacing -->
2049 <para>
2050  <application>log-max-lines</application> is the maximum number of lines held
2051  in the log buffer. See above.
2052 </para>
2053
2054 <![%config-file;[<literallayout>@@#log-max-lines 200</literallayout>]]>
2055 <![%user-man;[
2056 <para>
2057  <literal>
2058   <msgtext> 
2059    <literallayout>
2060   <emphasis>log-max-lines      200</emphasis>
2061    </literallayout>
2062   </msgtext> 
2063  </literal>
2064 </para>
2065 ]]>
2066
2067 <anchor id="log-highlight-messages">
2068 <![%config-file;[<para>@@</para>]]> <!-- for spacing -->
2069 <para>
2070  If <quote>log-highlight-messages</quote> is set to 1,
2071  <application>Privoxy</application> will highlight portions of the log
2072  messages with a bold-faced font:
2073 </para>
2074
2075 <![%config-file;[<literallayout>@@#log-highlight-messages 1</literallayout>]]>
2076 <![%user-man;[
2077 <para>
2078  <literal>
2079   <msgtext> 
2080    <literallayout>
2081   <emphasis>log-highlight-messages   1</emphasis>
2082    </literallayout>
2083   </msgtext> 
2084  </literal>
2085 </para>
2086 ]]>
2087
2088 <anchor id="log-font-name">
2089 <![%config-file;[<para>@@</para>]]> <!-- for spacing -->
2090 <para>
2091  The font used in the console window:
2092 </para>
2093
2094 <![%config-file;[<literallayout>@@#log-font-name Comic Sans MS</literallayout>]]>
2095 <![%user-man;[
2096 <para>
2097  <literal>
2098   <msgtext> 
2099    <literallayout>
2100   <emphasis>log-font-name        Comic Sans MS</emphasis>
2101    </literallayout>
2102   </msgtext> 
2103  </literal>
2104 </para>
2105 ]]>
2106
2107 <anchor id="log-font-size">
2108 <![%config-file;[<para>@@</para>]]> <!-- for spacing -->
2109 <para>
2110  Font size used in the console window:
2111 </para>
2112
2113 <![%config-file;[<literallayout>@@#log-font-size 8</literallayout>]]>
2114 <![%user-man;[
2115 <para>
2116  <literal>
2117   <msgtext> 
2118    <literallayout>
2119   <emphasis>log-font-size        8</emphasis>
2120    </literallayout>
2121   </msgtext> 
2122  </literal>
2123 </para>
2124 ]]>
2125
2126 <anchor id="show-on-task-bar">
2127 <![%config-file;[<para>@@</para>]]> <!-- for spacing -->
2128 <para>  
2129  <quote>show-on-task-bar</quote> controls whether or not
2130  <application>Privoxy</application> will appear as a button on the Task bar
2131  when minimized:
2132 </para>
2133
2134 <![%config-file;[<literallayout>@@#show-on-task-bar 0</literallayout>]]>
2135 <![%user-man;[
2136 <para>
2137  <literal>
2138   <msgtext> 
2139    <literallayout>
2140   <emphasis>show-on-task-bar     0</emphasis>
2141    </literallayout>
2142   </msgtext> 
2143  </literal>
2144 </para>
2145 ]]>
2146
2147 <anchor id="close-button-minimizes">
2148 <![%config-file;[<para>@@</para>]]> <!-- for spacing -->
2149 <para>
2150  If <quote>close-button-minimizes</quote> is set to 1, the Windows close
2151  button will minimize <application>Privoxy</application> instead of closing
2152  the program (close with the exit option on the File menu).
2153 </para>
2154
2155 <![%config-file;[<literallayout>@@#close-button-minimizes 1</literallayout>]]>
2156 <![%user-man;[
2157 <para>
2158  <literal>
2159   <msgtext> 
2160    <literallayout>
2161   <emphasis>close-button-minimizes  1</emphasis>
2162    </literallayout>
2163   </msgtext> 
2164  </literal>
2165 </para>
2166 ]]>
2167
2168 <anchor id="hide-console">
2169 <![%config-file;[<para>@@</para>]]> <!-- for spacing -->
2170 <para>
2171  The <quote>hide-console</quote> option is specific to the MS-Win console
2172  version of <application>Privoxy</application>. If this option is used,
2173  <application>Privoxy</application> will disconnect from and hide  the
2174  command console.
2175 </para>
2176
2177 <![%config-file;[<literallayout>@@#hide-console</literallayout>]]>
2178 <![%user-man;[
2179 <para>
2180  <literal>
2181   <msgtext> 
2182    <literallayout>
2183   #<emphasis>hide-console</emphasis>
2184    </literallayout>
2185   </msgtext> 
2186  </literal>
2187 </para>
2188 ]]>
2189
2190 </sect2>
2191 </sect1>
2192
2193 <!-- end config content common to both outputs -->
2194
2195 <![%config-file;[
2196 <!-- These are dummy anchors to keep the processor quiet            -->
2197 <!-- when building config-file only (ie. they are used in u-m only) -->
2198 <sect1 label="">
2199 <title></title>
2200 <anchor id="filter">
2201 <anchor id="filter-file">
2202 <anchor id="regex">
2203 <anchor id="actions-file">
2204 <anchor id="af-patterns">
2205 </sect1>
2206 ]]>
2207
2208 <!-- eof p-config.sgml -->