svn commit: r430958 - in head/ftp/pure-ftpd: . files

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Mon Jan 9 14:41:59 UTC 2017


Author: sunpoet
Date: Mon Jan  9 14:41:58 2017
New Revision: 430958
URL: https://svnweb.freebsd.org/changeset/ports/430958

Log:
  Fix TLSCipherSuite parsing
  
  - Bump PORTREVISION for package change
  
  Note: author pointed out that users will get a more secure cipher suite by not
  setting TLSCipherSuite to HIGH and just use the default.
  
  PR:		215906
  Reported by:	<yani at pi-greece.eu>
  Obtained from:	https://github.com/jedisct1/pure-ftpd/commit/3823d00dee089b998d1f40943e9aa3f619c238b2

Added:
  head/ftp/pure-ftpd/files/patch-src-simpleconf_ftpd.h   (contents, props changed)
Modified:
  head/ftp/pure-ftpd/Makefile

Modified: head/ftp/pure-ftpd/Makefile
==============================================================================
--- head/ftp/pure-ftpd/Makefile	Mon Jan  9 14:41:34 2017	(r430957)
+++ head/ftp/pure-ftpd/Makefile	Mon Jan  9 14:41:58 2017	(r430958)
@@ -3,6 +3,7 @@
 
 PORTNAME=	pure-ftpd
 PORTVERSION=	1.0.44
+PORTREVISION=	1
 CATEGORIES=	ftp ipv6
 MASTER_SITES=	https://github.com/jedisct1/${PORTNAME}/releases/download/${PORTVERSION}/ \
 		https://download.pureftpd.org/pub/pure-ftpd/releases/ \

Added: head/ftp/pure-ftpd/files/patch-src-simpleconf_ftpd.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/ftp/pure-ftpd/files/patch-src-simpleconf_ftpd.h	Mon Jan  9 14:41:58 2017	(r430958)
@@ -0,0 +1,14 @@
+Obtained from:	https://github.com/jedisct1/pure-ftpd/commit/3823d00dee089b998d1f40943e9aa3f619c238b2
+
+--- src/simpleconf_ftpd.h.orig	2016-12-16 19:17:52 UTC
++++ src/simpleconf_ftpd.h
+@@ -59,8 +59,8 @@ static const SimpleConfEntry simpleconf_
+     {"ProhibitDotFilesRead? <bool>",              "--prohibitdotfilesread"},
+     {"Quota (<digits>):(<digits>)",               "--quota=$0:$1"},
+     {"SyslogFacility (<alnum>)",                  "--syslogfacility=$0"},
+-    {"TLS (<digits>)",                            "--tls=$0"},
+     {"TLSCipherSuite (<nospace>)",                "--tlsciphersuite=$0"},
++    {"TLS (<digits>)",                            "--tls=$0"},
+     {"TrustedGID (<digits>)",                     "--trustedgid=$0"},
+     {"TrustedIP (<nospace>)",                     "--trustedip=$0"},
+     {"Umask (<digits>):(<digits>)",               "--umask=$0:$1"},


More information about the svn-ports-all mailing list