Re: VB6.0 - Mail Retrieval
ya looks like it is a $229 component though. that isn't going to work.
Re: VB6.0 - Mail Retrieval
I'd pay for a single developer license, but thats pretty steep for one app i'm gonna write for personal use, once.
Surely someone has the talents and an encryption algo compatible with the current ssl version... No one will make one us old timer vb6 addicts can afford?
;):cool::)
Re: VB6.0 - Mail Retrieval
Quote:
Originally Posted by
easymoney
I'd pay for a single developer license, but thats pretty steep for one app i'm gonna write for personal use, once.
Surely someone has the talents and an encryption algo compatible with the current ssl version... No one will make one us old timer vb6 addicts can afford?
;):cool::)
I wish thry would release individual components cheaper too. I doubt anyone not working for a company would be able to afford those prices.
Re: VB6.0 - Mail Retrieval
There isn't a "current" version of SSL/TLS anyway. Your client must negotiate with the server, which usually means supporting several forms. You can see this if you browse the SSL samples (written in C) in the Windows SDK for Vista or later.
Note that even those samples do not implement SSL "generically" but rely on IPSec which needs to be set up at both ends. So the Winsock secure socket extensions introduced in Vista aren't a general solution for SSL (and they don't work with a VB6 Winsock control anyway).
Re: VB6.0 - Mail Retrieval
Quote:
Originally Posted by
martind1
ya looks like it is a $229 component though. that isn't going to work.
The SMTP is actually send mail, not mail retrevial... Need Pop3.
The vendor charges $99 for each component, so POP3 opr SMTP would be $99 each.
So not quite $229..
Re: VB6.0 - Mail Retrieval
Quote:
Originally Posted by
dilettante
There isn't a "current" version of SSL/TLS anyway. Your client must negotiate with the server, which usually means supporting several forms. You can see this if you browse the SSL samples (written in C) in the Windows SDK for Vista or later.
Note that even those samples do not implement SSL "generically" but rely on IPSec which needs to be set up at both ends. So the Winsock secure socket extensions introduced in Vista aren't a general solution for SSL (and they don't work with a VB6 Winsock control anyway).
Not sure how this is relevant. It does work on XP... Haven't tested on Vista or Win7, but this component doesn't require winsock reference regardless. ;)
I have some legacy apps that require XP, and thats not going to change soon. So for XP clients I can say so far, so good.
Has anyone tested it on Vista (sorry Vista is against my ethical standards, don't, can't and won't use it) or higher? Could test on Win 7, but hoped someone who actually tested the demo can say yes or no to that option...
Re: VB6.0 - Mail Retrieval
I have seen reports that component supports vistaas well as 7... so anyone else care to confirm? :wave:
Re: VB6.0 - Mail Retrieval
Quote:
Originally Posted by
easymoney
Not sure how this is relevant. It does work on XP... Haven't tested on Vista or Win7, but this component doesn't require winsock reference regardless. ;)
I have some legacy apps that require XP, and thats not going to change soon. So for XP clients I can say so far, so good.
Has anyone tested it on Vista (sorry Vista is against my ethical standards, don't, can't and won't use it) or higher? Could test on Win 7, but hoped someone who actually tested the demo can say yes or no to that option...
Which component are you talking about, the components I linked to above? If so yes, they do work in Windows 7 and Vista, I have tested them on both operating systems. Also, the above attached project should include the code for both pop and smtp if not I will atttach one that does.
Re: VB6.0 - Mail Retrieval
Quote:
Originally Posted by
Nightwalker83
Which component are you talking about, the components I linked to above? If so yes, they do work in Windows 7 and Vista, I have tested them on both operating systems. Also, the above attached project should include the code for both pop and smtp if not I will atttach one that does.
Ok. I see. post was titled Mail Retrieval, but your example example was only for smtp side and the post example talked of smtp, but the attachment says Mail Version x.x etc, thats where I was not seeing the link to the POP side...
So really the attachment and example cover both smtp and pop. I will check out attachment. Sorry for the confusion...;)
Re: VB6.0 - Mail Retrieval
Quote:
Originally Posted by
easymoney
So really the attachment and example cover both smtp and pop. I will check out attachment. Sorry for the confusion...;)
Nah, it was my fault! I should add a note to the first post explaining that the attachment contains the full code.
Re: VB6.0 - Mail Retrieval
Quote:
Originally Posted by
easymoney
Not sure how this is relevant.
Sorry, I thought you were getting at "Why doesn't somebody write one in VB6 using Winsock?"
I was trying to say the secure POP3 options make this tough and an arms race as SSL options grow with time. Most of the "SSL in pure VB6" code I have seen only supports one of the many possible flavors of SSL out there.
Re: VB6.0 - Mail Retrieval
Quote:
Originally Posted by
dilettante
Sorry, I thought you were getting at "Why doesn't somebody write one in VB6 using Winsock?"
I was trying to say the secure POP3 options make this tough and an arms race as SSL options grow with time. Most of the "SSL in pure VB6" code I have seen only supports one of the many possible flavors of SSL out there.
Yes. That has been a "paranoid" concern of mine, among overthings... Thanks for reminding me they are really are out to get me... lol. Jk.
Just having a good afternoon, thanks for the reminder about the always changing flavors of SSL and TLS...TGIF It's worth noting so others may take notice if they decide to pursue these types of projects :thumb:
Re: VB6.0 - Mail Retrieval
Quote:
Originally Posted by
Nightwalker83
Nah, it was my fault! I should add a note to the first post explaining that the attachment contains the full code.
We'll your example along with the pop3 conrol help file showed enough with an hour or so I had it connecting and procesing emails using ssl and correct port for gmail. Going to do real test today and test on multiple clients/configs.
Thanks for your share...:wave:
Re: VB6.0 - Mail Retrieval
I 've got a DOS exe that works CLI so I can call it from any language on any pc.os
here to talk
Re: VB6.0 - Mail Retrieval
Quote:
Originally Posted by
incidentals
I 've got a DOS exe that works CLI so I can call it from any language on any pc.os
here to talk
If you have the source code for it you can make your own topic and post it instead of hijacking someone elses and saiding the existing topic off topic.
Re: VB6.0 - Mail Retrieval
Hello,
Is this working with SSL authentication like gmail?
Re: VB6.0 - Mail Retrieval
Quote:
Originally Posted by
green.pitch
Hello,
Is this working with SSL authentication like gmail?
Yes, it can connect to Gmail although, I'm not sure which technology is being used since it uses a third-party dll as stated in the first post.