From d4bd5caa3134027cb82e5a606d7cb514dccf34c0 Mon Sep 17 00:00:00 2001 From: Geoff Lankow Date: Sun, 7 Mar 2021 23:50:34 +0000 Subject: [PATCH] Bug 1696586 - Expose data: and blob: protocol URLs. r=mkmelin Differential Revision: https://phabricator.services.mozilla.com/D107317 --HG-- extra : moz-landing-system : lando --- mail/app/profile/all-thunderbird.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mail/app/profile/all-thunderbird.js b/mail/app/profile/all-thunderbird.js index a454ccdb5f..cf07dd37a3 100644 --- a/mail/app/profile/all-thunderbird.js +++ b/mail/app/profile/all-thunderbird.js @@ -367,6 +367,8 @@ pref("network.protocol-handler.expose.mailbox", true); // Although we allow these to be exposed internally, there are various places // (e.g. message pane) where we may divert them out to external applications. pref("network.protocol-handler.expose.about", true); +pref("network.protocol-handler.expose.blob", true); +pref("network.protocol-handler.expose.data", true); pref("network.protocol-handler.expose.http", true); pref("network.protocol-handler.expose.https", true);