Page 5 of 6

Re: Correo electrónico entrante a través de SSL / incoming E

Posted: Thu Jan 09, 2014 1:24 am
by Javier Tovar
Hola danielmaximiliano,

Ya realice lo que me indicaste pero ahora me sale este error:
ErrorEmail2.jpg
ErrorEmail2.jpg (49.81 KiB) Viewed 5553 times
Alguna sugerencia?

Mil gracias por la ayuda.

Saludos

Re: Correo electrónico entrante a través de SSL / incoming E

Posted: Thu Jan 09, 2014 1:39 am
by danielmaximiliano
Javier :
podrias cambiar el codigo y generar el LOG de conexion para saber que pasa con tu servidor
C:\Temp\InOutEmail\Source\incomming.prg

Code: Select all

Public lTrace                 := .T.  /* create Log */

Re: Correo electrónico entrante a través de SSL / incoming E

Posted: Thu Jan 09, 2014 1:52 am
by Javier Tovar
Hola danielmaximiliano,

Ya hice el cambio, pero me sale lo mismo.

O en que me debo de fijar?

Saludos

Re: Correo electrónico entrante a través de SSL / incoming E

Posted: Thu Jan 09, 2014 2:02 am
by danielmaximiliano
Javier : habia un error en el Form y en el PRG.
Modifica

Code: Select all

aServers [3] := { 'Yahoo   Incomming Mail Server ' , 'pop.mail.yahoo.com.ar' , '995' , 'yahoo.com' , 'smtp.mail.yahoo.com.ar' , '465' }
por

Code: Select all

aServers [3] := { 'Yahoo   Incomming Mail Server ' , 'pop.mail.yahoo.com.mx' , '995' , 'yahoo.com' , 'smtp.mail.yahoo.com.mx' , '465' }
la razón del error que te muestra es porque en tu bandeja de entrada hay mas de 29 msj y necesito corregir las descargar en paginas de 28 email para ir cargandolo de a poco al GRID.
cuando hay menos de esa cantidad sin leer no hay problemas con la Libreria HBTIP

Re: Correo electrónico entrante a través de SSL / incoming E

Posted: Thu Jan 09, 2014 2:03 am
by danielmaximiliano
danielmaximiliano wrote:Javier : habia un error en el Form y en el PRG.
Modifica

Code: Select all

aServers [3] := { 'Yahoo   Incomming Mail Server ' , 'pop.mail.yahoo.com.ar' , '995' , 'yahoo.com' , 'smtp.mail.yahoo.com.ar' , '465' }
por
aServers [3] := { 'Yahoo Incomming Mail Server ' , 'pop.mail.yahoo.com.mx' , '995' , 'yahoo.com' , 'smtp.mail.yahoo.com.mx' , '465' }

la razón del error que te muestra es porque en tu bandeja de entrada hay mas de 29 msj y necesito corregir las descargar en paginas de 28 email para ir cargandolo de a poco al GRID.
cuando hay menos de esa cantidad sin leer no hay problemas con la Libreria HBTIP
InOutEmail.rar
(986 KiB) Downloaded 324 times

Re: Correo electrónico entrante a través de SSL / incoming E

Posted: Thu Jan 09, 2014 2:41 am
by Javier Tovar
Hola danielmaximiliano,

Ya descomprimi tu ultimo archivo, ahora ya me conecta, pero trato de enviar un archivo y si abre para seleccionar el archivo, pero al pulsar el boton de "Send" me sale este error:
ErrorEmail3.jpg
ErrorEmail3.jpg (152.25 KiB) Viewed 5635 times
Y se cierra el programa. Alguna idea al respecto?

Mil gracias y disculpa tanta insistencia, pero seria genial que tuviera la aplicación corriendo sin problemas. :D

Saludos

Re: Correo electrónico entrante a través de SSL / incoming E

Posted: Thu Jan 09, 2014 3:19 am
by danielmaximiliano
no esta terminado el modulo Sendmail.

Re: Correo electrónico entrante a través de SSL / incoming E

Posted: Thu Jan 09, 2014 9:42 am
by serge_girard
Hello Daniel !

Thanks for sharing!

I tried compiling which went OK but I got a runtime-error about missing SSLEAY32.DLL, however this file is present in the OpenSSL folder.
Should I move it to \windows\system 32?

Thanks and greetings, Serge

Re: Correo electrónico entrante a través de SSL / incoming E

Posted: Thu Jan 09, 2014 10:47 am
by danielmaximiliano
serge_girard wrote:Hello Daniel !

Thanks for sharing!

I tried compiling which went OK but I got a runtime-error about missing SSLEAY32.DLL, however this file is present in the OpenSSL folder.
Should I move it to \windows\system 32?

Thanks and greetings, Serge
Hi Serge:
Happy New Year, I hope that this good health right now.
within the application there is a folder called \OpenSSL these files can be copied to the \SYSTEM32 for 32-bit O.S
and S.O \SysWOW64 for 64-bit

Re: Correo electrónico entrante a través de SSL / incoming E

Posted: Thu Jan 09, 2014 10:53 am
by danielmaximiliano
danielmaximiliano wrote:
danielmaximiliano wrote:Javier : habia un error en el Form y en el PRG.
Modifica

Code: Select all

aServers [3] := { 'Yahoo   Incomming Mail Server ' , 'pop.mail.yahoo.com.ar' , '995' , 'yahoo.com' , 'smtp.mail.yahoo.com.ar' , '465' }
por

Code: Select all

aServers [3] := { 'Yahoo   Incomming Mail Server ' , 'pop.mail.yahoo.com.mx' , '995' , 'yahoo.com' , 'smtp.mail.yahoo.com.mx' , '465' }
la razón del error que te muestra es porque en tu bandeja de entrada hay mas de 29 msj y necesito corregir las descargar en paginas de 28 email para ir cargandolo de a poco al GRID.
cuando hay menos de esa cantidad sin leer no hay problemas con la Libreria HBTIP
InOutEmail.rar
(986 KiB) Downloaded 387 times