From owner-svn-ports-all@freebsd.org Fri Nov 2 08:28:41 2018 Return-Path: Delivered-To: svn-ports-all@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 7827910ED3C1; Fri, 2 Nov 2018 08:28:41 +0000 (UTC) (envelope-from antoine@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 2C52B7C9FD; Fri, 2 Nov 2018 08:28:41 +0000 (UTC) (envelope-from antoine@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 0EC7F169; Fri, 2 Nov 2018 08:28:41 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wA28SeIk050470; Fri, 2 Nov 2018 08:28:40 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wA28SeHO050468; Fri, 2 Nov 2018 08:28:40 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201811020828.wA28SeHO050468@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Fri, 2 Nov 2018 08:28:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r483784 - in branches/2018Q4/mail/heirloom-mailx: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: in branches/2018Q4/mail/heirloom-mailx: . files X-SVN-Commit-Revision: 483784 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Nov 2018 08:28:41 -0000 Author: antoine Date: Fri Nov 2 08:28:40 2018 New Revision: 483784 URL: https://svnweb.freebsd.org/changeset/ports/483784 Log: MFH: r482131 Jettison SSLv2 support. Not only does this allow mail/mailx to build using openssl111 in base but SSLv2 is insecure. Added: branches/2018Q4/mail/heirloom-mailx/files/patch-mailx.1 - copied unchanged from r482131, head/mail/heirloom-mailx/files/patch-mailx.1 branches/2018Q4/mail/heirloom-mailx/files/patch-mailx.1.html - copied unchanged from r482131, head/mail/heirloom-mailx/files/patch-mailx.1.html Modified: branches/2018Q4/mail/heirloom-mailx/Makefile Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/mail/heirloom-mailx/Makefile ============================================================================== --- branches/2018Q4/mail/heirloom-mailx/Makefile Fri Nov 2 08:26:39 2018 (r483783) +++ branches/2018Q4/mail/heirloom-mailx/Makefile Fri Nov 2 08:28:40 2018 (r483784) @@ -2,7 +2,7 @@ PORTNAME= mailx PORTVERSION= 12.4 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= mail ipv6 MASTER_SITES= SF/heirloom/heirloom-${PORTNAME}/${PORTVERSION} PKGNAMEPREFIX= heirloom- @@ -18,6 +18,7 @@ CONFLICTS= mailx-[0-9]* MAKE_JOBS_UNSAFE= yes USES= iconv localbase ssl tar:bzip2 +CPPFLAGS+= -DOPENSSL_NO_SSL2 MAKE_ARGS= PREFIX="${PREFIX}" \ SYSCONFDIR="${PREFIX}/etc" \ SENDMAIL="/usr/sbin/sendmail" \ Copied: branches/2018Q4/mail/heirloom-mailx/files/patch-mailx.1 (from r482131, head/mail/heirloom-mailx/files/patch-mailx.1) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q4/mail/heirloom-mailx/files/patch-mailx.1 Fri Nov 2 08:28:40 2018 (r483784, copy of r482131, head/mail/heirloom-mailx/files/patch-mailx.1) @@ -0,0 +1,14 @@ +--- mailx.1.orig 2007-10-01 06:00:39.000000000 -0700 ++++ mailx.1 2018-10-14 19:36:55.360353000 -0700 +@@ -2683,11 +2683,6 @@ + to verify SSL/TLS server certificates. + Only applicable if SSL/TLS support is built using OpenSSL. + .TP +-.B ssl-v2-allow +-Accept SSLv2 connections. +-These are normally not allowed +-because this protocol version is insecure. +-.TP + .B stealthmua + Inhibits the generation of + the \fI`Message-Id:'\fR and \fI`User-Agent:'\fR Copied: branches/2018Q4/mail/heirloom-mailx/files/patch-mailx.1.html (from r482131, head/mail/heirloom-mailx/files/patch-mailx.1.html) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q4/mail/heirloom-mailx/files/patch-mailx.1.html Fri Nov 2 08:28:40 2018 (r483784, copy of r482131, head/mail/heirloom-mailx/files/patch-mailx.1.html) @@ -0,0 +1,15 @@ +--- mailx.1.html.orig 2008-07-28 15:33:37.000000000 -0700 ++++ mailx.1.html 2018-10-14 19:38:44.077272000 -0700 +@@ -2953,12 +2953,6 @@ + Only applicable if SSL/TLS support is built using OpenSSL. + + +-ssl-v2-allow   +-Accept SSLv2 connections. +-These are normally not allowed +-because this protocol version is insecure. +- +- + stealthmua   + Inhibits the generation of + the 'Message-Id:' and 'User-Agent:'