diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2019-09-09 09:47:26 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2019-09-09 09:47:26 +0000 |
commit | 1802b86801a1d951eac75a133b2f59096bffb48f (patch) | |
tree | 5e10448f4beeb3e26c8cd92346bc86515e1059fc /mail | |
parent | ac30a39d7d9e91578ae0bb9a4a4fc53a98e188f4 (diff) | |
download | ports-1802b86801a1d951eac75a133b2f59096bffb48f.tar.gz ports-1802b86801a1d951eac75a133b2f59096bffb48f.zip |
Notes
Diffstat (limited to 'mail')
-rw-r--r-- | mail/sieve-connect/Makefile | 5 | ||||
-rw-r--r-- | mail/sieve-connect/distinfo | 6 | ||||
-rw-r--r-- | mail/sieve-connect/files/patch-sieve-connect.pl | 29 | ||||
-rw-r--r-- | mail/sieve-connect/pkg-descr | 2 |
4 files changed, 6 insertions, 36 deletions
diff --git a/mail/sieve-connect/Makefile b/mail/sieve-connect/Makefile index cf7474668d9c..63c2a0f8fcaf 100644 --- a/mail/sieve-connect/Makefile +++ b/mail/sieve-connect/Makefile @@ -2,12 +2,11 @@ # $FreeBSD$ PORTNAME= sieve-connect -DISTVERSION= 0.89 -PORTREVISION= 1 +DISTVERSION= 0.90 CATEGORIES= mail MASTER_SITES= http://people.spodhuis.org/phil.pennock/software/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= bapt@FreeBSD.org COMMENT= Command-line client for the MANAGESIEVE protocol LICENSE= BSD3CLAUSE diff --git a/mail/sieve-connect/distinfo b/mail/sieve-connect/distinfo index f4c5a6e2ba90..e989a4b4a0d6 100644 --- a/mail/sieve-connect/distinfo +++ b/mail/sieve-connect/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1531954128 -SHA256 (sieve-connect-0.89.tar.bz2) = 6d8962516458a27d4d904cfb370db01ca7e495e61c966f236ba6b65f5b4caa5f -SIZE (sieve-connect-0.89.tar.bz2) = 45683 +TIMESTAMP = 1568022315 +SHA256 (sieve-connect-0.90.tar.bz2) = 4a188ba50009170b5a7a51cbd0dbaab972eb1e42a3ad7c2d8d22fb63f2f77603 +SIZE (sieve-connect-0.90.tar.bz2) = 46481 diff --git a/mail/sieve-connect/files/patch-sieve-connect.pl b/mail/sieve-connect/files/patch-sieve-connect.pl deleted file mode 100644 index 26c66da83ed9..000000000000 --- a/mail/sieve-connect/files/patch-sieve-connect.pl +++ /dev/null @@ -1,29 +0,0 @@ ---- sieve-connect.pl.orig 2019-05-23 07:31:11 UTC -+++ sieve-connect.pl -@@ -927,7 +927,7 @@ if (defined $realm) { - if (/^"(.*)"\r?\n?$/) { - $challenge = $1; - } else { -- unless (/^{(\d+)\+?}\r?$/m) { -+ unless (/^\{(\d+)\+?}\r?$/m) { - sfinish $sock, "*"; - closedie($sock, "Failure to parse server SASL response.\n"); - } -@@ -1510,7 +1510,7 @@ sub sieve_download - warn qq{Empty script "$remotefn"? Not saved.\n}; - return; - } -- unless (/^{(\d+)\+?}\r?$/m) { -+ unless (/^\{(\d+)\+?}\r?$/m) { - die "QUIT:Failed to parse server response to GETSCRIPT"; - } - my $contentdata = $_; -@@ -1526,7 +1526,7 @@ sub sieve_download - or die "write-open($localfn) failed: $!\n"; - $oldouthandle = select $fh; - } -- $contentdata =~ s/^{\d+\+?}\r?\n?//m; -+ $contentdata =~ s/^\{\d+\+?}\r?\n?//m; - print $contentdata; - select $oldouthandle if defined $oldouthandle; - if (defined $fh) { diff --git a/mail/sieve-connect/pkg-descr b/mail/sieve-connect/pkg-descr index 4fb636f6a4f1..53994abd8998 100644 --- a/mail/sieve-connect/pkg-descr +++ b/mail/sieve-connect/pkg-descr @@ -17,4 +17,4 @@ sieve-connect is designed to be both a tool which can be invoked from scripts and also a decent interactive client. It should also be a drop-in replacement for "sieveshell", as supplied with Cyrus IMAP. -WWW: https://people.spodhuis.org/phil.pennock/software/ +WWW: https://github.com/philpennock/sieve-connect |