]> git.p6c8.net - policy-templates.git/blob - README.md
1282d8cddaab5ba4b8cdfa35ea4a43769992ff7c
[policy-templates.git] / README.md
1 Policies can either be specified using the Group Policy templates 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/Content/Resources/distribution.
2
3 The content of the JSON file should look like this:
4 ```
5 {
6 "policies": {
7 ...POLICIES...
8 }
9 }
10 ```
11 Policies are documented below. Note that even though comments are used in this file for documentation, comments are not allowed for JSON files.
12 ### Authentication
13 This policy is for configuring sites that support integrated authentication. See https://developer.mozilla.org/en-US/docs/Mozilla/Integrated_authentication for more information.
14 ```
15 {
16 "policies": {
17 "Authentication": {
18 "SPNEGO": ["mydomain.com", "https://myotherdomain.com"],
19 "Delegated": ["mydomain.com", "https://myotherdomain.com"],
20 "NTLM": ["mydomain.com", "https://myotherdomain.com"]
21 }
22 }
23 }
24 ```
25 ### BlockAboutAddons
26 This policy removes access to about:addons.
27 ```
28 {
29 "policies": {
30 "BlockAboutAddons": true
31 }
32 }
33 ```
34 ### BlockAboutConfig
35 This policy removes access to about:config.
36 ```
37 {
38 "policies": {
39 "BlockAboutConfig": true
40 }
41 }
42 ```
43 ### BlockAboutProfiles
44 This policy removes access to about:profiles.
45 ```
46 {
47 "policies": {
48 "BlockAboutProfiles": true
49 }
50 }
51 ```
52 ### BlockAboutSupport
53 This policy removes access to about:support.
54 ```
55 {
56 "policies": {
57 "BlockAboutSupport": true
58 }
59 ```
60 ### BlockSetDesktopBackground
61 This policy removes the "Set As Desktop Background..." menuitem when right clicking on an image.
62 ```
63 {
64 "policies": {
65 "BlockAboutSupport": true
66 }
67 }
68 ```
69 ### Certificates
70 This is a Windows only policy that tells Firefox to read certificates from the Windows certificate store.
71 ```
72 {
73 "policies": {
74 "Certificates": {
75 "ImportEnterpriseRoots": [true|false]
76 }
77 }
78 }
79 ```
80 ### Cookies
81 This policy controls various settings related to cookies.
82 ```
83 {
84 "policies": {
85 "Cookies": {
86 "Allow": ["http://example.org/"], /* Domains where cookies are always allowed */
87 "Block": ["http://example.edu/"], /* Domains where cookies are always blocked */
88 "Default": [true|false], /* This sets the default value for "Accept cookies from websites" */
89 "AcceptThirdParty": ["all", "none", "from-visited"], /* This sets the default value for "Accept third-party cookies" */
90 "ExpireAtSessionEnd": [true|false], /* This determines when cookies expire */
91 "Locked": [true|false] /* If this is true, cookies preferences can't be changed */
92 }
93 }
94 }
95 ```
96 ### CreateMasterPassword
97 This policy removes the master password functionality.
98 ```
99 {
100 "policies": {
101 "CreateMasterPassword": false
102 }
103 }
104 ```
105 ### DisableAppUpdate
106 This policy turns off application updates.
107 ```
108 {
109 "policies": {
110 "DisableAppUpdate": true
111 }
112 }
113 ```
114 ### DisableBuiltinPDFViewer
115 This policy disables the built in PDF viewer. PDF files are downloaded and sent externally.
116 ```
117 {
118 "policies": {
119 "DisableBuiltinPDFViewer": true
120 }
121 }
122 ```
123 ### DisableDeveloperTools
124 This policy removes access to all developer tools.
125 ```
126 {
127 "policies": {
128 "DisableDeveloperTools": true
129 }
130 }
131 ```
132 ### DisableFeedbackCommands
133 This policy disables the menus for reporting sites (Submit Feedback, Report Deceptive Site)
134 ```
135 {
136 "policies": {
137 "DisableFeedbackCommands": true
138 }
139 }
140 ```
141 ### DisableFirefoxScreenshots
142 This policy removes access to Firefox Screenshots
143 ```
144 {
145 "policies": {
146 "DisableFirefoxScreenshots": true
147 }
148 }
149 ```
150 ### DisableFirefoxAccounts
151 This policy disables Sync
152 ```
153 {
154 "policies": {
155 "DisableFirefoxAccounts": true
156 }
157 }
158 ```
159 ### DisableFirefoxStudies
160 This policy disables Firefox studies (Shield)
161 ```
162 {
163 "policies": {
164 "DisableFirefoxAccounts": true
165 }
166 }
167 ```
168 ### DisableForgetButton
169 This policy disables the "Forget" button
170 ```
171 {
172 "policies": {
173 "DisableForgetButton": true
174 }
175 }
176 ```
177 ### DisableFormHistory
178 This policy turns off the browser.formfill.enable preferences
179 ```
180 {
181 "policies": {
182 "DisableFormHistory": true
183 }
184 }
185 ```
186 ### DisablePocket
187 This policy turns off Pocket
188 ```
189 {
190 "policies": {
191 "DisablePocket": true
192 }
193 }
194 ```
195 ### DisablePrivateBrowsing
196 This policy removes access to private browsing
197 ```
198 {
199 "policies": {
200 "DisablePrivateBrowsing": true
201 }
202 }
203 ```
204 ### DisableProfileRefresh
205 This policy disables the Refresh Firefox button on about:support and support.mozilla.org.
206 ```
207 {
208 "policies": {
209 "DisableProfileRefresh": true
210 }
211 }
212 ```
213 ### DisableSafeMode
214 This policy disables safe mode on Windows only
215 ```
216 {
217 "policies": {
218 "DisableSafeMode": true
219 }
220 }
221 ```
222 ### DisableSysAddonUpdate
223 This policy prevents system add-ons from being updated or installed.
224 ```
225 {
226 "policies": {
227 "DisableSysAddonUpdate": true
228 }
229 }
230 ```
231 ### DisplayBookmarksToolbar
232 This policy turns on the bookmarks toolbar by default. A user can still turn it off and it will stay off.
233 ```
234 {
235 "policies": {
236 "DisplayBookmarksToolbar": true
237 }
238 }
239 ```
240 ### DisplayMenuBar
241 This policy turns on the menubar by default. A user can still turn it off and it will stay off.
242 ```
243 {
244 "policies": {
245 "DisplayMenuBar": true
246 }
247 }
248 ```
249 ### DontCheckDefaultBrowser
250 This policy stops Firefox from checking if it is the default browser at startup.
251 ```
252 {
253 "policies": {
254 "DontCheckDefaultBrowser": true
255 }
256 }
257 ```
258 ### EnableTrackingProtection
259 This policy affects tracking protection.
260
261 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.
262
263 If Value is set to false, tracking protection is disabled and locked in both the browser and private browsing.
264
265 If Value is set to true, private browsing is enabled by default in both the browser and private browsing and you can choose set the Locked value if you want to prevent the user from changing it.
266 ```
267 {
268 "policies": {
269 "EnableTrackingProtection": {
270 "Value": [true, false],
271 "Locked": [true, false]
272 }
273 ```
274 ### NoDefaultBookmarks
275 Don't create the default bookmarks or the Smart Bookmarks (Most Visited, Recent Tags). Note: this policy is only effective if used before the first run of the profile.
276 ```
277 {
278 "policies": {
279 "NoDefaultBookmarks": true
280 }
281 }
282 ```
283 ### RememberPasswords
284 This policy sets the signon.rememberSignons preference. It can either be enabled or disabled.
285 ```
286 {
287 "policies": {
288 "RememberPasswords": true
289 }
290 }
291 ```
292 ### Homepage
293 This policy sets the default homepage value. It can also be used to lock the homepage and add additional homepages.
294 ```
295 {
296 "policies": {
297 "Homepage": {
298 "URL": "http://example.com/",
299 "Locked": true,
300 "Additional": ["http://example.org/",
301 "http://example.edu/"]
302 }
303 }
304 }
305 ```
306 ### Popups
307 This policy sets domains for which popups are allowed
308 ```
309 {
310 "policies": {
311 "Popups": {
312 "Allow": ["http://example.org/",
313 "http://example.edu/"]
314 }
315 }
316 }
317 ```
318 ### InstallAddons
319 This policy sets domains that can install extensions
320 ```
321 {
322 "policies": {
323 "InstallAddons": {
324 "Allow": ["http://example.org/",
325 "http://example.edu/"]
326 }
327 }
328 }
329 ```
330 ### FlashPlugin
331 This policy sets domains that can use or not use Flash
332 ```
333 {
334 "policies": {
335 "FlashPlugin": {
336 "Allow": ["http://example.org/"],
337 "Block": ["http://example.edu/"]
338 }
339 }
340 }
341 ```
342 ### Bookmarks
343 This policy allows you to specify bookmarks. You can have any number of bookmarks although only ten are specified in the ADMX file.
344 Placement can be specified as either toolbar or menu. If a folder is specified, it is automatically created and bookmarks with the
345 same folder name are grouped together.
346
347 ```
348 {
349 "policies": {
350 "Bookmarks": [
351 {"Title": "Example",
352 "URL": "http://example.org",
353 "Favicon": "http://example.com/favicon.ico",
354 "Placement": ["toolbar", "menu"],
355 "Folder": "FolderName"
356 }
357 ]
358 }
359 }
360 ```
361 ### Proxy
362 This policy allows you to specify proxy settings. These settings correspond to the connection settings in Firefox preferences.
363 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.
364 ```
365 {
366 "Proxy": {
367 "Mode": ["none", "system", "manual", "autoDetect", "autoConfig"]
368 "Locked": [true, false]
369 "HTTPProxy": "hostname",
370 "UseHTTPProxyForAllProtocols": [true, false]
371 "SSLProxy": "hostname",
372 "FTPProxy": "hostname",
373 "SOCKSProxy": "hostname",
374 "SOCKSVersion": [4, 5],
375 "Passthrough": "List of passthrough addresses/domains",
376 "AutoConfigURL": "URL_TO_AUTOCONFIG",
377 "AutoLogin": [true, false],
378 "UseProxyForDNS": [true, false]
379 }
380 }
381 ```

patrick-canterino.de