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:           Wed May 11 09:26:58 UTC 2022

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

Log Message:
dovecot2: updated to 2.3.19

v2.3.19

+ Added mail_user_session_finished event, which is emitted when the mail
  user session is finished (e.g. imap, pop3, lmtp). It also includes
  fields with some process statistics information.
  See https://doc.dovecot.org/admin_manual/list_of_events/ for more
  information.
+ Added process_shutdown_filter setting. When an event matches the filter,
  the process will be shutdown after the current connection(s) have
  finished. This is intended to reduce memory usage of long-running imap
  processes that keep a lot of memory allocated instead of freeing it to
  the OS.
+ auth: Add cache hit indicator to auth passdb/userdb finished events.
  See https://doc.dovecot.org/admin_manual/list_of_events/ for more
  information.
+ doveadm deduplicate: Performance is improved significantly.
+ imapc: COPY commands were sent one mail at a time to the remote IMAP
  server. Now the copying is buffered, so multiple mails can be copied
  with a single COPY command.
+ lib-lua: Add a Lua interface to Dovecot's HTTP client library. See
  https://doc.dovecot.org/admin_manual/lua/ for more information.
- auth: Cache lookup would use incorrect cache key after username change.
- auth: Improve handling unexpected LDAP connection errors/hangs.
  Try to fix up these cases by reconnecting to the LDAP server and
  aborting LDAP requests earlier.
- auth: Process crashed if userdb iteration was attempted while auth-workers
  were already full handling auth requests.
- auth: db-oauth2: Using %{oauth2:name} variables caused unnecessary
  introspection requests.
- dict: Timeouts may have been leaked at deinit.
- director: Ring may have become unstable if a backend's tag was changed.
  It could also have caused director process to crash.
- doveadm kick: Numeric parameter was treated as IP address.
- doveadm: Proxying can panic when flushing print output. Fixes
  Panic: file ioloop.c: line 865 (io_loop_destroy): assertion failed:
  (ioloop == current_ioloop).
- doveadm sync: BROKENCHAR was wrongly changed to '_' character when
  migrating mailboxes. This was set by default to %, so any mailbox
  names containing % characters were modified to "_25".
- imapc: Copying or moving mails with doveadm to an imapc mailbox could
  have produced "Error: Syncing mailbox '[...]' failed" Errors. The
  operation itself succeeded but attempting to sync the destination
  mailbox failed.
- imapc: Prevent index log synchronization errors when two or more imapc
  sessions are adding messages to the same mailbox index files, i.e.
  INDEX=MEMORY is not used.
- indexer: Process was slowly leaking memory for each indexing request.
- lib-fts: fts header filters caused binary content to be sent to the
  indexer with non-default configuration.
- doveadm-server: Process could hang in some situations when printing
  output to TCP client, e.g. when printing doveadm sync state.
- lib-index: dovecot.index.log files were often read and parsed entirely,
  rather than only the parts that were actually necessary. This mainly
  increased CPU usage.
- lmtp-proxy: Session ID forwarding would cause same session IDs being
  used when delivering same mail to multiple backends.
- log: Log prefix update may have been lost if log process was busy.
  This could have caused log prefixes to be empty or in some cases
  reused between sessions, i.e. log lines could have been logged for the
  wrong user/session.
- mail_crypt: Plugin crashes if it's loaded only for some users. Fixes
  Panic: Module context mail_crypt_user_module missing.
- mail_crypt: When LMTP was delivering mails to both recipients with mail
  encryption enabled and not enabled, the non-encrypted recipients may
  have gotten mails encrypted anyway. This happened when the first
  recipient was encrypted (mail_crypt_save_version=2) and the 2nd
  recipient was not encrypted (mail_crypt_save_version=0).
- pop3: Session would crash if empty line was sent.
- stats: HTTP server leaked memory.
- submission-login: Long credentials, such as OAUTH2 tokens, were refused
  during SASL interactive due to submission server applying line length
  limits.
- submission-login: When proxying to remote host, authentication was not
  using interactive SASL when logging in using long credentials such as
  OAUTH2 tokens. This caused authentication to fail due to line length
  constraints in SMTP protocol.
- submission: Terminating the client connection with QUIT command after
  mail transaction is started with MAIL command and before it is
  finished with DATA/BDAT can cause a segfault crash.
- virtual: doveadm search queries with mailbox-guid as the only parameter
  crashes: Panic: file virtual-search.c: line 77 (virtual_search_get_records):
  assertion failed: (result != 0)


To generate a diff of this commit:
cvs rdiff -u -r1.48 -r1.49 pkgsrc/mail/dovecot2/Makefile.common
cvs rdiff -u -r1.75 -r1.76 pkgsrc/mail/dovecot2/PLIST
cvs rdiff -u -r1.117 -r1.118 pkgsrc/mail/dovecot2/distinfo
cvs rdiff -u -r1.29 -r1.30 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.common
diff -u pkgsrc/mail/dovecot2/Makefile.common:1.48 pkgsrc/mail/dovecot2/Makefile.common:1.49
--- pkgsrc/mail/dovecot2/Makefile.common:1.48   Thu Feb  3 21:02:04 2022
+++ pkgsrc/mail/dovecot2/Makefile.common        Wed May 11 09:26:57 2022
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.common,v 1.48 2022/02/03 21:02:04 adam Exp $
+# $NetBSD: Makefile.common,v 1.49 2022/05/11 09:26:57 adam Exp $
 #
 # when updating to a new release, update ABI depends in
 # the buildlink3.mk file as well, since the plugins' version
@@ -11,7 +11,7 @@
 # used by mail/dovecot2-pgsql/Makefile
 # used by mail/dovecot2-sqlite/Makefile
 
-DISTNAME=      dovecot-2.3.18
+DISTNAME=      dovecot-2.3.19
 CATEGORIES=    mail
 MASTER_SITES=  https://dovecot.org/releases/${PKGVERSION_NOREV:R}/
 

Index: pkgsrc/mail/dovecot2/PLIST
diff -u pkgsrc/mail/dovecot2/PLIST:1.75 pkgsrc/mail/dovecot2/PLIST:1.76
--- pkgsrc/mail/dovecot2/PLIST:1.75     Tue Dec 21 17:28:51 2021
+++ pkgsrc/mail/dovecot2/PLIST  Wed May 11 09:26:57 2022
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.75 2021/12/21 17:28:51 adam Exp $
+@comment $NetBSD: PLIST,v 1.76 2022/05/11 09:26:57 adam Exp $
 bin/doveadm
 bin/doveconf
 bin/dovecot-sysreport
@@ -476,6 +476,7 @@ include/dovecot/pop3c-sync.h
 include/dovecot/primes.h
 include/dovecot/printf-format-fix.h
 include/dovecot/priorityq.h
+include/dovecot/process-stat.h
 include/dovecot/process-title.h
 include/dovecot/program-client.h
 include/dovecot/push-notification-drivers.h
@@ -522,6 +523,7 @@ include/dovecot/sdbox-storage.h
 include/dovecot/sdbox-sync.h
 include/dovecot/sendfile-util.h
 include/dovecot/seq-range-array.h
+include/dovecot/seq-set-builder.h
 include/dovecot/service-settings.h
 include/dovecot/settings-parser.h
 include/dovecot/settings.h

Index: pkgsrc/mail/dovecot2/distinfo
diff -u pkgsrc/mail/dovecot2/distinfo:1.117 pkgsrc/mail/dovecot2/distinfo:1.118
--- pkgsrc/mail/dovecot2/distinfo:1.117 Thu Feb  3 21:02:04 2022
+++ pkgsrc/mail/dovecot2/distinfo       Wed May 11 09:26:57 2022
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.117 2022/02/03 21:02:04 adam Exp $
+$NetBSD: distinfo,v 1.118 2022/05/11 09:26:57 adam Exp $
 
-BLAKE2s (dovecot-2.3.18.tar.gz) = 3d840ea7a1370eaa5cb00c52704f472c81b811ec0fa7ec7411cfc60703fe6004
-SHA512 (dovecot-2.3.18.tar.gz) = b5eccf790a3960614876f122efb6296fe49ab7c523b08c10347fd4d10ed293fbd327279511c227b420f7c0786975186157eaa0fb5cd3aab1f3be9a4c5c3ad233
-Size (dovecot-2.3.18.tar.gz) = 7763230 bytes
+BLAKE2s (dovecot-2.3.19.tar.gz) = f2e4c7ddb77e3e604c255b904208d50c6cc7b9bde68a3b3d94c894cc8937e01f
+SHA512 (dovecot-2.3.19.tar.gz) = a61ce88b53c4f24faddf4951f16cb75dfe52aa7057d072c727566a7c9a683cc487d26cea9a83ad8aca161a053949d2f2196ba6a58015e3d33be897094aabf887
+Size (dovecot-2.3.19.tar.gz) = 7790661 bytes
 SHA1 (patch-aa) = 3af01aa4a8cea1a3fb840b6243a744de77069611
 SHA1 (patch-ab) = 685ab3d0e21515bf157e9897ebdebf484f0ece96
 SHA1 (patch-ae) = c1e76d75fab4b13d3b9b33af800bac18c90989da

Index: pkgsrc/mail/dovecot2-sqlite/Makefile
diff -u pkgsrc/mail/dovecot2-sqlite/Makefile:1.29 pkgsrc/mail/dovecot2-sqlite/Makefile:1.30
--- pkgsrc/mail/dovecot2-sqlite/Makefile:1.29   Mon Apr 18 19:11:33 2022
+++ pkgsrc/mail/dovecot2-sqlite/Makefile        Wed May 11 09:26:57 2022
@@ -1,6 +1,5 @@
-# $NetBSD: Makefile,v 1.29 2022/04/18 19:11:33 adam Exp $
+# $NetBSD: Makefile,v 1.30 2022/05/11 09:26:57 adam Exp $
 
-PKGREVISION= 2
 .include "../../mail/dovecot2/Makefile.common"
 
 PKGNAME=       ${DISTNAME:S/dovecot/dovecot-sqlite/}



Home | Main Index | Thread Index | Old Index