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\Pop3\Exceptions;
/**

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\Pop3\Exceptions;
/**

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\Pop3\Exceptions;
/**

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\Pop3\Exceptions;
/**

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\Pop3\Exceptions;
/**

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\Pop3;
/**
@ -53,7 +62,7 @@ class Pop3Client extends \MailSo\Net\NetClient
* @param string $sServerName
* @param int $iPort = 110
* @param int $iSecurityType = \MailSo\Net\Enumerations\ConnectionSecurityType::AUTO_DETECT
* @param bool $bVerifySsl = true
* @param bool $bVerifySsl = false
*
* @return \MailSo\Pop3\Pop3Client
*
@ -62,7 +71,7 @@ class Pop3Client extends \MailSo\Net\NetClient
* @throws \MailSo\Pop3\Exceptions\ResponseException
*/
public function Connect($sServerName, $iPort = 110,
$iSecurityType = \MailSo\Net\Enumerations\ConnectionSecurityType::AUTO_DETECT, $bVerifySsl = true)
$iSecurityType = \MailSo\Net\Enumerations\ConnectionSecurityType::AUTO_DETECT, $bVerifySsl = false)
{
$this->iRequestTime = microtime(true);