Renaming #define STATIC to STATIC_PCRE
[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.4  2001/05/29 09:50:24  jongfoster
41  *    Unified blocklist/imagelist/permissionslist.
42  *    File format is still under discussion, but the internal changes
43  *    are (mostly) done.
44  *
45  *    Also modified interceptor behaviour:
46  *    - We now intercept all URLs beginning with one of the following
47  *      prefixes (and *only* these prefixes):
48  *        * http://i.j.b/
49  *        * http://ijbswa.sf.net/config/
50  *        * http://ijbswa.sourceforge.net/config/
51  *    - New interceptors "home page" - go to http://i.j.b/ to see it.
52  *    - Internal changes so that intercepted and fast redirect pages
53  *      are not replaced with an image.
54  *    - Interceptors now have the option to send a binary page direct
55  *      to the client. (i.e. ijb-send-banner uses this)
56  *    - Implemented show-url-info interceptor.  (Which is why I needed
57  *      the above interceptors changes - a typical URL is
58  *      "http://i.j.b/show-url-info?url=www.somesite.com/banner.gif".
59  *      The previous mechanism would not have intercepted that, and
60  *      if it had been intercepted then it then it would have replaced
61  *      it with an image.)
62  *
63  *    Revision 1.3  2001/05/26 01:26:34  jongfoster
64  *    New #define, WIN_GUI_EDIT, enables the (embryonic) Win32 GUI editor.
65  *    This #define cannot be set from ./configure - there's no point, it
66  *    doesn't work yet.  See feature request # 425722
67  *
68  *    Revision 1.2  2001/05/22 17:43:35  oes
69  *
70  *    - Enabled filtering banners by size rather than URL
71  *      by adding patterns that replace all standard banner
72  *      sizes with the "Junkbuster" gif to the re_filterfile
73  *
74  *    - Enabled filtering WebBugs by providing a pattern
75  *      which kills all 1x1 images
76  *
77  *    - Added support for PCRE_UNGREEDY behaviour to pcrs,
78  *      which is selected by the (nonstandard and therefore
79  *      capital) letter 'U' in the option string.
80  *      It causes the quantifiers to be ungreedy by default.
81  *      Appending a ? turns back to greedy (!).
82  *
83  *    - Added a new interceptor ijb-send-banner, which
84  *      sends back the "Junkbuster" gif. Without imagelist or
85  *      MSIE detection support, or if tinygif = 1, or the
86  *      URL isn't recognized as an imageurl, a lame HTML
87  *      explanation is sent instead.
88  *
89  *    - Added new feature, which permits blocking remote
90  *      script redirects and firing back a local redirect
91  *      to the browser.
92  *      The feature is conditionally compiled, i.e. it
93  *      can be disabled with --disable-fast-redirects,
94  *      plus it must be activated by a "fast-redirects"
95  *      line in the config file, has its own log level
96  *      and of course wants to be displayed by show-proxy-args
97  *      Note: Boy, all the #ifdefs in 1001 locations and
98  *      all the fumbling with configure.in and acconfig.h
99  *      were *way* more work than the feature itself :-(
100  *
101  *    - Because a generic redirect template was needed for
102  *      this, tinygif = 3 now uses the same.
103  *
104  *    - Moved GIFs, and other static HTTP response templates
105  *      to project.h
106  *
107  *    - Many minor fixes
108  *
109  *    - Removed some >400 CRs again (Jon, you really worked
110  *      a lot! ;-)
111  *
112  *    Revision 1.1.1.1  2001/05/15 13:58:45  oes
113  *    Initial import of version 2.9.3 source tree
114  *
115  *
116  *********************************************************************/
117 \f
118 @TOP@
119
120 /*
121  * Version number - Major (X._._)
122  */
123 #undef VERSION_MAJOR
124
125 /*
126  * Version number - Minor (_.X._)
127  */
128 #undef VERSION_MINOR
129
130 /*
131  * Version number - Point (_._.X)
132  */
133 #undef VERSION_POINT
134
135 /*
136  * Version number, as a string
137  */
138 #undef VERSION
139
140 /*
141  * Status of the code: alpha, beta or stable
142  */
143 #undef CODE_STATUS
144
145 /*
146  * Regular expression matching for URLs.  (Highly recommended).  If none of these 
147  * is defined then you can ony use prefix matching.
148  * Don't bother to change this here! Use configure instead.
149  */
150 #undef REGEX_GNU
151 #undef REGEX_PCRE
152
153 /* 
154  * Should pcre be statically built in instead of linkling with libpcre?
155  * (This is determined by configure depending on the availiability of
156  * libpcre and user preferences). The name is ugly, but pcre needs it.
157  * Don't bother to change this here! Use configure instead.
158  */
159 #undef STATIC
160
161 /* 
162  * Should pcrs be statically built in instead of linkling with libpcrs?
163  * (This is determined by configure depending on the availiability of
164  * libpcrs and user preferences).
165  * Don't bother to change this here! Use configure instead.
166  */
167 #undef STATIC_PCRS
168
169 /*
170  * Allow JunkBuster to be "disabled" so it is just a normal non-blocking
171  * non-anonymizing proxy.  This is useful if you're trying to access a
172  * blocked or broken site - just change the setting in the config file
173  * and send a SIGHUP (UN*X), or use the handy "Disable" menu option (Windows
174  * GUI).
175  */
176 #undef TOGGLE
177
178 /*
179  * If a stream is compressed via gzip (Netscape specific I think), then
180  * it cannot be modified with Perl regexps.  This forces it to be 
181  * uncompressed.
182  */
183 #undef DENY_GZIP
184
185 /*
186  * Enables statistics function.
187  */
188 #undef STATISTICS
189
190 /*
191  * Bypass filtering for 1 page only
192  */
193 #undef FORCE_LOAD
194
195 /*
196  * Locally redirect remote script-redirect URLs
197  */
198 #undef FAST_REDIRECTS
199
200 /*
201  * Split the show-proxy-args page into a page for each config file.
202  */
203 #undef SPLIT_PROXY_ARGS
204
205 /*
206  * Kills JavaScript popups - window.open, onunload, etc.
207  */
208 #undef KILLPOPUPS
209
210 /*
211  * Support for webDAV - e.g. so Microsoft Outlook can access HotMail e-mail
212  */
213 #undef WEBDAV
214
215 /*
216  * Detect image requests automatically for MSIE.  Will fall back to
217  * other image-detection methods (i.e. "+image" permission) for other
218  * browsers.
219  *
220  * You must also define IMAGE_BLOCKING to use this feature.
221  *
222  * It detects the following header pair as an image request:
223  *
224  * User-Agent: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)
225  * Accept: * / *
226  *
227  * And the following as a HTML request:
228  *
229  * User-Agent: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)
230  * Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, * / *
231  *
232  * And no, I haven't got that backwards - IE is being wierd.
233  *
234  * Known limitations: 
235  * 1) If you press shift-reload on a blocked HTML page, you get
236  *    the image "blocked" page, not the HTML "blocked" page.
237  * 2) Once an image "blocked" page has been sent, viewing it 
238  *    in it's own browser window *should* bring up the HTML
239  *    "blocked" page, but it doesn't.  You need to clear the 
240  *    browser cache to get the HTML version again.
241  *
242  * These limitations are due to IE making inconsistent choices
243  * about which "Accept:" header to send.
244  */
245 #undef DETECT_MSIE_IMAGES
246
247 /*
248  * Allow blocking using images as well as HTML.
249  * If you do not define this then everything is blocked as HTML.
250  *
251  * Note that this is required if you want to use DETECT_MSIE_IMAGES.
252  */
253 #undef IMAGE_BLOCKING
254
255 /*
256  * Allows the use of ACL files to control access to the proxy by IP address.
257  */
258 #undef ACL_FILES
259
260 /*
261  * Allows the use of trust files.
262  */
263 #undef TRUST_FILES
264
265 /*
266  * Allows the use of jar files to capture cookies.
267  */
268 #undef JAR_FILES
269
270 /*
271  * Define this to use the Windows GUI for editing the blocklist.
272  * FIXME: This feature is only partially implemented and does not work
273  * FIXME: This #define can never be set by ./configure.
274  */
275 #undef WIN_GUI_EDIT
276
277 @BOTTOM@
278
279 #endif /* _CONFIG_H */