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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

## Unreleased

#### Changed

- `CrashReportsSubmit` policy: Update policy structure to remove `ForceAutoSubmit` key in favor of `Enabled` key ([#222](https://github.com/mozilla/enterprise-admin-reference/pull/222))

### fx-151.0.0

#### Added
Expand Down
10 changes: 5 additions & 5 deletions src/content/docs/reference/policies/CrashReportsSubmit.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ category: "Cloud reporting"

Configure crash report submission settings.

**Compatibility:** Firefox Enterprise 150.0.0\
**Compatibility:** Firefox Enterprise 154.0.0\
**Preferences Affected:** `browser.crashReports.unsubmittedCheck.enabled`, `browser.crashReports.unsubmittedCheck.autoSubmit2`, `browser.tabs.crashReporting.includeURL`, `browser.tabs.crashReporting.sendReport`

> [!NOTE]
Expand All @@ -18,20 +18,20 @@ Configure crash report submission settings.

## Values

- `ForceAutoSubmit` A Boolean. Controls whether crash reports are automatically submitted.
- `Enabled` A Boolean. Controls whether crash reports are automatically submitted or not allowed to be submitted.

## Windows (GPO)

```
Software\Policies\Mozilla\Firefox\CrashReportsSubmit\ForceAutoSubmit = 0x1 | 0x0
Software\Policies\Mozilla\Firefox\CrashReportsSubmit\Enabled = 0x1 | 0x0
```

## Windows (Intune)

OMA-URI:

```url
./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox~CrashReportsSubmit/CrashReportsSubmit_ForceAutoSubmit
./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox~CrashReportsSubmit/CrashReportsSubmit_Enabled
```

Value (string):
Expand All @@ -46,7 +46,7 @@ Value (string):
<dict>
<key>CrashReportsSubmit</key>
<dict>
<key>ForceAutoSubmit</key>
<key>Enabled</key>
<true/> | <false/>
</dict>
</dict>
Expand Down