Posted on 08-21-2023 07:38 PM
Hi Team,
How do i disable Firefox's diable HTTP/3 (network.http.http3.enabled). I have to create a configuration profile and push it via JAMF to all of the end users.
Can someone give me an XML template for this? i couldn't find it anywhere
Posted on 08-22-2023 08:55 PM
Hi
That setting is not anywhere in the regular policy plist settings example file that Mozilla publishes:
policy-templates/mac/org.mozilla.firefox.plist at master · mozilla/policy-templates · GitHub
However, they have some additional references/examples to supported payloads which includes network prefix payloads.
GitHub - mozilla/policy-templates: Policy Templates for Firefox
Posted on 11-09-2023 08:43 AM
@hari_premasiri were you able to get this setting configured?
Posted on 12-22-2023 08:35 AM
@karengarner Did you managed to ever get this working? Looking for same solution...
Posted on 12-28-2023 03:27 AM
Hi, Anyone find the way to disable Quic protocol in Firefox?
Posted on 01-07-2024 02:48 PM
@karengarner & @shrisivakumaran
Sorry for the late response,
Unfortunately, I have looked through Mozilla's documentation on plist and have not been able to find anything to restrict this setting available yet.
https://github.com/mozilla/policy-templates/blob/master/mac/org.mozilla.firefox.plist
This might have to be a feature request on Mozilla's side to allow control over this setting.
Posted on 01-08-2024 09:26 PM
Thanks, I got the solution from Mozilla Support forum page. now able to control it
Posted on 02-19-2024 02:38 PM
Would you be willing to share how that you are controlling this?
Posted on 02-19-2024 06:56 PM
@timbyler1890 using below plist to disable quic protocol in Firefox.
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>EnterprisePoliciesEnabled</key> <true/> <key>Preferences</key> <dict> <key>network.http.http3.enable_0rtt</key> <dict> <key>Value</key> <false/> <key>Status</key> <string>locked</string> </dict> <key>network.http.http3.enable</key> <dict> <key>Value</key> <false/> <key>Status</key> <string>locked</string> </dict> </dict> </dict> </plist>
Posted on 02-20-2024 10:53 AM
Thanks a lot for that info.
That is what I was going to try but that should save me a lot of time.