diff --git a/.vscode/project-words.txt b/.vscode/project-words.txt
index e64e298..4f610ff 100644
--- a/.vscode/project-words.txt
+++ b/.vscode/project-words.txt
@@ -65,6 +65,7 @@ topsites
topstories
trackingprotection
ublock
+unsubmitted
urlbar
userprefs
videocontrols
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f9b1919..eac4ed9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -20,7 +20,8 @@
#### Added
-- Sync policy [#70](https://github.com/mozilla/enterprise-admin-reference/pull/70)
+- `Sync` policy [#70](https://github.com/mozilla/enterprise-admin-reference/pull/70)
+- `CrashReportsSubmit` policy: Configure crash report submission settings. [#86](https://github.com/mozilla/enterprise-admin-reference/pull/86)
## fx-148.0.0
diff --git a/src/content/docs/reference/policies/CrashReportsSubmit.mdx b/src/content/docs/reference/policies/CrashReportsSubmit.mdx
new file mode 100644
index 0000000..298dba2
--- /dev/null
+++ b/src/content/docs/reference/policies/CrashReportsSubmit.mdx
@@ -0,0 +1,61 @@
+---
+title: "CrashReportsSubmit"
+description: "Configure crash report submission settings."
+category: "Cloud reporting"
+---
+
+Configure crash report submission settings.
+
+**Compatibility:** Firefox Enterprise 150.0.0\
+**Preferences Affected:** `browser.crashReports.unsubmittedCheck.enabled`, `browser.crashReports.unsubmittedCheck.autoSubmit2`, `browser.tabs.crashReporting.includeURL`, `browser.tabs.crashReporting.sendReport`
+
+> [!NOTE]
+> Currently, this is only implemented in Firefox Enterprise.
+
+## Values
+
+- `ForceAutoSubmit` A Boolean. Controls whether crash reports are automatically submitted.
+
+## Windows (GPO)
+
+```
+Software\Policies\Mozilla\Firefox\CrashReportsSubmit\ForceAutoSubmit = 0x1 | 0x0
+```
+
+## Windows (Intune)
+
+OMA-URI:
+
+```url
+./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox~CrashReportsSubmit/CrashReportsSubmit_ForceAutoSubmit
+```
+
+Value (string):
+
+```xml
+ or
+```
+
+## macOS
+
+```xml
+
+ CrashReportsSubmit
+
+ ForceAutoSubmit
+ |
+
+
+```
+
+## policies.json
+
+```json
+{
+ "policies": {
+ "CrashReportsSubmit": {
+ "ForceAutoSubmit": true | false
+ }
+ }
+}
+```