Moin !
Ich versuche gerade eine IMAP Demo (
Indy) zum laufen zu bekommen. Folgender Code wird genutzt:
Delphi-Quellcode:
TheImap.Host := Edit1.Text;
TheImap.Username := Edit2.Text;
TheImap.Password := Edit3.Text;
TheImap.AuthType := atUserPass;
TheImap.Connect(True);
ListBox1.Clear;
bRet := TheImap.ListMailBoxes(UsersFolders);
Aber beim letzten Befehl kommt das hier:
Zitat:
EIdConnectionStateError
Unable to execute command, wrong connection state;Current connection state: Non Authenticated.
TheImap.ConnectionState steht auf csNonAuthenticated.
Nun habe ich hier auch einen Codeschnippel gesehen:
http://newsgroups.archived.at/atozed...609275210.html
Dort steht:
Zitat:
// check of connectie ssl gebruikt
if TheImap.ConnectionState <> csNonAuthenticated then begin
Bedeutet das nun das meine Verbindung SSL benötigt?
Und wie muss ich den Code erweitern damit ich SSL nutzen kann?