Your message dated Mon, 6 Jun 2005 16:11:07 +0200
with message-id <[EMAIL PROTECTED]>
and subject line babysitting ancient bugs
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--------------------------------------
Received: (at submit) by bugs.debian.org; 23 Feb 2002 17:57:57 +0000
>From [EMAIL PROTECTED] Sat Feb 23 11:57:57 2002
Return-path: <[EMAIL PROTECTED]>
Received: from mplayerhq.banki.hu [192.190.173.45] (root)
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 16egQm-0000Bs-00; Sat, 23 Feb 2002 11:57:57 -0600
Received: from mplayer.dev.hu ([EMAIL PROTECTED] [127.0.0.1])
by localhost (8.12.0/8.12.0.Beta10/Debian 8.12.0.Beta10) with ESMTP id
g1NICsJb015762;
Sat, 23 Feb 2002 19:12:54 +0100
Received: (from [EMAIL PROTECTED])
by mplayer.dev.hu (8.12.0/8.12.0.Beta10/Debian 8.12.0.Beta10) id
g1NICs0U015761;
Sat, 23 Feb 2002 19:12:54 +0100
Date: Sat, 23 Feb 2002 19:12:54 +0100
Message-Id: <[EMAIL PROTECTED]>
From: LGB Z <[EMAIL PROTECTED]>
Subject: proftpd: Cannot download file from a proftpd server in a special case
To: [EMAIL PROTECTED]
X-Mailer: bug 3.3.10
Delivered-To: [EMAIL PROTECTED]
Package: proftpd
Version: 1.2.4-2
Severity: normal
Hi!
A small example:
ftp> get /1/alma korte
local: korte remote: /1/alma
200 PORT command successful.
550 /1/alma: No such file or directory
ftp> get /22/alma korte
local: korte remote: /22/alma
200 PORT command successful.
550 /22/alma: Forbidden command argument
ftp> get /222/alma korte
local: korte remote: /222/alma
200 PORT command successful.
550 /222/alma: No such file or directory
This is just a stupid example, but it's true even if the file exists!
I cannot download a file if the path contains directory with two characters
length name. It's very strange (imho) but it can be checked easily.
I think it'w a VERY annoying bug. What can I do?
thanx,
G�bor
-- System Information
Debian Release: testing/unstable
Kernel Version: Linux mplayer 2.4.17 #1 Sat Dec 29 12:18:23 CET 2001 i686
unknown
Versions of the packages proftpd depends on:
ii adduser 3.41 Add and remove users and groups to resp. fro
ii debconf 1.0.01 Debian configuration management system
ii libc6 2.2.4-7 GNU C Library: Shared libraries and Timezone
ii libpam0g 0.72-31 Pluggable Authentication Modules library
ii libssl0.9.6 0.9.6b-2 SSL shared libraries
ii libwrap0 7.6-8.2 Wietse Venema's TCP wrappers library
ii netbase 4.06 Basic TCP/IP networking system
ii proftpd-common 1.2.2-1 Versatile, virtual-hosting FTP daemon
--- Begin /etc/init.d/proftpd (modified conffile)
#!/bin/sh
run_proftpd=1
proftpd_options=""
PATH=/bin:/usr/bin:/sbin:/usr/sbin
DAEMON=/usr/local/sbin/proftpd
NAME=proftpd
FLAGS="defaults 50"
trap "" 1
trap "" 15
test -f $DAEMON || exit 0
if ! egrep -q "^[:space:]*ServerType.*standalone" /etc/proftpd.conf
then
run_proftpd=0
fi
case "$1" in
start)
if [ $run_proftpd = 1 ]
then
update-inetd --disable ftp
echo -n "Starting professional ftp daemon: "
if start-stop-daemon --start --quiet --pidfile /var/run/$NAME.pid \
--exec $DAEMON -- $proftpd_options
then
echo "$NAME."
else
echo
fi
fi
;;
stop)
if [ $run_proftpd = 1 ]
then
echo -n "Stopping professional ftp daemon: "
for i in $(find /var/run/proftpd \
-regex "^/var/run/proftpd/proftpd-[0-9]+$")
do
kill -9 $(echo $i | sed "s/^.*[^0-9]//") || true;
rm -f $i
killed=1
done
if [ "$killed" != "" ]
then
echo "$NAME."
else
echo
fi
fi
;;
reload)
echo -n "Reloading $NAME configuration..."
for i in $(find /var/run/proftpd \
-regex "^/var/run/proftpd/proftpd-[0-9]+$")
do
kill -1 $(echo $i | sed "s/^.*[^0-9]//") || true;
killed=1
done
if [ "$killed" != "" ]
then
echo "$NAME."
else
echo
fi
;;
restart)
$0 force-reload
;;
force-reload)
echo -n "Restarting $NAME daemon."
/etc/init.d/$NAME stop > /dev/null 2>&1
echo -n "."
sleep 2
echo -n "."
if start-stop-daemon --start --quiet --pidfile /var/run/$NAME.pid \
--exec $DAEMON -- $proftpd_options
then
echo "done."
fi
;;
*)
echo "Usage: /etc/init.d/$NAME {start|stop|reload|restart|force-reload}"
exit 1
;;
esac
exit 0
--- End /etc/init.d/proftpd
--- Begin /etc/proftpd.conf (modified conffile)
ServerName "MPlayerHQ"
ServerType standalone
DeferWelcome off
ShowSymlinks on
MultilineRFC2228 on
DefaultServer on
DefaultRoot ~ !fullftp
DefaultRoot / fullftp
ShowSymlinks on
AllowOverwrite on
WtmpLog off
TimeoutNoTransfer 600
TimeoutStalled 600
TimeoutIdle 1200
DisplayLogin welcome.msg
DisplayFirstChdir .message
LsDefaultOptions "-l"
Port 21
Umask 000 022
MaxInstances 100
User ftp
Group ftp
<Directory /*>
AllowOverwrite on
</Directory>
DenyFilter "/\.\./"
<Anonymous ~ftp>
User ftp
Group ftp
# We want clients to be able to login with "anonymous" as well as "ftp"
UserAlias anonymous ftp
RequireValidShell off
# Limit the maximum number of anonymous logins
MaxClients 100
# 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
<Directory *>
<Limit WRITE>
DenyAll
</Limit>
<Limit RETR>
AllowAll
</Limit>
</Directory>
# Uncomment this if you're brave.
<Directory MPlayer/incoming>
AllowStoreRestart on
<Limit DELE RMD RNFR RNTO READ RETR>
DenyAll
</Limit>
<Limit STOR MKD WRITE>
AllowAll
</Limit>
</Directory>
</Anonymous>
--- End /etc/proftpd.conf
---------------------------------------
Received: (at 135388-done) by bugs.debian.org; 6 Jun 2005 14:11:31 +0000
>From [EMAIL PROTECTED] Mon Jun 06 07:11:30 2005
Return-path: <[EMAIL PROTECTED]>
Received: from egg.area.ba.cnr.it [150.145.80.53]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DfIK9-0005gK-00; Mon, 06 Jun 2005 07:11:30 -0700
Received: from localhost (localhost [127.0.0.1])
by egg.area.ba.cnr.it (8.13.1/8.13.1/SuSE Linux 0.7) with ESMTP id
j56EBRdv013326;
Mon, 6 Jun 2005 16:11:27 +0200
Received: from klecker (klecker.ba.issia.cnr.it [150.145.84.32])
by egg.area.ba.cnr.it (8.13.1/8.13.1/SuSE Linux 0.7) with ESMTP id
j56EAjKv013174;
Mon, 6 Jun 2005 16:10:45 +0200
Received: from [150.145.84.200] (helo=localhost.localdomain)
by klecker with esmtpa (Exim 4.50)
id 1DfIJQ-0003Ix-RS; Mon, 06 Jun 2005 16:10:44 +0200
Received: from frankie by localhost.localdomain with local (Exim 4.50)
id 1DfIJn-0002hy-Iv; Mon, 06 Jun 2005 16:11:07 +0200
Date: Mon, 6 Jun 2005 16:11:07 +0200
From: Francesco Paolo Lovergine <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED], [EMAIL PROTECTED]
Subject: babysitting ancient bugs
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
X-GPG-Fingerprint: 92E4 2D44 336F DF91 5508 23D5 A453 5199 E9F2 C747
X-GPG-Info: finger [EMAIL PROTECTED]
X-Advocacy: Who uses non-free software empoisons you too. Say him to stop.
User-Agent: Mutt/1.5.9i
X-Virus-Scanned: by amavisd-new-20041102+Sophos at egg.area.ba.cnr.it
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-2.0 required=4.0 tests=BAYES_01 autolearn=no
version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
Those bugs are very old, refer to old versions of proftpd and I'm not
able to reproduce them (and never I did).
Feel free to reopen them if you find the yet apply.
For now, I'm closing them...
--
Francesco P. Lovergine
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]