[Vtigercrm-developers] Email Out error V6
Daniel Thompson
developingdanny at gmail.com
Mon Jan 20 16:12:57 GMT 2014
Hi All,
I have been doing some digging.
1) If you firstly create a Mail sever setting with Requires Authentication
to no, it will not let you move forward.
2) To get around this I set it to yes, edited it back to no and then saved
the setting
3) On line 1125 class.phpmailer
if ($this->SMTPAuth) {
if (!$this->smtp->Authenticate($this->Username,
$this->Password, $this->AuthType, $this->Realm, $this->Workstation)) {
throw new phpmailerException($this->Lang('authenticate'));
}
}
As this is returning a value its doing the above check for now i've set
this to
if ($this->SMTPAuth != 'false') {
if (!$this->smtp->Authenticate($this->Username,
$this->Password, $this->AuthType, $this->Realm, $this->Workstation)) {
throw new phpmailerException($this->Lang('authenticate'));
}
}
But I'm more interested in Why the true false is a text field in the DB,
not a straight forward boolean?
Any info would be great
Regards,
On 20 January 2014 13:27, Daniel Thompson <developingdanny at gmail.com> wrote:
> I seem to be getting this error .
>
> SMTP Connect() failed.
>
> Any ideas?
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.vtigercrm.com/pipermail/vtigercrm-developers/attachments/20140120/d7cba386/attachment.html>
More information about the vtigercrm-developers
mailing list