pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/mail



Module Name:    pkgsrc
Committed By:   adam
Date:           Tue Oct 23 16:29:19 UTC 2018

Modified Files:
        pkgsrc/mail/dovecot2: Makefile Makefile.common PLIST distinfo
        pkgsrc/mail/dovecot2-gssapi: Makefile
        pkgsrc/mail/dovecot2-ldap: Makefile
        pkgsrc/mail/dovecot2-mysql: Makefile
        pkgsrc/mail/dovecot2-sqlite: Makefile
Removed Files:
        pkgsrc/mail/dovecot2: MESSAGE

Log Message:
dovecot2: updated to 2.3.3

2.3.3:
* doveconf hides more secrets now in the default output.
* ssl_dh setting is no longer enforced at startup. If it's not set and
  non-ECC DH key exchange happens, error is logged and client is
  disconnected.

+ Added log_debug=<filter> setting.
+ Added log_core_filter=<log filter> setting.
+ quota-clone: Write to dict asynchronously
+ --enable-hardening attempts to use retpoline Spectre 2 mitigations
+ lmtp proxy: Support source_ip passdb extra field.
+ doveadm stats dump: Support more fields and output stddev by default.
+ push-notification: Add SSL support for OX backend.
- NUL bytes in mail headers can cause truncated replies when fetched.
- director: Conflicting host up/down state changes may in some rare
  situations ended up in a loop of two directors constantly overwriting
  each others' changes.
- director: Fix hang/crash when multiple doveadm commands are being
  handled concurrently.
- director: Fix assert-crash if doveadm disconnects too early
- virtual plugin: Some searches used 100% CPU for many seconds
- dsync assert-crashed with acl plugin in some situations.
- mail_attachment_detection_options=add-flags-on-save assert-crashed
  with some specific Sieve scripts.
- Mail snippet generation crashed with mails containing invalid
  Content-Type:multipart header.
- Log prefix ordering was different for some log lines.
- quota: With noenforcing option current quota usage wasn't updated.
- auth: Kerberos authentication against Samba assert-crashed.
- stats clients were unnecessarily chatty with the stats server.
- imapc: Fixed various assert-crashes when reconnecting to server.
- lmtp, submission: Fix potential crash if client disconnects while
  handling a command.
- quota: Fixed compiling with glibc-2.26 / support libtirpc.
- fts-solr: Empty search values resulted in 400 Bad Request errors
- fts-solr: default_ns parameter couldn't be used
- submission server crashed if relay server returned over 7 lines in
  a reply (e.g. to EHLO)


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r0 pkgsrc/mail/dovecot2/MESSAGE
cvs rdiff -u -r1.96 -r1.97 pkgsrc/mail/dovecot2/Makefile
cvs rdiff -u -r1.20 -r1.21 pkgsrc/mail/dovecot2/Makefile.common
cvs rdiff -u -r1.61 -r1.62 pkgsrc/mail/dovecot2/PLIST
cvs rdiff -u -r1.84 -r1.85 pkgsrc/mail/dovecot2/distinfo
cvs rdiff -u -r1.3 -r1.4 pkgsrc/mail/dovecot2-gssapi/Makefile
cvs rdiff -u -r1.2 -r1.3 pkgsrc/mail/dovecot2-ldap/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/mail/dovecot2-mysql/Makefile
cvs rdiff -u -r1.13 -r1.14 pkgsrc/mail/dovecot2-sqlite/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/mail/dovecot2/Makefile
diff -u pkgsrc/mail/dovecot2/Makefile:1.96 pkgsrc/mail/dovecot2/Makefile:1.97
--- pkgsrc/mail/dovecot2/Makefile:1.96  Tue May 22 20:49:45 2018
+++ pkgsrc/mail/dovecot2/Makefile       Tue Oct 23 16:29:18 2018
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.96 2018/05/22 20:49:45 triaxx Exp $
+# $NetBSD: Makefile,v 1.97 2018/10/23 16:29:18 adam Exp $
 
 .include "../../mail/dovecot2/Makefile.common"
 
@@ -22,7 +22,7 @@ EGDIR=                        ${PREFIX}/share/examples/doveco
 
 CNFS_cmd=              ${SED} -ne "s,^share/examples/dovecot/,,p" PLIST
 CNFS=                  ${CNFS_cmd:sh}
-CONF_FILES=            ${EGDIR}/dovecot.conf ${PKG_SYSCONFDIR}/dovecot/dovecot-example.conf
+CONF_FILES=            ${EGDIR}/dovecot.conf ${PKG_SYSCONFDIR}/dovecot/dovecot.conf
 .for file in ${CNFS}
 CONF_FILES+=           ${EGDIR}/${file:Q} ${PKG_SYSCONFDIR}/dovecot/${file:Q}
 .endfor

Index: pkgsrc/mail/dovecot2/Makefile.common
diff -u pkgsrc/mail/dovecot2/Makefile.common:1.20 pkgsrc/mail/dovecot2/Makefile.common:1.21
--- pkgsrc/mail/dovecot2/Makefile.common:1.20   Sat Jul 14 20:15:33 2018
+++ pkgsrc/mail/dovecot2/Makefile.common        Tue Oct 23 16:29:18 2018
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.20 2018/07/14 20:15:33 adam Exp $
+# $NetBSD: Makefile.common,v 1.21 2018/10/23 16:29:18 adam Exp $
 #
 # when updating to a new release, update ABI depends in
 # the buildlink3.mk file as well, since the plugins' version
@@ -7,9 +7,9 @@
 # used by mail/dovecot2/Makefile
 # used by mail/dovecot2/Makefile.plugin
 
-DISTNAME=      dovecot-2.3.2.1
+DISTNAME=      dovecot-2.3.3
 CATEGORIES=    mail
-MASTER_SITES=  https://www.dovecot.org/releases/${PKGVERSION_NOREV:R:R}/
+MASTER_SITES=  https://www.dovecot.org/releases/${PKGVERSION_NOREV:R}/
 
 MAINTAINER=    adam%NetBSD.org@localhost
 HOMEPAGE=      http://www.dovecot.org/

Index: pkgsrc/mail/dovecot2/PLIST
diff -u pkgsrc/mail/dovecot2/PLIST:1.61 pkgsrc/mail/dovecot2/PLIST:1.62
--- pkgsrc/mail/dovecot2/PLIST:1.61     Sat Jul 14 20:15:33 2018
+++ pkgsrc/mail/dovecot2/PLIST  Tue Oct 23 16:29:18 2018
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.61 2018/07/14 20:15:33 adam Exp $
+@comment $NetBSD: PLIST,v 1.62 2018/10/23 16:29:18 adam Exp $
 bin/doveadm
 bin/doveconf
 bin/dsync
@@ -105,6 +105,7 @@ include/dovecot/event-filter.h
 include/dovecot/event-log.h
 include/dovecot/execv-const.h
 include/dovecot/fail-mail-storage.h
+include/dovecot/failures-private.h
 include/dovecot/failures.h
 include/dovecot/fd-util.h
 include/dovecot/fdatasync-path.h
@@ -800,6 +801,7 @@ share/doc/dovecot/wiki/Dictionary.txt
 share/doc/dovecot/wiki/Director.txt
 share/doc/dovecot/wiki/DomainLost.txt
 share/doc/dovecot/wiki/Errors.ChgrpNoPerm.txt
+share/doc/dovecot/wiki/Events.txt
 share/doc/dovecot/wiki/FindMailLocation.txt
 share/doc/dovecot/wiki/FinishBasicConfiguration.txt
 share/doc/dovecot/wiki/HAProxy.txt

Index: pkgsrc/mail/dovecot2/distinfo
diff -u pkgsrc/mail/dovecot2/distinfo:1.84 pkgsrc/mail/dovecot2/distinfo:1.85
--- pkgsrc/mail/dovecot2/distinfo:1.84  Sat Jul 14 20:15:33 2018
+++ pkgsrc/mail/dovecot2/distinfo       Tue Oct 23 16:29:18 2018
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.84 2018/07/14 20:15:33 adam Exp $
+$NetBSD: distinfo,v 1.85 2018/10/23 16:29:18 adam Exp $
 
-SHA1 (dovecot-2.3.2.1.tar.gz) = 4f4996db202584d4c54a1a906df870ee16ff02ed
-RMD160 (dovecot-2.3.2.1.tar.gz) = b60ac0bd2c20f57cbe272781bd30523c9cbfa8a9
-SHA512 (dovecot-2.3.2.1.tar.gz) = c085a0d04925485423086736a3c7d919ad0ca9efeff005890382da5333edb68c7d23ccb89fbe2ac44f8f016fc993bf2c669e450794c3ab13463676cbb47c7bf7
-Size (dovecot-2.3.2.1.tar.gz) = 6797491 bytes
+SHA1 (dovecot-2.3.3.tar.gz) = 26be4a4b5b7c175b19e634b1498075a8bc1c086c
+RMD160 (dovecot-2.3.3.tar.gz) = e4c1ce666cc5a8b68dc1cabaae0907dcf6a2df69
+SHA512 (dovecot-2.3.3.tar.gz) = 8666c4f92f7df883067540f85be9d03dbe6815b58a7f5de55b4292e986e9a2a1ef52c7e0c72dde2bc781fe40d57488b78a99b6b813745b8e4683f1a2fdc1f2ff
+Size (dovecot-2.3.3.tar.gz) = 6851107 bytes
 SHA1 (patch-aa) = ea185011f0c1ee3aa1ff528e61f6f356fe385666
 SHA1 (patch-ab) = 9db15fd853ba47ef4bf04f2adc9ab24f71ee4d1e
 SHA1 (patch-ae) = c795585df9f415ceabb28eec1ff691ee26168d3b

Index: pkgsrc/mail/dovecot2-gssapi/Makefile
diff -u pkgsrc/mail/dovecot2-gssapi/Makefile:1.3 pkgsrc/mail/dovecot2-gssapi/Makefile:1.4
--- pkgsrc/mail/dovecot2-gssapi/Makefile:1.3    Mon Dec 12 14:22:03 2016
+++ pkgsrc/mail/dovecot2-gssapi/Makefile        Tue Oct 23 16:29:18 2018
@@ -1,5 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2016/12/12 14:22:03 wiz Exp $
-#
+# $NetBSD: Makefile,v 1.4 2018/10/23 16:29:18 adam Exp $
 
 .include "../../mail/dovecot2/Makefile.plugin"
 

Index: pkgsrc/mail/dovecot2-ldap/Makefile
diff -u pkgsrc/mail/dovecot2-ldap/Makefile:1.2 pkgsrc/mail/dovecot2-ldap/Makefile:1.3
--- pkgsrc/mail/dovecot2-ldap/Makefile:1.2      Tue Jan  2 15:52:44 2018
+++ pkgsrc/mail/dovecot2-ldap/Makefile  Tue Oct 23 16:29:18 2018
@@ -1,5 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2018/01/02 15:52:44 fhajny Exp $
-#
+# $NetBSD: Makefile,v 1.3 2018/10/23 16:29:18 adam Exp $
 
 .include "../../mail/dovecot2/Makefile.plugin"
 

Index: pkgsrc/mail/dovecot2-mysql/Makefile
diff -u pkgsrc/mail/dovecot2-mysql/Makefile:1.1 pkgsrc/mail/dovecot2-mysql/Makefile:1.2
--- pkgsrc/mail/dovecot2-mysql/Makefile:1.1     Mon Jul 18 15:03:06 2016
+++ pkgsrc/mail/dovecot2-mysql/Makefile Tue Oct 23 16:29:18 2018
@@ -1,5 +1,4 @@
-# $NetBSD: Makefile,v 1.1 2016/07/18 15:03:06 fhajny Exp $
-#
+# $NetBSD: Makefile,v 1.2 2018/10/23 16:29:18 adam Exp $
 
 .include "../../mail/dovecot2/Makefile.plugin"
 

Index: pkgsrc/mail/dovecot2-sqlite/Makefile
diff -u pkgsrc/mail/dovecot2-sqlite/Makefile:1.13 pkgsrc/mail/dovecot2-sqlite/Makefile:1.14
--- pkgsrc/mail/dovecot2-sqlite/Makefile:1.13   Fri Jul 20 03:34:19 2018
+++ pkgsrc/mail/dovecot2-sqlite/Makefile        Tue Oct 23 16:29:18 2018
@@ -1,6 +1,5 @@
-# $NetBSD: Makefile,v 1.13 2018/07/20 03:34:19 ryoon Exp $
+# $NetBSD: Makefile,v 1.14 2018/10/23 16:29:18 adam Exp $
 
-PKGREVISION= 1
 .include "../../mail/dovecot2/Makefile.plugin"
 
 PKGNAME=               ${DISTNAME:S/dovecot/dovecot-sqlite/}



Home | Main Index | Thread Index | Old Index