[issue1726451] ftplib and ProFTPD NLST 226 without 1xx response

2010-04-18 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' : -- resolution: -> out of date status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mai

[issue1726451] ftplib and ProFTPD NLST 226 without 1xx response

2009-04-06 Thread Kenneth Loafman
Kenneth Loafman added the comment: It's been a couple of years since I reported this and its entirely possible that the updated ProFTPd I'm now testing against has been fixed, and that ftplib has evolved since then. Short of one of you testing the current ftplib against a current ProFTPd, I wou

[issue1726451] ftplib and ProFTPD NLST 226 without 1xx response

2009-04-06 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: According to the log file you have attached Proftpd always sends 1xx before 226 which is the RFC-compliant and widely adopted behavior, *also* when it's listing the content of an empty directory. See: 07:55:19 Cmd: LIST 07:55:19 150: Opening ASCII mode d

[issue1726451] ftplib and ProFTPD NLST 226 without 1xx response

2009-04-06 Thread Kenneth Loafman
Kenneth Loafman added the comment: Clearly not valid if you are strictly RFC compliant, however, if you want to be functional in the real world then it needs to be addressed. ProFTPd is not the only server that handles things this way, so from a functionality and compatibility standpoint, it sh

[issue1726451] ftplib and ProFTPD NLST 226 without 1xx response

2009-04-06 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: I keep saying this is not a valid issue. The 1xx response is supposed to be sent by the server *before* the 226 response, and that's what your log shows: 07:55:03 Cmd: PASV 07:55:03 227: Entering Passive Mode (192,168,1,13,160,7). 07:55:03 Cmd: LIST 07:55

[issue1726451] ftplib and ProFTPD NLST 226 without 1xx response

2009-04-06 Thread Kenneth Loafman
Kenneth Loafman added the comment: Yes, there is no 1xx response. I've attached a log between ncftp client and ProFTPd 1.3.1-6ubuntu1 that clearly shows no 1xx after the 226. -- Added file: http://bugs.python.org/file13634/trace ___ Python tracker

[issue1726451] ftplib and ProFTPD NLST 226 without 1xx response

2009-04-06 Thread Daniel Diniz
Daniel Diniz added the comment: Kenneth: can you confirm this is a valid issue? -- nosy: +ajaksu2 stage: -> test needed type: -> behavior versions: +Python 2.7, Python 3.1 -Python 2.4 ___ Python tracker __