From c4bd769403fee7bd7d37d642c541234e5352d799 Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Fri, 29 Dec 2017 12:17:12 +0100 Subject: [PATCH] PMG/Config - reduce default maxspamsize back to 256 Because we always analyze the first $maxspamsize of large mails now. --- PMG/Config.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PMG/Config.pm b/PMG/Config.pm index 66da5f0..9a248d0 100755 --- a/PMG/Config.pm +++ b/PMG/Config.pm @@ -167,7 +167,7 @@ sub properties { description => "Maximum size of spam messages in bytes.", type => 'integer', minimum => 64, - default => 1024*1024, + default => 256*1024, }, }; } -- 2.39.5