|
SMTP with Auth ?
|
| krisop |
Posted on 19-05-2009 13:46
|

Junior Member

Posts: 12
Joined: 14/09/2008
|
I can put only host but most of SMTP servers using Auth now so how to setup this in PHP-Fusion ?
--
[EL!TA].Kris vel Kris o poranq
|
| |
|
|
| bite |
Posted on 19-05-2009 15:42
|

Member

Posts: 164
Joined: 07/07/2008
|
PHP-Fusion does not allow you to set all values required by most emailing systems, there is 9 parameters which is supported by PHPMailer which PHP-Fusion uses, PHP-Fusion fully supports only 4 and one not fully.
The only way to setup other parameters is to edit sendmail_include.php or phpmailer_include.php in includes folder.
Edited by bite on 19-05-2009 15:45
|
| |
|
|
| krisop |
Posted on 19-05-2009 22:50
|

Junior Member

Posts: 12
Joined: 14/09/2008
|
If im not so skilled with that can You (someone) wrote here what should i do to send emails throw smtp.google.com ? STARTTLS (SSL), Port: 465 or 587 and Auth ???
--
[EL!TA].Kris vel Kris o poranq
|
| |
|
|
| krisop |
Posted on 20-05-2009 00:21
|

Junior Member

Posts: 12
Joined: 14/09/2008
|
I found that :
SMTP Host: ssl://smtp.gmail.com:465
SMTP Username:
SMTP Password: Yours password
For v.7 should be enough without makin any changes in sendmail_include.php or/and phpmailer_include.php
But for me it's shown that Send mail failed, caontact with Admin...
--
[EL!TA].Kris vel Kris o poranq
|
| |
|
|
| bite |
Posted on 20-05-2009 01:02
|

Member

Posts: 164
Joined: 07/07/2008
|
The thing is... current version of PHPMailer included with PHP-Fusion does not support connection prefix which is required to use gmail SMTP.
here is list of settings you need to set for gmail in latest PHPMailer version:
public $From='';
public $FromName='Nick Gmail';
public $Mailer='smtp';
public $Host='smtp.gmail.com';
public $Port=587;
public $SMTPSecure='tls';
public $SMTPAuth=1;
public $Username='';
public $Password='password'; |
| |
|
|
| krisop |
Posted on 20-05-2009 09:48
|

Junior Member

Posts: 12
Joined: 14/09/2008
|
Sorry, but steel not workin... Is there posibility to got that php files in zippack ? maybe mine are bugged or something, and if i done with that variables i must setup in misc ?
Which files i must modify ? there is:
phpmailer_include.php
smtp_include.php
class.phpmailer.php
class.smtp.php
--
[EL!TA].Kris vel Kris o poranq
|
| |
|
|
| bite |
Posted on 20-05-2009 11:18
|

Member

Posts: 164
Joined: 07/07/2008
|
As i already told, the version of PHPMailer which comes with PHP-Fuison does not support Gmail smtp. Download newer version of PHPMailer http://phpmailer....f&p=dl |
| |
|
|
| krisop |
Posted on 21-05-2009 18:13
|

Junior Member

Posts: 12
Joined: 14/09/2008
|
Language string failed to load: tls
WTH ?
--
[EL!TA].Kris vel Kris o poranq
|
| |
|
|
| bite |
Posted on 21-05-2009 20:23
|

Member

Posts: 164
Joined: 07/07/2008
|
PHP version?
tls works fine only with latest PHP version which is 5.2.5 or newer. |
| |
|
|
| krisop |
Posted on 21-05-2009 20:49
|

Junior Member

Posts: 12
Joined: 14/09/2008
|
PHP Version 5.2.6
http://www.elita-...m/info.php
Edited by krisop on 21-05-2009 20:49
--
[EL!TA].Kris vel Kris o poranq
|
| |
|
|
| bite |
Posted on 21-05-2009 22:55
|

Member

Posts: 164
Joined: 07/07/2008
|
Then its PHPMailer bug... post full error message and PHPMailer version you using...
also, did you tried to replace old PHPMailer files who came with PHP-Fusion with newer you downloaded?
Edited by bite on 21-05-2009 22:57
|
| |
|
|
| krisop |
Posted on 22-05-2009 16:20
|

Junior Member

Posts: 12
Joined: 14/09/2008
|
i used this PHP-Mailer which is linked here, and PHP-Mailer which was in PHP-Fusion with... so
--
[EL!TA].Kris vel Kris o poranq
|
| |
|
|
| bite |
Posted on 22-05-2009 18:59
|

Member

Posts: 164
Joined: 07/07/2008
|
well you see... PHP-Fusion uses quite old version, so you can't just download new version and replace old files... PHP-Fusion simply not comfortable with new version. |
| |
|
|
| krisop |
Posted on 22-05-2009 22:44
|

Junior Member

Posts: 12
Joined: 14/09/2008
|
i did mate ! I did! In old version is VAR not PUBLIC (variable)
--
[EL!TA].Kris vel Kris o poranq
|
| |
|
|
| starefossen |
Posted on 23-05-2009 23:10
|

Senior Member

Posts: 373
Joined: 09/02/2006
|
Thanks for brining this up. We are currently working on the next version of PHP-Fusion (v7.01) and this is something we should put in. Port and auth should be added to the settings and we will upgrade our version of PHPMailer.
|
| |
|
|
| krisop |
Posted on 24-05-2009 08:03
|

Junior Member

Posts: 12
Joined: 14/09/2008
|
So hooah ! That will be little pice of sand from me to PHP-Fusion
--
[EL!TA].Kris vel Kris o poranq
|
| |
|
|
| bite |
Posted on 24-05-2009 16:13
|

Member

Posts: 164
Joined: 07/07/2008
|
@Starefossen: That's a spirit... |
| |
|
|
| krisop |
Posted on 01-06-2009 09:57
|

Junior Member

Posts: 12
Joined: 14/09/2008
|
So we are waitih for 7.01
--
[EL!TA].Kris vel Kris o poranq
|
| |
|
|
| krisop |
Posted on 16-04-2011 00:37
|

Junior Member

Posts: 12
Joined: 14/09/2008
|
So it's done in 7.02 version ? If yes, what should i do to use gmail for sending mails from php-fusion ?
--
[EL!TA].Kris vel Kris o poranq
|
| |
|