From 716b1b491f0cf2f4d6eae83fc21707f978a7af60 Mon Sep 17 00:00:00 2001 From: Stephan Bosch Date: Sun, 23 Sep 2018 13:48:51 +0200 Subject: [PATCH] Release v0.5.3.rc1 for Dovecot v2.3.3.rc1. --- NEWS | 15 +++++++++++++++ configure.ac | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 65e4815e6..7bc6afb86 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,18 @@ +v0.5.3 2018-09-XX Stephan Bosch + + - Fix assertion panic occurring when managesieve service fails to open + INBOX while saving a Sieve script. This was caused by a lack of + cleanup after failure. + - Fix specific messages causing an assert panic with actions that + compose a reply (e.g. vacation). With some rather weird input from the + original message, the header folding algorithm (as used for composing + the References header for the reply) got confused, causing the panic. + - IMAP FILTER=SIEVE capability: Fix FILTER SIEVE SCRIPT command parsing. + After finishing reading the Sieve script, the command parsing + sometimes didn't continue with the search arguments. This is a time- + critical bug that likely only occurs when the Sieve script is sent in + the next TCP frame. + v0.5.2 2018-06-29 Stephan Bosch + Implement plugin for the a vendor-defined IMAP capability called diff --git a/configure.ac b/configure.ac index 59033e3f5..e5f484210 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ AC_PREREQ([2.59]) # Be sure to update ABI version also if anything changes that might require # recompiling plugins. Most importantly that means if any structs are changed. -AC_INIT([Pigeonhole], [0.5.devel], [dovecot@dovecot.org], [dovecot-2.3-pigeonhole]) +AC_INIT([Pigeonhole], [0.5.3.rc1], [dovecot@dovecot.org], [dovecot-2.3-pigeonhole]) AC_DEFINE_UNQUOTED([PIGEONHOLE_ABI_VERSION], "0.5.ABIv0($PACKAGE_VERSION)", [Pigeonhole ABI version]) AC_CONFIG_AUX_DIR([.])