From owner-svn-ports-head@FreeBSD.ORG Thu Nov 13 18:58:43 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 77B1CEA0; Thu, 13 Nov 2014 18:58:43 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 63B896BA; Thu, 13 Nov 2014 18:58:43 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sADIwhpT016412; Thu, 13 Nov 2014 18:58:43 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sADIwgCU016406; Thu, 13 Nov 2014 18:58:42 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201411131858.sADIwgCU016406@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 13 Nov 2014 18:58:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r372535 - head/mail/dovecot2-pigeonhole X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Nov 2014 18:58:43 -0000 Author: pi Date: Thu Nov 13 18:58:42 2014 New Revision: 372535 URL: https://svnweb.freebsd.org/changeset/ports/372535 QAT: https://qat.redports.org/buildarchive/r372535/ Log: mail/dovecot2-pigeonhole: 0.4.3 -> 0.4.6 - submitter takes maintainership Changes: 0.4.4: - Added support for Japanese mail addresses with dots at non-standard places in localpart. - Changed handling of ENOSPACE into a normal temporary failure and added handling of ENOQUOTA as a user error. - Restructured result execution, so that all actions which involve mail storage are always committed before all others. - Implemented support for generic Sieve storages. Using alternative storages now also possible for sieve_before/sieve_after. - Implemented storage driver for retrieving Sieve scripts from LDAP. This currently cannot be used with ManageSieve. - Implemented sieve_redirect_envelope_from setting, which allows configuring the envelope sender of redirected messages. - Fixed handling of mail storage errors occurring while evaluating the input message. - managesieve-login: - Removed bogus ALERT response code returned for AUTHENTICATE command. - Fixed handling of invalid initial response argument to AUTHENTICATE command. - Fixed handling of stream errors in lexical scanner. - Fixed handling of SMTP errors. Permanent and temporary errors were mixed up. - Fixed several problems reported by CLang 3.4. - duplicate extension: Fixed erroneous compile error about conflicting tags when `:handle' argument was used last. - relational extension: Fixed error handling of `:value' match. - editheader extension: Fixed header unfolding and header iteration. - mailbox extension: Fixed the `:create' tag, which erroneously subscribed an existing folder. - extprograms plugin: Fixed handling of error codes. - doveadm-sieve plugin: Fixed several bugs. Synchronization of symbolic link in the file storage should now also work properly. 0.4.5: - Added a Pigeonhole version banner to doveconf output. This way, future bug reports will also include Pigeonhole version information. - Fixed handling of implicit keep. Last version erroneously reported that implicit keep succeeded after an earlier failure, while it in fact had failed. Particularly occurred for mailbox quota errors. - Fixed segfault occurring on SunOS systems when there is no active script. 0.4.6: - ports-related change integrated upstream PR: 194645 Submitted by: Larry Rosenman Approved by: maintainer (timeout) Modified: head/mail/dovecot2-pigeonhole/Makefile head/mail/dovecot2-pigeonhole/distinfo head/mail/dovecot2-pigeonhole/pkg-plist Modified: head/mail/dovecot2-pigeonhole/Makefile ============================================================================== --- head/mail/dovecot2-pigeonhole/Makefile Thu Nov 13 18:42:01 2014 (r372534) +++ head/mail/dovecot2-pigeonhole/Makefile Thu Nov 13 18:58:42 2014 (r372535) @@ -2,13 +2,12 @@ # $FreeBSD$ PORTNAME= dovecot-pigeonhole -PORTVERSION= 0.4.3 -PORTREVISION= 3 +PORTVERSION= 0.4.6 CATEGORIES= mail MASTER_SITES= http://pigeonhole.dovecot.org/releases/${DOVECOTVERSION}/ DISTNAME= ${PORTNAME:C/-/-${DOVECOTVERSION}-/}-${PORTVERSION} -MAINTAINER= bra@fsn.hu +MAINTAINER= ler@lerctr.org COMMENT= Sieve plugin for the Dovecot 'deliver' LDA and LMTP LICENSE= LGPL21 Modified: head/mail/dovecot2-pigeonhole/distinfo ============================================================================== --- head/mail/dovecot2-pigeonhole/distinfo Thu Nov 13 18:42:01 2014 (r372534) +++ head/mail/dovecot2-pigeonhole/distinfo Thu Nov 13 18:58:42 2014 (r372535) @@ -1,2 +1,2 @@ -SHA256 (dovecot-2.2-pigeonhole-0.4.3.tar.gz) = d692f4ab077bdf2c43c98829ed24b2e6f148db488ef8ba429b430394d8b4d757 -SIZE (dovecot-2.2-pigeonhole-0.4.3.tar.gz) = 1184029 +SHA256 (dovecot-2.2-pigeonhole-0.4.6.tar.gz) = 91034669f9ce07661bbadcfb00fe50b6929bf7f616d9aa79d3f5a351d1a47d3d +SIZE (dovecot-2.2-pigeonhole-0.4.6.tar.gz) = 1240368 Modified: head/mail/dovecot2-pigeonhole/pkg-plist ============================================================================== --- head/mail/dovecot2-pigeonhole/pkg-plist Thu Nov 13 18:42:01 2014 (r372534) +++ head/mail/dovecot2-pigeonhole/pkg-plist Thu Nov 13 18:58:42 2014 (r372535) @@ -7,6 +7,7 @@ bin/sieve-test bin/sievec include/dovecot-2.2-pigeonhole/sieve/edit-mail.h include/dovecot-2.2-pigeonhole/sieve/pigeonhole-config.h +include/dovecot-2.2-pigeonhole/sieve/pigeonhole-version.h include/dovecot-2.2-pigeonhole/sieve/program-client-private.h include/dovecot-2.2-pigeonhole/sieve/program-client.h include/dovecot-2.2-pigeonhole/sieve/rfc2822.h @@ -29,6 +30,7 @@ include/dovecot-2.2-pigeonhole/sieve/sie include/dovecot-2.2-pigeonhole/sieve/sieve-ext-copy.h include/dovecot-2.2-pigeonhole/sieve/sieve-ext-enotify.h include/dovecot-2.2-pigeonhole/sieve/sieve-ext-environment.h +include/dovecot-2.2-pigeonhole/sieve/sieve-ext-mailbox.h include/dovecot-2.2-pigeonhole/sieve/sieve-ext-variables.h include/dovecot-2.2-pigeonhole/sieve/sieve-extensions.h include/dovecot-2.2-pigeonhole/sieve/sieve-generator.h @@ -44,11 +46,12 @@ include/dovecot-2.2-pigeonhole/sieve/sie include/dovecot-2.2-pigeonhole/sieve/sieve-result.h include/dovecot-2.2-pigeonhole/sieve/sieve-runtime-trace.h include/dovecot-2.2-pigeonhole/sieve/sieve-runtime.h -include/dovecot-2.2-pigeonhole/sieve/sieve-script-file.h include/dovecot-2.2-pigeonhole/sieve/sieve-script-private.h include/dovecot-2.2-pigeonhole/sieve/sieve-script.h include/dovecot-2.2-pigeonhole/sieve/sieve-settings.h include/dovecot-2.2-pigeonhole/sieve/sieve-smtp.h +include/dovecot-2.2-pigeonhole/sieve/sieve-storage-private.h +include/dovecot-2.2-pigeonhole/sieve/sieve-storage.h include/dovecot-2.2-pigeonhole/sieve/sieve-stringlist.h include/dovecot-2.2-pigeonhole/sieve/sieve-types.h include/dovecot-2.2-pigeonhole/sieve/sieve-validator.h @@ -65,6 +68,8 @@ lib/dovecot/settings/libmanagesieve_logi lib/dovecot/settings/libmanagesieve_login_settings.so lib/dovecot/settings/libmanagesieve_settings.a lib/dovecot/settings/libmanagesieve_settings.so +lib/dovecot/settings/libpigeonhole_settings.a +lib/dovecot/settings/libpigeonhole_settings.so lib/dovecot/sieve/lib90_sieve_extprograms_plugin.a lib/dovecot/sieve/lib90_sieve_extprograms_plugin.so libexec/dovecot/managesieve @@ -75,13 +80,3 @@ man/man1/sieve-test.1.gz man/man1/sievec.1.gz man/man1/sieved.1.gz man/man7/pigeonhole.7.gz -@dirrmtry libexec/dovecot -@dirrmtry lib/dovecot/sieve -@dirrmtry lib/dovecot/settings -@dirrmtry lib/dovecot/doveadm -@dirrmtry lib/dovecot-2.2-pigeonhole -@dirrmtry lib/dovecot -@dirrm include/dovecot-2.2-pigeonhole/sieve -@dirrm include/dovecot-2.2-pigeonhole -@dirrm %%DOCSDIR%%/example-config/conf.d -@dirrm %%DOCSDIR%%/example-config