View | Details | Raw Unified | Return to bug 232442
Collapse All | Expand All

(-)/usr/ports/www/e2guardian/Makefile (-41 / +23 lines)
Lines 1-8 Link Here
1
# Created by: Marcello Coutinho
1
# Created by: Marcello Coutinho
2
# $FreeBSD: head/www/e2guardian/Makefile 468307 2018-04-25 22:00:04Z mat $
2
# $FreeBSD: head/www/e2guardian/Makefile 437392 2017-04-01 02:49:39Z wen $
3
3
4
PORTNAME=	e2guardian
4
PORTNAME=	e2guardian
5
PORTVERSION=	3.5.1
5
PORTVERSION=	5.2.2
6
DISTVERSIONPREFIX=	v
6
DISTVERSIONPREFIX=	v
7
CATEGORIES=	www
7
CATEGORIES=	www
8
8
Lines 11-109 Link Here
11
11
12
LICENSE=	GPLv2
12
LICENSE=	GPLv2
13
13
14
BUILD_DEPENDS=	rst2man:textproc/py-docutils
14
BUILD_DEPENDS=	rst2man:textproc/py-docutils@${PY_FLAVOR}
15
LIB_DEPENDS=	libpcre.so:devel/pcre
15
LIB_DEPENDS=	libpcre.so:devel/pcre
16
16
17
USE_GITHUB=	yes
18
USES=		autoreconf libtool iconv pkgconfig
17
USES=		autoreconf libtool iconv pkgconfig
18
USE_GITHUB=	yes
19
19
USE_RC_SUBR=	e2guardian
20
USE_RC_SUBR=	e2guardian
20
GNU_CONFIGURE=	yes
21
GNU_CONFIGURE=	yes
21
CONFIGURE_ARGS=	--localstatedir=/var \
22
CONFIGURE_ARGS=	--localstatedir=/var \
22
		--with-logdir=/var/log \
23
		--with-logdir=/var/log \
23
		--with-piddir=/var/run \
24
		--with-piddir=/var/run
24
		--enable-fancydm
25
25
26
OPTIONS_DEFINE=	APACHE TRICKLE CLISCAN CLAMD ICAP KAV NTLM DNS EMAIL DEBUG SSL DOCS
26
OPTIONS_DEFINE=	CLISCAN CLAMD ICAP KAV AVAST NTLM DNS EMAIL DEBUG DOCS SSL
27
OPTIONS_DEFAULT=TRICKLE 1024
27
OPTIONS_DEFAULT=CLAMD DNS
28
OPTIONS_SUB=	yes
28
OPTIONS_SUB=	yes
29
29
30
APACHE_DESC=	Enable Apache support for access denied page
31
TRICKLE_DESC=	Enable the trickle download manager
32
CLISCAN_DESC=	Enable support for CLI content scanners
30
CLISCAN_DESC=	Enable support for CLI content scanners
33
CLAMD_DESC=	Enable ClamD AV content scanner
31
CLAMD_DESC=	Enable ClamD AV content scanner
34
ICAP_DESC=	Enable ICAP AV content scanner support
32
ICAP_DESC=	Enable ICAP AV content scanner support
35
KAV_DESC=	Enable Kaspersky AV support
33
KAV_DESC=	Enable Kaspersky AV support
34
AVAST_DESC=	Enable AvastD content scanner
36
NTLM_DESC=	Include NTLM authentication plugin
35
NTLM_DESC=	Include NTLM authentication plugin
37
DNS_DESC=	Include DNS authetication plugin
36
DNS_DESC=	Include DNS authetication plugin
38
EMAIL_DESC=	Enable e-mail reporting support
37
EMAIL_DESC=	Enable e-mail reporting support
39
38
DEBUG_DESC=	Enable debug build mode
40
OPTIONS_RADIO=	DESCRIPTORS
41
OPTIONS_RADIO_DESCRIPTORS=	1024 2048 4096 8192
42
43
1024_DESC=	Enable default file descriptors
44
2048_DESC=	Enable 2048 file descriptors
45
4096_DESC=	Enable 4096 file descriptors
46
8192_DESC=	Enable 8192 file descriptors
47
39
48
CONFDIR=	${PREFIX}/etc/e2guardian
40
CONFDIR=	${PREFIX}/etc/e2guardian
49
41
50
CPPFLAGS+=	-I${LOCALBASE}/include
42
CPPFLAGS+=	-I${LOCALBASE}/include
51
CFLAGS+=	-I${LOCALBASE}/include
43
CFLAGS+=	-I${LOCALBASE}/include
52
44
53
APACHE_USE=			APACHE_RUN=22+
54
TRICKLE_CONFIGURE_ENABLE=	trickledm
55
CLISCAN_CONFIGURE_ENABLE=	commandline
45
CLISCAN_CONFIGURE_ENABLE=	commandline
56
CLAMD_CONFIGURE_ENABLE=		clamd=yes
46
CLAMD_CONFIGURE_ENABLE=		clamd=yes
57
CLAMD_RUN_DEPENDS=		${LOCALBASE}/sbin/clamd:security/clamav
47
CLAMD_RUN_DEPENDS=		${LOCALBASE}/sbin/clamd:security/clamav
58
ICAP_CONFIGURE_ENABLE=		icap
48
ICAP_CONFIGURE_ENABLE=		icap
59
KAV_CONFIGURE_ENABLE=		kavd
49
KAV_CONFIGURE_ENABLE=		kavd
50
AVAST_CONFIGURE_ENABLE=		avastd
60
NTLM_CONFIGURE_ENABLE=		ntlm
51
NTLM_CONFIGURE_ENABLE=		ntlm
61
NTLM_RUN_DEPENDS=		${LOCALBASE}/bin/iconv:converters/libiconv
52
NTLM_RUN_DEPENDS=		${LOCALBASE}/bin/iconv:converters/libiconv
62
NTLM_USES=			iconv
53
NTLM_USES=			iconv
63
DNS_CONFIGURE_ENABLE=		dnsauth
54
DNS_CONFIGURE_ENABLE=		dnsauth
64
EMAIL_CONFIGURE_ENABLE=		email
55
EMAIL_CONFIGURE_ENABLE=		email
65
DEBUG_CONFIGURE_ON=		--with-dgdebug=on
56
DEBUG_CONFIGURE_ENABLE=		dgdebug
66
1024_CONFIGURE_ON=		--with-filedescriptors=1024
67
2048_CONFIGURE_ON=		--with-filedescriptors=2048
68
4096_CONFIGURE_ON=		--with-filedescriptors=4096
69
8192_CONFIGURE_ON=		--with-filedescriptors=8192
70
SSL_LDFLAGS=			-lssl -lcrypto
57
SSL_LDFLAGS=			-lssl -lcrypto
71
SSL_CFLAGS=			-D__SSLMITM -D__SSLCERT
58
SSL_CFLAGS=			-D__SSLMITM -D__SSLCERT
72
59
73
.include <bsd.port.options.mk>
60
.include <bsd.port.options.mk>
74
61
75
.if ${PORT_OPTIONS:MCLAMD} || ${PORT_OPTIONS:MICAP} || \
62
.if ${PORT_OPTIONS:MCLAMD} || ${PORT_OPTIONS:MICAP} || \
76
    ${PORT_OPTIONS:MKAV} || ${PORT_OPTIONS:MCLISCAN}
63
    ${PORT_OPTIONS:MKAV} || ${PORT_OPTIONS:MCLISCAN} || \
64
    ${PORT_OPTIONS:MAVAST}
77
PLIST_SUB+=	SCANNERS=""
65
PLIST_SUB+=	SCANNERS=""
78
.else
66
.else
79
PLIST_SUB+=	SCANNERS="@comment "
67
PLIST_SUB+=	SCANNERS="@comment "
80
.endif
68
.endif
81
69
82
post-extract:
70
SUB_FILES=	pkg-message pkg-install
83
.if ${PORT_OPTIONS:M2048} || ${PORT_OPTIONS:M4096} || ${PORT_OPTIONS:M8192}
84
	@${ECHO_MSG} ""
85
	@${ECHO_MSG} "######################################################"
86
	@${ECHO_MSG} "WARNING! Filedescriptors option higher then 1024."
87
	@${ECHO_MSG} "Check/raise FD_SETSIZE in /usr/include/sys/select.h"
88
	@${ECHO_MSG} "before preceeding with e2guardian compilation"
89
	@${ECHO_MSG} "######################################################"
90
	@${ECHO_MSG} ""
91
.  if !(defined(PACKAGE_BUILDING) || defined(BATCH))
92
	@sleep 3
93
.  endif
94
.endif
95
71
96
pre-configure:
72
pre-configure:
97
	@cd ${WRKSRC} && ${SH} ${WRKSRC}/autogen.sh
73
	@cd ${WRKSRC} && ${SH} ${WRKSRC}/autogen.sh
98
74
99
post-install:
75
post-install:
100
	@${FIND} ${STAGEDIR}${ETCDIR} -type f \
76
	@${FIND} ${STAGEDIR}${ETCDIR} -type f \
101
		\( -name '*.conf' -or -name '*list' \) -exec ${MV} {} {}.sample \;
77
		\( -name '*.conf' -or -name '*list' -or -name '*.story' \) \
78
		-exec ${MV} {} {}.sample \;
102
	@${MV} ${STAGEDIR}${ETCDIR}/lists/authplugins/ipgroups \
79
	@${MV} ${STAGEDIR}${ETCDIR}/lists/authplugins/ipgroups \
103
		${STAGEDIR}${ETCDIR}/lists/authplugins/ipgroups.sample
80
		${STAGEDIR}${ETCDIR}/lists/authplugins/ipgroups.sample
104
	@${MV} ${STAGEDIR}${ETCDIR}/lists/authplugins/portgroups \
81
	@${MV} ${STAGEDIR}${ETCDIR}/lists/authplugins/portgroups \
105
		${STAGEDIR}${ETCDIR}/lists/authplugins/portgroups.sample
82
		${STAGEDIR}${ETCDIR}/lists/authplugins/portgroups.sample
106
	@${MV} ${STAGEDIR}${ETCDIR}/lists/bannedrooms/default \
83
	@${MV} ${STAGEDIR}${ETCDIR}/lists/bannedrooms/default \
107
		${STAGEDIR}${ETCDIR}/lists/bannedrooms/default.sample
84
		${STAGEDIR}${ETCDIR}/lists/bannedrooms/default.sample
108
85
	@${MV} ${STAGEDIR}${ETCDIR}/lists/bannedsitelistwithbypass \
86
		${STAGEDIR}${ETCDIR}/lists/bannedsitelistwithbypass.sample
87
	@${MV} ${STAGEDIR}${ETCDIR}/lists/exceptionvirusextensionlist.sample \
88
		${STAGEDIR}${ETCDIR}/lists/contentscanners/
89
	@${MV} ${STAGEDIR}${ETCDIR}/lists/exceptionvirussiteiplist.sample \
90
		${STAGEDIR}${ETCDIR}/lists/contentscanners/
109
.include <bsd.port.mk>
91
.include <bsd.port.mk>
(-)/usr/ports/www/e2guardian/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1491014016
1
TIMESTAMP = 1539686941
2
SHA256 (e2guardian-e2guardian-v3.5.1_GH0.tar.gz) = 700d951aec61113513ed3bd139028bd944790e09712646a54143a73851356527
2
SHA256 (e2guardian-e2guardian-v5.2.2_GH0.tar.gz) = 219160755592ee0d05b2f25698ee5a4257330ff2e15ae3ca716df2df0db8b00b
3
SIZE (e2guardian-e2guardian-v3.5.1_GH0.tar.gz) = 529677
3
SIZE (e2guardian-e2guardian-v5.2.2_GH0.tar.gz) = 2000439
(-)/usr/ports/www/e2guardian/files/patch-configs_authplugins_Makefile.am (+11 lines)
Line 0 Link Here
1
--- configs/authplugins/Makefile.am.orig	2018-10-16 12:21:11 UTC
2
+++ configs/authplugins/Makefile.am
3
@@ -4,7 +4,7 @@ DGDATADIR = $(DGCONFDIR)/authplugins
4
 
5
 SUBDIRS = .
6
 
7
-FLISTS = proxy-basic.conf ident.conf ip.conf proxy-digest.conf \
8
+FLISTS = proxy-basic.conf ident.conf ip.conf proxy-digest.conf proxy-header.conf\
9
 	 port.conf 
10
 
11
 if ENABLE_NTLM
(-)/usr/ports/www/e2guardian/files/patch-configure.ac (+10 lines)
Line 0 Link Here
1
--- configure.ac.orig	2018-08-21 08:17:02 UTC
2
+++ configure.ac
3
@@ -617,7 +617,6 @@ else
4
 	AC_MSG_RESULT(yes)
5
 	dnsauth=true
6
 	DNSAUTHSUPPORT=""
7
-	LIBS="${LIBS} -lresolv"
8
 	AC_DEFINE([PRT_DNSAUTH],[],[Define to enable DNS auth plugin])
9
 fi],
10
 [
(-)/usr/ports/www/e2guardian/files/pkg-install.in (+32 lines)
Line 0 Link Here
1
#!/bin/sh
2
#
3
#
4
5
PATH=/bin:/usr/bin:/usr/sbin
6
pkgname=$1
7
e2guardian_confdir="${PKG_PREFIX:-%%PREFIX%%}/etc/e2guardian"
8
9
case $2 in
10
PRE-INSTALL)
11
	echo "===> Pre-installation configuration for ${pkgname}"
12
	;;
13
POST-INSTALL)
14
	# Populate initial config files in case of new install in a way
15
	# to avoid overwrite of existing config files.
16
17
        sample_files=$(find ${e2guardian_confdir}/e2guardian -name "*.sample" -print)
18
	echo ${sample_files}
19
	for file in ${sample_files} ; do
20
		file2=$(echo $file | rev | cut -c8- | rev)
21
		if [ ! -f ${file2} -a -f ${file} ]; then
22
			echo "Creating ${file2} from ${file}..."
23
			install -c -o root -g wheel -m 0644 ${file} ${file2}
24
		fi
25
	done
26
	;;
27
*)
28
	exit 33
29
	;;
30
esac
31
exit 0
32
(-)/usr/ports/www/e2guardian/files/pkg-message.in (+49 lines)
Line 0 Link Here
1
####################################################################################
2
     o You can find the configuration files for this package in the
3
       directory %%PREFIX%%/etc/e2guardian.
4
5
       Note:
6
       If you just updated your e2guardian installation from an earlier version,
7
       make sure to check your e2guardian.conf and e2guardianf[1..9].conf 
8
       configuration files against the respective e2giardian.conf.sample 
9
       and e2guardianf1.conf.sample files.
10
       Do not forget to check/configure log rotation and compression- read
11
       newsyslog(8) man page for details.
12
13
     o Running of e2guardian and squid on the same machine is common configuration.
14
       In order to get reliable and fast-working configuration  on heavy loaded
15
       systems with real-time content checking with antivirus you might want to set
16
       the following tunables (see tuning(7) man page for details prior to tuning):
17
18
       **** /boot/loader.conf ****
19
         kern.ipc.msgmnb=8192
20
         kern.ipc.msgssz=64
21
         kern.ipc.msgtql=2048
22
         net.inet.tcp.syncache.hashsize=1024
23
         net.inet.tcp.syncache.bucketlimit=100
24
25
       **** /etc/sysctl.conf ****
26
         net.inet.ip.portrange.last=65535
27
         net.inet.ip.portrange.first=1024
28
         net.inet.tcp.delayed_ack=1
29
         net.inet.tcp.nolocaltimewait=1
30
         kern.ipc.soacceptqueue=8192
31
         net.local.stream.recvspace=65535
32
         net.local.stream.sendspace=65535
33
         net.inet.ip.portrange.randomized=0
34
         #Skip feeding /dev/random from network.
35
         kern.random.harvest.mask=399
36
          
37
         Also do not forget to raise kern.threads.max_threads_per_proc to the value
38
         higher then httpworkers in e2giardian.conf.
39
40
     o As of v.4 e2guardian is a single process multithreaded application.
41
       It might be reasonable to use sysutils/fsc or similar tools to control 
42
       it's status.
43
44
     o Useful links:
45
         - e2guardian project web site http://e2guardian.org/
46
         - GitHub repository https://github.com/e2guardian/e2guardian/
47
         - support forum https://groups.google.com/forum/#!forum/e2guardian
48
         - link for bug reports https://github.com/e2guardian/e2guardian/issues
49
####################################################################################
(-)/usr/ports/www/e2guardian/pkg-message (-10 lines)
Lines 1-10 Link Here
1
===>   Please Note:
2
3
*******************************************************************************
4
       This port has created a log file named e2guardian.log that can get
5
       quite large.  Please read the newsyslog(8) man page for instructions
6
       on configuring log rotation and compression.
7
8
       This port has been converted using old dansguardian-devel port
9
       Let me know how it works (or not). (Patches always welcome.)
10
*******************************************************************************
(-)/usr/ports/www/e2guardian/pkg-plist (-9 / +59 lines)
Lines 4-71 Link Here
4
@sample %%ETCDIR%%/authplugins/port.conf.sample
4
@sample %%ETCDIR%%/authplugins/port.conf.sample
5
@sample %%ETCDIR%%/authplugins/proxy-basic.conf.sample
5
@sample %%ETCDIR%%/authplugins/proxy-basic.conf.sample
6
@sample %%ETCDIR%%/authplugins/proxy-digest.conf.sample
6
@sample %%ETCDIR%%/authplugins/proxy-digest.conf.sample
7
@sample %%ETCDIR%%/authplugins/proxy-header.conf.sample
7
%%DNS%%@sample %%ETCDIR%%/authplugins/proxy-header.conf.sample
8
%%TRICKLE%%@sample %%ETCDIR%%/downloadmanagers/trickle.conf.sample
9
%%NTLM%%@sample %%ETCDIR%%/authplugins/proxy-ntlm.conf.sample
8
%%NTLM%%@sample %%ETCDIR%%/authplugins/proxy-ntlm.conf.sample
10
%%CLAMD%%@sample %%ETCDIR%%/contentscanners/clamdscan.conf.sample
9
%%CLAMD%%@sample %%ETCDIR%%/contentscanners/clamdscan.conf.sample
11
%%ICAP%%@sample %%ETCDIR%%/contentscanners/icapscan.conf.sample
10
%%ICAP%%@sample %%ETCDIR%%/contentscanners/icapscan.conf.sample
12
%%CLISCAN%%@sample %%ETCDIR%%/contentscanners/commandlinescan.conf.sample
11
%%CLISCAN%%@sample %%ETCDIR%%/contentscanners/commandlinescan.conf.sample
13
%%KAV%%@sample %%ETCDIR%%/contentscanners/kavdscan.conf.sample
12
%%KAV%%@sample %%ETCDIR%%/contentscanners/kavdscan.conf.sample
13
%%AVAST%%@sample %%ETCDIR%%/contentscanners/avastd.conf.sample
14
@sample %%ETCDIR%%/downloadmanagers/default.conf.sample
14
@sample %%ETCDIR%%/downloadmanagers/default.conf.sample
15
@sample %%ETCDIR%%/downloadmanagers/fancy.conf.sample
16
@sample %%ETCDIR%%/e2guardian.conf.sample
15
@sample %%ETCDIR%%/e2guardian.conf.sample
17
@sample %%ETCDIR%%/e2guardianf1.conf.sample
16
@sample %%ETCDIR%%/e2guardianf1.conf.sample
17
@sample %%ETCDIR%%/common.story.sample
18
@sample %%ETCDIR%%/examplef1.story.sample
19
@sample %%ETCDIR%%/preauth.story.sample
20
@sample %%ETCDIR%%/site.story.sample
18
@sample %%ETCDIR%%/lists/addheaderregexplist.sample
21
@sample %%ETCDIR%%/lists/addheaderregexplist.sample
19
%%DNS%%@sample %%ETCDIR%%/lists/authexceptionsitelist.sample
22
%%DNS%%@sample %%ETCDIR%%/lists/authexceptionsitelist.sample
20
%%DNS%%@sample %%ETCDIR%%/lists/authexceptionurllist.sample
23
%%DNS%%@sample %%ETCDIR%%/lists/authexceptionurllist.sample
24
%%DNS%%@sample %%ETCDIR%%/lists/authexceptioniplist.sample
25
%%DNS%%@sample %%ETCDIR%%/lists/authexceptionsiteiplist.sample
21
@sample %%ETCDIR%%/lists/authplugins/ipgroups.sample
26
@sample %%ETCDIR%%/lists/authplugins/ipgroups.sample
22
@sample %%ETCDIR%%/lists/authplugins/portgroups.sample
27
@sample %%ETCDIR%%/lists/authplugins/portgroups.sample
28
@sample %%ETCDIR%%/lists/bannedclientlist.sample
23
@sample %%ETCDIR%%/lists/bannedextensionlist.sample
29
@sample %%ETCDIR%%/lists/bannedextensionlist.sample
24
@sample %%ETCDIR%%/lists/bannediplist.sample
30
@sample %%ETCDIR%%/lists/bannediplist.sample
25
@sample %%ETCDIR%%/lists/bannedmimetypelist.sample
31
@sample %%ETCDIR%%/lists/bannedmimetypelist.sample
26
@sample %%ETCDIR%%/lists/bannedphraselist.sample
32
@sample %%ETCDIR%%/lists/bannedphraselist.sample
27
@sample %%ETCDIR%%/lists/bannedregexpheaderlist.sample
33
@sample %%ETCDIR%%/lists/bannedregexpheaderlist.sample
28
@sample %%ETCDIR%%/lists/bannedregexpurllist.sample
34
@sample %%ETCDIR%%/lists/bannedregexpurllist.sample
35
@sample %%ETCDIR%%/lists/bannedregexpuseragentlist.sample
29
@sample %%ETCDIR%%/lists/bannedrooms/default.sample
36
@sample %%ETCDIR%%/lists/bannedrooms/default.sample
30
@sample %%ETCDIR%%/lists/bannedsearchlist.sample
37
@sample %%ETCDIR%%/lists/bannedsearchlist.sample
38
@sample %%ETCDIR%%/lists/bannedsearchoveridelist.sample
39
@sample %%ETCDIR%%/lists/bannedsiteiplist.sample
31
@sample %%ETCDIR%%/lists/bannedsitelist.sample
40
@sample %%ETCDIR%%/lists/bannedsitelist.sample
41
@sample %%ETCDIR%%/lists/bannedsitelistwithbypass.sample
42
@sample %%ETCDIR%%/lists/bannedsslsiteiplist.sample
32
@sample %%ETCDIR%%/lists/bannedsslsitelist.sample
43
@sample %%ETCDIR%%/lists/bannedsslsitelist.sample
33
@sample %%ETCDIR%%/lists/bannedurllist.sample
44
@sample %%ETCDIR%%/lists/bannedurllist.sample
34
@sample %%ETCDIR%%/lists/contentregexplist.sample
45
@sample %%ETCDIR%%/lists/contentregexplist.sample
35
%%SCANNERS%%@sample %%ETCDIR%%/lists/contentscanners/exceptionvirusextensionlist.sample
46
%%SCANNERS%%@sample %%ETCDIR%%/lists/contentscanners/exceptionvirusextensionlist.sample
36
%%SCANNERS%%@sample %%ETCDIR%%/lists/contentscanners/exceptionvirusmimetypelist.sample
47
%%SCANNERS%%@sample %%ETCDIR%%/lists/contentscanners/exceptionvirusmimetypelist.sample
48
%%SCANNERS%%@sample %%ETCDIR%%/lists/contentscanners/exceptionvirussiteiplist.sample
37
%%SCANNERS%%@sample %%ETCDIR%%/lists/contentscanners/exceptionvirussitelist.sample
49
%%SCANNERS%%@sample %%ETCDIR%%/lists/contentscanners/exceptionvirussitelist.sample
38
%%SCANNERS%%@sample %%ETCDIR%%/lists/contentscanners/exceptionvirusurllist.sample
50
%%SCANNERS%%@sample %%ETCDIR%%/lists/contentscanners/exceptionvirusurllist.sample
39
@sample %%ETCDIR%%/lists/downloadmanagers/managedextensionlist.sample
51
@sample %%ETCDIR%%/lists/embededreferersiteiplist.sample
40
@sample %%ETCDIR%%/lists/downloadmanagers/managedmimetypelist.sample
41
@sample %%ETCDIR%%/lists/embededreferersitelist.sample
52
@sample %%ETCDIR%%/lists/embededreferersitelist.sample
42
@sample %%ETCDIR%%/lists/embededrefererurllist.sample
53
@sample %%ETCDIR%%/lists/embededrefererurllist.sample
54
@sample %%ETCDIR%%/lists/exceptionclientlist.sample
43
@sample %%ETCDIR%%/lists/exceptionextensionlist.sample
55
@sample %%ETCDIR%%/lists/exceptionextensionlist.sample
44
@sample %%ETCDIR%%/lists/exceptionfilesitelist.sample
56
@sample %%ETCDIR%%/lists/exceptionfilesitelist.sample
57
@sample %%ETCDIR%%/lists/exceptionfilesiteiplist.sample
45
@sample %%ETCDIR%%/lists/exceptionfileurllist.sample
58
@sample %%ETCDIR%%/lists/exceptionfileurllist.sample
46
@sample %%ETCDIR%%/lists/exceptioniplist.sample
59
@sample %%ETCDIR%%/lists/exceptioniplist.sample
47
@sample %%ETCDIR%%/lists/exceptionmimetypelist.sample
60
@sample %%ETCDIR%%/lists/exceptionmimetypelist.sample
48
@sample %%ETCDIR%%/lists/exceptionphraselist.sample
61
@sample %%ETCDIR%%/lists/exceptionphraselist.sample
62
@sample %%ETCDIR%%/lists/exceptionregexpheaderlist.sample
49
@sample %%ETCDIR%%/lists/exceptionregexpurllist.sample
63
@sample %%ETCDIR%%/lists/exceptionregexpurllist.sample
64
@sample %%ETCDIR%%/lists/exceptionregexpuseragentlist.sample
65
@sample %%ETCDIR%%/lists/exceptionsiteiplist.sample
50
@sample %%ETCDIR%%/lists/exceptionsitelist.sample
66
@sample %%ETCDIR%%/lists/exceptionsitelist.sample
51
@sample %%ETCDIR%%/lists/exceptionurllist.sample
67
@sample %%ETCDIR%%/lists/exceptionurllist.sample
52
@sample %%ETCDIR%%/lists/filtergroupslist.sample
68
@sample %%ETCDIR%%/lists/filtergroupslist.sample
69
@sample %%ETCDIR%%/lists/greysiteiplist.sample
53
@sample %%ETCDIR%%/lists/greysitelist.sample
70
@sample %%ETCDIR%%/lists/greysitelist.sample
71
@sample %%ETCDIR%%/lists/greysslsiteiplist.sample
54
@sample %%ETCDIR%%/lists/greysslsitelist.sample
72
@sample %%ETCDIR%%/lists/greysslsitelist.sample
55
@sample %%ETCDIR%%/lists/greyurllist.sample
73
@sample %%ETCDIR%%/lists/greyurllist.sample
56
@sample %%ETCDIR%%/lists/headerregexplist.sample
74
@sample %%ETCDIR%%/lists/headerregexplist.sample
57
@sample %%ETCDIR%%/lists/localbannedsearchlist.sample
75
@sample %%ETCDIR%%/lists/localbannedsearchlist.sample
76
@sample %%ETCDIR%%/lists/localbannedsiteiplist.sample
58
@sample %%ETCDIR%%/lists/localbannedsitelist.sample
77
@sample %%ETCDIR%%/lists/localbannedsitelist.sample
78
@sample %%ETCDIR%%/lists/localbannedsslsiteiplist.sample
59
@sample %%ETCDIR%%/lists/localbannedsslsitelist.sample
79
@sample %%ETCDIR%%/lists/localbannedsslsitelist.sample
60
@sample %%ETCDIR%%/lists/localbannedurllist.sample
80
@sample %%ETCDIR%%/lists/localbannedurllist.sample
81
@sample %%ETCDIR%%/lists/localexceptionsiteiplist.sample
61
@sample %%ETCDIR%%/lists/localexceptionsitelist.sample
82
@sample %%ETCDIR%%/lists/localexceptionsitelist.sample
62
@sample %%ETCDIR%%/lists/localexceptionurllist.sample
83
@sample %%ETCDIR%%/lists/localexceptionurllist.sample
84
@sample %%ETCDIR%%/lists/localgreysiteiplist.sample
63
@sample %%ETCDIR%%/lists/localgreysitelist.sample
85
@sample %%ETCDIR%%/lists/localgreysitelist.sample
86
@sample %%ETCDIR%%/lists/localgreysslsiteiplist.sample
64
@sample %%ETCDIR%%/lists/localgreysslsitelist.sample
87
@sample %%ETCDIR%%/lists/localgreysslsitelist.sample
65
@sample %%ETCDIR%%/lists/localgreyurllist.sample
88
@sample %%ETCDIR%%/lists/localgreyurllist.sample
66
@sample %%ETCDIR%%/lists/logregexpurllist.sample
89
@sample %%ETCDIR%%/lists/logregexpurllist.sample
90
@sample %%ETCDIR%%/lists/logsiteiplist.sample
67
@sample %%ETCDIR%%/lists/logsitelist.sample
91
@sample %%ETCDIR%%/lists/logsitelist.sample
68
@sample %%ETCDIR%%/lists/logurllist.sample
92
@sample %%ETCDIR%%/lists/logurllist.sample
93
@sample %%ETCDIR%%/lists/nocheckcertsiteiplist.sample
69
@sample %%ETCDIR%%/lists/nocheckcertsitelist.sample
94
@sample %%ETCDIR%%/lists/nocheckcertsitelist.sample
70
%%ETCDIR%%/lists/phraselists/badwords/weighted_dutch
95
%%ETCDIR%%/lists/phraselists/badwords/weighted_dutch
71
%%ETCDIR%%/lists/phraselists/badwords/weighted_french
96
%%ETCDIR%%/lists/phraselists/badwords/weighted_french
Lines 143-149 Link Here
143
%%ETCDIR%%/lists/phraselists/weapons/weighted
168
%%ETCDIR%%/lists/phraselists/weapons/weighted
144
%%ETCDIR%%/lists/phraselists/weapons/weighted_portuguese
169
%%ETCDIR%%/lists/phraselists/weapons/weighted_portuguese
145
%%ETCDIR%%/lists/phraselists/webmail/weighted
170
%%ETCDIR%%/lists/phraselists/webmail/weighted
146
%%ETCDIR%%/lists/pics
171
@sample %%ETCDIR%%/lists/refererexceptionsiteiplist.sample
147
@sample %%ETCDIR%%/lists/refererexceptionsitelist.sample
172
@sample %%ETCDIR%%/lists/refererexceptionsitelist.sample
148
@sample %%ETCDIR%%/lists/refererexceptionurllist.sample
173
@sample %%ETCDIR%%/lists/refererexceptionurllist.sample
149
@sample %%ETCDIR%%/lists/searchregexplist.sample
174
@sample %%ETCDIR%%/lists/searchregexplist.sample
Lines 159-247 Link Here
159
%%PORTDOCS%%%%DOCSDIR%%/FAQ
184
%%PORTDOCS%%%%DOCSDIR%%/FAQ
160
%%PORTDOCS%%%%DOCSDIR%%/FAQ.html
185
%%PORTDOCS%%%%DOCSDIR%%/FAQ.html
161
%%PORTDOCS%%%%DOCSDIR%%/Plugins
186
%%PORTDOCS%%%%DOCSDIR%%/Plugins
187
%%DATADIR%%/blockedflash.swf
162
%%DATADIR%%/e2guardian.pl
188
%%DATADIR%%/e2guardian.pl
163
%%DATADIR%%/languages/arspanish/fancydmtemplate.html
189
%%DATADIR%%/languages/arspanish/fancydmtemplate.html
164
%%DATADIR%%/languages/arspanish/messages
190
%%DATADIR%%/languages/arspanish/messages
191
%%DATADIR%%/languages/arspanish/neterr_template.html
165
%%DATADIR%%/languages/arspanish/template.html
192
%%DATADIR%%/languages/arspanish/template.html
166
%%DATADIR%%/languages/bulgarian/fancydmtemplate.html
193
%%DATADIR%%/languages/bulgarian/fancydmtemplate.html
167
%%DATADIR%%/languages/bulgarian/messages
194
%%DATADIR%%/languages/bulgarian/messages
195
%%DATADIR%%/languages/bulgarian/neterr_template.html
168
%%DATADIR%%/languages/bulgarian/template.html
196
%%DATADIR%%/languages/bulgarian/template.html
169
%%DATADIR%%/languages/chinesebig5/fancydmtemplate.html
197
%%DATADIR%%/languages/chinesebig5/fancydmtemplate.html
170
%%DATADIR%%/languages/chinesebig5/messages
198
%%DATADIR%%/languages/chinesebig5/messages
199
%%DATADIR%%/languages/chinesebig5/neterr_template.html
171
%%DATADIR%%/languages/chinesebig5/template.html
200
%%DATADIR%%/languages/chinesebig5/template.html
172
%%DATADIR%%/languages/chinesegb2312/fancydmtemplate.html
201
%%DATADIR%%/languages/chinesegb2312/fancydmtemplate.html
173
%%DATADIR%%/languages/chinesegb2312/messages
202
%%DATADIR%%/languages/chinesegb2312/messages
203
%%DATADIR%%/languages/chinesegb2312/neterr_template.html
174
%%DATADIR%%/languages/chinesegb2312/template.html
204
%%DATADIR%%/languages/chinesegb2312/template.html
175
%%DATADIR%%/languages/czech/fancydmtemplate.html
205
%%DATADIR%%/languages/czech/fancydmtemplate.html
176
%%DATADIR%%/languages/czech/messages
206
%%DATADIR%%/languages/czech/messages
207
%%DATADIR%%/languages/czech/neterr_template.html
177
%%DATADIR%%/languages/czech/template.html
208
%%DATADIR%%/languages/czech/template.html
178
%%DATADIR%%/languages/danish/fancydmtemplate.html
209
%%DATADIR%%/languages/danish/fancydmtemplate.html
179
%%DATADIR%%/languages/danish/messages
210
%%DATADIR%%/languages/danish/messages
211
%%DATADIR%%/languages/danish/neterr_template.html
180
%%DATADIR%%/languages/danish/template.html
212
%%DATADIR%%/languages/danish/template.html
181
%%DATADIR%%/languages/dutch/fancydmtemplate.html
213
%%DATADIR%%/languages/dutch/fancydmtemplate.html
182
%%DATADIR%%/languages/dutch/messages
214
%%DATADIR%%/languages/dutch/messages
215
%%DATADIR%%/languages/dutch/neterr_template.html
183
%%DATADIR%%/languages/dutch/template.html
216
%%DATADIR%%/languages/dutch/template.html
184
%%DATADIR%%/languages/french/fancydmtemplate.html
217
%%DATADIR%%/languages/french/fancydmtemplate.html
185
%%DATADIR%%/languages/french/messages
218
%%DATADIR%%/languages/french/messages
219
%%DATADIR%%/languages/french/neterr_template.html
186
%%DATADIR%%/languages/french/template.html
220
%%DATADIR%%/languages/french/template.html
187
%%DATADIR%%/languages/german/fancydmtemplate.html
221
%%DATADIR%%/languages/german/fancydmtemplate.html
188
%%DATADIR%%/languages/german/messages
222
%%DATADIR%%/languages/german/messages
223
%%DATADIR%%/languages/german/neterr_template.html
189
%%DATADIR%%/languages/german/template.html
224
%%DATADIR%%/languages/german/template.html
190
%%DATADIR%%/languages/hebrew/fancydmtemplate.html
225
%%DATADIR%%/languages/hebrew/fancydmtemplate.html
191
%%DATADIR%%/languages/hebrew/messages
226
%%DATADIR%%/languages/hebrew/messages
227
%%DATADIR%%/languages/hebrew/neterr_template.html
192
%%DATADIR%%/languages/hebrew/template.html
228
%%DATADIR%%/languages/hebrew/template.html
193
%%DATADIR%%/languages/hungarian/fancydmtemplate.html
229
%%DATADIR%%/languages/hungarian/fancydmtemplate.html
194
%%DATADIR%%/languages/hungarian/messages
230
%%DATADIR%%/languages/hungarian/messages
231
%%DATADIR%%/languages/hungarian/neterr_template.html
195
%%DATADIR%%/languages/hungarian/template.html
232
%%DATADIR%%/languages/hungarian/template.html
196
%%DATADIR%%/languages/indonesian/fancydmtemplate.html
233
%%DATADIR%%/languages/indonesian/fancydmtemplate.html
197
%%DATADIR%%/languages/indonesian/messages
234
%%DATADIR%%/languages/indonesian/messages
235
%%DATADIR%%/languages/indonesian/neterr_template.html
198
%%DATADIR%%/languages/indonesian/template.html
236
%%DATADIR%%/languages/indonesian/template.html
199
%%DATADIR%%/languages/italian/fancydmtemplate.html
237
%%DATADIR%%/languages/italian/fancydmtemplate.html
200
%%DATADIR%%/languages/italian/messages
238
%%DATADIR%%/languages/italian/messages
239
%%DATADIR%%/languages/italian/neterr_template.html
201
%%DATADIR%%/languages/italian/template.html
240
%%DATADIR%%/languages/italian/template.html
202
%%DATADIR%%/languages/japanese/fancydmtemplate.html
241
%%DATADIR%%/languages/japanese/fancydmtemplate.html
203
%%DATADIR%%/languages/japanese/messages
242
%%DATADIR%%/languages/japanese/messages
243
%%DATADIR%%/languages/japanese/neterr_template.html
204
%%DATADIR%%/languages/japanese/template.html
244
%%DATADIR%%/languages/japanese/template.html
205
%%DATADIR%%/languages/lithuanian/fancydmtemplate.html
245
%%DATADIR%%/languages/lithuanian/fancydmtemplate.html
206
%%DATADIR%%/languages/lithuanian/messages
246
%%DATADIR%%/languages/lithuanian/messages
247
%%DATADIR%%/languages/lithuanian/neterr_template.html
207
%%DATADIR%%/languages/lithuanian/template.html
248
%%DATADIR%%/languages/lithuanian/template.html
208
%%DATADIR%%/languages/malay/fancydmtemplate.html
249
%%DATADIR%%/languages/malay/fancydmtemplate.html
209
%%DATADIR%%/languages/malay/messages
250
%%DATADIR%%/languages/malay/messages
251
%%DATADIR%%/languages/malay/neterr_template.html
210
%%DATADIR%%/languages/malay/template.html
252
%%DATADIR%%/languages/malay/template.html
211
%%DATADIR%%/languages/mxspanish/fancydmtemplate.html
253
%%DATADIR%%/languages/mxspanish/fancydmtemplate.html
212
%%DATADIR%%/languages/mxspanish/messages
254
%%DATADIR%%/languages/mxspanish/messages
255
%%DATADIR%%/languages/mxspanish/neterr_template.html
213
%%DATADIR%%/languages/mxspanish/template.html
256
%%DATADIR%%/languages/mxspanish/template.html
214
%%DATADIR%%/languages/polish/fancydmtemplate.html
257
%%DATADIR%%/languages/polish/fancydmtemplate.html
215
%%DATADIR%%/languages/polish/messages
258
%%DATADIR%%/languages/polish/messages
259
%%DATADIR%%/languages/polish/neterr_template.html
216
%%DATADIR%%/languages/polish/template.html
260
%%DATADIR%%/languages/polish/template.html
217
%%DATADIR%%/languages/portuguese/fancydmtemplate.html
261
%%DATADIR%%/languages/portuguese/fancydmtemplate.html
218
%%DATADIR%%/languages/portuguese/messages
262
%%DATADIR%%/languages/portuguese/messages
219
%%DATADIR%%/languages/portuguese/messagesaccents
263
%%DATADIR%%/languages/portuguese/neterr_template.html
220
%%DATADIR%%/languages/portuguese/template.html
264
%%DATADIR%%/languages/portuguese/template.html
221
%%DATADIR%%/languages/ptbrazilian/fancydmtemplate.html
265
%%DATADIR%%/languages/ptbrazilian/fancydmtemplate.html
222
%%DATADIR%%/languages/ptbrazilian/messages
266
%%DATADIR%%/languages/ptbrazilian/messages
267
%%DATADIR%%/languages/ptbrazilian/neterr_template.html
223
%%DATADIR%%/languages/ptbrazilian/template.html
268
%%DATADIR%%/languages/ptbrazilian/template.html
224
%%DATADIR%%/languages/russian-1251/fancydmtemplate.html
269
%%DATADIR%%/languages/russian-1251/fancydmtemplate.html
225
%%DATADIR%%/languages/russian-1251/messages
270
%%DATADIR%%/languages/russian-1251/messages
271
%%DATADIR%%/languages/russian-1251/neterr_template.html
226
%%DATADIR%%/languages/russian-1251/template.html
272
%%DATADIR%%/languages/russian-1251/template.html
227
%%DATADIR%%/languages/russian-koi8-r/fancydmtemplate.html
273
%%DATADIR%%/languages/russian-koi8-r/fancydmtemplate.html
228
%%DATADIR%%/languages/russian-koi8-r/messages
274
%%DATADIR%%/languages/russian-koi8-r/messages
275
%%DATADIR%%/languages/russian-koi8-r/neterr_template.html
229
%%DATADIR%%/languages/russian-koi8-r/template.html
276
%%DATADIR%%/languages/russian-koi8-r/template.html
230
%%DATADIR%%/languages/slovak/fancydmtemplate.html
277
%%DATADIR%%/languages/slovak/fancydmtemplate.html
231
%%DATADIR%%/languages/slovak/messages
278
%%DATADIR%%/languages/slovak/messages
279
%%DATADIR%%/languages/slovak/neterr_template.html
232
%%DATADIR%%/languages/slovak/template.html
280
%%DATADIR%%/languages/slovak/template.html
233
%%DATADIR%%/languages/spanish/fancydmtemplate.html
281
%%DATADIR%%/languages/spanish/fancydmtemplate.html
234
%%DATADIR%%/languages/spanish/messages
282
%%DATADIR%%/languages/spanish/messages
283
%%DATADIR%%/languages/spanish/neterr_template.html
235
%%DATADIR%%/languages/spanish/template.html
284
%%DATADIR%%/languages/spanish/template.html
236
%%DATADIR%%/languages/swedish/fancydmtemplate.html
285
%%DATADIR%%/languages/swedish/fancydmtemplate.html
237
%%DATADIR%%/languages/swedish/messages
286
%%DATADIR%%/languages/swedish/messages
287
%%DATADIR%%/languages/swedish/neterr_template.html
238
%%DATADIR%%/languages/swedish/template.html
288
%%DATADIR%%/languages/swedish/template.html
239
%%DATADIR%%/languages/turkish/fancydmtemplate.html
289
%%DATADIR%%/languages/turkish/fancydmtemplate.html
240
%%DATADIR%%/languages/turkish/messages
290
%%DATADIR%%/languages/turkish/messages
291
%%DATADIR%%/languages/turkish/neterr_template.html
241
%%DATADIR%%/languages/turkish/template.html
292
%%DATADIR%%/languages/turkish/template.html
242
%%DATADIR%%/languages/ukenglish/fancydmtemplate.html
293
%%DATADIR%%/languages/ukenglish/fancydmtemplate.html
243
%%DATADIR%%/languages/ukenglish/messages
294
%%DATADIR%%/languages/ukenglish/messages
244
%%DATADIR%%/languages/ukenglish/messages.alt
295
%%DATADIR%%/languages/ukenglish/neterr_template.html
245
%%DATADIR%%/languages/ukenglish/template.html
296
%%DATADIR%%/languages/ukenglish/template.html
246
%%DATADIR%%/scripts/bsd-init
297
%%DATADIR%%/scripts/bsd-init
247
%%DATADIR%%/scripts/e2guardian
298
%%DATADIR%%/scripts/e2guardian
Lines 250-253 Link Here
250
%%DATADIR%%/scripts/solaris-init
301
%%DATADIR%%/scripts/solaris-init
251
%%DATADIR%%/scripts/systemv-init
302
%%DATADIR%%/scripts/systemv-init
252
%%DATADIR%%/transparent1x1.gif
303
%%DATADIR%%/transparent1x1.gif
253
%%DATADIR%%/blockedflash.swf

Return to bug 232442