Thank you very much, adding ssl_openssl fixed the problem.
Now I have problems with SMTP, it worked like a charm with the previous version
of Ubuntu, but now I get:
20170608-074744.883 7FFFEFAE6630HR_Error: -2,error:140770FC:SSL
routines:SSL23_GET_SERVER_HELLO:unknown protocol
My code:
smtp.UserName := user;
smtp.TargetHost := SMTPHost;
smtp.TargetPort := SMTPPort;
smtp.Password := Password;
if (SMTPHost ='587') then begin
SMTP.AutoTLS := True ;
SMTP.FullSSL := false;
end else begin
SMTP.AutoTLS := false;
SMTP.FullSSL := True ;
end;
if not smtp.Login then begin
...
SendToRaw also fails.
Regards,
Daniel Acevedo
On 6/8/2017 6:53:35 AM Lukas Gebauer <[email protected]> wrote:
> > SSL/TLS support is not compiled!
> >
> > Installing the libssl-dev package did not fix the problem.
> Have you ssl_openssl unit included with your project?
> If yes, then loading of OpenSSL libraries failed.
> You not need "dev" package with C sources. You need runtime SO
> libraries: libssl.so and libcrypto.so
> --
> Lukas Gebauer.
> http://synapse.ararat.cz/ - Ararat Synapse - TCP/IP Lib.
> http://geoget.ararat.cz/ - Geocaching solution
>
------------------------------------------------------------------------------
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> _______________________________________________
> synalist-public mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/synalist-public
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
synalist-public mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/synalist-public