X-Git-Url: https://git.p6c8.net/policy-templates.git/blobdiff_plain/e4e1e0b36aad4b0cb600cc42decba0af5297a27c..6fd0a94c23de4b14c56bac46b5fca6c53f84289a:/README.md?ds=sidebyside diff --git a/README.md b/README.md index 1282d8c..9de8ec9 100644 --- a/README.md +++ b/README.md @@ -219,6 +219,18 @@ This policy disables safe mode on Windows only } } ``` +### DisableSecurityBypass +This policy prevents the user from bypassign security in certain cases. +``` +{ + "policies": { + "DisableSecurityBypass": { + "InvalidCertificate": [true|false], /* Prevents adding an exception when an invalid certificate is shown */ + "SafeBrowsing": [true|false] /* Prevents selecting "ignore the risk" and visiting a harmful site anyway */ + } + } +} +``` ### DisableSysAddonUpdate This policy prevents system add-ons from being updated or installed. ``` @@ -228,6 +240,15 @@ This policy prevents system add-ons from being updated or installed. } } ``` +### DisableTelemetry +This policy prevents the upload of telemetry data. Mozilla strongly recommends that you do NOT disable telemetry if you do not have a business need to do so. +``` +{ + "policies": { + "DisableTelemetry": true + } +} +``` ### DisplayBookmarksToolbar This policy turns on the bookmarks toolbar by default. A user can still turn it off and it will stay off. ```