diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-11-07 16:52:33 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-11-07 16:52:33 +0100 |
commit | a5026627047052fc7e7122a09408a2b452c11c1e (patch) | |
tree | 53db0c0b79d22922eb62f9a0374e777c596a371a /modules | |
parent | b5594fa524e0b07b82abcdd821f4ed3fe77fa73b (diff) | |
download | aura-central-a5026627047052fc7e7122a09408a2b452c11c1e.tar.gz |
Issue mcp-graveyard/UXP%1275 - Add pref to disable warning prompts for SuperfluousAuth
and AutomaticAuth, and default to not prompting.
This resolves %1275.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/libpref/init/all.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js index ea76c30e5..2e3d2aecf 100644 --- a/modules/libpref/init/all.js +++ b/modules/libpref/init/all.js @@ -2006,6 +2006,12 @@ pref("network.auth.subresource-http-auth-allow", 2); // does not have any effect. pref("network.auth.subresource-http-img-XO-auth", false); +// Whether or not to show anti-spoof confirmation prompts when navigating to a +// URL with user info. +// true - display extra confirmation prompt ("You are about to log in to...") +// false - do not display extra confirmation prompt (default) +pref("network.auth.confirmAuth.enabled", false); + // This preference controls whether to allow sending default credentials (SSO) to // NTLM/Negotiate servers allowed in the "trusted uri" list when navigating them // in a Private Browsing window. |