diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-03-26 11:17:23 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-03-26 11:17:23 +0100 |
commit | 83b4bcfdbf832f1ebc78c9cf6f6aba5490b65cb3 (patch) | |
tree | cefecc39530ffb374a725e95bb156b4da44ac85e /lib | |
parent | 75d8de378cd355671c310bcb62c35504a5c03f0a (diff) | |
download | nextcloud-server-83b4bcfdbf832f1ebc78c9cf6f6aba5490b65cb3.tar.gz nextcloud-server-83b4bcfdbf832f1ebc78c9cf6f6aba5490b65cb3.zip |
idn_to_ascii is only used if available
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/mail.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/private/mail.php b/lib/private/mail.php index 79f51609631..f9083cc4e64 100644 --- a/lib/private/mail.php +++ b/lib/private/mail.php @@ -137,6 +137,9 @@ class OC_Mail { * @return string */ public static function buildAsciiEmail($emailAddress) { + if (!function_exists('idn_to_ascii')) { + return $emailAddress; + } list($name, $domain) = explode('@', $emailAddress, 2); $domain = idn_to_ascii($domain); |