![]() |
Problem mit email abholen
Hallo möchte über mein Programm emails abholen hier mal der erste teil meines codes
Delphi-Quellcode:
er sagt mir nur Connection closed Gracefully stellt aber keine verbindung her
procedure TForm1.Button1Click(Sender: TObject);
begin if not IdPOP31.Connected then begin IdPOP31.Host := 'pop.1und1.de'; IdPOP31.Port := 110; IdPOP31.Username := '****@**********.de'; IdPOP31.Password := '**********'; IdPOP31.Connect; end else IdPOP31.Disconnect; end; |
AW: Problem mit email abholen
Hast Du SSL aktiviert?
Sherlock |
AW: Problem mit email abholen
bei 1und1 ja im programm selber nicht wie mache ich das?
|
AW: Problem mit email abholen
Schau mal nach idPop3.AuthType, idPop3.UseTLS. GGf, mußt du dann noch den Port anpassen.
|
AW: Problem mit email abholen
Und die entsprechenden DLLs braucht man auch, oder hat sich das mittlerweile geändert (ich benutze kein Indy)?
|
AW: Problem mit email abholen
unter authtype hat er kein usetls
|
AW: Problem mit email abholen
Welche Indy-Version verwendest du?
|
AW: Problem mit email abholen
Vielleicht steht hier ja was brauchbares drin:
![]() |
AW: Problem mit email abholen
Habe den code jetzt wie folgt geändert
Delphi-Quellcode:
und noch zusätzlic den idssliohandlersocketopenssl auf die form gelegt jetzt sagt er was anderes
procedure TForm1.Button1Click(Sender: TObject);
begin if not IdPOP31.Connected then begin IdPOP31.Host := 'pop.1und1.de'; IdPOP31.Port := 995; IdPOP31.UseTLS := utUseImplicitTLS; IdPOP31.Username := '****@**********.de'; IdPOP31.Password := '**********'; IdPOP31.Connect; end else IdPOP31.Disconnect; end; could not load ssl library |
AW: Problem mit email abholen
Dann fehlt ihm die OpenSSl Dll
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 03:36 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz