summaryrefslogtreecommitdiff
path: root/mail/dspam/options.mk
diff options
context:
space:
mode:
authorxtraeme <xtraeme@pkgsrc.org>2006-05-06 08:36:10 +0000
committerxtraeme <xtraeme@pkgsrc.org>2006-05-06 08:36:10 +0000
commitb189699cfe3802985a75ecaf3f4ba90fc2ef28d4 (patch)
tree72082b7b1404cc13f4f635d4c0a2cecd629f3fa1 /mail/dspam/options.mk
parentf3e9c6674fcf51443be99fe6cc687f157321dbb9 (diff)
downloadpkgsrc-b189699cfe3802985a75ecaf3f4ba90fc2ef28d4.tar.gz
Update to 3.6.5 (provided by Unex in PR pkg/33427):
RELEASE 3.6.5-STABLE MAINT: PgSQL SQL tuning MAINT: WebUI aesthetic and functional fixes MAINT: Added --disable-syslog and --with-logfile= configuration flags MAINT: Added -t flag for dspam_stats to total stats MAINT: Markov result used as X-DSPAM-Confidence when Markov used MAINT: Support for separate read/write servers to be used with mysql_drv BUGFIX: Spam are quarantined when --deliver=summary BUGFIX: Admin graphs malformatted when subject contains newline character BUGFIX: WebUI does not use MAX_COL_LEN BUGFIX: Output for dspam_admin aggr pref incorrect BUGFIX: Flat-file preference writes fail on some systems BUGFIX: Failure to connect to ClamAV causes segmentation fault BUGFIX: NULL username in system causes segmentation fault BUGFIX: ClamAV processing and cleanup issues BUGFIX: Fragment files overwritten on retrain BUGFIX: Miscellaneous invalid read / segmentation fault bugs BUGFIX: If TrainingMode not specified in dspam.conf or passed in, segmentation fault BUGFIX: No output returned when using --deliver=summary with dspamc RELEASE 3.6.4-STABLE DOC: Documented user preferences in README MAINT: Added dspam_train tool, replacing most functions of dspam_corpus MAINT: Code cleanup and performance improvements MAINT: Significant improvements in accuracy, specifically reduced false pos. MAINT: Removed experimental neural collaboration functions MAINT: Added ClassAlias configuration directive to dspam.conf MAINT: Added undo option for retraining via WebUI MAINT: Added storeFragments support to WebUI MAINT: Added mass-retraining support to WebUI BUGFIX: DSPAM segfaults when invalid UID specified using UIDInSignature BUGFIX: No output when using --classify with --client BUGFIX: dspam_corpus overrides default dspam.conf settings BUGFIX: Multi-driver builds fail when preferences-extension is not supported
Diffstat (limited to 'mail/dspam/options.mk')
-rw-r--r--mail/dspam/options.mk15
1 files changed, 13 insertions, 2 deletions
diff --git a/mail/dspam/options.mk b/mail/dspam/options.mk
index 44c24313ac3..2d1ef4aceac 100644
--- a/mail/dspam/options.mk
+++ b/mail/dspam/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.14 2006/01/02 19:59:33 adrianp Exp $
+# $NetBSD: options.mk,v 1.15 2006/05/06 08:36:10 xtraeme Exp $
.if defined(DSPAM_DELIVERY_AGENT) && !empty(DSPAM_DELIVERY_AGENT:Mcustom)
DSPAM_DELIVERY_AGENT:= ${DSPAM_DELIVERY_AGENT_ARGS}
@@ -7,7 +7,7 @@ DSPAM_DELIVERY_AGENT:= ${DSPAM_DELIVERY_AGENT_ARGS}
PKG_OPTIONS_VAR= PKG_OPTIONS.dspam
PKG_SUPPORTED_OPTIONS= largescale homedir long-usernames graphs \
domainscale virtualusers preferences-extension \
- neural clamav ldap debug verbose-debug
+ neural clamav ldap syslog debug verbose-debug
.include "../../mk/bsd.options.mk"
@@ -200,6 +200,17 @@ CONFIGURE_ARGS+= --enable-clamav
.endif
###
+### Enable syslog support, otherwise
+### set flat logfile pathname for logging
+###
+.if !empty(PKG_OPTIONS:Msyslog)
+CONFIGURE_ARGS+=--enable-syslog
+.else
+CONFIGURE_ARGS+=--disable-syslog
+CONFIGURE_ARGS+=--with-logfile=${DSPAM_LOGFILE}
+.endif
+
+###
### Enable debugging support for DSPAM.
### Don't enable this unless something needs testing!
###