Guest User

Untitled

a guest
Oct 27th, 2017
431
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. pop:=tidpop3.Create(nil);
  2. pop.Host := 'pop.gmail.com';
  3. pop.Port := 995;
  4. pop.Username := MyUserName;
  5. pop.Password := MyPassword;
  6. pop.ConnectTimeout := 10000;
  7. ssl := TIdSSLIOHandlerSocketOpenSSL.Create(nil);
  8. ssl.SSLOptions.Method := sslvTLSv1;
  9. ssl.SSLOptions.Mode := sslmClient;
  10. pop.IOHandler := ssl;
  11. pop.UseTLS := utUseImplicitTLS;
  12. pop.Connect;
  13. num:=pop.CheckMessages;
  14. pop.Disconnect;
  15. pop.Free;
  16. ssl.Free;
Add Comment
Please, Sign In to add comment