Changes 0.2.3:
* Sieve filter tool: finished implementing basic functionality. It is not quite ready yet, but it is available for those willing to experiment with it (needs --with-unfinished-features config to compile). Also includes man page. * Vacation extension now inhibits replies to messages from sender listed in :addresses, thus preventing replies to one of the user's other known addresses. * Vacation extension: implemented the (draft) vacation-seconds extension. This also adds min/max period configuration settings. Refer to doc/vacation.txt for configuration information. * ManageSieve: fixed bug in UTF-8 checking of string values. This is done by discarding the original implementation and migrating to the Dovecot API's UTF-8 functionality. * Sieve command line tools now avoid initializing the mail store unless necessary. This prevents sievec and sieve-dump from failing when executed by root for example. * Enotify extension: fixed inappropriate return type in mailto URI parse function, also fixing ARM compiler warning. * Vacation extension: fixed handling of sendmail errors. It produced an additional confusing success message in case of error. * Removed header MIME-decoding to fix erroneous address parsing. Applies to address test and vacation command. * Fixed segfault bug in extension configuration, triggered when unknown extension is mentioned in sieve_extensions setting.
This commit is contained in:
parent
473ac6c1c9
commit
7fc75f811c
3 changed files with 16 additions and 14 deletions
|
@ -1,14 +1,14 @@
|
|||
# $NetBSD: Makefile,v 1.3 2010/12/07 10:08:27 ghen Exp $
|
||||
# $NetBSD: Makefile,v 1.4 2011/04/15 13:36:01 adam Exp $
|
||||
|
||||
DISTNAME= dovecot-2.0-pigeonhole-0.2.2
|
||||
PKGNAME= ${DISTNAME:S/-2.0-/-/}
|
||||
CATEGORIES= mail
|
||||
MASTER_SITES= http://www.rename-it.nl/dovecot/2.0/
|
||||
DISTNAME= dovecot-2.0-pigeonhole-0.2.3
|
||||
PKGNAME= ${DISTNAME:S/-2.0-/-/}
|
||||
CATEGORIES= mail
|
||||
MASTER_SITES= http://www.rename-it.nl/dovecot/2.0/
|
||||
|
||||
MAINTAINER= ghen@NetBSD.org
|
||||
HOMEPAGE= http://www.dovecot.org/
|
||||
COMMENT= Support for the Sieve language and the ManageSieve protocol
|
||||
LICENSE= gnu-lgpl-v2.1
|
||||
MAINTAINER= ghen@NetBSD.org
|
||||
HOMEPAGE= http://www.dovecot.org/
|
||||
COMMENT= Support for the Sieve language and the ManageSieve protocol
|
||||
LICENSE= gnu-lgpl-v2.1
|
||||
|
||||
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
||||
PKG_DESTDIR_SUPPORT= user-destdir
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2010/11/05 12:01:20 adam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.2 2011/04/15 13:36:01 adam Exp $
|
||||
bin/sieve-dump
|
||||
bin/sieve-test
|
||||
bin/sievec
|
||||
|
@ -20,6 +20,7 @@ include/dovecot/sieve/sieve-config.h
|
|||
include/dovecot/sieve/sieve-dump.h
|
||||
include/dovecot/sieve/sieve-error-private.h
|
||||
include/dovecot/sieve/sieve-error.h
|
||||
include/dovecot/sieve/sieve-ext-copy.h
|
||||
include/dovecot/sieve/sieve-ext-enotify.h
|
||||
include/dovecot/sieve/sieve-ext-environment.h
|
||||
include/dovecot/sieve/sieve-ext-variables.h
|
||||
|
@ -57,5 +58,6 @@ man/man1/sievec.1
|
|||
man/man1/sieved.1
|
||||
man/man7/pigeonhole.7
|
||||
share/doc/dovecot/sieve/spamtest-virustest.txt
|
||||
share/doc/dovecot/sieve/vacation.txt
|
||||
share/examples/dovecot/conf.d/20-managesieve.conf
|
||||
share/examples/dovecot/conf.d/90-sieve.conf
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.2 2010/12/07 10:08:27 ghen Exp $
|
||||
$NetBSD: distinfo,v 1.3 2011/04/15 13:36:01 adam Exp $
|
||||
|
||||
SHA1 (dovecot-2.0-pigeonhole-0.2.2.tar.gz) = 83a1477e7c6b631020f24e6beb84df1676c2028a
|
||||
RMD160 (dovecot-2.0-pigeonhole-0.2.2.tar.gz) = 7aa58935acb5a89348c53f8e6db44045d56196d9
|
||||
Size (dovecot-2.0-pigeonhole-0.2.2.tar.gz) = 1199973 bytes
|
||||
SHA1 (dovecot-2.0-pigeonhole-0.2.3.tar.gz) = c8f67304028e21f8ff33163427fd4f47fa738d9d
|
||||
RMD160 (dovecot-2.0-pigeonhole-0.2.3.tar.gz) = 63898d5b71aee933399e9e76b6a1784b3b31197e
|
||||
Size (dovecot-2.0-pigeonhole-0.2.3.tar.gz) = 1213027 bytes
|
||||
SHA1 (patch-aa) = 97bcc7ae0c1b07508027e7c03247316de02badcf
|
||||
|
|
Loading…
Reference in a new issue