johnrajbd / bots

Automatically exported from code.google.com/p/bots
0 stars 0 forks source link

"Ftp account:" description update #364

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
In the FTP specific section for a channel there is a "Ftp account:" box.

The description is this:

FTP account information; note that few systems implement this.

Can the description be changed to this:

This parameter supplies “accounting information”; few systems implement 
this.

or maybe this:

FTP accounting information; note that few systems implement this.

Reference page: https://docs.python.org/2/library/ftplib.html

Original issue reported on code.google.com by cncook...@gmail.com on 15 Jul 2015 at 6:01

GoogleCodeExporter commented 8 years ago
I don't think it matters much.

RFC959 defines it as:
ACCOUNT (ACCT)

            The argument field is a Telnet string identifying the user's
            account.  The command is not necessarily related to the USER
            command, as some sites may require an account for login and
            others only for specific access, such as storing files.  In
            the latter case the command may arrive at any time.

            There are reply codes to differentiate these cases for the
            automation: when account information is required for login,
            the response to a successful PASSword command is reply code
            332.  On the other hand, if account information is NOT
            required for login, the reply to a successful PASSword
            command is 230; and if the account information is needed for
            a command issued later in the dialogue, the server should
            return a 332 or 532 reply depending on whether it stores
            (pending receipt of the ACCounT command) or discards the
            command, respectively.

Original comment by mjg1964 on 22 Jul 2015 at 5:31