aboutsummaryrefslogtreecommitdiff
path: root/UPDATING
diff options
context:
space:
mode:
authorAdam Weinberger <adamw@FreeBSD.org>2016-05-27 15:10:37 +0000
committerAdam Weinberger <adamw@FreeBSD.org>2016-05-27 15:10:37 +0000
commit4388bad72dc265dcb3236c5e8be18b93c8e12b85 (patch)
treeeb4f6a3eddd303d8c481577d812cad041a8cbaad /UPDATING
parent153083ca6d060b5780711a0ce8ce7c05d68cd68c (diff)
downloadports-4388bad72dc265dcb3236c5e8be18b93c8e12b85.tar.gz
ports-4388bad72dc265dcb3236c5e8be18b93c8e12b85.zip
Add instructions for recent changes to opensmtpd extras, requiring
users to separate arguments with quotes, and to place everything into a chroot. Many thanks to fluffy for figuring out these solutions.
Notes
Notes: svn path=/head/; revision=415940
Diffstat (limited to 'UPDATING')
-rw-r--r--UPDATING18
1 files changed, 18 insertions, 0 deletions
diff --git a/UPDATING b/UPDATING
index 9578b64e3923..bf2967491ae9 100644
--- a/UPDATING
+++ b/UPDATING
@@ -5,6 +5,24 @@ they are unavoidable.
You should get into the habit of checking this file for changes each time
you update your ports collection, before attempting any port upgrades.
+20160527
+ AFFECTS: Users of mail/opensmtpd-extras (any of them)
+ AUTHOR: adamw@FreeBSD.org
+
+ The invocation for extras has changed. Some extras might fail unless
+ you pass all options/arguments separated by quotes:
+
+ filter myfilter dnsbl "-c /var/chroot/dnsbl" "-h my.dnsbl.com"
+
+ Additionally, extras now run in a chroot. Either pass "-C" to skip the
+ chroot entirely (not recommended), or put all required config files,
+ resolv.conf, and external binaries into the chroot. For example:
+
+ # mkdir -p /var/chroot/dnsbl/etc
+ # cp /etc/resolv.conf /var/chroot/dnsbl/etc
+
+ And pass "-c /var/chroot/dnsbl" to the filter.
+
20160526:
AFFECTS: Users of mail/opensmtpd
AUTHOR: brnrd@FreeBSD.org