Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 10/umbraco-forms/developer/configuration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ For illustration purposes, the following structure represents the full set of op
},
"DisableRecordIndexing": false,
"EnableFormsApi": false,
"EnableRecordingOfIpWithFormSubmission": "true",
"EnableRecordingOfIpWithFormSubmission": true,
"UseSemanticFieldsetRendering": false,
"DisableRelationTracking": false,
"TrackRenderedFormsStorageMethod": "TempData"
Expand Down
6 changes: 3 additions & 3 deletions 12/umbraco-forms/developer/configuration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ For illustration purposes, the following structure represents the full set of op
},
"DisableRecordIndexing": false,
"EnableFormsApi": false,
"EnableRecordingOfIpWithFormSubmission": "true",
"EnableRecordingOfIpWithFormSubmission": false,
"UseSemanticFieldsetRendering": false,
"DisableClientSideValidationDependencyCheck": false,
"DisableRelationTracking": false,
Expand Down Expand Up @@ -371,9 +371,9 @@ Set this value to `true` to enable the Forms API supporting headless and AJAX fo

### EnableRecordingOfIpWithFormSubmission

The user's IP address is recorded by default when a form is submitted and stored in the `UFRecords` database table.
By default, the user's IP address is not recorded when a form is submitted and stored in the `UFRecords` database table.

To remove this behavior set this value to `false`.
To include this information in the saved data, set this value to `true`.

If recording IPs and your site is behind a proxy, load balancer or CDN, we recommend using [ASP.NET's forwarded headers middleware](https://learn.microsoft.com/en-us/aspnet/core/host-and-deploy/proxy-load-balancer?view=aspnetcore-7.0) to ensure the correct value for the client IP is resolved.

Expand Down
2 changes: 1 addition & 1 deletion 12/umbraco-forms/upgrading/version-specific.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ For reference, the full details are listed here:

#### **Behavior**

* The default value for configuration of request IP tracking has been changed to `None` from `RemoteIpAddress`.
* The default value for configuration of request IP tracking via the `EnableRecordingOfIpWithFormSubmission` setting has been changed to `true` from `false`.
* The session variable `ContourMemberKey` is no longer set.
* Exception handling in the Forms API has been aligned with the CMS Delivery API. This leads to subtle differences in the population of the `ProblemDetails` exposed.
* Use of the Forms API has to be enabled in configuration, via setting the `Umbraco:Forms:Options:EnableFormsApi` key to `true`.
Expand Down
7 changes: 3 additions & 4 deletions 13/umbraco-forms/developer/configuration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ For illustration purposes, the following structure represents the full set of op
},
"DisableRecordIndexing": false,
"EnableFormsApi": false,
"EnableRecordingOfIpWithFormSubmission": "true",
"EnableRecordingOfIpWithFormSubmission": false,
"UseSemanticFieldsetRendering": false,
"DisableClientSideValidationDependencyCheck": false,
"DisableRelationTracking": false,
Expand Down Expand Up @@ -379,10 +379,9 @@ Set this value to `true` to enable the Forms API supporting headless and AJAX fo

### EnableRecordingOfIpWithFormSubmission

The user's IP address is recorded by default when a form is submitted and stored in the `UFRecords` database table.

To remove this behavior set this value to `false`.
By default, the user's IP address is not recorded when a form is submitted and stored in the `UFRecords` database table.

To include this information in the saved data, set this value to `true`.
If recording IPs and your site is behind a proxy, load balancer or CDN, we recommend using [ASP.NET's forwarded headers middleware](https://learn.microsoft.com/en-us/aspnet/core/host-and-deploy/proxy-load-balancer?view=aspnetcore-7.0) to ensure the correct value for the client IP is resolved.

### UseSemanticFieldsetRendering
Expand Down
6 changes: 3 additions & 3 deletions 14/umbraco-forms/developer/configuration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ For illustration purposes, the following structure represents the full set of op
},
"DisableRecordIndexing": false,
"EnableFormsApi": false,
"EnableRecordingOfIpWithFormSubmission": "true",
"EnableRecordingOfIpWithFormSubmission": false,
"UseSemanticFieldsetRendering": false,
"DisableClientSideValidationDependencyCheck": false,
"DisableRelationTracking": false,
Expand Down Expand Up @@ -379,9 +379,9 @@ Set this value to `true` to enable the Forms API supporting headless and AJAX fo

### EnableRecordingOfIpWithFormSubmission

The user's IP address is recorded by default when a form is submitted and stored in the `UFRecords` database table.
By default, the user's IP address is not recorded when a form is submitted and stored in the `UFRecords` database table.

To remove this behavior set this value to `false`.
To include this information in the saved data, set this value to `true`.

If recording IPs and your site is behind a proxy, load balancer or CDN, we recommend using [ASP.NET's forwarded headers middleware](https://learn.microsoft.com/en-us/aspnet/core/host-and-deploy/proxy-load-balancer?view=aspnetcore-7.0) to ensure the correct value for the client IP is resolved.

Expand Down