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
1 change: 1 addition & 0 deletions .vscode/project-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ topsites
topstories
trackingprotection
ublock
unsubmitted
urlbar
userprefs
videocontrols
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
61 changes: 61 additions & 0 deletions src/content/docs/reference/policies/CrashReportsSubmit.mdx
Original file line number Diff line number Diff line change
@@ -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
<enabled/> or <disabled/>
```

## macOS

```xml
<dict>
<key>CrashReportsSubmit</key>
<dict>
<key>ForceAutoSubmit</key>
<true/> | <false/>
</dict>
</dict>
```

## policies.json

```json
{
"policies": {
"CrashReportsSubmit": {
"ForceAutoSubmit": true | false
}
}
}
```