pkgsrc-Changes archive

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

CVS commit: pkgsrc/mail/dovecot2



Module Name:    pkgsrc
Committed By:   taca
Date:           Tue Oct 22 13:23:33 UTC 2019

Modified Files:
        pkgsrc/mail/dovecot2: Makefile Makefile.common PLIST distinfo

Log Message:
mail/dovecot2: update to 2.3.8

Update dovecot2 and friends to 2.3.8.

2.3.8 2019-10-08

Changes

+ Added mail_delivery_started and mail_delivery_finished events, see
  https://doc.dovecot.org/admin_manual/list_of_events/ for details.
+ dsync-replication: Don't replicate users who have "noreplicate" extra
  field in userdb.
+ doveadm service status: Show total number of processes created.
+ When logging to syslog, use instance_name setting's value for the
  ident. This commonly is added as a log prefix.
+ Base64 encoding/decoding code was rewritten with additional features.
  It shouldn't cause any user visible changes.
- v2.3.7 regression: If a folder only receives new mails without any
  other mail access, dovecot.index.log keeps growing forever and
  dovecot.index keeps being rewritten for every mail delivery.
- dsync-replication may lose keywords after syncing mails restored from
  another replica. This only happened if the mail only had keywords and no
  system flags.
- event filters: Non-textual event fields could not be filtered using
  wildcards.
- auth: Scope parameter was missing from OAuth password grant request.
- doveadm client-server communication may hang in some situations. It is
  also using unnecessarily small TCP/IP packet sizes.
- doveadm who and kick did not flush protocol output correctly.
- imap: SETMETADATA with literal value would delete the metadata value
  instead of updating it.
- imap: When client issues FETCH PREVIEW (LAZY=FUZZY) command, the
  caching decisions should be updated so that newly saved mails will have
  the preview cached.
- With mail_nfs_index=yes and/or mail_nfs_storage=yes setuid/setgid
  permission bits in some files may have become dropped with some NFS
  servers. Changed NFS flushing to now use chmod() instead of chown().
- quota: warnings did not work if quota root was noenforcing
- acl: Global ACL file ignored the last line if it didn't end with LF.
- doveadm stats dump: With JSON formatter output numbers using the
  number type instead of as strings
- lmtp_proxy: Ensure that real_* variables are correctly set when using
  lmtp_proxy.
- event exporter: http-post driver had hardcoded timeout and did not
  support DNS lookups or TLS connections.
- auth: Fix user iteration to work with userdb passwd with glibc v2.28.
- auth: auth service can crash if auth-policy JSON response is invalid
  or returned too fast.
- In some rare situations "ps" output could have shown a lot of "?"
  characters after Dovecot process titles.
- When dovecot.index.pvt is empty, an unnecessary error is logged:
  Error: .../dovecot.index.pvt reset, view is now inconsistent
- SMTP address encoder duplicated initial double quote character when
  the localpart of an address ended in '..'. For example
  "user+..%example.com@localhost" became ""user+.."@example.com in a
  sieve redirect.


To generate a diff of this commit:
cvs rdiff -u -r1.100 -r1.101 pkgsrc/mail/dovecot2/Makefile
cvs rdiff -u -r1.33 -r1.34 pkgsrc/mail/dovecot2/Makefile.common
cvs rdiff -u -r1.66 -r1.67 pkgsrc/mail/dovecot2/PLIST
cvs rdiff -u -r1.97 -r1.98 pkgsrc/mail/dovecot2/distinfo

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.100 pkgsrc/mail/dovecot2/Makefile:1.101
--- pkgsrc/mail/dovecot2/Makefile:1.100 Tue Jul 23 15:11:24 2019
+++ pkgsrc/mail/dovecot2/Makefile       Tue Oct 22 13:23:33 2019
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.100 2019/07/23 15:11:24 taca Exp $
+# $NetBSD: Makefile,v 1.101 2019/10/22 13:23:33 taca Exp $
 
 .include "../../mail/dovecot2/Makefile.common"
 
@@ -32,6 +32,8 @@ INSTALLATION_DIRS+=   share/examples/dovec
 OWN_DIRS=              ${PKG_SYSCONFDIR}/dovecot/
 OWN_DIRS+=             ${PKG_SYSCONFDIR}/dovecot/conf.d
 
+REPLACE_BASH=          src/util/health-check.sh
+
 post-install:
        ${INSTALL_DATA} ${WRKSRC}/doc/dovecot-openssl.cnf ${DESTDIR}${EGDIR}
        ${INSTALL_SCRIPT} ${WRKSRC}/doc/mkcert.sh ${DESTDIR}${EGDIR}

Index: pkgsrc/mail/dovecot2/Makefile.common
diff -u pkgsrc/mail/dovecot2/Makefile.common:1.33 pkgsrc/mail/dovecot2/Makefile.common:1.34
--- pkgsrc/mail/dovecot2/Makefile.common:1.33   Thu Aug 29 01:05:20 2019
+++ pkgsrc/mail/dovecot2/Makefile.common        Tue Oct 22 13:23:33 2019
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.33 2019/08/29 01:05:20 taca Exp $
+# $NetBSD: Makefile.common,v 1.34 2019/10/22 13:23:33 taca Exp $
 #
 # when updating to a new release, update ABI depends in
 # the buildlink3.mk file as well, since the plugins' version
@@ -11,9 +11,9 @@
 # used by mail/dovecot2-pgsql/Makefile
 # used by mail/dovecot2-sqlite/Makefile
 
-DISTNAME=      dovecot-2.3.7.2
+DISTNAME=      dovecot-2.3.8
 CATEGORIES=    mail
-MASTER_SITES=  https://dovecot.org/releases/${PKGVERSION_NOREV:R:R}/
+MASTER_SITES=  https://dovecot.org/releases/${PKGVERSION_NOREV:R}/
 
 MAINTAINER=    adam%NetBSD.org@localhost
 HOMEPAGE=      https://www.dovecot.org/
@@ -24,7 +24,7 @@ DISTINFO_FILE=        ${.CURDIR}/../../mail/dov
 PATCHDIR=      ${.CURDIR}/../../mail/dovecot2/patches
 
 USE_LIBTOOL=           yes
-USE_TOOLS+=            gmake pkg-config rpcgen
+USE_TOOLS+=            gmake pkg-config rpcgen bash:run
 GNU_CONFIGURE=         yes
 
 BUILD_DEFS+=           VARBASE

Index: pkgsrc/mail/dovecot2/PLIST
diff -u pkgsrc/mail/dovecot2/PLIST:1.66 pkgsrc/mail/dovecot2/PLIST:1.67
--- pkgsrc/mail/dovecot2/PLIST:1.66     Thu Jul 18 13:38:18 2019
+++ pkgsrc/mail/dovecot2/PLIST  Tue Oct 22 13:23:33 2019
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.66 2019/07/18 13:38:18 taca Exp $
+@comment $NetBSD: PLIST,v 1.67 2019/10/22 13:23:33 taca Exp $
 bin/doveadm
 bin/doveconf
 bin/dsync
@@ -525,6 +525,7 @@ include/dovecot/sha1.h
 include/dovecot/sha2.h
 include/dovecot/sha3.h
 include/dovecot/shared-storage.h
+include/dovecot/sleep.h
 include/dovecot/smtp-address.h
 include/dovecot/smtp-client-command.h
 include/dovecot/smtp-client-connection.h
@@ -653,6 +654,7 @@ libexec/dovecot/dns-client
 libexec/dovecot/doveadm-server
 libexec/dovecot/dovecot-lda
 libexec/dovecot/gdbhelper
+libexec/dovecot/health-check.sh
 libexec/dovecot/imap
 libexec/dovecot/imap-hibernate
 libexec/dovecot/imap-login

Index: pkgsrc/mail/dovecot2/distinfo
diff -u pkgsrc/mail/dovecot2/distinfo:1.97 pkgsrc/mail/dovecot2/distinfo:1.98
--- pkgsrc/mail/dovecot2/distinfo:1.97  Thu Aug 29 01:05:20 2019
+++ pkgsrc/mail/dovecot2/distinfo       Tue Oct 22 13:23:33 2019
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.97 2019/08/29 01:05:20 taca Exp $
+$NetBSD: distinfo,v 1.98 2019/10/22 13:23:33 taca Exp $
 
-SHA1 (dovecot-2.3.7.2.tar.gz) = cceb5ec832c73275423ec2fe16381073aa798b0c
-RMD160 (dovecot-2.3.7.2.tar.gz) = 22b84d79fa580fc73d9fc810ad4b1328471e942c
-SHA512 (dovecot-2.3.7.2.tar.gz) = 172f7f0edb884259e4c050607510aee67a35c3a20b7dd147e7c8a25a04921c18f7d6b5c85af2c69ae8c4d53791550970e471b033dbfae94253e331053b6a317d
-Size (dovecot-2.3.7.2.tar.gz) = 7076231 bytes
+SHA1 (dovecot-2.3.8.tar.gz) = 65b93f7fd53705b3c97f9eee141a76c5f4f3a624
+RMD160 (dovecot-2.3.8.tar.gz) = bad3e659762d4d344adb9f658f5bbad1be6ec370
+SHA512 (dovecot-2.3.8.tar.gz) = f62439e2ea77ffb544a7752c07085582c5653c64671cb42dd7a7e5aa69eb87059c677aa1fa071efa1ddd2287ab621e9a264ec115be2aeb2f43ab4c685411eae3
+Size (dovecot-2.3.8.tar.gz) = 7136958 bytes
 SHA1 (patch-aa) = 3af01aa4a8cea1a3fb840b6243a744de77069611
 SHA1 (patch-ab) = 9db15fd853ba47ef4bf04f2adc9ab24f71ee4d1e
 SHA1 (patch-ae) = c795585df9f415ceabb28eec1ff691ee26168d3b



Home | Main Index | Thread Index | Old Index