Jump to content

Aztec

Members
  • Content Count

    10
  • Joined

  • Last visited

Community Reputation

0 Neutral
  1. ok great. Thanks for your prompt replies. I will try this and see how I get on. Cheers
  2. Ok cool. I will try that. Where can I find those .so files though? Does this require an installation on linux or can I simply place them in the same location as my module? Will indy support the latest SSLlib in Delphi 12? cheers
  3. Hi The actual inner error is General Exception: Could not load SSL library. I did a search in here and it seems that everyone is talking about Windows, but could not find anything related to Linux. I am using virtualmin on ubuntu 22.04. In Virtualmin. The mail server is Postfix. The smtp port is 465, and is being set correctly. Looking in the configs, it does seem that the various SSL versions can be allowed or rejected (See screen shot). I have allowed them all for now, but that makes no difference. Also attaching the config of the Postfix - maybe something in there will show something? thanks for your help!!
  4. Hi All I am trying to send email using indy on our server. We currently run ubuntu 22.04, delphi is 11.3 with the indy that comes with it. However when we try and send email we get the following error [ EIdTLSClientTLSHandShakeFailed ] SSL negotiation failed The code looks like this: SMTPServer := TIdSMTP.Create; SSL := TIdSSLIOHandlerSocketOpenSSL.create(nil); SSL.SSLOptions.SSLVersions := [sslvTLSv1, sslvTLSv1_1, sslvTLSv1_2]; SSL.SSLOptions.Mode := sslmClient; SSL.SSLOptions.VerifyMode := []; SSL.SSLOptions.VerifyDepth := 0; SMTPServer.Host := OutgoingServer; SMTPServer.Port := SMTPPort; SMTPServer.Username := Username; SMTPServer.Password := Password; SMTPServer.IOHandler := SSL; SMTPServer.UseEhlo := True; SMTPServer.UseTLS := utUseExplicitTLS; the parameters I am assigning are correct not quite sure where to go from here, so any help would be appreciated Thanks!
  5. Aztec

    Spring4d in Linux

    Ok great, thanks! I will try that and see how it goes!
  6. Aztec

    Spring4d in Linux

    Yes it seems to be the case. I created a simple self contained app, and it runs.. Thats a pain! I assume you running your app as a web service? if so what are you using as an alternative to Apache? We will have many thousands of users, so need something robust. thanks!
  7. Aztec

    Spring4d in Linux

    Hi I have tried with both.. my own application that has code (TMS coomponents) and a simple app that simply does nothing. Same result
  8. Aztec

    Spring4d in Linux

    Hi. Ok, so I downloaded the development branch, and installed it into delphi. (Removed everything from before) I then added spring.container to the uses clause of my unit, built and deployed. Tried to start apache and get a segmentation fault. Removed the unit from the uses clause, recompiled, and everything works. FYI: Linux is Ubuntu 22.04, running virtualmin. Delphi 11.3 I have no idea what else to try! thanks
  9. Aztec

    Spring4d in Linux

    Hi. Thanks for that. I have tried to compile it, but it seems to have many errors.. so perhaps there is a different version of spring? I have installed MVC, but still cannot compile. Where is this sample from? thanks
  10. HI has anyone been able to get TMSWebcore + xdata + Aurelius + unidac to work on an Almalinux box connecting to MySql 8? I have been able to write a simple webserver which runs and connects, and gives me access to the webpage, but the moment I add Unicad, I cannot then start Apache. I can connect to the database using unidac from design time, so the database connection is fine... but getting this to work as a server is not. Any ideas/help or even better a simple example, would be most appreciated!! Thanks!!!
×