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 | 7f5d38150dab21a45c48ad2450f28d637bdf46a1 (patch) | |
tree | 53db0c0b79d22922eb62f9a0374e777c596a371a /modules/libpref | |
parent | bbc2206a0fda053a6f5071b457bd209dab9ed268 (diff) | |
download | uxp-7f5d38150dab21a45c48ad2450f28d637bdf46a1.tar.gz |
Issue #1275 - Add pref to disable warning prompts for SuperfluousAuth
and AutomaticAuth, and default to not prompting.
This resolves #1275.
Diffstat (limited to 'modules/libpref')
-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 ea76c30e5c..2e3d2aecfd 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. |