diff options
author | stefan <stefan@FreeBSD.org> | 2007-01-07 23:06:30 +0800 |
---|---|---|
committer | stefan <stefan@FreeBSD.org> | 2007-01-07 23:06:30 +0800 |
commit | 92e15ec6d6645b88e6adc7a86b716cb8ed7f4919 (patch) | |
tree | 76e55fc464f1ef1949959104e681ecb01613c8b8 /UPDATING | |
parent | c20c8151fec1cafda613fcc53f6af90f64bc2c5d (diff) | |
download | freebsd-ports-graphics-92e15ec6d6645b88e6adc7a86b716cb8ed7f4919.tar.gz freebsd-ports-graphics-92e15ec6d6645b88e6adc7a86b716cb8ed7f4919.tar.zst freebsd-ports-graphics-92e15ec6d6645b88e6adc7a86b716cb8ed7f4919.zip |
- Update mail/spamprobe to 1.4d.
- Add an UPDATING entry to point out changes regarding the database backend(s).
Diffstat (limited to 'UPDATING')
-rw-r--r-- | UPDATING | 33 |
1 files changed, 33 insertions, 0 deletions
@@ -6,6 +6,39 @@ You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20070105: + AFFECTS: users of mail/spamprobe + AUTHOR: stefan@FreeBSD.org + + With the update to version 1.4d, the SpamProbe port doesn't use the OPTIONS + framework any more to allow part of the changes below. That means that options + selected for this port won't be saved/used automatically any more and you have + to set the appropriate variables in /etc/make.conf or on the command line to + change the port's behaviour; the variables are documented at the top of the + port's Makefile. Before updating, it might be a good idea to remove + /var/db/ports/spamprobe. + + The port now has support for the PBL database backend; unless built with + WITHOUT_PBL set, SpamProbe will use PBL as the default even if you have an + existing BerkleyDB or hash database; in that case, use the parameter "-d" to + specify the type of the existing database on the command line, e.g. + + spamprobe -d bdb:$HOME/.spamprobe receive + + or + + spamprobe -d hash:$HOME/.spamprobe receive + + Using PBL instead of BerkleyDB might be a good idea, though, as the former + seems to perform better. You can convert your existing database to PBL using + the following commands (assuming you didn't disable PBL support): + + cd ~ + mkdir spamprobe.new + spamprobe -d bdb:.spamprobe export | spamprobe -d spamprobe.new import + mv .spamprobe spamprobe.old + mv spamprobe.new .spamprobe + 20070106: AFFECTS: users of security/libwhisker AUTHOR: araujo@bsdmail.org |