From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 23 13:50:52 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 187A016A4F0 for ; Wed, 23 Jun 2004 13:50:52 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F163843D2D for ; Wed, 23 Jun 2004 13:50:51 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i5NDoK6W041402 for ; Wed, 23 Jun 2004 13:50:20 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i5NDoKoD041401; Wed, 23 Jun 2004 13:50:20 GMT (envelope-from gnats) Resent-Date: Wed, 23 Jun 2004 13:50:20 GMT Resent-Message-Id: <200406231350.i5NDoKoD041401@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Toni Viemero Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8A7A16A4CE for ; Wed, 23 Jun 2004 13:48:49 +0000 (GMT) Received: from shaolin.selfdestruct.net (shaolin.selfdestruct.net [193.65.195.200]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99B5243D46 for ; Wed, 23 Jun 2004 13:48:49 +0000 (GMT) (envelope-from toni@shaolin.selfdestruct.net) Received: by shaolin.selfdestruct.net (Postfix, from userid 1000) id AEDE79BE4C; Wed, 23 Jun 2004 16:48:19 +0300 (EEST) Message-Id: <20040623134819.AEDE79BE4C@shaolin.selfdestruct.net> Date: Wed, 23 Jun 2004 16:48:19 +0300 (EEST) From: Toni Viemero To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: j@pureftpd.org Subject: ports/68240: [PATCH] ftp/pure-ftpd: update to 1.0.19 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Jun 2004 13:50:52 -0000 >Number: 68240 >Category: ports >Synopsis: [PATCH] ftp/pure-ftpd: update to 1.0.19 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed Jun 23 13:50:20 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Toni Viemero >Release: FreeBSD 4.10-RELEASE i386 >Organization: >Environment: System: FreeBSD shaolin.selfdestruct.net 4.10-RELEASE FreeBSD 4.10-RELEASE #0: Sat May 29 00:26:03 EEST 2004 >Description: - Update to 1.0.19 (Fixes a possible DoS) - Add WITH_PERUSERLIMITS knob Port maintainer (j@pureftpd.org) is cc'd. >How-To-Repeat: >Fix: --- pure-ftpd-1.0.19.patch begins here --- diff -ruN --exclude=CVS /usr/ports/ftp/pure-ftpd/Makefile /home/toni/ports/pure-ftpd/Makefile --- /usr/ports/ftp/pure-ftpd/Makefile Tue May 25 12:19:41 2004 +++ /home/toni/ports/pure-ftpd/Makefile Wed Jun 23 16:46:04 2004 @@ -6,8 +6,7 @@ # PORTNAME= pure-ftpd -PORTVERSION= 1.0.18 -PORTREVISION= 0 +PORTVERSION= 1.0.19 CATEGORIES= ftp ipv6 MASTER_SITES= ftp://ftp.pureftpd.org/pub/pure-ftpd/releases/ \ ftp://ftp2.fr.pureftpd.org/pub/mirrors/ftp.fr.pureftpd.org/pub/pure-ftpd/releases/ \ @@ -62,6 +61,11 @@ CONFIGURE_ARGS+= --with-privsep .endif +# per-user concurrency limits requested? +.if defined(WITH_PERUSERLIMITS) +CONFIGURE_ARGS+= --with-peruserlimits +.endif + # different certificate file location? .if defined(WITH_CERTFILE) CONFIGURE_ARGS+= --with-certfile=${WITH_CERTFILE} @@ -96,7 +100,7 @@ README.Authentication-Modules THANKS pure-ftpd.png \ pureftpd.schema README.TLS -CONTRIB= xml_python_processors.txt pure-vpopauth.pl +CONTRIB= xml_python_processors.txt pure-stat.pl pure-vpopauth.pl pre-fetch: @${ECHO_MSG} "You can use the following additional options:" @@ -104,6 +108,7 @@ @${ECHO_MSG} "WITH_MYSQL=1 - Support for users in MySQL databases" @${ECHO_MSG} "WITH_PGSQL=1 - Support for users in PostgreSQL databases" @${ECHO_MSG} "WITH_PRIVSEP=1 - Enable privilege separation" + @${ECHO_MSG} "WITH_PERUSERLIMITS=1 - Enable per-user concurrency limits" @${ECHO_MSG} "WITH_CERTFILE=/path - Set different location of certificate file for TLS" @${ECHO_MSG} "WITH_LANG=lang - Enable compilation of language support, lang is one of" @${ECHO_MSG} " english, german, romanian, french, french-funny, polish, spanish," diff -ruN --exclude=CVS /usr/ports/ftp/pure-ftpd/distinfo /home/toni/ports/pure-ftpd/distinfo --- /usr/ports/ftp/pure-ftpd/distinfo Tue Mar 9 00:33:50 2004 +++ /home/toni/ports/pure-ftpd/distinfo Wed Jun 23 16:44:10 2004 @@ -1,2 +1,2 @@ -MD5 (pure-ftpd-1.0.18.tar.bz2) = 56925bb7a35b07ca70e5453af731acba -SIZE (pure-ftpd-1.0.18.tar.bz2) = 458995 +MD5 (pure-ftpd-1.0.19.tar.bz2) = 1ff9e9215d3b1fdad36571e892a726d1 +SIZE (pure-ftpd-1.0.19.tar.bz2) = 460292 diff -ruN --exclude=CVS /usr/ports/ftp/pure-ftpd/pkg-plist /home/toni/ports/pure-ftpd/pkg-plist --- /usr/ports/ftp/pure-ftpd/pkg-plist Wed Aug 13 13:42:47 2003 +++ /home/toni/ports/pure-ftpd/pkg-plist Wed Jun 23 16:45:34 2004 @@ -32,6 +32,7 @@ %%PORTDOCS%%%%DOCSDIR%%/pure-ftpd.png %%PORTDOCS%%%%DOCSDIR%%/pureftpd.schema %%EXAMPLESDIR%%/pam/pure-ftpd +%%EXAMPLESDIR%%/pure-stat.pl %%EXAMPLESDIR%%/pure-vpopauth.pl %%EXAMPLESDIR%%/xml_python_processors.txt @dirrm %%EXAMPLESDIR%%/pam --- pure-ftpd-1.0.19.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: