From 2844448f94cbeb2a020855ad4e6090c22876468e Mon Sep 17 00:00:00 2001 From: ValdikSS Date: Sat, 4 Mar 2023 09:20:16 +0300 Subject: [PATCH] Filter out domains with length > 30 after optimizing zones --- config/exclude-regexp-dist.awk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/exclude-regexp-dist.awk b/config/exclude-regexp-dist.awk index bb98c16..bf8a491 100644 --- a/config/exclude-regexp-dist.awk +++ b/config/exclude-regexp-dist.awk @@ -244,3 +244,5 @@ /^bestpharma/ {next} /^balashiha-grand/ {next} /^apl[0-9]*\./ {next} +/dot-xenon-antonym/ {next} +length($1) > 30 {next}