From 22a68626fb0ab26ad1aaf7b4a041456e6be9b92c Mon Sep 17 00:00:00 2001 From: Otto Moerbeek Date: Wed, 8 Nov 2023 13:54:19 +0100 Subject: [PATCH] rec: change default of extended-resolution-errors setting to true --- pdns/recursordist/settings/table.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pdns/recursordist/settings/table.py b/pdns/recursordist/settings/table.py index 0c761d7b4a..f1809dc440 100644 --- a/pdns/recursordist/settings/table.py +++ b/pdns/recursordist/settings/table.py @@ -976,12 +976,13 @@ An entry called 'server1.home' will be stored as 'server1.home', regardless of t 'name' : 'extended_resolution_errors', 'section' : 'recursor', 'type' : LType.Bool, - 'default' : 'false', + 'default' : 'true', 'help' : 'If set, send an EDNS Extended Error extension on resolution failures, like DNSSEC validation errors', 'doc' : ''' If set, the recursor will add an EDNS Extended Error (:rfc:`8914`) to responses when resolution failed, like DNSSEC validation errors, explaining the reason it failed. This setting is not needed to allow setting custom error codes from Lua or from a RPZ hit. ''', - 'versionadded': '4.5.0' + 'versionadded': '4.5.0', + 'versionchanged': ('5.0.0', 'Default changed to enabled, previously it was disabled.'), }, { 'name' : 'forward_zones', -- 2.47.2