summaryrefslogtreecommitdiff
path: root/ftp/proftpd-devel/files
diff options
context:
space:
mode:
Diffstat (limited to 'ftp/proftpd-devel/files')
-rw-r--r--ftp/proftpd-devel/files/patch-aa70
-rw-r--r--ftp/proftpd-devel/files/patch-ae181
-rw-r--r--ftp/proftpd-devel/files/patch-af15
-rw-r--r--ftp/proftpd-devel/files/patch-ah10
-rw-r--r--ftp/proftpd-devel/files/proftpd.sh.sample19
5 files changed, 0 insertions, 295 deletions
diff --git a/ftp/proftpd-devel/files/patch-aa b/ftp/proftpd-devel/files/patch-aa
deleted file mode 100644
index d9342969ff2c..000000000000
--- a/ftp/proftpd-devel/files/patch-aa
+++ /dev/null
@@ -1,70 +0,0 @@
---- sample-configurations/basic.conf.orig Sun Mar 1 21:51:51 1998
-+++ sample-configurations/basic.conf Wed Jul 1 19:04:28 1998
-@@ -1,3 +1,8 @@
-+#
-+# To have more informations about Proftpd configuration
-+# look at : http://www.proftpd.org/
-+#
-+
- # 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
-@@ -30,24 +35,38 @@
- AllowOverwrite on
- </Directory>
-
--# A basic anonymous configuration, no upload directories.
--<Anonymous ~ftp>
-- User ftp
-- Group ftp
-- # We want clients to be able to login with "anonymous" as well as "ftp"
-- UserAlias anonymous ftp
--
-- # Limit the maximum number of anonymous logins
-- MaxClients 10
--
-- # We want 'welcome.msg' displayed at login, and '.message' displayed
-- # in each newly chdired directory.
-- DisplayLogin welcome.msg
-- DisplayFirstChdir .message
--
-- # Limit WRITE everywhere in the anonymous chroot
-- <Limit WRITE>
-- DenyAll
-- </Limit>
-
--</Anonymous>
-+#########################################################################
-+# #
-+# Uncomment lines with only one # to allow basic anonymous access #
-+# #
-+#########################################################################
-+
-+### A basic anonymous configuration, no upload directories.
-+# <Anonymous ~ftp>
-+# User ftp
-+# Group ftp
-+ ### We want clients to be able to login with "anonymous" as well as "ftp"
-+ # UserAlias anonymous ftp
-+
-+ ### Limit the maximum number of anonymous logins
-+ # MaxClients 10
-+
-+ ### It is wise when making an 'ftp' user that you either block its
-+ ### ability to login either via /etc/login.access or my giving it
-+ ### an invalid shell.
-+ ### Uncomment this if the 'ftp' user you made has an invalid shell
-+
-+ # RequireValidShell off
-+
-+ ### We want 'welcome.msg' displayed at login, and '.message' displayed
-+ ### in each newly chdired directory.
-+ # DisplayLogin welcome.msg
-+ # DisplayFirstChdir .message
-+
-+ ### Limit WRITE everywhere in the anonymous chroot
-+ # <Limit WRITE>
-+ # DenyAll
-+ # </Limit>
-+
-+# </Anonymous>
diff --git a/ftp/proftpd-devel/files/patch-ae b/ftp/proftpd-devel/files/patch-ae
deleted file mode 100644
index 5fac82747d06..000000000000
--- a/ftp/proftpd-devel/files/patch-ae
+++ /dev/null
@@ -1,181 +0,0 @@
---- modules/mod_auth.c.orig Mon Jan 3 13:28:39 2000
-+++ modules/mod_auth.c Thu Jan 27 23:17:19 2000
-@@ -70,7 +70,7 @@
- "closing control connection.",
- TimeoutLogin);
-
-- main_exit((void*) LOG_NOTICE, "FTP login timed out, disconnected.",
-+ main_exit((void*) LOG_INFO, "FTP login timed out, disconnected.",
- (void*) 0, NULL);
-
- /* should never be reached */
-@@ -559,7 +559,7 @@
- c = _auth_resolve_user(p,&user,&ourname,&anonname);
-
- if(!user) {
-- log_pri(LOG_NOTICE, "USER %s (Login failed): User not a UserAlias.",
-+ log_pri(LOG_INFO, "USER %s (Login failed): User not a UserAlias.",
- origuser);
- goto auth_failure;
- }
-@@ -568,7 +568,7 @@
- aclp = login_check_limits(main_server->conf,FALSE,TRUE,&i);
-
- if((pw = auth_getpwnam(p,user)) == NULL) {
-- log_pri(LOG_NOTICE, "USER %s (Login failed): Can't find user.", user);
-+ log_pri(LOG_INFO, "USER %s (Login failed): Can't find user.", user);
- goto auth_failure;
- }
-
-@@ -629,14 +629,14 @@
- }
-
- if(!login_check_limits(c->subset,FALSE,TRUE,&i) || (!aclp && !i) ){
-- log_auth(LOG_NOTICE, "ANON %s (Login failed): Limit access denies "
-+ log_auth(LOG_INFO, "ANON %s (Login failed): Limit access denies "
- "login.", origuser);
- goto auth_failure;
- }
- }
-
- if(!c && !aclp) {
-- log_auth(LOG_NOTICE, "USER %s (Login failed): Limit access denies login.",
-+ log_auth(LOG_INFO, "USER %s (Login failed): Limit access denies login.",
- origuser);
- goto auth_failure;
- }
-@@ -650,7 +650,7 @@
- /* if 'AuthUsingAlias' set and logging in under an alias then auth using that alias */
- if (origuser && strcasecmp(user,origuser) && get_param_int(c->subset,"AuthUsingAlias",FALSE) == 1) {
- user_name = origuser;
-- log_auth(LOG_NOTICE,"ANON AUTH: User %s, Auth Alias %s",user,user_name);
-+ log_auth(LOG_INFO,"ANON AUTH: User %s, Auth Alias %s",user,user_name);
- }
-
- if(c)
-@@ -677,22 +677,22 @@
-
- switch(authcode) {
- case AUTH_NOPWD:
-- log_auth(LOG_NOTICE, "USER %s (Login failed): No such user found.",
-+ log_auth(LOG_INFO, "USER %s (Login failed): No such user found.",
- user);
- goto auth_failure;
-
- case AUTH_BADPWD:
-- log_auth(LOG_NOTICE, "USER %s (Login failed): Incorrect password.",
-+ log_auth(LOG_INFO, "USER %s (Login failed): Incorrect password.",
- origuser);
- goto auth_failure;
-
- case AUTH_AGEPWD:
-- log_auth(LOG_NOTICE, "USER %s (Login failed): Password expired.",
-+ log_auth(LOG_INFO, "USER %s (Login failed): Password expired.",
- user);
- goto auth_failure;
-
- case AUTH_DISABLEDPWD:
-- log_auth(LOG_NOTICE, "USER %s (Login failed): Account disabled.",
-+ log_auth(LOG_INFO, "USER %s (Login failed): Account disabled.",
- user);
- goto auth_failure;
-
-@@ -715,12 +715,12 @@
- auth_setgrent(p);
-
- if(!_auth_check_shell((c ? c->subset : main_server->conf),pw->pw_shell)) {
-- log_auth(LOG_NOTICE, "USER %s (Login failed): Invalid shell.", user);
-+ log_auth(LOG_INFO, "USER %s (Login failed): Invalid shell.", user);
- goto auth_failure;
- }
-
- if(!_auth_check_ftpusers((c ? c->subset : main_server->conf),pw->pw_name)) {
-- log_auth(LOG_NOTICE, "USER %s (Login failed): User in %s.",
-+ log_auth(LOG_INFO, "USER %s (Login failed): User in %s.",
- user, FTPUSERS_PATH);
- goto auth_failure;
- }
-@@ -792,7 +792,7 @@
-
- if(!login_check_limits((c ? c->subset : main_server->conf),FALSE,TRUE,&i))
- {
-- log_auth(LOG_NOTICE, "%s: Limit access denies login (DenyGroup).",
-+ log_auth(LOG_INFO, "%s: Limit access denies login (DenyGroup).",
- origuser);
- goto auth_failure;
- }
-@@ -807,9 +807,9 @@
- resolve_anonymous_dirs(c->subset);
-
- if(c)
-- log_auth(LOG_NOTICE, "ANON %s: Login successful.", origuser);
-+ log_auth(LOG_INFO, "ANON %s: Login successful.", origuser);
- else
-- log_auth(LOG_NOTICE,"USER %s: Login successful.", origuser);
-+ log_auth(LOG_INFO,"USER %s: Login successful.", origuser);
-
- /* Write the login to wtmp. This must be done here because we won't
- * have access after we give up root. This can result in falsified
-@@ -1073,7 +1073,7 @@
-
- if(failnopwprompt) {
- if(!user) {
-- log_pri(LOG_NOTICE, "USER %s (Login failed): Not a UserAlias.",
-+ log_pri(LOG_INFO, "USER %s (Login failed): Not a UserAlias.",
- origuser);
- send_response(R_530,"Login incorrect.");
- end_login(0);
-@@ -1090,7 +1090,7 @@
-
- if(c) {
- if(!login_check_limits(c->subset,FALSE,TRUE,&i) || (!aclp && !i) ) {
-- log_auth(LOG_NOTICE, "ANON %s: Limit access denies login.",
-+ log_auth(LOG_INFO, "ANON %s: Limit access denies login.",
- origuser);
- send_response(R_530,"Login incorrect.");
- end_login(0);
-@@ -1098,7 +1098,7 @@
- }
-
- if(!c && !aclp) {
-- log_auth(LOG_NOTICE, "USER %s: Limit access denies login.", origuser);
-+ log_auth(LOG_INFO, "USER %s: Limit access denies login.", origuser);
- send_response(R_530,"Login incorrect.");
- end_login(0);
- }
-@@ -1169,7 +1169,7 @@
- "Too many users in your class, "
- "please try again later.");
-
-- log_auth(LOG_NOTICE, "Connection refused (max clients for class %s).",
-+ log_auth(LOG_INFO, "Connection refused (max clients for class %s).",
- session.class->name);
-
- end_login(0);
-@@ -1202,7 +1202,7 @@
- send_response(R_530,"%s",
- sreplace(cmd->tmp_pool,maxstr,"%m",maxn,NULL));
-
-- log_auth(LOG_NOTICE, "Connection refused (max clients per host %d).",
-+ log_auth(LOG_INFO, "Connection refused (max clients per host %d).",
- max);
-
- end_login(0);
-@@ -1226,7 +1226,7 @@
- if(cur >= max) {
- send_response(R_530, "%s",
- sreplace(cmd->tmp_pool, maxstr, "%m", maxn, NULL));
-- log_auth(LOG_NOTICE, "Connection refused (max clients %d).", max);
-+ log_auth(LOG_INFO, "Connection refused (max clients %d).", max);
- end_login(0);
- }
-
-@@ -1301,7 +1301,7 @@
-
- if(++auth_tries >= max) {
- send_response(R_530,"Login incorrect");
-- log_auth(LOG_NOTICE, "Maximum login attempts exceeded.");
-+ log_auth(LOG_INFO, "Maximum login attempts exceeded.");
- end_login(0);
- }
-
diff --git a/ftp/proftpd-devel/files/patch-af b/ftp/proftpd-devel/files/patch-af
deleted file mode 100644
index 210e630b9553..000000000000
--- a/ftp/proftpd-devel/files/patch-af
+++ /dev/null
@@ -1,15 +0,0 @@
---- src/proftpd.8.orig Sun Feb 21 16:26:21 1999
-+++ src/proftpd.8 Sun Feb 21 16:28:31 1999
-@@ -21,6 +21,12 @@
- may be invoked by the Internet "super-server" inetd(8) each time a
- connection to the FTP service is made, or alternatively it can be run as a
- stand-alone daemon.
-+.br
-+.PP
-+Each successful and failed ftp(1) session is logged using syslog with a
-+facility of LOG_FTP. Note: LOG_FTP messages are not displayed
-+by syslogd(8) by default, and may have to be enabled in syslogd(8)'s
-+configuration file.
-
- When
- .B proftpd
diff --git a/ftp/proftpd-devel/files/patch-ah b/ftp/proftpd-devel/files/patch-ah
deleted file mode 100644
index 0de104b4408b..000000000000
--- a/ftp/proftpd-devel/files/patch-ah
+++ /dev/null
@@ -1,10 +0,0 @@
---- modules/mod_unixpw.c.orig Thu Sep 30 20:33:47 1999
-+++ modules/mod_unixpw.c Sat Nov 13 13:15:26 1999
-@@ -42,6 +42,7 @@
- #include <sys/security.h>
- #endif
- #ifdef HAVE_PROT_H
-+#include <krb.h>
- #include <prot.h>
- #endif
-
diff --git a/ftp/proftpd-devel/files/proftpd.sh.sample b/ftp/proftpd-devel/files/proftpd.sh.sample
deleted file mode 100644
index ad976fa3984f..000000000000
--- a/ftp/proftpd-devel/files/proftpd.sh.sample
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/sh
-
-case "$1" in
-
-start)
- /bin/mkdir -p /var/run/proftpd
- if [ -x /usr/local/libexec/proftpd ]; then
- /usr/local/libexec/proftpd && echo -n ' proftpd'
- fi
- ;;
-
-stop)
- killall proftpd
- ;;
-*)
- echo "$0 start | stop"
- ;;
-
-esac