From 9bb2bda93e8cb499c0d39b450a54511a0fc896f3 Mon Sep 17 00:00:00 2001 From: mildis Date: Wed, 31 Jul 2019 09:32:08 +0200 Subject: [PATCH] add keep_ip_during and policy_when_full default settings. miss of keep_ip_during rises error with 'cron cleanbdd' when not set. --- lib/Lufi/DefaultConfig.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/Lufi/DefaultConfig.pm b/lib/Lufi/DefaultConfig.pm index d8d75e4..bc802f7 100644 --- a/lib/Lufi/DefaultConfig.pm +++ b/lib/Lufi/DefaultConfig.pm @@ -26,6 +26,8 @@ our $default_config = { x_frame_options => 'DENY', x_content_type_options => 'nosniff', x_xss_protection => '1; mode=block', + keep_ip_during => 365, + policy_when_full => 'warn', }; 1;