Hi! We are happy to release dovecot v2.3.5. Please find sources at https://dovecot.org/releases/2.3/dovecot-2.3.5.tar.gz https://dovecot.org/releases/2.3/dovecot-2.3.5.tar.gz.sig You can find precompiled binaries at https://repo.dovecot.org/ NEWS: + Lua push notification driver: mail keywords and flags are provided in MessageNew and MessageAppend events. + submission: Implement support for plugins. + auth: When auth_policy_log_only=yes, only log what the policy server response would do without actually doing it. + auth: Always log policy server decisions with auth_verbose=yes - v2.3.[34]: doveadm log errors: Output was missing user/session - lda: Debug log lines could have shown slightly corrupted - login proxy: Login processes may have crashed in various ways when login_proxy_max_disconnect_delay was set. - imap: Fix crash with Maildir+zlib if client disconnects during APPEND - lmtp proxy: Fix potential assert-crash - lmtp/submission: Fix crash when SMTP client transaction times out - submission: Split large XCLIENT commands to 512 bytes per command, so Postfix accepts them. - submission: Fix crash when client sends invalid BURL command - submission: relay backend: VRFY command: Avoid forwarding 500 and 502 replies back to client. - lib-http: Fix potential assert-crash when DNS lookup fails - lib-fts: Fix search query generation when one language ignores a token (e.g. via stopwords). --- Aki Tuomi Open-Xchange Oy -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 475 bytes Desc: not available URL: <https://dovecot.org/pipermail/dovecot-news/attachments/20190305/43409826/attachment.sig>
Am 05.03.19 um 17:26 schrieb Aki Tuomi via dovecot:> We are happy to release dovecot v2.3.5.Hello, it build but tests fail... make[4]: Entering directory '/<<PKGBUILDDIR>>/src/lib-http' for bin in test-http-date test-http-url test-http-header-parser test-http-transfer test-http-auth test-http-response-parser test-http-request-parser test-http-payload test-http-client-errors test-http-server-errors; do \ if ! ./$bin; then exit 1; fi; \ done ... unconfigured ssl ..................................................... : ok unconfigured ssl abort ............................................... : ok invalid url .......................................................... : ok host lookup failed ................................................... : ok connection refused ................................................... : ok connection refused backoff ........................................... : ok connection lost prematurely .......................................... : ok test-http-client-errors.c:2989: Assert failed: FALSE connection timed out ................................................. : FAILED invalid redirect: not accepted ....................................... : ok invalid redirect: bad location ....................................... : ok invalid redirect: too many ........................................... : ok ... 1 / 38 tests failed looking at test-http-client-errors.c:2989, could this test ever pass? test_assert(FALSE); Andreas
> On 7 March 2019 18:02 A. Schulze via dovecot <dovecot at dovecot.org> wrote: > > > Am 05.03.19 um 17:26 schrieb Aki Tuomi via dovecot: > > We are happy to release dovecot v2.3.5. > > Hello, > > it build but tests fail... > > make[4]: Entering directory '/<<PKGBUILDDIR>>/src/lib-http' > for bin in test-http-date test-http-url test-http-header-parser test-http-transfer test-http-auth test-http-response-parser test-http-request-parser test-http-payload test-http-client-errors test-http-server-errors; do \ > if ! ./$bin; then exit 1; fi; \ > done > ... > unconfigured ssl ..................................................... : ok > unconfigured ssl abort ............................................... : ok > invalid url .......................................................... : ok > host lookup failed ................................................... : ok > connection refused ................................................... : ok > connection refused backoff ........................................... : ok > connection lost prematurely .......................................... : ok > test-http-client-errors.c:2989: Assert failed: FALSE > connection timed out ................................................. : FAILED > invalid redirect: not accepted ....................................... : ok > invalid redirect: bad location ....................................... : ok > invalid redirect: too many ........................................... : ok > ... > 1 / 38 tests failed > > > looking at test-http-client-errors.c:2989, could this test ever pass? > > test_assert(FALSE); > > AndreasIt does pass over here. Are you running with valgrind or on really slow system? Does it happen if you run env NOVALGRIND=yes make check? Aki