Index: head/mail/sieve-connect/files/patch-sieve-connect.pl =================================================================== --- head/mail/sieve-connect/files/patch-sieve-connect.pl (revision 511611) +++ head/mail/sieve-connect/files/patch-sieve-connect.pl (nonexistent) @@ -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) { Property changes on: head/mail/sieve-connect/files/patch-sieve-connect.pl ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/mail/sieve-connect/Makefile =================================================================== --- head/mail/sieve-connect/Makefile (revision 511611) +++ head/mail/sieve-connect/Makefile (revision 511612) @@ -1,44 +1,43 @@ # Created by: Alexey V. Degtyarev # $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 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= p5-Authen-SASL>=0:security/p5-Authen-SASL \ p5-IO-Socket-INET6>=0:net/p5-IO-Socket-INET6 \ p5-IO-Socket-SSL>=1.14:security/p5-IO-Socket-SSL \ p5-Mozilla-PublicSuffix>=0:dns/p5-Mozilla-PublicSuffix \ p5-Net-DNS>=0:dns/p5-Net-DNS \ p5-Net-SSLeay>=1.37:security/p5-Net-SSLeay \ p5-Term-ReadLine-Gnu>=0:devel/p5-Term-ReadLine-Gnu \ p5-Term-ReadKey>=0:devel/p5-Term-ReadKey USES= perl5 tar:bzip2 shebangfix SHEBANG_FILES= sieve-connect.pl NO_ARCH= yes PLIST_FILES= bin/sieve-connect \ man/man1/sieve-connect.1.gz PORTDOCS= ChangeLog README.md TODO OPTIONS_DEFINE= DOCS do-install: ${INSTALL_SCRIPT} ${WRKSRC}/sieve-connect \ ${STAGEDIR}${PREFIX}/bin/sieve-connect ${INSTALL_MAN} ${WRKSRC}/sieve-connect.1 \ ${STAGEDIR}${MANPREFIX}/man/man1/sieve-connect.1 ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}/ .include Index: head/mail/sieve-connect/distinfo =================================================================== --- head/mail/sieve-connect/distinfo (revision 511611) +++ head/mail/sieve-connect/distinfo (revision 511612) @@ -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 Index: head/mail/sieve-connect/pkg-descr =================================================================== --- head/mail/sieve-connect/pkg-descr (revision 511611) +++ head/mail/sieve-connect/pkg-descr (revision 511612) @@ -1,20 +1,20 @@ This is sieve-connect. A client for the ManageSieve protocol, as specifed in RFC 5804. Historically, this was MANAGESIEVE as implemented by timsieved in Cyrus IMAP. This is not yet fully compatible with RFC 5804, but is moving towards that from the timsieved baseline; some issues to be worked on are documented in the "TODO" file. sieve-connect speaks ManageSieve and supports TLS for connection privacy and also authentication if using client certificates. sieve-connect will use SASL authentication; SASL integrity layers are not supported, use TLS instead. GSSAPI-based authentication should generally work, provided that client and server can use a common underlaying protocol. If it doesn't work for you, please report the issue. 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