1 diff -ur bftpd-1.3.orig/bftpd.conf bftpd-1.3/bftpd.conf
2 --- bftpd-1.3.orig/bftpd.conf 2006-03-10 01:53:52.000000000 +0100
3 +++ bftpd-1.3/bftpd.conf 2006-03-30 20:23:32.000000000 +0200
4 @@ -1,5 +1,6 @@
5 -#Configuration file for bftpd.
6 -#The given values are only examples, modify this file for your own needs.
7 +#
8 +# /etc/bftpd.conf: bftpd(8) configuration
9 +#
10
11 global {
12
13 @@ -53,7 +54,7 @@
14 #Note that the directory in which the file resides must already exist.
15 #Set the option to "" if you do not want that. This is discouraged for normal
16 #use, but can be helpful if you want to create a boot floppy or something.
17 - PATH_BFTPDUTMP="/var/run/bftpd/bftpdutmp"
18 + PATH_BFTPDUTMP="/var/run/bftpdutmp"
19
20 #This option controls the buffer size while transferring files.
21 #If you are on a very fast network (fast meaning 100 Mbit/s or more),
22 @@ -86,11 +87,11 @@
23 ALLOW_FXP="no"
24
25 #After how many seconds of idle time should a user be kicked from the server?
26 - CONTROL_TIMEOUT="300"
27 + CONTROL_TIMEOUT="0"
28
29 #After how many seconds of idle time should a user be kicked from the server
30 #during a file transfer?
31 - DATA_TIMEOUT="30"
32 + DATA_TIMEOUT="60"
33
34 #Use Ratio if you want the client to send a file before he can get a file.
35 #Usage: RATIO=send/receive or RATIO=none. Example: RATIO=2/1 lets the client
36 @@ -106,7 +107,7 @@
37
38 #Name of the log file. Say "syslog" to log into syslog.
39 #Say "" for no logging.
40 - LOGFILE="/var/log/bftpd.log"
41 + LOGFILE="/var/log/bftpd"
42
43 #Use %v for version, %h for the server FQDN and %i for the server IP address.
44 # Note: If you use the "%h" option and you do an inital CHROOT, then
45 @@ -205,7 +206,7 @@
46
47 user ftp {
48 #Any password fits.
49 - ANONYMOUS_USER="yes"
50 + ANONYMOUS_USER="no"
51 }
52
53 user anonymous {
54 @@ -214,7 +215,5 @@
55 }
56
57 user root {
58 - DENY_LOGIN="Root login not allowed."
59 + DENY_LOGIN="root login not allowed."
60 }
61 -
62 -
|