Here's my program:
Application.FTP.Host:= vHost;
Application.FTP.Port:= vPort;
try
Application.FTP.AutoLogin := false;
Application.FTP.Connect;
Application.FTP.IOHandler.RecvBufferSize := 2048;
I'm using TIdFTP
component in Delphi XE3.
I think I have to use something like this...
Application.FTP.UseTLS := utUseRequireTLS;
but the compiler doesn't like that line
How can I get my FTP application to use FTPS ?