Estoy tratando de enviar un correo electrónico utilizando la cuenta de Gmail (Delphi 7, Indy 10) con los siguientes valores:Indy 10 - IdSMTP.Send() se bloquea cuando el envío de mensajes de Gmail cuenta
TIdSmtp:
Port = 587;
UseTLS := utUseExplicitTLS;
TIdSSLIOHandlerSocketOpenSSL:
SSLOptions.Method := sslvTLSv1;
todo parece estar bien establecido. Me sale esta respuesta:
Resolving hostname smtp.gmail.com.
Connecting to 74.125.77.109.
SSL status: "before/connect initialization"
SSL status: "before/connect initialization"
SSL status: "SSLv3 write client hello A"
SSL status: "SSLv3 read server hello A"
SSL status: "SSLv3 read server certificate A"
SSL status: "SSLv3 read server done A"
SSL status: "SSLv3 write client key exchange A"
SSL status: "SSLv3 write change cipher spec A"
SSL status: "SSLv3 write finished A"
SSL status: "SSLv3 flush data"
SSL status: "SSLv3 read finished A"
SSL status: "SSL negotiation finished successfully"
SSL status: "SSL negotiation finished successfully"
Cipher: name = RC4-MD5; description = RC4-MD5 SSLv3 Kx=RSA Au=RSA Enc=RC4(128) Mac=MD5
; bits = 128; version = TLSv1/SSLv3;
Y luego se cuelga y no termina. El correo electrónico no se envía. ¿Cual puede ser el problema?
UserAgent es para solicitudes HTTP, no SMTP – glob
** glob ** tiene la razón; Concluí diciendo "No estoy seguro de si el componente que está utilizando tiene algún tipo de propiedad UserAgent" –