From owner-svn-ports-head@freebsd.org Sun Dec 9 11:48:25 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2A1EA1318207; Sun, 9 Dec 2018 11:48:25 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B6C0A8642C; Sun, 9 Dec 2018 11:48:24 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 97B8310DA4; Sun, 9 Dec 2018 11:48:24 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wB9BmOr9020386; Sun, 9 Dec 2018 11:48:24 GMT (envelope-from krion@FreeBSD.org) Received: (from krion@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wB9BmOwe020385; Sun, 9 Dec 2018 11:48:24 GMT (envelope-from krion@FreeBSD.org) Message-Id: <201812091148.wB9BmOwe020385@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: krion set sender to krion@FreeBSD.org using -f From: Kirill Ponomarev Date: Sun, 9 Dec 2018 11:48:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r487039 - head/mail/tpop3d X-SVN-Group: ports-head X-SVN-Commit-Author: krion X-SVN-Commit-Paths: head/mail/tpop3d X-SVN-Commit-Revision: 487039 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B6C0A8642C X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.997,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-0.99)[-0.990,0] X-Rspamd-Server: mx1.freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Dec 2018 11:48:25 -0000 Author: krion Date: Sun Dec 9 11:48:24 2018 New Revision: 487039 URL: https://svnweb.freebsd.org/changeset/ports/487039 Log: Add patches to avoid accessing unallocated memory. buffer_consume_to_mark() was trying to use Boyer-Moore search to find specified mark string but implementation was walking through unallocated memory. PR: 227543 Submitted by: Jeremy Chadwick Modified: head/mail/tpop3d/Makefile Modified: head/mail/tpop3d/Makefile ============================================================================== --- head/mail/tpop3d/Makefile Sun Dec 9 11:41:32 2018 (r487038) +++ head/mail/tpop3d/Makefile Sun Dec 9 11:48:24 2018 (r487039) @@ -3,14 +3,17 @@ PORTNAME= tpop3d PORTVERSION= 1.5.5 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= mail MASTER_SITES= SAVANNAH MAINTAINER= ports@FreeBSD.org COMMENT= Virtual-domain capable POP3 server supporting MySQL, PgSQL etc auth +LICENSE= GPLv2 + USES= ssl + GNU_CONFIGURE= yes LDFLAGS+= -L${LOCALBASE}/lib -lcrypto CONFIGURE_ARGS= --enable-auth-other \