GMAIL SMTP SSL Working Simple WAY 2.3
Posted: Sat Oct 01, 2011 7:30 am
I was sadly disappointed when i could get hesk 2.3 to connect to gmail on the client server
Even got a license
Searched around. Couldn't find anything. So this simple solution seemed worthwile posting
.
Here is the settings.
SMTP Server
SMTP HOST: SERVER: smtp.gmail.com
SMTP PORT: 465
SNTP Timeout: 20
SMTP Username: whatever@gmail.com
SMTP Passowrd: your pass
Ok, if you tried this NOT Working???
Now edit /inc/mail/smtp.php
Make these small changes. Go back and try your configuration agian.
Now this was really simple to find 1 edits.
CORRECTED NOW by Klemen SORRY FOR THE CONFUSION
*** up super late when I discovered this ***
SEE starting at Line 276
FIND
and replace with
Thanks
See you later.
Even got a license

Searched around. Couldn't find anything. So this simple solution seemed worthwile posting

Here is the settings.
SMTP Server
SMTP HOST: SERVER: smtp.gmail.com
SMTP PORT: 465
SNTP Timeout: 20
SMTP Username: whatever@gmail.com
SMTP Passowrd: your pass
Ok, if you tried this NOT Working???
Now edit /inc/mail/smtp.php
Make these small changes. Go back and try your configuration agian.
Now this was really simple to find 1 edits.
CORRECTED NOW by Klemen SORRY FOR THE CONFUSION
*** up super late when I discovered this ***
SEE starting at Line 276
Code: Select all
{metadocument}
<variable>
<name>ssl</name>
<type>BOOLEAN</type>
<value>0</value>
<documentation>
<purpose>Define whether the connection to the SMTP server should be
established securely using SSL protocol.</purpose>
<usage>Set to <booleanvalue>1</booleanvalue> if the SMTP server
requires secure connections using SSL protocol.</usage>
</documentation>
</variable>
{/metadocument}
*/
var $ssl=0;
FIND
Code: Select all
var $ssl=0;
Code: Select all
var $ssl=1;
See you later.