1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-11 07:22:22 +00:00

- Default ipv6 to on & bump portrevision

This commit is contained in:
Beech Rintoul 2009-01-28 20:58:19 +00:00
parent e05869bb19
commit 7886e2eaa0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=227067
2 changed files with 14 additions and 5 deletions

View File

@ -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/ \

View File

@ -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.