Remove explicit settings for send-auto-to-cmd and send-auto-cc-cmd from the project’s .b4-config. The b4 tool provides sensible defaults that automatically invoke scripts/get_maintainer.pl with recommended parameters, making the custom overrides unnecessary.
This simplifies the configuration file, reduces maintenance overhead, and ensures contributors benefit from ongoing improvements in b4’s built-in maintainer discovery. Signed-off-by: Javier Tia <[email protected]> --- .b4-config | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.b4-config b/.b4-config index 6ba10cf9b50e6acb8a789544d35a13641e6c0411..3a9c7c406b0188c043c28bc9a67e04d6a77ea260 100644 --- a/.b4-config +++ b/.b4-config @@ -2,6 +2,6 @@ # See https://b4.docs.kernel.org/en/latest/config.html [b4] - send-series-to = [email protected] - send-auto-to-cmd = echo "" - send-auto-cc-cmd = scripts/get_maintainer.pl +# send-auto-to-cmd and send-auto-cc-cmd are populated automatically by b4, and +# the default configuration functions effectively as it executes +# scripts/get_maintainer.pl with the recommended parameters -- 2.51.0

