Skip to content

Commit 507a255

Browse files
authored
feat: add CrashReportsAutoSubmit policy (#86)
* feat: add CrashReportsAutoSubmit policy * chore: add CrashReportsSubmit to CHANGELOG.md and add unsubmitted to project-words.txt * refactor: add Enterprise note and data type
1 parent b687fee commit 507a255

3 files changed

Lines changed: 64 additions & 1 deletion

File tree

.vscode/project-words.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ topsites
6565
topstories
6666
trackingprotection
6767
ublock
68+
unsubmitted
6869
urlbar
6970
userprefs
7071
videocontrols

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020

2121
#### Added
2222

23-
- Sync policy [#70](https://github.com/mozilla/enterprise-admin-reference/pull/70)
23+
- `Sync` policy [#70](https://github.com/mozilla/enterprise-admin-reference/pull/70)
24+
- `CrashReportsSubmit` policy: Configure crash report submission settings. [#86](https://github.com/mozilla/enterprise-admin-reference/pull/86)
2425

2526
## fx-148.0.0
2627

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
---
2+
title: "CrashReportsSubmit"
3+
description: "Configure crash report submission settings."
4+
category: "Cloud reporting"
5+
---
6+
7+
Configure crash report submission settings.
8+
9+
**Compatibility:** Firefox Enterprise 150.0.0\
10+
**Preferences Affected:** `browser.crashReports.unsubmittedCheck.enabled`, `browser.crashReports.unsubmittedCheck.autoSubmit2`, `browser.tabs.crashReporting.includeURL`, `browser.tabs.crashReporting.sendReport`
11+
12+
> [!NOTE]
13+
> Currently, this is only implemented in Firefox Enterprise.
14+
15+
## Values
16+
17+
- `ForceAutoSubmit` A Boolean. Controls whether crash reports are automatically submitted.
18+
19+
## Windows (GPO)
20+
21+
```
22+
Software\Policies\Mozilla\Firefox\CrashReportsSubmit\ForceAutoSubmit = 0x1 | 0x0
23+
```
24+
25+
## Windows (Intune)
26+
27+
OMA-URI:
28+
29+
```url
30+
./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox~CrashReportsSubmit/CrashReportsSubmit_ForceAutoSubmit
31+
```
32+
33+
Value (string):
34+
35+
```xml
36+
<enabled/> or <disabled/>
37+
```
38+
39+
## macOS
40+
41+
```xml
42+
<dict>
43+
<key>CrashReportsSubmit</key>
44+
<dict>
45+
<key>ForceAutoSubmit</key>
46+
<true/> | <false/>
47+
</dict>
48+
</dict>
49+
```
50+
51+
## policies.json
52+
53+
```json
54+
{
55+
"policies": {
56+
"CrashReportsSubmit": {
57+
"ForceAutoSubmit": true | false
58+
}
59+
}
60+
}
61+
```

0 commit comments

Comments
 (0)