IDNA support (beta)

This commit is contained in:
RainLoop Team 2014-05-13 20:13:55 +04:00
parent 0ca00dec40
commit e82108ac85
31 changed files with 3839 additions and 308 deletions

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,5 @@
<?php
class Net_IDNA2_Exception extends Exception
{
}

View file

@ -0,0 +1,10 @@
<?php
//require_once 'Net/IDNA2/Exception.php';
defined('MAILSO_LIBRARY_ROOT_PATH') || die();
require_once MAILSO_LIBRARY_ROOT_PATH.'Vendors/Net/IDNA2/Exception.php';
class Net_IDNA2_Exception_Nameprep extends Net_IDNA2_Exception
{
}