]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
Released v2.2.13.rc1. 2.2.13.rc1
authorTimo Sirainen <tss@iki.fi>
Thu, 8 May 2014 15:07:23 +0000 (18:07 +0300)
committerTimo Sirainen <tss@iki.fi>
Thu, 8 May 2014 15:07:23 +0000 (18:07 +0300)
Makefile.am
NEWS
configure.ac

index 8d8245bdfac2c4feb046db506deb6f3af96c4a0f..f4f7306b8827465d72c13adcbeb31dee250ebbe3 100644 (file)
@@ -76,9 +76,8 @@ install-exec-hook:
 uninstall-hook:
        rm $(DESTDIR)$(pkglibdir)/dovecot-config
 
-CLEANFILES = $(datafiles)
 if HAVE_SYSTEMD
-CLEANFILES += $systedmsystemunit_DATA
+CLEANFILES = $systedmsystemunit_DATA
 endif
 
 DISTCLEANFILES = \
diff --git a/NEWS b/NEWS
index 50b3c9d9339144cfd9ece00ded94db68ff8bc712..523641d2d07ee1e1345ea7341e59cb5375293554 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,36 @@
+v2.2.13 2014-05-xx  Timo Sirainen <tss@iki.fi>
+
+       * Fixed a DoS attack against imap/pop3-login processes. If SSL/TLS
+         handshake was started but wasn't finished, the login process
+         attempted to eventually forcibly disconnect the client, but failed
+         to do it correctly. This could have left the connections hanging
+         arond for a long time. (Affected Dovecot v1.1+)
+
+       + mdbox: Added mdbox_purge_preserve_alt setting to keep the file
+         within alt storage during purge. (Should become enforced in v2.3.0?)
+       + fts: Added support for parsing attachments via Apache Tika. Enable
+         with: plugin { fts_tika = http://tikahost:9998/tika/ }
+       + virtual plugin: Delay opening backend mailboxes until it's necessary.
+         This requires mailbox_list_index=yes to work. (Currently IMAP IDLE
+         command still causes all backend mailboxes to be opened.)
+       + mail_never_cache_fields=* means now to disable all caching. This may
+         be a useful optimization as doveadm/dsync parameter for some admin
+         tasks which shouldn't really update the cache file.
+       + IMAP: Return SPECIAL-USE flags always for LSUB command.
+       - pop3 server was still crashing in v2.2.12 with some settings
+       - maildir: Various fixes and improvements to handling compressed mails,
+         especially when they have broken/missing S=sizes in filenames.
+       - fts-lucene, fts-solr: Fixed crash on search when the index contained
+         duplicate entries.
+       - Many fixes and performance improvements to dsync and replication
+       - director was somewhat broken when there were exactly two directors
+         in the ring. It caused errors about "weak users" getting stuck.
+       - mail_attachment_dir: Attachments with the last base64-encoded line
+         longer than the rest wasn't handled correctly.
+       - IMAP: SEARCH/SORT PARTIAL was handled completely wrong in v2.2.11+
+       - acl: Global ACL file handling was broken when multiple entries
+         matched the mailbox name. (Only the first entry was used.)
+
 v2.2.12 2014-02-14  Timo Sirainen <tss@iki.fi>
 
        - pop3 server was crashing in v2.2.11
index d3791603d2e1601072fa13f9520a26e4c189ee7f..ea16a6cc6de2fca85b4a8f270b2ed23b1c79dc8e 100644 (file)
@@ -2,8 +2,8 @@ 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([Dovecot],[2.2.12],[dovecot@dovecot.org])
-AC_DEFINE_UNQUOTED([DOVECOT_ABI_VERSION], "2.2.ABIv11($PACKAGE_VERSION)", [Dovecot ABI version])
+AC_INIT([Dovecot],[2.2.13.rc1],[dovecot@dovecot.org])
+AC_DEFINE_UNQUOTED([DOVECOT_ABI_VERSION], "2.2.ABIv13($PACKAGE_VERSION)", [Dovecot ABI version])
 
 AC_CONFIG_SRCDIR([src])