]> source.dussan.org Git - rspamd.git/commitdiff
Fix decoding of escaped URL's
authorVsevolod Stakhov <vsevolod@rambler-co.ru>
Thu, 25 Nov 2010 12:41:14 +0000 (15:41 +0300)
committerVsevolod Stakhov <vsevolod@rambler-co.ru>
Thu, 25 Nov 2010 12:41:14 +0000 (15:41 +0300)
src/url.c

index 3edc0a7b13bf86cc471d6de2c1d12869448fc036..f1b4242a17260cc47b52c1a59550898ff0b37d73 100644 (file)
--- a/src/url.c
+++ b/src/url.c
@@ -102,10 +102,10 @@ struct url_match_scanner *url_scanner = NULL;
 
 static const struct _proto      protocol_backends[] = {
        {"file", 0, NULL, 1, 0, 0, 0},
-       {"ftp", 21, NULL, 1, 1, 0, 0},
-       {"http", 80, NULL, 1, 1, 0, 0},
-       {"https", 443, NULL, 1, 1, 0, 1},
-       {"mailto", 25, NULL, 1, 1, 0, 0},
+       {"ftp", 21, NULL, 1, 0, 0, 0},
+       {"http", 80, NULL, 1, 0, 0, 0},
+       {"https", 443, NULL, 1, 0, 0, 1},
+       {"mailto", 25, NULL, 1, 0, 0, 0},
        /* Keep these last! */
        {NULL, 0, NULL, 0, 0, 1, 0}
 };