]> git.p6c8.net - policy-templates.git/blob - README-new.md
Latest readme updates
[policy-templates.git] / README-new.md
1 **IMPORTANT**: This file is in active development along with the policies in Firefox. To get the policy information that corresponds to a specific release, go to https://github.com/mozilla/policy-templates/releases.
2
3 Policies can be specified using the Group Policy templates on Windows (https://github.com/mozilla/policy-templates/tree/master/windows), configuration profiles on macOS (https://github.com/mozilla/policy-templates/tree/master/mac), or by creating a file called `policies.json`. On Windows, create a directory called `distribution` where the EXE is located and place the file there. On Mac, the file goes into `Firefox.app/Contents/Resources/distribution`. On Linux, the file goes into `firefox/distribution`, where `firefox` is the installation directory for firefox, which varies by distribution.
4
5 The content of the JSON file should look like this:
6 ```
7 {
8 "policies": {
9 ...POLICIES...
10 }
11 }
12 ```
13 Policies are documented below.
14
15
16 **Note**: though comments are used in this readme file for documentation, comments are not valid in actual JSON files. Remove all comments before attempting to deploy.
17
18 ### AppUpdateURL
19 This policy is for changing the URL used for application update
20 ```
21 {
22 "AppUpdateURL": "http://yoursite.com"
23 }
24 ```
25
26
27 ### Authentication
28 This policy is for configuring sites that support integrated authentication. See https://developer.mozilla.org/en-US/docs/Mozilla/Integrated_authentication for more information.
29 ```
30 {
31 "policies": {
32 "Authentication": {
33 "SPNEGO": ["mydomain.com", "https://myotherdomain.com"],
34 "Delegated": ["mydomain.com", "https://myotherdomain.com"],
35 "NTLM": ["mydomain.com", "https://myotherdomain.com"],
36 "AllowNonFQDN": {
37 "SPNEGO": true,
38 "NTLM": true
39 }
40 }
41 }
42 }
43 ```
44 ### BlockAboutAddons
45 A Boolean value that blocks access to about:addons.
46
47 **Compatibility:** Firefox 60, Firefox ESR 60\
48 **CCK2 Equivalent:** `disableAddonsManager`\
49 **Preferences Affected:** N/A
50
51 #### Windows
52 | Type | Registry Location |
53 | ---- | ----------------- |
54 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\BlockAboutAddons` |
55
56 #### macOS
57 ```
58 <dict>
59 <key>BlockAboutAddons</key>
60 <true/> | <false/>
61 </dict>
62 ```
63 #### JSON
64 ```
65 {
66 "policies": {
67 "BlockAboutAddons": true | false
68 }
69 }
70 ```
71 ### BlockAboutConfig
72 A Boolean value that blocks access to about:config.
73
74 **Compatibility:** Firefox 60, Firefox ESR 60\
75 **CCK2 Equivalent:** `disableAboutConfig`\
76 **Preferences Affected:** N/A
77
78 #### Windows
79 | Type | Registry Location |
80 | ---- | ----------------- |
81 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\BlockAboutConfig` |
82
83 #### macOS
84 ```
85 <dict>
86 <key>BlockAboutConfig</key>
87 <true/> | <false/>
88 </dict>
89 ```
90 #### JSON
91 ```
92 {
93 "policies": {
94 "BlockAboutConfig": true | false
95 }
96 }
97 ```
98 ### BlockAboutProfiles
99 A Boolean value that blocks access to about:profiles.
100
101 **Compatibility:** Firefox 60, Firefox ESR 60\
102 **CCK2 Equivalent:** `disableAboutProfiles`\
103 **Preferences Affected:** N/A
104
105 #### Windows
106 | Type | Registry Location |
107 | ---- | ----------------- |
108 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\BlockAboutProfiles` |
109
110 #### macOS
111 ```
112 <dict>
113 <key>BlockAboutProfiles</key>
114 <true/> | <false/>
115 </dict>
116 ```
117 #### JSON
118 ```
119 {
120 "policies": {
121 "BlockAboutProfiles": true | false
122 }
123 }
124 ```
125 ### BlockAboutSupport
126 A Boolean value that blocks access to about:support.
127
128 **Compatibility:** Firefox 60, Firefox ESR 60\
129 **CCK2 Equivalent:** `disableAboutSupport`\
130 **Preferences Affected:** N/A
131
132 #### Windows
133 | Type | Registry Location |
134 | ---- | ----------------- |
135 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\BlockAboutSupport` |
136
137 #### macOS
138 ```
139 <dict>
140 <key>BlockAboutSupport</key>
141 <true/> | <false/>
142 </dict>
143 ```
144 #### JSON
145 ```
146 {
147 "policies": {
148 "BlockAboutSupport": true | false
149 }
150 }
151 ```
152 ### Bookmarks
153 This policy allows you to specify bookmarks. You can have any number of bookmarks, although only ten are specified in the ADMX file.
154 Placement can be specified as either toolbar or menu. If a folder is specified, it is automatically created and bookmarks with the
155 same folder name are grouped together.
156 ```
157 {
158 "policies": {
159 "Bookmarks": [
160 {
161 "Title": "Example",
162 "URL": "http://example.org",
163 "Favicon": "http://example.com/favicon.ico",
164 "Placement": ["toolbar", "menu"],
165 "Folder": "FolderName"
166 }
167 ]
168 }
169 }
170 ```
171 ### CaptivePortal
172 A Boolean value that enables or disables captive portal support by setting and locking the preference `network.captive-portal-service.enabled`.
173
174 **Compatibility:** Firefox 67, Firefox ESR 60.7\
175 **CCK2 Equivalent:** N/A\
176 **Preferences Affected:** `network.captive-portal-service.enabled`
177
178 #### Windows
179 | Type | Registry Location |
180 | ---- | ----------------- |
181 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\CaptivePortal` |
182
183 #### macOS
184 ```
185 <dict>
186 <key>CaptivePortal</key>
187 <true/> | <false/>
188 </dict>
189 ```
190 #### JSON
191 ```
192 {
193 "policies": {
194 "CaptivePortal": true | false
195 }
196 }
197 ```
198 ### Certificates
199 This policy can be used to install certificates or to read certificates from the system certificate store on Mac and Windows.
200
201 The ImportEnterpriseRoots key will cause Firefox to import 3rd party certificates that have been added by a user administrator from the system certificate store.
202 It does not import all certificates. These certificates will not display in the Firefox certificates manager.
203
204 The Install Certificates key by default will search for certificates in the locations listed below.
205 Starting in Firefox 65 you can specify a fully qualified path including UNC. (See cert3.der and cert4.pem, in example).
206
207 **Be advised if you wish to load a certificate from a UNC path you must use double backslashes.**
208 Example: \\\\SERVER\\CERTS\\CERT5.PEM
209
210
211 If Firefox does not find something at your fully qualified path, it will search the default directories.
212
213 Certificates can be located in the following locations:
214 - Windows
215 - %USERPROFILE%\AppData\Local\Mozilla\Certificates
216 - %USERPROFILE%\AppData\Roaming\Mozilla\Certificates
217 - macOS
218 - /Library/Application Support/Mozilla/Certificates
219 - ~/Library/Application Support/Mozilla/Certificates
220 - Linux
221 - /usr/lib/mozilla/certificates
222 - /usr/lib64/mozilla/certificates
223 - ~/.mozilla/certificates
224
225
226 ```
227 {
228 "policies": {
229 "Certificates": {
230 "ImportEnterpriseRoots": true,
231 "Install": ["cert1.der", "cert2.pem", "%SYSTEMDRIVE%\\Company\\cert3.der", "/Library/Company/cert4.pem", "\\\\server\\certs\\cert.pem"]
232 }
233 }
234 }
235 ```
236 ### Cookies
237 This policy controls various settings related to cookies.
238 ```
239 {
240 "policies": {
241 "Cookies": {
242 "Allow": ["http://example.org/"], /* Domains where cookies are always allowed */
243 "Block": ["http://example.edu/"], /* Domains where cookies are always blocked */
244 "Default": [true|false], /* This sets the default value for "Accept cookies from websites" */
245 "AcceptThirdParty": ["always", "never", "from-visited"], /* This sets the default value for "Accept third-party cookies" */
246 "ExpireAtSessionEnd": [true|false], /* This determines when cookies expire */
247 "RejectTracker": [true|false], /* Only reject trackers */
248 "Locked": [true|false] /* If this is true, cookies preferences can't be changed */
249 }
250 }
251 }
252 ```
253 ### DNSOverHTTPS
254 This policy configures DNS over HTTPS.
255 ```
256 {
257 "policies": {
258 "DNSOverHTTPS": {
259 "Enabled": [true|false],
260 "ProviderURL": "URL_TO_ALTERNATE_PROVIDER",
261 "Locked": [true|false]
262 }
263 }
264 }
265 ```
266 ### DisableSetDesktopBackground
267 This policy removes the "Set As Desktop Background..." menuitem when right clicking on an image.
268
269 **Compatibility:** Firefox 60, Firefox ESR 60\
270 **CCK2 Equivalent:** `removeSetDesktopBackground`\
271 **Preferences Affected:** `devtools.policy.disabled`
272
273 #### Windows
274 | Type | Registry Location |
275 | ---- | ----------------- |
276 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\DisableSetDesktopBackground` |
277
278 #### macOS
279 ```
280 <dict>
281 <key>DisableSetDesktopBackground</key>
282 <true/> | <false/>
283 </dict>
284 ```
285 #### JSON
286 ```
287 {
288 "policies": {
289 "DisableSetDesktopBackground": true | false
290 }
291 }
292 ```
293 ### DisableMasterPasswordCreation
294 If this policy is set to true, the master password functionality is removed.
295
296 **Compatibility:** Firefox 60, Firefox ESR 60\
297 **CCK2 Equivalent:** `noMasterPassword`\
298 **Preferences Affected:** N/A
299
300 #### Windows
301 | Type | Registry Location |
302 | ---- | ----------------- |
303 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\DisableMasterPasswordCreation` |
304
305 #### macOS
306 ```
307 <dict>
308 <key>DisableMasterPasswordCreation</key>
309 <true/> | <false/>
310 </dict>
311 ```
312 #### JSON
313 ```
314 {
315 "policies": {
316 "DisableMasterPasswordCreation": true | false
317 }
318 }
319 ```
320 ### DisableAppUpdate
321 This policy turns off application updates.
322
323 **Compatibility:** Firefox 60, Firefox ESR 60\
324 **CCK2 Equivalent:** `disableFirefoxUpdates`\
325 **Preferences Affected:** N/A
326
327 #### Windows
328 | Type | Registry Location |
329 | ---- | ----------------- |
330 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\DisableAppUpdate` |
331
332 #### macOS
333 ```
334 <dict>
335 <key>DisableAppUpdate</key>
336 <true/> | <false/>
337 </dict>
338 ```
339 #### JSON
340 ```
341 {
342 "policies": {
343 "DisableAppUpdate": true | false
344 }
345 }
346 ```
347 ### DisableBuiltinPDFViewer
348 This policy disables the built in PDF viewer. PDF files are downloaded and sent externally.
349
350 **Compatibility:** Firefox 60, Firefox ESR 60\
351 **CCK2 Equivalent:** `disablePDFjs`\
352 **Preferences Affected:** `pdfjs.disabled`
353
354 #### Windows
355 | Type | Registry Location |
356 | ---- | ----------------- |
357 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\DisableBuiltinPDFViewer` |
358
359 #### macOS
360 ```
361 <dict>
362 <key>DisableBuiltinPDFViewer</key>
363 <true/> | <false/>
364 </dict>
365 ```
366 #### JSON
367 ```
368 {
369 "policies": {
370 "DisableBuiltinPDFViewer": true | false
371 }
372 }
373 ```
374 ### DisableDeveloperTools
375 This policy removes access to all developer tools.
376
377 **Compatibility:** Firefox 60, Firefox ESR 60\
378 **CCK2 Equivalent:** `removeDeveloperTools`\
379 **Preferences Affected:** `devtools.policy.disabled`
380
381 #### Windows
382 | Type | Registry Location |
383 | ---- | ----------------- |
384 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\DisableDeveloperTools` |
385
386 #### macOS
387 ```
388 <dict>
389 <key>DisableDeveloperTools</key>
390 <true/> | <false/>
391 </dict>
392 ```
393 #### JSON
394 ```
395 {
396 "policies": {
397 "DisableDeveloperTools": true | false
398 }
399 }
400 ```
401 ### DisableFeedbackCommands
402 This policy disables the menus for reporting sites (Submit Feedback, Report Deceptive Site).
403
404 **Compatibility:** Firefox 60, Firefox ESR 60\
405 **CCK2 Equivalent:** N/A\
406 **Preferences Affected:** N/A
407
408 #### Windows
409 | Type | Registry Location |
410 | ---- | ----------------- |
411 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\DisableFeedbackCommands` |
412
413 #### macOS
414 ```
415 <dict>
416 <key>DisableFeedbackCommands</key>
417 <true/> | <false/>
418 </dict>
419 ```
420 #### JSON
421 ```
422 {
423 "policies": {
424 "DisableFeedbackCommands": true | false
425 }
426 }
427 ```
428 ### DisableFirefoxScreenshots
429 This policy removes access to Firefox Screenshots.
430
431 **Compatibility:** Firefox 60, Firefox ESR 60\
432 **CCK2 Equivalent:** N/A\
433 **Preferences Affected:** `extensions.screenshots.disabled`
434
435 #### Windows
436 | Type | Registry Location |
437 | ---- | ----------------- |
438 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\DisableFirefoxScreenshots` |
439
440 #### macOS
441 ```
442 <dict>
443 <key>DisableFirefoxScreenshots</key>
444 <true/> | <false/>
445 </dict>
446 ```
447 #### JSON
448 ```
449 {
450 "policies": {
451 "DisableFirefoxScreenshots": true | false
452 }
453 }
454 ```
455 ### DisableFirefoxAccounts
456 A boolean possibly that disables sync.
457
458 **Compatibility:** Firefox 60, Firefox ESR 60\
459 **CCK2 Equivalent:** `disableSync`\
460 **Preferences Affected:** `identity.fxaccounts.enabled`
461
462 #### Windows
463 | Type | Registry Location |
464 | ---- | ----------------- |
465 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\DisableFirefoxAccounts` |
466
467 #### macOS
468 ```
469 <dict>
470 <key>DisableFirefoxAccounts</key>
471 <true/> | <false/>
472 </dict>
473 ```
474 #### JSON
475 ```
476 {
477 "policies": {
478 "DisableFirefoxAccounts": true | false
479 }
480 }
481 ```
482 ### DisableFirefoxStudies
483 This policy disables Firefox studies (Shield).
484
485 **Compatibility:** Firefox 60, Firefox ESR 60\
486 **CCK2 Equivalent:** `disableForget`\
487 **Preferences Affected:** N/A
488
489 #### Windows
490 | Type | Registry Location |
491 | ---- | ----------------- |
492 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\DisableFirefoxStudies` |
493
494 #### macOS
495 ```
496 <dict>
497 <key>DisableFirefoxStudies</key>
498 <true/> | <false/>
499 </dict>
500 ```
501 #### JSON
502 ```
503 {
504 "policies": {
505 "DisableFirefoxStudies": true | false
506 }
507 }
508 ```
509 ### DisableForgetButton
510 This policy turns disables the "Forget" button.
511
512 **Compatibility:** Firefox 60, Firefox ESR 60\
513 **CCK2 Equivalent:** `disableForget`\
514 **Preferences Affected:** N/A
515
516 #### Windows
517 | Type | Registry Location |
518 | ---- | ----------------- |
519 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\DisableForgetButton` |
520
521 #### macOS
522 ```
523 <dict>
524 <key>DisableForgetButton</key>
525 <true/> | <false/>
526 </dict>
527 ```
528 #### JSON
529 ```
530 {
531 "policies": {
532 "DisableForgetButton": true | false
533 }
534 }
535 ```
536 ### DisableFormHistory
537 This policy turns off saving information on web forms and the search bar.
538
539 **Compatibility:** Firefox 60, Firefox ESR 60\
540 **CCK2 Equivalent:** `disableFormFill`\
541 **Preferences Affected:** ` browser.formfill.enable`
542
543 #### Windows
544 | Type | Registry Location |
545 | ---- | ----------------- |
546 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\DisableFormHistory` |
547
548 #### macOS
549 ```
550 <dict>
551 <key>DisableFormHistory</key>
552 <true/> | <false/>
553 </dict>
554 ```
555 #### JSON
556 ```
557 {
558 "policies": {
559 "DisableFormHistory": true | false
560 }
561 }
562 ```
563 ### DisablePocket
564 This policy removes Pocket in the Firefox UI. It does not remove it from the new tab page.
565
566 **Compatibility:** Firefox 60, Firefox ESR 60\
567 **CCK2 Equivalent:** `disablePocket`\
568 **Preferences Affected:** `extensions.pocket.enabled`
569
570 #### Windows
571 | Type | Registry Location |
572 | ---- | ----------------- |
573 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\DisablePocket` |
574
575 #### macOS
576 ```
577 <dict>
578 <key>DisablePocket</key>
579 <true/> | <false/>
580 </dict>
581 ```
582 #### JSON
583 ```
584 {
585 "policies": {
586 "DisablePocket": true | false
587 }
588 }
589 ```
590 ### DisablePrivateBrowsing
591 This policy removes access to private browsing.
592
593 **Compatibility:** Firefox 60, Firefox ESR 60\
594 **CCK2 Equivalent:** `disablePrivateBrowsing`\
595 **Preferences Affected:** N/A
596
597 #### Windows
598 | Type | Registry Location |
599 | ---- | ----------------- |
600 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\DisablePrivateBrowsing` |
601
602 #### macOS
603 ```
604 <dict>
605 <key>DisablePrivateBrowsing</key>
606 <true/> | <false/>
607 </dict>
608 ```
609 #### JSON
610 ```
611 {
612 "policies": {
613 "DisablePrivateBrowsing": true | false
614 }
615 }
616 ```
617 ### DisableProfileImport
618 This policy disables the "Import data from another browser" option in the bookmarks window.
619
620 **Compatibility:** Firefox 60, Firefox ESR 60\
621 **CCK2 Equivalent:** N/A\
622 **Preferences Affected:** N/A
623
624 #### Windows
625 | Type | Registry Location |
626 | ---- | ----------------- |
627 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\DisableProfileImport` |
628
629 #### macOS
630 ```
631 <dict>
632 <key>DisableProfileImport</key>
633 <true/> | <false/>
634 </dict>
635 ```
636 #### JSON
637 ```
638 {
639 "policies": {
640 "DisableProfileImport": true | false
641 }
642 }
643 ```
644 ### DisableProfileRefresh
645 This policy disables the Refresh Firefox button on about:support and support.mozilla.org, as well as the prompt that displays offering to refresh Firefox when you haven't used it in a while.
646
647 **Compatibility:** Firefox 60, Firefox ESR 60\
648 **CCK2 Equivalent:** `disableResetFirefox`\
649 **Preferences Affected:** `browser.disableResetPrompt`
650
651 #### Windows
652 | Type | Registry Location |
653 | ---- | ----------------- |
654 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\DisableProfileRefresh` |
655
656 #### macOS
657 ```
658 <dict>
659 <key>DisableProfileRefresh</key>
660 <true/> | <false/>
661 </dict>
662 ```
663 #### JSON
664 ```
665 {
666 "policies": {
667 "DisableProfileRefresh": true | false
668 }
669 }
670 ```
671 ### DisableSafeMode
672 This boolean value disables safe mode.
673
674 **Compatibility:** Firefox 60, Firefox ESR 60 (Windows, macOS)\
675 **CCK2 Equivalent:** `disableSafeMode`\
676 **Preferences Affected:** N/A
677
678 #### Windows
679 | Type | Registry Location |
680 | ---- | ----------------- |
681 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\DisableSafeMode` |
682
683 #### macOS
684 ```
685 <dict>
686 <key>DisableSafeMode</key>
687 <true/> | <false/>
688 </dict>
689 ```
690 #### JSON
691 ```
692 {
693 "policies": {
694 "DisableSafeMode": true | false
695 }
696 }
697 ```
698 ### DisableSecurityBypass
699 This policy prevents the user from bypassing security in certain cases.
700 ```
701 {
702 "policies": {
703 "DisableSecurityBypass": {
704 "InvalidCertificate": [true|false], /* Prevents adding an exception when an invalid certificate is shown */
705 "SafeBrowsing": [true|false] /* Prevents selecting "ignore the risk" and visiting a harmful site anyway */
706 }
707 }
708 }
709 ```
710 ### DisableSystemAddonUpdate
711 This boolean value prevents system add-ons from being updated or installed.
712
713 **Compatibility:** Firefox 60, Firefox ESR 60\
714 **CCK2 Equivalent:** N/A\
715 **Preferences Affected:** N/A
716
717 #### Windows
718 | Type | Registry Location |
719 | ---- | ----------------- |
720 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\DisableSystemAddonUpdate` |
721
722 #### macOS
723 ```
724 <dict>
725 <key>DisableSystemAddonUpdate</key>
726 <true/> | <false/>
727 </dict>
728 ```
729 #### JSON
730 ```
731 {
732 "policies": {
733 "DisableSystemAddonUpdate": true | false
734 }
735 }
736 ```
737 ### DisableTelemetry
738 This boolean value prevents the upload of telemetry data.
739
740 Mozilla recommends that you do not disable telemetry. Information collected through telemetry helps us build a better product for businesses like yours.
741
742 **Compatibility:** Firefox 60, Firefox ESR 60\
743 **CCK2 Equivalent:** `disableTelemetry`\
744 **Preferences Affected:** `datareporting.healthreport.uploadEnabled,datareporting.policy.dataSubmissionEnabled`
745
746 #### Windows
747 | Type | Registry Location |
748 | ---- | ----------------- |
749 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\DisableTelemetry` |
750
751 #### macOS
752 ```
753 <dict>
754 <key>DisableTelemetry</key>
755 <true/> | <false/>
756 </dict>
757 ```
758 #### JSON
759 ```
760 {
761 "policies": {
762 "DisableTelemetry": true | false
763 }
764 }
765 ```
766 ### DisplayBookmarksToolbar
767 This boolean value turns on the bookmarks toolbar by default. A user can still turn it off, and it will stay off.
768
769 **Compatibility:** Firefox 60, Firefox ESR 60\
770 **CCK2 Equivalent:** `displayBookmarksToolbar`\
771 **Preferences Affected:** N/A
772
773 #### Windows
774 | Type | Registry Location |
775 | ---- | ----------------- |
776 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\DisplayBookmarksToolbar` |
777
778 #### macOS
779 ```
780 <dict>
781 <key>DisplayBookmarksToolbar</key>
782 <true/> | <false/>
783 </dict>
784 ```
785 #### JSON
786 ```
787 {
788 "policies": {
789 "DisplayBookmarksToolbar": true | false
790 }
791 }
792 ```
793 ### DontCheckDefaultBrowser
794 This boolean value turns on the menubar by default. A user can still turn it off, and it will stay off.
795
796 **Compatibility:** Firefox 60, Firefox ESR 60 (Windows, some Linux)\
797 **CCK2 Equivalent:** `displayMenuBar`\
798 **Preferences Affected:** N/~
799
800 #### Windows
801 | Type | Registry Location |
802 | ---- | ----------------- |
803 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\DisplayMenuBar` |
804
805 #### macOS
806 ```
807 <dict>
808 <key>DisplayMenuBar</key>
809 <true/> | <false/>
810 </dict>
811 ```
812 #### JSON
813 ```
814 {
815 "policies": {
816 "DisplayMenuBar": true | false
817 }
818 }
819 ```
820 ### DontCheckDefaultBrowser
821 This boolean value stops Firefox from checking if it is the default browser at startup.
822
823 **Compatibility:** Firefox 60, Firefox ESR 60\
824 **CCK2 Equivalent:** `dontCheckDefaultBrowser`\
825 **Preferences Affected:** `browser.shell.checkDefaultBrowser`
826
827 #### Windows
828 | Type | Registry Location |
829 | ---- | ----------------- |
830 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\DontCheckDefaultBrowser` |
831
832 #### macOS
833 ```
834 <dict>
835 <key>DontCheckDefaultBrowser</key>
836 <true/> | <false/>
837 </dict>
838 ```
839 #### JSON
840 ```
841 {
842 "policies": {
843 "DontCheckDefaultBrowser": true | false
844 }
845 }
846 ```
847 ### EnableTrackingProtection
848 This policy affects tracking protection.
849
850 If this policy is not configured, tracking protection is not enabled by default in the browser, but it is enabled by default in private browsing and the user can change it.
851
852 If Value is set to false, tracking protection is disabled and locked in both the regular browser and private browsing.
853
854 If Value is set to true, tracking protection is enabled by default in both the regular browser and private browsing.
855
856 You can choose to set the Locked value if you want to prevent the user from changing it.
857 ```
858 {
859 "policies": {
860 "EnableTrackingProtection": {
861 "Value": [true, false],
862 "Locked": [true, false]
863 }
864 }
865 ```
866 ### Extensions
867 This policy controls the installation, uninstallation and locking of extensions. Locked extensions cannot be disabled or uninstalled.
868 For Install, you specify a list of URLs or paths.
869 For Uninstall and Locked, you specify extension IDs.
870 ```
871 {
872 "policies": {
873 "Extensions": {
874 "Install": ["https://addons.mozilla.org/firefox/downloads/somefile.xpi", "//path/to/xpi"],
875 "Uninstall": ["addon_id@mozilla.org"],
876 "Locked": ["addon_id@mozilla.org"]
877 }
878 }
879 }
880 ```
881 ### ExtensionUpdate
882 This boolean value determines extension update are enabled.
883
884 **Compatibility:** Firefox 60, Firefox ESR 60\
885 **CCK2 Equivalent:** N/A\
886 **Preferences Affected:** `extensions.update.enabled`
887
888 #### Windows
889 | Type | Registry Location |
890 | ---- | ----------------- |
891 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\ExtensionUpdate` |
892
893 #### macOS
894 ```
895 <dict>
896 <key>ExtensionUpdate</key>
897 <true/> | <false/>
898 </dict>
899 ```
900 #### JSON
901 ```
902 {
903 "policies": {
904 "ExtensionUpdate": true | false
905 }
906 }
907 ```
908 ### HardwareAcceleration
909 This boolean value determines if hardware acceleration is enabled.
910
911 **Compatibility:** Firefox 60, Firefox ESR 60\
912 **CCK2 Equivalent:** N/A\
913 **Preferences Affected:** `layers.acceleration.disabled`
914
915 #### Windows
916 | Type | Registry Location |
917 | ---- | ----------------- |
918 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\HardwareAcceleration` |
919
920 #### macOS
921 ```
922 <dict>
923 <key>HardwareAcceleration</key>
924 <true/> | <false/>
925 </dict>
926 ```
927 #### JSON
928 ```
929 {
930 "policies": {
931 "HardwareAcceleration": true | false
932 }
933 }
934 ```
935 ### NoDefaultBookmarks
936 A Boolean value that prevents the default bookmarks and Smart Bookmarks (Most Visited, Recent Tags) from being created. Note: this policy is only effective if used before the first run of the profile. Also, the smart bookmarks were removed in Firefox 63.
937
938 **Compatibility:** Firefox 60, Firefox ESR 60\
939 **CCK2 Equivalent:** `removeDefaultBookmarks`\
940 **Preferences Affected:** N/A
941
942 #### Windows
943 | Type | Registry Location |
944 | ---- | ----------------- |
945 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\NoDefaultBookmarks` |
946
947 #### macOS
948 ```
949 <dict>
950 <key>NoDefaultBookmarks</key>
951 <true/> | <false/>
952 </dict>
953 ```
954 #### JSON
955 ```
956 {
957 "policies": {
958 "NoDefaultBookmarks": true | false
959 }
960 }
961 ```
962 ### OfferToSaveLogins
963 This boolean value determines whether or not Firefox offers to save passwords.
964
965 **Compatibility:** Firefox 60, Firefox ESR 60\
966 **CCK2 Equivalent:** `dontRememberPasswords`\
967 **Preferences Affected:** `signon.rememberSignons`
968
969 #### Windows
970 | Type | Registry Location |
971 | ---- | ----------------- |
972 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\OfferToSaveLogins` |
973
974 #### macOS
975 ```
976 <dict>
977 <key>OfferToSaveLogins</key>
978 <true/> | <false/>
979 </dict>
980 ```
981 #### JSON
982 ```
983 {
984 "policies": {
985 "OfferToSaveLogins": true | false
986 }
987 }
988 ```
989 ### Homepage
990 This policy sets the default homepage value and the default start page. It can also be used to lock the homepage or add additional homepages.
991 ```
992 {
993 "policies": {
994 "Homepage": {
995 "URL": "http://example.com/",
996 "Locked": true,
997 "Additional": ["http://example.org/",
998 "http://example.edu/"],
999 "StartPage": ["none", "homepage", "previous-session"]
1000 }
1001 }
1002 }
1003 ```
1004 ### PopupBlocking
1005 This policy sets domains for which pop-up windows are allowed. It also sets the default pop-up policy.
1006 ```
1007 {
1008 "policies": {
1009 "PopupBlocking": {
1010 "Allow": ["http://example.org/",
1011 "http://example.edu/"],
1012 "Default": [true|false], /* If this is set to false, pop-up window are enabled by default. */
1013 "Locked": [true|false]
1014 }
1015 }
1016 }
1017 ```
1018 ### InstallAddonsPermission
1019 This policy sets domains that can install extensions, as well as the default behavior.
1020 ```
1021 {
1022 "policies": {
1023 "InstallAddonsPermission": {
1024 "Allow": ["http://example.org/",
1025 "http://example.edu/"],
1026 "Default": [true|false] /* If this is set to false, add-ons cannot be installed by the user */
1027 }
1028 }
1029 }
1030 ```
1031 ### FlashPlugin
1032 This policy sets the behavior of Flash on the specified domains, as well as the default behavior.
1033 ```
1034 {
1035 "policies": {
1036 "FlashPlugin": {
1037 "Allow": ["http://example.org/"], /* Sites on the allow list do not override Flash being completely disabled */
1038 "Block": ["http://example.edu/"],
1039 "Default": [true|false], /* If this is set to true, Flash is always enabled. If it is set to false, Flash is never enabled */
1040 "Locked": [true|false]
1041 }
1042 }
1043 }
1044 ```
1045 ### NetworkPrediction
1046 This policy enables or disables network prediction (DNS prefetching) by setting and locking the preferences `network.dns.disablePrefetch` and `network.dns.disablePrefetchFromHTTPS`.
1047 ```
1048 {
1049 "policies": {
1050 "NetworkPrediction": [true|false]
1051 }
1052 ```
1053 ### OverrideFirstRunPage
1054 This policy allows you to override the first run page. If you leave the URL blank, the first run page will not be displayed.
1055 ```
1056 {
1057 "policies": {
1058 "OverrideFirstRunPage": "http://example.org"
1059 }
1060 }
1061 ```
1062 ### OverridePostUpdatePage
1063 This policy allows you to override the upgrade page. If you leave the URL blank, the upgrade page will not be displayed.
1064 ```
1065 {
1066 "policies": {
1067 "OverridePostUpdatePage": "http://example.org"
1068 }
1069 }
1070 ```
1071 ### Permissions
1072 This policy allows you to change the permissions associated with camera, microphone, location, and notifications
1073 ```
1074 {
1075 "policies": {
1076 "Permissions": {
1077 "Camera": {
1078 "Allow": ["http://example.org/"], /* Origins where camera access is allowed by default */
1079 "Block": ["http://example.org/"], /* Origins where camera access is blocked by default */
1080 "BlockNewRequests": [true|false], /* Block new requests to access the camera */
1081 "Locked": [true|false] /* Don't allow the user to change the camera preferences */
1082 },
1083 "Microphone": {
1084 "Allow": ["http://example.org/"], /* Origins where microphone access is allowed by default */
1085 "Block": ["http://example.org/"], /* Origins where microphone access is blocked by default */
1086 "BlockNewRequests": [true|false], /* Block new requests to access the microphone */
1087 "Locked": [true|false] /* Don't allow the user to change the microphone preferences */
1088 },
1089 "Location": {
1090 "Allow": ["http://example.org/"], /* Origins where location access is allowed by default */
1091 "Block": ["http://example.org/"], /* Origins where location access is blocked by default */
1092 "BlockNewRequests": [true|false], /* Block new requests to access location */
1093 "Locked": [true|false] /* Don't allow the user to change the location preferences */
1094 },
1095 "Notifications": {
1096 "Allow": ["http://example.org/"], /* Origins where sending notifications is allowed by default */
1097 "Block": ["http://example.org/"], /* Origins where sending notifications is blocked by default */
1098 "BlockNewRequests": [true|false], /* Block new requests to send notifications */
1099 "Locked": [true|false] /* Don't allow the user to change the notification preferences */
1100 }
1101 }
1102 }
1103 }
1104 ```
1105 ### Proxy
1106 This policy allows you to specify proxy settings. These settings correspond to the connection settings in Firefox preferences.
1107 To specify ports, append them to the hostnames with a colon (:). If Locked is set to true, the values can't be changed by the user.
1108 ```
1109 {
1110 "policies": {
1111 "Proxy": {
1112 "Mode": ["none", "system", "manual", "autoDetect", "autoConfig"],
1113 "Locked": [true, false],
1114 "HTTPProxy": "hostname",
1115 "UseHTTPProxyForAllProtocols": [true, false],
1116 "SSLProxy": "hostname",
1117 "FTPProxy": "hostname",
1118 "SOCKSProxy": "hostname",
1119 "SOCKSVersion": [4, 5],
1120 "Passthrough": "List of passthrough addresses/domains",
1121 "AutoConfigURL": "URL_TO_AUTOCONFIG",
1122 "AutoLogin": [true, false],
1123 "UseProxyForDNS": [true, false]
1124 }
1125 }
1126 }
1127 ```
1128 **Compatibility:** Firefox ESR 60\
1129 **CCK2 Equivalent:** `networkProxy*`\
1130 **Preferences Affected:** N/A
1131
1132 ### Keys
1133 | Key | Type | Default | Description |
1134 | --- | ---- | ------- | ----------- |
1135 | `Mode` | String | _required_ | The name of the search engine. |
1136 | `Locked` | Boolean | _required_ | Search URL with {searchTerms} to substitute for the search term. |
1137 | `HTTPProxy` | String | GET | GET or POST |
1138 | `UseHTTPProxyForAllProtocols` | Boolean | — | URL for the icon to use. |
1139 | `SSLProxy` | String | — | Keyword to use for the engine. |
1140 | `FTPProxy` | String | —| Description of the search engine. |
1141 | `SOCKSProxy` | String | — | Search suggestions URL with {searchTerms} to substitute for the search term. |
1142 | `SOCKSVersion` | String | — | Search suggestions URL with {searchTerms} to substitute for the search term. |
1143 | `Passthrough` | String | — | Search suggestions URL with {searchTerms} to substitute for the search term. |
1144 | `AutoConfigURL` | String | — | Search suggestions URL with {searchTerms} to substitute for the search term. |
1145 | `AutoLogin` | Boolean | — | Search suggestions URL with {searchTerms} to substitute for the search term. |
1146 | `UseProxyForDNS` | Boolean | — | Search suggestions URL with {searchTerms} to substitute for the search term. |
1147
1148 #### Windows
1149 | Type | Registry Location |
1150 | ---- | ----------------- |
1151 | `Windows:REG_SZ` | `Software\Policies\Mozilla\Firefox\SearchEngines\Proxy\Mode` |
1152 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\SearchEngines\Proxy\Locked` |
1153 | `Windows:REG_SZ` | `Software\Policies\Mozilla\Firefox\SearchEngines\Proxy\HTTPProxy` |
1154 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\SearchEngines\Proxy\UseHTTPProxyForAllProtocols` |
1155 | `Windows:REG_SZ` | `Software\Policies\Mozilla\Firefox\SearchEngines\Proxy\SSLProxy` |
1156 | `Windows:REG_SZ` | `Software\Policies\Mozilla\Firefox\SearchEngines\Proxy\FTPProxy` |
1157 | `Windows:REG_SZ` | `Software\Policies\Mozilla\Firefox\SearchEngines\Proxy\SOCKSProxy` |
1158 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\SearchEngines\Proxy\SOCKSVersion` |
1159 | `Windows:REG_SZ` | `Software\Policies\Mozilla\Firefox\SearchEngines\Proxy\Passthrough` |
1160 | `Windows:REG_SZ` | `Software\Policies\Mozilla\Firefox\SearchEngines\Proxy\AutoConfigURL` |
1161 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\SearchEngines\Proxy\AutoLogin` |
1162 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\SearchEngines\Proxy\UseProxyForDNS` |
1163
1164 #### macOS
1165 ```
1166 <dict>
1167 <key>Search</key>
1168 <dict>
1169 <key>Proxy</key>
1170 <array>
1171 <dict>
1172 <key>Mode</key>
1173 <string>none | system | manual | autoDetect| autoConfig</string>
1174 <key>Locked</key>
1175 <true> | </false>
1176 <key>HTTPProxy</key>
1177 <string>https://httpproxy.example.com</string>
1178 <key>UseHTTPProxyForAllProtocols</key>
1179 <true> | </false>
1180 <key>SSLProxy</key>
1181 <string>https://sslproxy.example.com</string>
1182 <key>FTPProxy</key>
1183 <string>https://ftpproxy.example.com</string>
1184 <key>SOCKSProxy</key>
1185 <string>https://socksproxy.example.com</string>
1186 </dict>
1187 <array>
1188 </dict>
1189 </dict>
1190 ```
1191 ### JSON
1192 ```
1193 {
1194 "policies": {
1195 "SearchEngines": {
1196 "Add": [
1197 {
1198 "Name": "",
1199 "URLTemplate": "URL including {searchTerms} to substitute for the terms",
1200 "Method": ["GET", "POST"],
1201 "IconURL": "URL to icon",
1202 "Alias": "Alias that can be used to access the engine",
1203 "Description": "Description",
1204 "SuggestURLTemplate": "URL for suggestions using {searchTerms}"
1205 }
1206 ]
1207 }
1208 }
1209 }
1210 ```
1211 ### RequestedLocales
1212 This policy sets the list of requested locales for the application in order of preference. It will cause the corresponding language pack to become active.
1213 ```
1214 {
1215 "policies": {
1216 "RequestedLocales": ["de", "en-US"]
1217 }
1218 }
1219 ```
1220 ### SanitizeOnShutdown
1221 A boolean value that tells Firefox to clear all data on shutdown, including Browsing & Download History, Cookies, Active Logins, Cache, Form & Search History, Site Preferences and Offline Website Data.
1222
1223 **Compatibility:** Firefox 60, Firefox ESR 60\
1224 **CCK2 Equivalent:** N/A\
1225 **Preferences Affected:** `privacy.sanitize.sanitizeOnShutdown,privacy.clearOnShutdown.cache,privacy.clearOnShutdown.cookies,privacy.clearOnShutdown.downloads,privacy.clearOnShutdown.formdata,privacy.clearOnShutdown.history,privacy.clearOnShutdown.sessions,privacy.clearOnShutdown.siteSettings,privacy.clearOnShutdown.offlineApps`
1226 #### Windows
1227 | Type | Registry Location |
1228 | ---- | ----------------- |
1229 | `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\SanitizeOnShutdown` |
1230
1231 #### macOS
1232 ```
1233 <dict>
1234 <key>SanitizeOnShutdown</key>
1235 <true/> | <false/>
1236 </dict>
1237 ```
1238
1239 #### JSON
1240 ```
1241 {
1242 "policies": {
1243 "SanitizeOnShutdown": true | false
1244 }
1245 }
1246 ```
1247 ### SanitizeOnShutdown
1248 If this policy is set to true, all data is cleared when Firefox is closed. This includes Browsing & Download History, Cookies, Active Logins, Cache, Form & Search History, Site Preferences and Offline Website Data.
1249 ```
1250 {
1251 "policies": {
1252 "SanitizeOnShutdown": [true|false]
1253 }
1254 }
1255 ```
1256 ### SearchBar
1257 A String value that sets whether or not the search bar is displayed.
1258
1259 **Compatibility:** Firefox 60, Firefox ESR 60\
1260 **CCK2 Equivalent:** `showSearchBar`\
1261 **Preferences Affected:** N/A
1262
1263 #### Windows
1264 | Type | Registry Location |
1265 | ---- | ----------------- |
1266 | `Windows:REG_SZ` | `Software\Policies\Mozilla\Firefox\SearchBar` |
1267
1268 #### macOS
1269 ```
1270 <dict>
1271 <key>SearchBar</key>
1272 <string>unified | separate</string>
1273 </dict>
1274 ```
1275
1276 #### JSON
1277 ```
1278 {
1279 "policies": {
1280 "SearchBar": "unified" | "separate"
1281 }
1282 }
1283 ```
1284 ### WebsiteFilter
1285 This policy blocks websites from being visited. The parameters take an array of Match Patterns, as documented in https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Match_patterns. Only http/https addresses are supported at the moment. The arrays are limited to 1000 entries each.
1286 ```
1287 {
1288 "policies": {
1289 "WebsiteFilter": {
1290 "Block": ["<all_urls>"],
1291 "Exceptions": ["http://example.org/*"]
1292 }
1293 }
1294 }
1295 ```
1296 ### Search Engines (This policy is only available on the ESR.)
1297 This policy allows you to add new search engines, remove or hide search engines, as well as set the default and prevent the install of search engines from web pages. Only Name and URLTemplate is required.
1298 ```
1299 {
1300 "policies": {
1301 "SearchEngines": {
1302 "Default": "Name of engine",
1303 "PreventInstalls": [true|false],
1304 "Remove": ["Twitter", "Wikipedia (en)"]
1305 }
1306 }
1307 }
1308 ```
1309 ### Search Engines
1310
1311 ### Search Engines | Add
1312
1313 This policy allows you to add up to five new search engines. This policy is only available on the ESR.
1314
1315 **Compatibility:** Firefox ESR 60\
1316 **CCK2 Equivalent:** `config.searchplugins`\
1317 **Preferences Affected:** N/A
1318
1319 ### Keys
1320 | Key | Type | Default | Description |
1321 | --- | ---- | ------- | ----------- |
1322 | `Name` | String | _required_ | The name of the search engine. |
1323 | `URLTemplate` | String | _required_ | Search URL with {searchTerms} to substitute for the search term. |
1324 | `Method` | String | GET | GET or POST |
1325 | `IconURL` | String | — | URL for the icon to use. |
1326 | `Alias` | String | — | Keyword to use for the engine. |
1327 | `Description` | String | —| Description of the search engine. |
1328 | `SuggestURLTemplate` | String | — | Search suggestions URL with {searchTerms} to substitute for the search term. |
1329
1330 #### Windows
1331 | Type | Registry Location |
1332 | ---- | ----------------- |
1333 | `Windows:REG_SZ` | `Software\Policies\Mozilla\Firefox\SearchEngines\Add\1\Name` |
1334 | `Windows:REG_SZ` | `Software\Policies\Mozilla\Firefox\SearchEngines\Add\1\URLTemplate` |
1335 | `Windows:REG_SZ` | `Software\Policies\Mozilla\Firefox\SearchEngines\Add\1\Method` |
1336 | `Windows:REG_SZ` | `Software\Policies\Mozilla\Firefox\SearchEngines\Add\1\IconURL` |
1337 | `Windows:REG_SZ` | `Software\Policies\Mozilla\Firefox\SearchEngines\Add\1\Alias` |
1338 | `Windows:REG_SZ` | `Software\Policies\Mozilla\Firefox\SearchEngines\Add\1\Description` |
1339 | `Windows:REG_SZ` | `Software\Policies\Mozilla\Firefox\SearchEngines\Add\1\SuggestURLTemplate` |
1340
1341 #### macOS
1342 ```
1343 <dict>
1344 <key>Search</key>
1345 <dict>
1346 <key>Add</key>
1347 <array>
1348 <dict>
1349 <key>Name</key>
1350 <string>Example1</string>
1351 <key>URLTemplate</key>
1352 <string>https://www.example.org</string>
1353 <key>Method</key>
1354 <string>https://www.example.org/favicon.ico</string>
1355 <key>IconURL</key>
1356 <string>toolbar</string>
1357 <key>Alias</key>
1358 <string>Example1Folder</string>
1359 <key>Description</key>
1360 <string>Example1Folder</string>
1361 <key>Alias</key>
1362 <string>SuggestURLTemplate</string>
1363 </dict>
1364 <array>
1365 </dict>
1366 </dict>
1367 ```
1368 ### JSON
1369 ```
1370 {
1371 "policies": {
1372 "SearchEngines": {
1373 "Add": [
1374 {
1375 "Name": "",
1376 "URLTemplate": "URL including {searchTerms} to substitute for the terms",
1377 "Method": ["GET", "POST"],
1378 "IconURL": "URL to icon",
1379 "Alias": "Alias that can be used to access the engine",
1380 "Description": "Description",
1381 "SuggestURLTemplate": "URL for suggestions using {searchTerms}"
1382 }
1383 ]
1384 }
1385 }
1386 }
1387 ```
1388 ### SecurityDevices
1389 A dictionary with the names and locations of PKCS #11 modules to be installed.
1390
1391 **Compatibility:** Firefox 64, Firefox ESR 60.4\
1392 **CCK2 Equivalent:** `certs.devices`\
1393 **Preferences Affected:** N/A
1394
1395 #### Windows
1396 | Type | Registry Location | Registry Value |
1397 | ---- | ----------------- | -------------- |
1398 | `Windows:REG_SZ` | `Software\Policies\Mozilla\Firefox\SecurityDevices\NAME_OF_DEVICE` | `PATH_TO_LIBRARY_FOR_DEVICE`
1399
1400 #### macOS
1401 ```
1402 <dict>
1403 <key>SecurityDevices</key>
1404 <dict>
1405 <key>NAME_OF_DEVICE</key>
1406 <string>PATH_TO_LIBRARY_FOR_DEVICE</string>
1407 </dict>
1408 </dict>
1409 ```
1410
1411 #### JSON
1412 ```
1413 {
1414 "policies": {
1415 "SecurityDevices": {
1416 "NAME_OF_DEVICE": "PATH_TO_LIBRARY_FOR_DEVICE"
1417 }
1418 }
1419 }
1420 ```
1421 ### SSLVersionMax
1422 A String value that sets and locks the maximum version of TLS
1423
1424 **Compatibility:** Firefox 66, Firefox ESR 60.6\
1425 **CCK2 Equivalent:** N/A\
1426 **Preferences Affected:** `security.tls.version.max`
1427
1428 #### Windows
1429 | Type | Registry Location |
1430 | ---- | ----------------- |
1431 | `Windows:REG_SZ` | `Software\Policies\Mozilla\Firefox\SSLVersionMax` |
1432
1433 #### macOS
1434 ```
1435 <dict>
1436 <key>SSLVersionMax</key>
1437 <string>tls1 | tls1.1 | tls1.2 | tls1.3</string>
1438 </dict>
1439 ```
1440
1441 #### JSON
1442 ```
1443 {
1444 "policies": {
1445 "SSLVersionMax": "tls1" | "tls1.1" | "tls1.2" | "tls1.3"
1446 }
1447 }
1448 ```
1449 ### SSLVersionMin
1450 A String value that sets and locks the minimum version of TLS
1451
1452 **Compatibility:** Firefox 66, Firefox ESR 60.6\
1453 **CCK2 Equivalent:** N/A\
1454 **Preferences Affected:** `security.tls.version.min`
1455
1456 #### Windows
1457 | Type | Registry Location |
1458 | ---- | ----------------- |
1459 | `Windows:REG_SZ` | `Software\Policies\Mozilla\Firefox\SSLVersionMin` |
1460
1461 #### macOS
1462 ```
1463 <dict>
1464 <key>SSLVersionMin</key>
1465 <string>tls1 | tls1.1 | tls1.2 | tls1.3</string>
1466 </dict>
1467 ```
1468
1469 #### JSON
1470 ```
1471 {
1472 "policies": {
1473 "SSLVersionMin": "tls1" | "tls1.1" | "tls1.2" | "tls1.3"
1474 }
1475 }
1476 ```

patrick-canterino.de