diff options
| author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2016-09-21 15:36:03 +0000 |
|---|---|---|
| committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2016-09-21 15:36:03 +0000 |
| commit | 0e5c0cc3043b9cc862d05f2698b0b4274617d81e (patch) | |
| tree | aae01a7a95eb83d45a40a2871b85ca0b33cd8ddf | |
| parent | net-mgmt/unifi5: Update to 5.2.7 (diff) | |
- Update mail/sieve-connect to 0.88
- Fix LICENSE
Changes in v0.88:
* (BREAKING CHANGE) Require TLS verification to work.
* (POSSIBLY BREAKING CHANGE) Remote sieve name should be basename of local.
* Fail early if no CA trust anchors can be found but TLS verification is
enabled.
* Added `--tlshostname` option to override the hostname used for
TLS host identity verification
* If not interactive, various warnings in interactive at the
application-level with the remote server will now trigger a final
warning before exit and a non-zero exit code.
* Kolab nocaps server compatibility, in the continuing saga of
"feature-based negotiation, who needs it anyway?"
* build-system fix to better isolate releaser tools from "just make the
tarball", to let others make the unsigned tarball and compare.
* Interactive command `debug` added when invoked with `--debug` to
toggle debugging off/on, to reduce self-inflicted log-spam.
* Handle local hostnames which lack real DNS better, avoid an undef
dereference
Full ChangeLog at:
http://people.spodhuis.org/phil.pennock/software/sieve-connect.ChangeLog.txt
PR: 212466
Submitted by: alexey@renatasystems.org (maintainer)
Notes
Notes:
svn path=/head/; revision=422568
| -rw-r--r-- | UPDATING | 13 | ||||
| -rw-r--r-- | mail/sieve-connect/Makefile | 5 | ||||
| -rw-r--r-- | mail/sieve-connect/distinfo | 5 |
3 files changed, 18 insertions, 5 deletions
@@ -5,6 +5,19 @@ 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. +20160921: + AFFECTS: users of mail/sieve-connect + AUTHOR: alexey@renatasystems.org + + Version 0.88 contains two breaking changes: + 1. If the Sieve server does not offer STARTTLS, then connections should now + fail. + 2. When deriving a remote script name from the local filename, use the + basename and strip off directories. + + For additional information see: + http://mail.globnix.net/pipermail/sieve-connect-announce/2016/000012.html + 20160919: AFFECTS: users of net/vtun AUTHOR: cy@FreeBSD.org diff --git a/mail/sieve-connect/Makefile b/mail/sieve-connect/Makefile index 2e689a15ba25..5e1fdba5cc9a 100644 --- a/mail/sieve-connect/Makefile +++ b/mail/sieve-connect/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= sieve-connect -PORTVERSION= 0.87 -PORTREVISION= 1 +PORTVERSION= 0.88 CATEGORIES= mail MASTER_SITES= http://people.spodhuis.org/phil.pennock/software/ \ ftp://ftp.renatasystems.org/pub/FreeBSD/ports/distfiles/ @@ -11,7 +10,7 @@ MASTER_SITES= http://people.spodhuis.org/phil.pennock/software/ \ MAINTAINER= alexey@renatasystems.org COMMENT= Command-line client for the MANAGESIEVE protocol -LICENSE= PD +LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= p5-Authen-SASL>=0:security/p5-Authen-SASL \ diff --git a/mail/sieve-connect/distinfo b/mail/sieve-connect/distinfo index 36102f5b6f12..a80ead331e7d 100644 --- a/mail/sieve-connect/distinfo +++ b/mail/sieve-connect/distinfo @@ -1,2 +1,3 @@ -SHA256 (sieve-connect-0.87.tar.bz2) = e3de80ab34994de0277fc7bf53b7c08e82db1a1f2762ddac4311d8191cea6c49 -SIZE (sieve-connect-0.87.tar.bz2) = 40023 +TIMESTAMP = 1473287119 +SHA256 (sieve-connect-0.88.tar.bz2) = b8b0146120d76de7407017573d695680b9cae5fc4d9974f4a7cbf166328a3872 +SIZE (sieve-connect-0.88.tar.bz2) = 45327 |
