Akram Mustafa wrote: > how can i get this C++ Library? > anywhere i can download it from?! > > Thomas Hruska <[EMAIL PROTECTED]> wrote: > akram_delphi wrote: >> I am trying to connect to smtp.gmail.com from my application >> it asks me for STARTTLS ?!!! >> What is this and how to send email from my application using >> smtp.gmail.com ?????? >> >> Code will be appreciated >> >> Many thanks > > GMail access across SMTP requires a SSL-enabled client. You can write > an appropriate interface with OpenSSL, but you'll have to write a > wrapper DLL in C or C++ before you can make calls to OpenSSL from Delphi > (some things in OpenSSL can only be done from C/C++). Here's how it > looks in a pretty ASCII picture: > > Delphi code -> C++ DLL -> OpenSSL DLL/static library. > > TLS 1.0 is the successor to SSL v3. (And SSL v3 is the successor to SSL > v2, which almost no one uses anymore).
www.openssl.org for the source code (if you want to go through the pain of compiling OpenSSL). Pre-built binaries here: http://www.slproweb.com/products/Win32OpenSSL.html I'm sure someone has already done something with this sort of combination in Delphi...anyone? -- Thomas Hruska CubicleSoft President Ph: 517-803-4197 Safe C++ Design Principles (First Edition) Learn how to write memory leak-free, secure, stable, portable, and user-friendly software. Learn more and view a sample chapter: http://www.CubicleSoft.com/SafeCPPDesign/ ------------------------ Yahoo! Groups Sponsor --------------------~--> Great things are happening at Yahoo! Groups. See the new email design. http://us.click.yahoo.com/SktRrD/hOaOAA/yQLSAA/i7folB/TM --------------------------------------------------------------------~-> ----------------------------------------------------- Home page: http://groups.yahoo.com/group/delphi-en/ To unsubscribe: [EMAIL PROTECTED] Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/delphi-en/ <*> Your email settings: Individual Email | Traditional <*> To change settings online go to: http://groups.yahoo.com/group/delphi-en/join (Yahoo! ID required) <*> To change settings via email: mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

