problem fetching/sending email using ssl from gmail
i have xampp apache + php
when i configured my emails to fetch using imap ssl there was an error:
Unable to find the socket transport "ssl" ...
the problem was xampp (windows). thnx to GOD .. yes that's right, GOD :-)
1. Stop the Apache service
2. Copy libeay32.dll and ssleay32.dll from your ..xampp/php folder to your ..xampp/apache/bin folder, overwriting the older files there
3. Edit the ..xampp/apache/bin/php.ini and uncomment the “;extension=php_openssl.dll” (remove the semicolon at the start of the line)
4. Start the Apache service
http://blog.wiki-tom.com/2009/04/24/fixing-ssl-for-xampp-installs(http://blog.wiki-tom.com/2009/04/24/fixing-ssl-for-xampp-installs)
emails configuration:
host: imap.gmail.com
port: 993
username: xxx@gmail.com
outgoing:
host: ssl://smtp.gmail.com
port: 465
auth: yes
...hope it helps