]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Do not process ftp urls using a tld hack
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Thu, 25 Feb 2021 15:47:25 +0000 (15:47 +0000)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Thu, 25 Feb 2021 15:47:25 +0000 (15:47 +0000)
src/libserver/url.c

index b371b78f48398bb032029914b83c165d8854ab3d..2c396b438997d91180fc5d6e4cfb6e5a04779aa0 100644 (file)
@@ -2757,8 +2757,7 @@ url_web_start (struct url_callback_data *cb,
 {
        /* Check what we have found */
        if (pos > cb->begin) {
-               if (g_ascii_strncasecmp (pos, "www", 3) == 0 ||
-                g_ascii_strncasecmp (pos, "ftp", 3) == 0) {
+               if (g_ascii_strncasecmp (pos, "www", 3) == 0) {
 
                        if (!(is_url_start (*(pos - 1)) ||
                                  g_ascii_isspace (*(pos - 1)) ||