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

(-)dspam/Makefile (-11 / +9 lines)
Lines 6-23 Link Here
6
#
6
#
7
7
8
PORTNAME=	dspam
8
PORTNAME=	dspam
9
PORTVERSION=	3.2.3${SNAP_DATE}
9
PORTVERSION=	${PORTVER_MAJ}${SNAP_DATE}
10
PORTREVISION=	0
10
PORTREVISION=	0
11
CATEGORIES=	mail
11
CATEGORIES=	mail
12
MASTER_SITES=	http://people.tecnik93.com/~itetcu/FreeBSD/ports/dspam/sources/
12
MASTER_SITES=	http://people.tecnik93.com/~itetcu/FreeBSD/ports/dspam/sources/
13
DISTFILES=	dspam.3.2.3.cvs.stable${SNAP_DATE}.tar.gz
14
13
15
MAINTAINER=	itetcu@people.tecnik93.com
14
MAINTAINER=	itetcu@people.tecnik93.com
16
COMMENT=	Bayesian spam filter - stable maintenance version
15
COMMENT=	Bayesian spam filter - stable maintenance version
17
16
18
WRKSRC=		${WRKDIR}/dspam-cvs-stable${SNAP_DATE}
17
PORTVER_MAJ=	3.2.4
18
#SNAP_DATE=	.20041229.1945
19
19
20
SNAP_DATE=	.20041229.1945
20
.ifdef(SNAP_DATE)
21
DISTFILES=	dspam.${PORTVER_MAJ}.cvs.stable${SNAP_DATE}.tar.gz
22
WRKSRC=		${WRKDIR}/dspam-cvs-stable${SNAP_DATE}
23
.endif
21
24
22
## debug / log / admin options
25
## debug / log / admin options
23
OPTIONS=	DEBUG "Enable debugging logging" on
26
OPTIONS=	DEBUG "Enable debugging logging" on
Lines 32-38 Link Here
32
OPTIONS+=	RPV "Use Robinson technique combining p-values" off
35
OPTIONS+=	RPV "Use Robinson technique combining p-values" off
33
OPTIONS+=	TEST_COND "More inoculous results rapidly, risk fps" on
36
OPTIONS+=	TEST_COND "More inoculous results rapidly, risk fps" on
34
OPTIONS+=	NO_BIAS "No bias toward innocent mail" off
37
OPTIONS+=	NO_BIAS "No bias toward innocent mail" off
35
OPTIONS+=	WHITELIST "Automatic whitelisting of ham" off
36
OPTIONS+=	NEURAL_NET "Enable neural networking" off
38
OPTIONS+=	NEURAL_NET "Enable neural networking" off
37
39
38
## run-time configure  options
40
## run-time configure  options
Lines 161-170 Link Here
161
CONFIGURE_ARGS+=	--disable-bias
163
CONFIGURE_ARGS+=	--disable-bias
162
.endif
164
.endif
163
165
164
.if defined(WITH_WHITELIST)
165
CONFIGURE_ARGS+=	--enable-whitelist
166
.endif
167
168
.if defined(WITH_NEURAL_NET)
166
.if defined(WITH_NEURAL_NET)
169
CONFIGURE_ARGS+=	--enable-neural-networking
167
CONFIGURE_ARGS+=	--enable-neural-networking
170
.endif
168
.endif
Lines 444-453 Link Here
444
	@${ECHO_CMD} ""
442
	@${ECHO_CMD} ""
445
	@sleep 5
443
	@sleep 5
446
444
447
.for old_opt in MAILDROP PROCMAIL TRAD_BAYES ALT_BAYES WITH_SPAM_SUBJ \
445
.for old_opt in MAILDROP PROCMAIL TRAD_BAYES ALT_BAYES SPAM_SUBJ \
448
	USER_LOGGING SYSTEM_LOGGING WEBMAIL OPT_IN SAT PARSE_TO_HEADERS \
446
	USER_LOGGING SYSTEM_LOGGING WEBMAIL OPT_IN SAT PARSE_TO_HEADERS \
449
	BROKEN_MTA BROKEN_ERR_CODES SIGNATURE_HEADERS SIGNATURE_ATACH \
447
	BROKEN_MTA BROKEN_ERR_CODES SIGNATURE_HEADERS SIGNATURE_ATACH \
450
	HOMEDIR_DOT SIGNATURE_LIFE SQLITE QUARANTINE_AGENT
448
	HOMEDIR_DOT SIGNATURE_LIFE SQLITE QUARANTINE_AGENT WHITELIST
451
.	if defined(WITH_${old_opt}) || defined(WITHOUT_${old_opt})
449
.	if defined(WITH_${old_opt}) || defined(WITHOUT_${old_opt})
452
	@${ECHO_CMD} ""
450
	@${ECHO_CMD} ""
453
	@${ECHO_CMD} "******************************************************************"
451
	@${ECHO_CMD} "******************************************************************"
(-)dspam/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
MD5 (dspam.3.2.3.cvs.stable.20041229.1945.tar.gz) = 24ad7d7a70f70ff07be5d1fb8818b758
1
MD5 (dspam-3.2.4.tar.gz) = 30885376c7300c5abde37896b0ccf89a
2
SIZE (dspam.3.2.3.cvs.stable.20041229.1945.tar.gz) = 620800
2
SIZE (dspam-3.2.4.tar.gz) = 620924
(-)dspam/files/UPDATING (-1 / +13 lines)
Lines 11-16 Link Here
11
make extract;  more `find . -type f -maxdepth 2 -name UPGRADING`
11
make extract;  more `find . -type f -maxdepth 2 -name UPGRADING`
12
12
13
#############################################################################
13
#############################################################################
14
# dspam-3.2.4
15
#
16
17
- drop WITH_WHITELIST, is not supported by ./configure but by dspam.conf
18
19
[20041203.0800] jonz: performance fixes for pgsql_drv
20
minor performance fixed for pgsql_drv that may have a big effect on some
21
implementations. you should also consider creating the (unnecessary) index
22
below to precent the pgsql query builder from getting confused:
23
CREATE INDEX id_token_data_04 ON dspam_token_data(uid);
24
25
26
#############################################################################
14
# dspam-3.2.3.20041229.1945
27
# dspam-3.2.3.20041229.1945
15
#
28
#
16
29
Lines 21-27 Link Here
21
- change default DSPAM_HOME_MODE to 0770
34
- change default DSPAM_HOME_MODE to 0770
22
(ports/75549 by Julien Gabel <jpeg@thilelli.net>)
35
(ports/75549 by Julien Gabel <jpeg@thilelli.net>)
23
- DSPAM_HOME_{OWNER,GROUP} default to DSPAM_{OWNER,GROUP}
36
- DSPAM_HOME_{OWNER,GROUP} default to DSPAM_{OWNER,GROUP}
24
- fix make describe by USE_MYSQL
25
37
26
38
27
#############################################################################
39
#############################################################################

Return to bug 76198