1. 14 Sep, 2013 3 commits
  2. 13 Sep, 2013 3 commits
  3. 12 Sep, 2013 5 commits
  4. 11 Sep, 2013 7 commits
  5. 10 Sep, 2013 8 commits
  6. 09 Sep, 2013 10 commits
  7. 08 Sep, 2013 4 commits
    • Steve Holme's avatar
      ftpserver.pl: Fixed empty array checks · ee5e2cf6
      Steve Holme authored
      ...from commits 28427b40 and e8313697.
      ee5e2cf6
    • Steve Holme's avatar
      ftpserver: Reworked AUTH support to allow for specifying the mechanisms · e8313697
      Steve Holme authored
      Renamed SUPPORTAUTH to AUTH and added support for specifying a list of
      supported SASL mechanisms to return to the client.
      
      Additionally added the directive to the FILEFORMAT document.
      e8313697
    • Steve Holme's avatar
      ftpserver: Reworked CAPA support to allow for specifying the capabilities · 28427b40
      Steve Holme authored
      Renamed SUPPORTCAPA to CAPA and added support for specifying a list of
      supported capabilities to return to the client.
      
      Additionally added the directive to the FILEFORMAT document.
      28427b40
    • Steve Holme's avatar
      ftpserver.pl: Corrected POP3 LIST as message numbers should be contiguous · 131649a1
      Steve Holme authored
      The message numbers given in the LIST response are an index into the
      list, which are only valid for the current session, rather than being a
      unique message identifier. An index would only be missing from the LIST
      response if a DELE command had been issued within the same session and
      had not been committed by the end of session QUIT command. Once
      committed the POP3 server will regenerate the message numbers in the
      next session to be contiguous again. As such our LIST response should
      list message numbers contiguously until we support a DELE command in the
      same session.
      
      Should a POP3 user require the unique message ID for any or all
      messages then they should use the extended UIDL command. This command
      will be supported by the test ftpserver in an upcoming commit.
      131649a1