aboutsummaryrefslogtreecommitdiffstats
path: root/ftp/proftpd
diff options
context:
space:
mode:
authorbeech <beech@FreeBSD.org>2009-01-29 04:58:19 +0800
committerbeech <beech@FreeBSD.org>2009-01-29 04:58:19 +0800
commit3b198ddc359d705f21372fe2087cd28a124ec475 (patch)
tree74db5cf594d3f1e1c8e3121261d61bbbd07add0d /ftp/proftpd
parentc6f1cb2d9bb9add73787bba6e3cd63af9e313fc8 (diff)
downloadfreebsd-ports-gnome-3b198ddc359d705f21372fe2087cd28a124ec475.tar.gz
freebsd-ports-gnome-3b198ddc359d705f21372fe2087cd28a124ec475.tar.zst
freebsd-ports-gnome-3b198ddc359d705f21372fe2087cd28a124ec475.zip
- Default ipv6 to on & bump portrevision
Diffstat (limited to 'ftp/proftpd')
-rw-r--r--ftp/proftpd/Makefile1
-rw-r--r--ftp/proftpd/files/patch-sample-configurations_basic.conf18
2 files changed, 14 insertions, 5 deletions
diff --git a/ftp/proftpd/Makefile b/ftp/proftpd/Makefile
index 2090c74d338b..c426304a060d 100644
--- a/ftp/proftpd/Makefile
+++ b/ftp/proftpd/Makefile
@@ -7,6 +7,7 @@
PORTNAME= proftpd
DISTVERSION= 1.3.2rc4
+PORTREVISION= 1
CATEGORIES= ftp
MASTER_SITES= ftp://ftp.proftpd.org/distrib/source/ \
ftp://ftp.fastorama.com/mirrors/ftp.proftpd.org/distrib/source/ \
diff --git a/ftp/proftpd/files/patch-sample-configurations_basic.conf b/ftp/proftpd/files/patch-sample-configurations_basic.conf
index b32fb3003bc7..af53b7c8cc5f 100644
--- a/ftp/proftpd/files/patch-sample-configurations_basic.conf
+++ b/ftp/proftpd/files/patch-sample-configurations_basic.conf
@@ -1,5 +1,5 @@
---- sample-configurations/basic.conf.orig 2007-03-09 10:01:30.000000000 -0900
-+++ sample-configurations/basic.conf 2007-07-05 09:29:42.000000000 -0800
+--- sample-configurations/basic.conf.orig 2008-01-21 08:44:06.000000000 -0900
++++ sample-configurations/basic.conf 2009-01-28 11:25:31.000000000 -0900
@@ -1,3 +1,7 @@
+#
+# For more informations about Proftpd configuration
@@ -8,7 +8,7 @@
# This is a basic ProFTPD configuration file (rename it to
# 'proftpd.conf' for actual use. It establishes a single server
# and a single anonymous login. It assumes that you have a user/group
-@@ -6,6 +10,7 @@
+@@ -6,12 +10,13 @@
ServerName "ProFTPD Default Installation"
ServerType standalone
DefaultServer on
@@ -16,7 +16,15 @@
# Port 21 is the standard FTP port.
Port 21
-@@ -22,6 +27,8 @@
+
+-# Don't use IPv6 support by default.
+-UseIPv6 off
++# Use IPv6 support by default.
++UseIPv6 on
+
+ # Umask 022 is a good standard umask to prevent new dirs and files
+ # from being group and world writable.
+@@ -25,6 +30,8 @@
# (such as xinetd).
MaxInstances 30
@@ -25,7 +33,7 @@
# Set the user and group under which the server will run.
User nobody
Group nogroup
-@@ -40,23 +47,31 @@
+@@ -43,23 +50,31 @@
# A basic anonymous configuration, no upload directories. If you do not
# want anonymous users, simply delete this entire <Anonymous> section.