Support for +image-blocker{}: added ACTION_IMAGE_BLOCKER
[privoxy.git] / acconfig.h
1 #ifndef _CONFIG_H
2 #define _CONFIG_H
3 /*********************************************************************
4  *
5  * File        :  $Source: /cvsroot/ijbswa/current/acconfig.h,v $
6  *
7  * Purpose     :  This file should be the first thing included in every
8  *                .c file.  (Before even system headers).  It contains 
9  *                #define statements for various features.  It was
10  *                introduced because the compile command line started
11  *                getting ludicrously long with feature defines.
12  *
13  * Copyright   :  Written by and Copyright (C) 2001 the SourceForge
14  *                IJBSWA team.  http://ijbswa.sourceforge.net
15  *
16  *                Based on the Internet Junkbuster originally written
17  *                by and Copyright (C) 1997 Anonymous Coders and 
18  *                Junkbusters Corporation.  http://www.junkbusters.com
19  *
20  *                This program is free software; you can redistribute it 
21  *                and/or modify it under the terms of the GNU General
22  *                Public License as published by the Free Software
23  *                Foundation; either version 2 of the License, or (at
24  *                your option) any later version.
25  *
26  *                This program is distributed in the hope that it will
27  *                be useful, but WITHOUT ANY WARRANTY; without even the
28  *                implied warranty of MERCHANTABILITY or FITNESS FOR A
29  *                PARTICULAR PURPOSE.  See the GNU General Public
30  *                License for more details.
31  *
32  *                The GNU General Public License should be included with
33  *                this file.  If not, you can view it at
34  *                http://www.gnu.org/copyleft/gpl.html
35  *                or write to the Free Software Foundation, Inc., 59
36  *                Temple Place - Suite 330, Boston, MA  02111-1307, USA.
37  *
38  * Revisions   :
39  *    $Log: acconfig.h,v $
40  *    Revision 1.3  2001/05/26 01:26:34  jongfoster
41  *    New #define, WIN_GUI_EDIT, enables the (embryonic) Win32 GUI editor.
42  *    This #define cannot be set from ./configure - there's no point, it
43  *    doesn't work yet.  See feature request # 425722
44  *
45  *    Revision 1.2  2001/05/22 17:43:35  oes
46  *
47  *    - Enabled filtering banners by size rather than URL
48  *      by adding patterns that replace all standard banner
49  *      sizes with the "Junkbuster" gif to the re_filterfile
50  *
51  *    - Enabled filtering WebBugs by providing a pattern
52  *      which kills all 1x1 images
53  *
54  *    - Added support for PCRE_UNGREEDY behaviour to pcrs,
55  *      which is selected by the (nonstandard and therefore
56  *      capital) letter 'U' in the option string.
57  *      It causes the quantifiers to be ungreedy by default.
58  *      Appending a ? turns back to greedy (!).
59  *
60  *    - Added a new interceptor ijb-send-banner, which
61  *      sends back the "Junkbuster" gif. Without imagelist or
62  *      MSIE detection support, or if tinygif = 1, or the
63  *      URL isn't recognized as an imageurl, a lame HTML
64  *      explanation is sent instead.
65  *
66  *    - Added new feature, which permits blocking remote
67  *      script redirects and firing back a local redirect
68  *      to the browser.
69  *      The feature is conditionally compiled, i.e. it
70  *      can be disabled with --disable-fast-redirects,
71  *      plus it must be activated by a "fast-redirects"
72  *      line in the config file, has its own log level
73  *      and of course wants to be displayed by show-proxy-args
74  *      Note: Boy, all the #ifdefs in 1001 locations and
75  *      all the fumbling with configure.in and acconfig.h
76  *      were *way* more work than the feature itself :-(
77  *
78  *    - Because a generic redirect template was needed for
79  *      this, tinygif = 3 now uses the same.
80  *
81  *    - Moved GIFs, and other static HTTP response templates
82  *      to project.h
83  *
84  *    - Many minor fixes
85  *
86  *    - Removed some >400 CRs again (Jon, you really worked
87  *      a lot! ;-)
88  *
89  *    Revision 1.1.1.1  2001/05/15 13:58:45  oes
90  *    Initial import of version 2.9.3 source tree
91  *
92  *
93  *********************************************************************/
94 \f
95 @TOP@
96
97 /*
98  * Version number - Major (X._._)
99  */
100 #undef VERSION_MAJOR
101
102 /*
103  * Version number - Minor (_.X._)
104  */
105 #undef VERSION_MINOR
106
107 /*
108  * Version number - Point (_._.X)
109  */
110 #undef VERSION_POINT
111
112 /*
113  * Version number, as a string
114  */
115 #undef VERSION
116
117 /*
118  * Regular expression matching for URLs.  (Highly recommended).  If this is 
119  * not defined then you can ony use prefix matching.
120  */
121 #undef REGEX
122
123 /*
124  * Allow JunkBuster to be "disabled" so it is just a normal non-blocking
125  * non-anonymizing proxy.  This is useful if you're trying to access a
126  * blocked or broken site - just change the setting in the config file
127  * and send a SIGHUP (UN*X), or use the handy "Disable" menu option (Windows
128  * GUI).
129  */
130 #undef TOGGLE
131
132 /*
133  * Enables arbitrary content modification regexps
134  */
135 #undef PCRS
136
137 /*
138  * If a stream is compressed via gzip (Netscape specific I think), then
139  * it cannot be modified with Perl regexps.  This forces it to be 
140  * uncompressed.
141  */
142 #undef DENY_GZIP
143
144 /*
145  * Enables statistics function.
146  */
147 #undef STATISTICS
148
149 /*
150  * Bypass filtering for 1 page only
151  */
152 #undef FORCE_LOAD
153
154 /*
155  * Locally redirect remote script-redirect URLs
156  */
157 #undef FAST_REDIRECTS
158
159 /*
160  * Split the show-proxy-args page into a page for each config file.
161  */
162 #undef SPLIT_PROXY_ARGS
163
164 /*
165  * Kills JavaScript popups - window.open, onunload, etc.
166  */
167 #undef KILLPOPUPS
168
169 /*
170  * Support for webDAV - e.g. so Microsoft Outlook can access HotMail e-mail
171  */
172 #undef WEBDAV
173
174 /*
175  * Detect image requests automatically for MSIE.  Will fall back to
176  * other image-detection methods (i.e. "+image" permission) for other
177  * browsers.
178  *
179  * You must also define IMAGE_BLOCKING to use this feature.
180  *
181  * It detects the following header pair as an image request:
182  *
183  * User-Agent: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)
184  * Accept: * / *
185  *
186  * And the following as a HTML request:
187  *
188  * User-Agent: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)
189  * Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, * / *
190  *
191  * And no, I haven't got that backwards - IE is being wierd.
192  *
193  * Known limitations: 
194  * 1) If you press shift-reload on a blocked HTML page, you get
195  *    the image "blocked" page, not the HTML "blocked" page.
196  * 2) Once an image "blocked" page has been sent, viewing it 
197  *    in it's own browser window *should* bring up the HTML
198  *    "blocked" page, but it doesn't.  You need to clear the 
199  *    browser cache to get the HTML version again.
200  *
201  * These limitations are due to IE making inconsistent choices
202  * about which "Accept:" header to send.
203  */
204 #undef DETECT_MSIE_IMAGES
205
206 /*
207  * Allow blocking using images as well as HTML.
208  * If you do not define this then everything is blocked as HTML.
209  *
210  * Note that this is required if you want to use DETECT_MSIE_IMAGES.
211  */
212 #undef IMAGE_BLOCKING
213
214 /*
215  * Allows the use of ACL files to control access to the proxy by IP address.
216  */
217 #undef ACL_FILES
218
219 /*
220  * Allows the use of trust files.
221  */
222 #undef TRUST_FILES
223
224 /*
225  * Allows the use of jar files to capture cookies.
226  */
227 #undef JAR_FILES
228
229 /*
230  * Use PCRE rather than GNU Regex
231  */
232 #undef PCRE
233
234 /*
235  * Define this to use the Windows GUI for editing the blocklist.
236  * FIXME: This feature is only partially implemented and does not work
237  * FIXME: This #define can never be set by ./configure.
238  */
239 #undef WIN_GUI_EDIT
240
241 @BOTTOM@
242
243 #endif /* _CONFIG_H */