Index: mail/dovecot/Makefile =================================================================== --- mail/dovecot/Makefile (revision 459918) +++ mail/dovecot/Makefile (working copy) @@ -13,7 +13,7 @@ PORTNAME= dovecot PORTVERSION= 2.2.33.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= mail ipv6 MASTER_SITES= https://www.dovecot.org/releases/2.2/ Index: mail/dovecot/files/patch-CVE-2017-15132.patch =================================================================== --- mail/dovecot/files/patch-CVE-2017-15132.patch (nonexistent) +++ mail/dovecot/files/patch-CVE-2017-15132.patch (working copy) @@ -0,0 +1,17 @@ +# + +Ref: https://github.com/dovecot/core/commit/1a29ed2f96da1be22fa5a4d96c7583aa81b8b060 +Security: CVE-2017-15132 + +Fix memory leaks when authentication was aborted. + +--- src/lib-auth/auth-client-request.c.orig 2018-01-25 11:02:08 UTC ++++ src/lib-auth/auth-client-request.c +@@ -180,6 +180,7 @@ void auth_client_request_abort(struct au + + auth_client_send_cancel(request->conn->client, request->id); + call_callback(request, AUTH_REQUEST_STATUS_ABORT, NULL, NULL); ++ pool_unref(&request->pool); + } + + unsigned int auth_client_request_get_id(struct auth_client_request *request)