]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
New domain regexp for WebFinger matching.
authorMikael Nordfeldth <mmn@hethane.se>
Sat, 22 Apr 2017 08:51:03 +0000 (10:51 +0200)
committerMikael Nordfeldth <mmn@hethane.se>
Sat, 22 Apr 2017 08:51:03 +0000 (10:51 +0200)
plugins/OStatus/OStatusPlugin.php

index 3e9a0c58d6cd539ddcff4fd24b34b72350b65200..d5233afc80c2a28075f1808aafd1eb28387197c0 100644 (file)
@@ -271,7 +271,7 @@ class OStatusPlugin extends Plugin
 
         $wmatches = array();
         // Webfinger matches: @user@example.com or even @user--one.george_orwell@1984.biz
-        if (preg_match_all('!(?:^|\s+)@((?:\w+[\w\-\_\.]?)*(?:[\w\-\_\.]*\w+)@(?:\w+\-?\w+\.)*\w+(?:\w+\-\w+)*\.\w+)!',
+        if (preg_match_all('/(?:^|\s+)@((?:\w+[\w\-\_\.]?)*(?:[\w\-\_\.]*\w+)@(?:(?!-)[A-Za-z0-9\-]{1,63}(?<!-)\.)+[A-Za-z]{2,10})/',
                        $text,
                        $wmatches,
                        PREG_OFFSET_CAPTURE)) {