Date: Sun, 9 Dec 2018 11:48:24 +0000 (UTC) From: Kirill Ponomarev <krion@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r487039 - head/mail/tpop3d Message-ID: <201812091148.wB9BmOwe020385@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <jdc@koitsu.org> 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 \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201812091148.wB9BmOwe020385>