At the end of Section 4.1 of the RFC 959, which deals with the FTP protocol standards, it defers to the Telnet protocol and the Telnet eol code.
To quote from the RFC:
The File Transfer Protocol follows the specifications of the Telnet protocol for all communications over the control connection. Since the language used for Telnet communication may be a negotiated option, all references in the next two sections will be to the "Telnet language" and the corresponding "Telnet end-of-line code". Currently, one may take these to mean NVT-ASCII and <CRLF>. No other specifications of the Telnet protocol will be cited.
Then again in RFC 1123, Section 3.3.1 references the correct end-of-line as <CRLF>:
The Telnet protocol defines the sequence CR LF to mean "end- of-line". For terminal input, this corresponds to a command- completion or "end-of-line" key being pressed on a user terminal; on an ASCII terminal, this is the CR key, but it may also be labelled "Return" or "Enter".
Then it goes into a discussion about the ambiguity of line endings on different platforms. And says that allowances should be made for <CR NUL>, or \r\0, but again says that <CRLF> should be the default.
On the Wikipedia article for Newlines, also discuses the issue, and says:
Most textual Internet protocols (including HTTP, SMTP, FTP, IRC and many others) mandate the use of ASCII CR+LF (0x0D 0x0A) on the protocol level, but recommend that tolerant applications recognize lone LF as well. In practice, there are many applications that erroneously use the C newline character '\n' instead (see section Newline in programming languages below). This leads to problems when trying to communicate with systems adhering to a stricter interpretation of the standards; one such system is the qmail MTA that actively refuses to accept messages from systems that send bare LF instead of the required CR+LF.
So stick with \r\n and you'll be fine...
@character is perfectly legal in theUSERcommand. Some FTP proxies require it to know which username to use for which remote hostname. – Remy Lebeau Nov 9 '11 at 2:05@character in it? If AS3 and Telnet cannot both login, then it is not an encoding problem, it is a server problem. Not all server support email addresses as usernames. As for replacing@with%40or+, such replacements do not apply to FTP. – Remy Lebeau Nov 9 '11 at 2:08