]> git.p6c8.net - policy-templates.git/blobdiff - README-new.md
Update README-new.md
[policy-templates.git] / README-new.md
index 34ffce1690a5a34c78912c72697f918259041fe2..43ddef585ad6724bfb9387e28e30b977e139c714 100644 (file)
@@ -96,11 +96,31 @@ same folder name are grouped together.
 }
 ```
 ### CaptivePortal
-This policy enables or disables captive portal support by setting and locking the preference `network.captive-portal-service.enabled`.
+A Boolean value that enables or disables captive portal support by setting and locking the preference `network.captive-portal-service.enabled`.
+
+**Compatibility:** Firefox 67, Firefox ESR 60.7\
+**CCK2 Equivalent:** N/A\
+**Preferences Affected:** `network.captive-portal-service.enabled`
+
+#### Windows
+| Type | Registry Location |
+| ---- | ----------------- |
+| `Windows:REG_DWORD` | `Software\Policies\Mozilla\Firefox\CaptivePortal` |
+
+#### macOS
+```
+<dict>
+  <key>CaptivePortal</key>
+  <true/> | <false/>
+</dict>
+```
+
+#### JSON
 ```
 {
   "policies": {
-    "CaptivePortal": [true|false]
+    "CaptivePortal": true | false
+  }
 }
 ```
 ### Certificates
@@ -656,22 +676,59 @@ This policy allows you to add PKCS #11 Modules
   }
 }
 ```
-### SSLVersionMin
-This policy allows you to set the minimum TLS version.
+### SSLVersionMax
+A String value that sets and locks the maximum version of TLS
+
+**Compatibility:** Firefox 67, Firefox ESR 60.7\
+**CCK2 Equivalent:** N/A
+**Preferences Affected:** `security.tls.version.max`
+
+#### Windows
+| Type | Registry Location |
+| ---- | ----------------- |
+| `Windows:REG_SZ` | `Software\Policies\Mozilla\Firefox\SSLVersionMax` |
+
+#### macOS
+```
+<dict>
+  <key>SSLVersionMax</key>
+  <string>tls1 | tls1.1 | tls1.2 | tls1.3<string>
+</dict>
+```
+
+#### JSON
 ```
 {
   "policies": {
-    "SSSLVersionMin": ["tls1", "tls1.1", "tls1.2",. "tls1.3"]
+    "SSLVersionMax": "tls1" | "tls1.1" | "tls1.2" | "tls1.3"
   }
 }
+```
+### SSLVersionMin
+A String value that sets and locks the minimum version of TLS
 
+**Compatibility:** Firefox 67, Firefox ESR 60.7\
+**CCK2 Equivalent:** N/A
+**Preferences Affected:** `security.tls.version.min`
+
+#### Windows
+| Type | Registry Location |
+| ---- | ----------------- |
+| `Windows:REG_SZ` | `Software\Policies\Mozilla\Firefox\SSLVersionMin` |
+
+#### macOS
 ```
-### SSLVersionMax
-This policy allows you to set the maximum TLS version.
+<dict>
+  <key>SSLVersionMin</key>
+  <string>tls1 | tls1.1 | tls1.2 | tls1.3<string>
+</dict>
+```
+
+#### JSON
 ```
 {
   "policies": {
-    "SSSLVersionMax": ["tls1", "tls1.1", "tls1.2",. "tls1.3"]
+    "SSLVersionMin": "tls1" | "tls1.1" | "tls1.2" | "tls1.3"
   }
 }
 ```

patrick-canterino.de