From 4d421b7fa6a555e8cf697ba2b4a2df1ab856be4f Mon Sep 17 00:00:00 2001
From: Adrien Dupuis <61695653+adriendupuis@users.noreply.github.com>
Date: Wed, 2 Sep 2026 11:14:45 +0200
Subject: [PATCH 1/3] url_management.md: new HTTP(s) checking options
---
.../url_management/url_management.md | 18 +++++++++++-------
1 file changed, 11 insertions(+), 7 deletions(-)
diff --git a/docs/content_management/url_management/url_management.md b/docs/content_management/url_management/url_management.md
index ae21591eeb..0dd811795c 100644
--- a/docs/content_management/url_management/url_management.md
+++ b/docs/content_management/url_management/url_management.md
@@ -64,13 +64,17 @@ For details, see the tables below.
#### http/https protocol
-| Option | Description | Default value |
-|----------------------|----------------------------------------------------------------------------------------|-----------------------|
-| enabled | Enables link validation. | true |
-| timeout | Defines the time that the request is allowed to take (in seconds). | 10 |
-| connection_timeout | Defines the time that the connect phase is allowed to take (in seconds). | 5 |
-| batch_size | Defines a maximum number of asynchronous requests. | 10 |
-| ignore_certificate | Decides if the peer's SSL certificate or the certificate name are verified against the host. | false |
+| Option | Description | Default value |
+|--------------------|----------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------|
+| enabled | Enables link validation. | true |
+| timeout | Defines the time that the request is allowed to take (in seconds). | 10 |
+| connection_timeout | Defines the time that the connect phase is allowed to take (in seconds). | 5 |
+| batch_size | Defines a maximum number of asynchronous requests. | 10 |
+| ignore_certificate | Decides if the peer's SSL certificate or the certificate name are verified against the host. | false |
+| method | Defines the HTTP method used to validate the URL (HEAD or GET). | HEAD |
+| fallback_to_get | Decides if the validation is retried with GET when HEAD failed. | true |
+| user_agent | Defines the user agent used to request the URL. | Mozilla/5.0 (X11; Linux x86_64; rv:128.0) Gecko/20100101 Firefox/128.0 |
+| headers | Defines the headers used to request the URL. | {Accept: 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', Accept-Language: 'en-US,en;q=0.5'} |
#### mailto protocol
From 0d48e1f1a8f8ae99e938b921dde1c102fa2ee50c Mon Sep 17 00:00:00 2001
From: Adrien Dupuis <61695653+adriendupuis@users.noreply.github.com>
Date: Wed, 2 Sep 2026 11:20:39 +0200
Subject: [PATCH 2/3] url_management.md: new HTTP(s) checking options
---
docs/content_management/url_management/url_management.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/content_management/url_management/url_management.md b/docs/content_management/url_management/url_management.md
index 0dd811795c..6e68d70f20 100644
--- a/docs/content_management/url_management/url_management.md
+++ b/docs/content_management/url_management/url_management.md
@@ -74,7 +74,7 @@ For details, see the tables below.
| method | Defines the HTTP method used to validate the URL (HEAD or GET). | HEAD |
| fallback_to_get | Decides if the validation is retried with GET when HEAD failed. | true |
| user_agent | Defines the user agent used to request the URL. | Mozilla/5.0 (X11; Linux x86_64; rv:128.0) Gecko/20100101 Firefox/128.0 |
-| headers | Defines the headers used to request the URL. | {Accept: 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', Accept-Language: 'en-US,en;q=0.5'} |
+| headers | Defines the headers used to request the URL. | `{Accept: 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', Accept-Language: 'en-US,en;q=0.5'}` |
#### mailto protocol
From cf15b39dff2a42da88572c55ffef7bd6a01be80f Mon Sep 17 00:00:00 2001
From: Adrien Dupuis <61695653+adriendupuis@users.noreply.github.com>
Date: Wed, 2 Sep 2026 11:25:43 +0200
Subject: [PATCH 3/3] url_management.md: new HTTP(s) checking options
---
.../url_management/url_management.md | 22 +++++++++----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/docs/content_management/url_management/url_management.md b/docs/content_management/url_management/url_management.md
index 6e68d70f20..5b8c3a7b22 100644
--- a/docs/content_management/url_management/url_management.md
+++ b/docs/content_management/url_management/url_management.md
@@ -64,17 +64,17 @@ For details, see the tables below.
#### http/https protocol
-| Option | Description | Default value |
-|--------------------|----------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------|
-| enabled | Enables link validation. | true |
-| timeout | Defines the time that the request is allowed to take (in seconds). | 10 |
-| connection_timeout | Defines the time that the connect phase is allowed to take (in seconds). | 5 |
-| batch_size | Defines a maximum number of asynchronous requests. | 10 |
-| ignore_certificate | Decides if the peer's SSL certificate or the certificate name are verified against the host. | false |
-| method | Defines the HTTP method used to validate the URL (HEAD or GET). | HEAD |
-| fallback_to_get | Decides if the validation is retried with GET when HEAD failed. | true |
-| user_agent | Defines the user agent used to request the URL. | Mozilla/5.0 (X11; Linux x86_64; rv:128.0) Gecko/20100101 Firefox/128.0 |
-| headers | Defines the headers used to request the URL. | `{Accept: 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', Accept-Language: 'en-US,en;q=0.5'}` |
+| Option | Description | Default value |
+|--------------------|----------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------|
+| enabled | Enables link validation. | true |
+| timeout | Defines the time that the request is allowed to take (in seconds). | 10 |
+| connection_timeout | Defines the time that the connect phase is allowed to take (in seconds). | 5 |
+| batch_size | Defines a maximum number of asynchronous requests. | 10 |
+| ignore_certificate | Decides if the peer's SSL certificate or the certificate name are verified against the host. | false |
+| method | Defines the HTTP method used to validate the URL (HEAD or GET). | HEAD |
+| fallback_to_get | Decides if the validation is retried with GET when HEAD failed. | true |
+| user_agent | Defines the user agent used to request the URL. | Mozilla/5.0 (X11; Linux x86_64; rv:128.0) Gecko/20100101 Firefox/128.0 |
+| headers | Defines the headers used to request the URL. | Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-US,en;q=0.5 |
#### mailto protocol