diff options
author | edwin <edwin@FreeBSD.org> | 2005-01-12 13:24:58 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2005-01-12 13:24:58 +0800 |
commit | af1debf452f569ca0d1e695edb1ebcc390601180 (patch) | |
tree | 715c62e2a1b3eb8ac861157405ef6bca7a465504 /mail/dspam/files | |
parent | b288c62a41bcdd9c1bb640a063f532d40cd04fcf (diff) | |
download | freebsd-ports-gnome-af1debf452f569ca0d1e695edb1ebcc390601180.tar.gz freebsd-ports-gnome-af1debf452f569ca0d1e695edb1ebcc390601180.tar.zst freebsd-ports-gnome-af1debf452f569ca0d1e695edb1ebcc390601180.zip |
mail/dspam: fix make describe, update, fix DSPAM_HOME perdefault permissions
FreeBSD 4.x user please report problems ASAP so I can fix
them before release.
dspam-3.2.3.20041229.1945:
- drop QUARANTINE_AGENT as is not supported by ./configure
anymore and set in dspam.conf UntrustedDeliveryAgent and
QuarantineAgent to default to TrustedDeliveryAgent, but
leave them commented out (ports/75548 by Julien Gabel)
- change default DSPAM_HOME_MODE to 0770
(ports/75549 by Julien Gabel <jpeg@thilelli.net>)
- DSPAM_HOME_{OWNER,GROUP} default to DSPAM_{OWNER,GROUP}
- fix make describe by USE_MYSQL
- beautify
- Makefile clean-up
PR: ports/75665
Submitted by: Ion-Mihai "IOnut" Tetcu <itetcu@people.tecnik93.com>
Diffstat (limited to 'mail/dspam/files')
-rw-r--r-- | mail/dspam/files/UPDATING | 14 | ||||
-rw-r--r-- | mail/dspam/files/patch-dspam.conf.in | 29 |
2 files changed, 43 insertions, 0 deletions
diff --git a/mail/dspam/files/UPDATING b/mail/dspam/files/UPDATING index da2af7fff7bc..2619195b4adf 100644 --- a/mail/dspam/files/UPDATING +++ b/mail/dspam/files/UPDATING @@ -11,6 +11,20 @@ in the port directory: make extract; more `find . -type f -maxdepth 2 -name UPGRADING` ############################################################################# +# dspam-3.2.3.20041229.1945 +# + +- drop QUARANTINE_AGENT as is not supported by ./configure anymore and +set in dspam.conf UntrustedDeliveryAgent and QuarantineAgent to default to +TrustedDeliveryAgent, but leave them commented out +(ports/75548 by Julien Gabel) +- change default DSPAM_HOME_MODE to 0770 +(ports/75549 by Julien Gabel <jpeg@thilelli.net>) +- DSPAM_HOME_{OWNER,GROUP} default to DSPAM_{OWNER,GROUP} +- fix make describe by USE_MYSQL + + +############################################################################# # dspam-3.2.3.20041218.2100_1 # diff --git a/mail/dspam/files/patch-dspam.conf.in b/mail/dspam/files/patch-dspam.conf.in new file mode 100644 index 000000000000..ab904e5b574d --- /dev/null +++ b/mail/dspam/files/patch-dspam.conf.in @@ -0,0 +1,29 @@ +--- dspam.conf.in.orig Thu Dec 30 19:18:14 2004 ++++ dspam.conf.in Thu Dec 30 19:20:02 2004 +@@ -34,7 +34,7 @@ + # the user DSPAM is processing mail for. This configuration parameter is only + # necessary if you plan on allowing untrusted processing. + # +-#UntrustedDeliveryAgent "/usr/bin/procmail -d %u" ++#UntrustedDeliveryAgent "@delivery_agent@" + + # + # Quarantine Agent: DSPAM's default behavior is to quarantine all mail it +@@ -42,7 +42,7 @@ + # a quarantine agent which will be called with all messages DSPAM thinks is + # spam. Use %u to specify the user DSPAM is processing mail for. + # +-#QuarantineAgent "/usr/bin/procmail -d spam" ++#QuarantineAgent "@delivery_agent@" + + # + # OnFail: What to do if local delivery or quarantine should fail. If set +@@ -169,7 +169,7 @@ + # Storage driver settings: Specific to a particular storage driver. Uncomment + # the configuration specific to your installation, if applicable. + # +-#MySQLServer /var/lib/mysql/mysql.sock ++#MySQLServer /tmp/mysql.sock + #MySQLPort + #MySQLUser dspam + #MySQLPass changeme |