Update MailSo license

This commit is contained in:
RainLoop Team 2014-10-17 14:15:19 +04:00
parent 9c43105e95
commit 6b0ca800e8
133 changed files with 1206 additions and 31 deletions

View file

@ -1,5 +1,14 @@
<?php
/*
* This file is part of MailSo.
*
* (c) 2014 Usenko Timur
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace MailSo\Mail;
/**
@ -49,7 +58,7 @@ class MailClient
* @param string $sServerName
* @param int $iPort = 143
* @param int $iSecurityType = \MailSo\Net\Enumerations\ConnectionSecurityType::AUTO_DETECT
* @param bool $bVerifySsl = true
* @param bool $bVerifySsl = false
*
* @return \MailSo\Mail\MailClient
*
@ -58,7 +67,7 @@ class MailClient
* @throws \MailSo\Imap\Exceptions\Exception
*/
public function Connect($sServerName, $iPort = 143,
$iSecurityType = \MailSo\Net\Enumerations\ConnectionSecurityType::AUTO_DETECT, $bVerifySsl = true)
$iSecurityType = \MailSo\Net\Enumerations\ConnectionSecurityType::AUTO_DETECT, $bVerifySsl = false)
{
$this->oImapClient->Connect($sServerName, $iPort, $iSecurityType, $bVerifySsl);
return $this;