summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@wolfbeast.com>2019-02-28 13:58:23 +0100
committerwolfbeast <mcwerewolf@wolfbeast.com>2019-02-28 13:58:23 +0100
commitfa01e913d38e7cef08878b22f9a83456394f0b11 (patch)
tree550c6a94bcd13d5eea1c049cc70df6271c9ef806 /modules
parent2732943d842ef822fe1119c7071c4e000afffb51 (diff)
downloaduxp-fa01e913d38e7cef08878b22f9a83456394f0b11.tar.gz
Move default-enable pref to application.
Diffstat (limited to 'modules')
-rw-r--r--modules/libpref/init/all.js11
1 files changed, 6 insertions, 5 deletions
diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js
index f6e90170e9..3666ca4254 100644
--- a/modules/libpref/init/all.js
+++ b/modules/libpref/init/all.js
@@ -5451,8 +5451,9 @@ pref("dom.storageManager.enabled", true);
pref("dom.storageManager.enabled", false);
#endif
-// When a user cancels this number of authentication dialogs coming from
-// a single web page in a row, all following authentication dialogs will
-// be blocked (automatically canceled) for that page. The counter resets
-// when the page is reloaded. To turn this feature off, just set the limit to 0.
-pref("prompts.authentication_dialog_abuse_limit", 3);
+// DoS protection for HTTP Auth prompt spawning.
+// -1 = completely disable HTTP Auth prompting. (careful!)
+// 0 = disable this DoS protection
+// >0 = suppress further prompts after the user has canceled the dialog n times
+// See application preferences for appropriate defaults.
+pref("prompts.authentication_dialog_abuse_limit", 0);