Skip to content

Commit

Permalink
[mms] Support IDN hostnames in e-mail address queries.
Browse files Browse the repository at this point in the history
  • Loading branch information
slusarz committed Sep 16, 2014
1 parent 8cb3aef commit 2c5035d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion framework/Mail_Autoconfig/lib/Horde/Mail/Autoconfig.php
Expand Up @@ -164,7 +164,7 @@ protected function _parseEmail($email)
);
}

$host = $alist[0]->host;
$host = $alist[0]->host_idn;
if (!strlen($host)) {
throw new Horde_Mail_Autoconfig_Exception(
'Could not determine domain name from e-mail address given.'
Expand Down
Expand Up @@ -23,7 +23,7 @@
abstract class Horde_Mail_Autoconfig_Server
{
/**
* The server hostname.
* The server hostname (IDN encoded).
*
* @var string
*/
Expand Down
6 changes: 3 additions & 3 deletions framework/Mail_Autoconfig/package.xml
Expand Up @@ -21,7 +21,7 @@
</stability>
<license uri="http://www.horde.org/licenses/lgpl21">LGPL-2.1</license>
<notes>
*
* [mms] Support IDN hostnames in e-mail address queries.
</notes>
<contents>
<dir baseinstalldir="/" name="/">
Expand Down Expand Up @@ -111,7 +111,7 @@
<package>
<name>Horde_Mail</name>
<channel>pear.horde.org</channel>
<min>2.0.0</min>
<min>2.1.0</min>
<max>3.0.0alpha1</max>
<exclude>3.0.0alpha1</exclude>
</package>
Expand Down Expand Up @@ -209,7 +209,7 @@
<date>2014-07-01</date>
<license uri="http://www.horde.org/licenses/lgpl21">LGPL-2.1</license>
<notes>
*
* [mms] Support IDN hostnames in e-mail address queries.
</notes>
</release>
</changelog>
Expand Down

0 comments on commit 2c5035d

Please sign in to comment.