[dovecot/core] a37bae: Fix arc4random build checks

GitHub noreply at github.com
Mon May 28 10:30:11 EEST 2018


  Branch: refs/heads/master-2.3
  Home:   https://github.com/dovecot/core
  Commit: a37bae91328e318c537b72a5ed4eeb311cca014d
      https://github.com/dovecot/core/commit/a37bae91328e318c537b72a5ed4eeb311cca014d
  Author: Bill Cole <github-20160324 at billmail.scconsult.com>
  Date:   2018-05-28 (Mon, 28 May 2018)

  Changed paths:
    M m4/arc4random.m4

  Log Message:
  -----------
  Fix arc4random build checks

The configure script checks for arc4random() but the actual code uses
arc4random_buf(). This breaks for FreeBSD <8.0 and MacOS X <10.7, which
have the former but not the latter. This change (and an autoreconf run)
solves the problem at the cost of not using the available ARC4
implementation.


  Commit: 29c3c0d183bef0fec68644b4abf6f0801879f4ee
      https://github.com/dovecot/core/commit/29c3c0d183bef0fec68644b4abf6f0801879f4ee
  Author: Aki Tuomi <aki.tuomi at dovecot.fi>
  Date:   2018-05-28 (Mon, 28 May 2018)

  Changed paths:
    M src/auth/db-lua.c

  Log Message:
  -----------
  auth: db-lua - Remove extra space from log_error

This makes it possible to use the log_error method.

Broken in 9698cd24


  Commit: 47c7e193dba38d5f912c6be3a0f9a63326a31b79
      https://github.com/dovecot/core/commit/47c7e193dba38d5f912c6be3a0f9a63326a31b79
  Author: Aki Tuomi <aki.tuomi at dovecot.fi>
  Date:   2018-05-28 (Mon, 28 May 2018)

  Changed paths:
    M src/auth/db-lua.c

  Log Message:
  -----------
  auth: db-lua - Expose some auth request members

These are particularly useful for finding out if user
has already been authenticated.


  Commit: 6f96dd4d4a7ce45388d7e3c44079b363fa71499f
      https://github.com/dovecot/core/commit/6f96dd4d4a7ce45388d7e3c44079b363fa71499f
  Author: Aki Tuomi <aki.tuomi at dovecot.fi>
  Date:   2018-05-28 (Mon, 28 May 2018)

  Changed paths:
    M src/auth/db-lua.c

  Log Message:
  -----------
  auth: db-lua - Add password_verify to auth request

Allows verifying passwords with dovecot when necessary


  Commit: b264fa336ad4f239f08d8ef6fdb2d273e4687bd4
      https://github.com/dovecot/core/commit/b264fa336ad4f239f08d8ef6fdb2d273e4687bd4
  Author: Aki Tuomi <aki.tuomi at dovecot.fi>
  Date:   2018-05-28 (Mon, 28 May 2018)

  Changed paths:
    M src/auth/test-lua.c
    M src/auth/test-main.c

  Log Message:
  -----------
  auth: Add test for lua password verify


  Commit: c560ada9bfad6a3741b3a8d413bc6e9c0a36f6a2
      https://github.com/dovecot/core/commit/c560ada9bfad6a3741b3a8d413bc6e9c0a36f6a2
  Author: Aki Tuomi <aki.tuomi at dovecot.fi>
  Date:   2018-05-28 (Mon, 28 May 2018)

  Changed paths:
    M src/auth/test-auth.h
    M src/auth/test-lua.c
    M src/auth/test-main.c
    M src/auth/test-mock.c

  Log Message:
  -----------
  auth: test - make sure memory gets free'd


  Commit: 9b99269a56c7f178de0baba0b05cc12451c5b18a
      https://github.com/dovecot/core/commit/9b99269a56c7f178de0baba0b05cc12451c5b18a
  Author: Stephan Bosch <stephan.bosch at dovecot.fi>
  Date:   2018-05-28 (Mon, 28 May 2018)

  Changed paths:
    M src/lmtp/lmtp-common.c

  Log Message:
  -----------
  lmtp: Fix segfault occurring when a user turns out to be over quota at DATA transfer.

The LMTP recipient context was not updated with the final recipient address when
the RCPT command was accepted. This left a dangling struct smtp_address pointer
which triggered the segfault when used.


  Commit: 3e3f82d39a3645c7a20af3bf625a27f5086d1df1
      https://github.com/dovecot/core/commit/3e3f82d39a3645c7a20af3bf625a27f5086d1df1
  Author: Stephan Bosch <stephan.bosch at dovecot.fi>
  Date:   2018-05-28 (Mon, 28 May 2018)

  Changed paths:
    M src/submission/main.c

  Log Message:
  -----------
  submission: Move assignment of verbose_proctitle.

Makes it more consistent with other services like imap.


  Commit: 6d4f512aa0e39575e57af20f9b11d761d9a091ee
      https://github.com/dovecot/core/commit/6d4f512aa0e39575e57af20f9b11d761d9a091ee
  Author: Stephan Bosch <stephan.bosch at dovecot.fi>
  Date:   2018-05-28 (Mon, 28 May 2018)

  Changed paths:
    M src/submission/main.c

  Log Message:
  -----------
  submission: Substitute variables in settings.


  Commit: 71375e3d5d94fe82f0dc91fe055d46a69b1d35a9
      https://github.com/dovecot/core/commit/71375e3d5d94fe82f0dc91fe055d46a69b1d35a9
  Author: Stephan Bosch <stephan.bosch at dovecot.fi>
  Date:   2018-05-28 (Mon, 28 May 2018)

  Changed paths:
    M src/submission/submission-client.c
    M src/submission/submission-settings.c
    M src/submission/submission-settings.h

  Log Message:
  -----------
  submission: Add support for making server rawlogs using the rawlog_dir setting.

Similar services like pop3 and imap already support this setting, but for
submission this was omitted.


  Commit: 618b7e0dabbaec850b9deacd8400b8a3afd30a52
      https://github.com/dovecot/core/commit/618b7e0dabbaec850b9deacd8400b8a3afd30a52
  Author: Stephan Bosch <stephan.bosch at dovecot.fi>
  Date:   2018-05-28 (Mon, 28 May 2018)

  Changed paths:
    M src/submission/submission-settings.c

  Log Message:
  -----------
  submission: Perform variable substitution for the submission_relay_rawlog_dir setting.


Compare: https://github.com/dovecot/core/compare/c1ca270488c3...618b7e0dabba
      **NOTE:** This service been marked for deprecation: https://developer.github.com/changes/2018-04-25-github-services-deprecation/

      Functionality will be removed from GitHub.com on January 31st, 2019.


More information about the dovecot-cvs mailing list