fix bug 268441 - Implement network.protocol-handler.external... prefs (no GUI). sr=pinkerton

This commit is contained in:
joshmoz%gmail.com 2004-11-24 04:11:46 +00:00
Родитель 5594dde132
Коммит 69a9b630c0
1 изменённых файлов: 11 добавлений и 0 удалений

Просмотреть файл

@ -98,3 +98,14 @@ pref("mousewheel.horizscroll.withnokey.sysnumlines",true);
// make history scrolling with option go the standard way
pref("mousewheel.horizscroll.withaltkey.action", 2);
pref("mousewheel.horizscroll.withaltkey.numlines", 1);
// We want to make sure mail URLs are handled externally...
pref("network.protocol-handler.external.mailto", true); // for mail
pref("network.protocol-handler.external.news", true); // for news
pref("network.protocol-handler.external.snews", true); // for secure news
pref("network.protocol-handler.external.nntp", true); // also news
// ...without warning dialogs
pref("network.protocol-handler.warn-external.mailto", false);
pref("network.protocol-handler.warn-external.news", false);
pref("network.protocol-handler.warn-external.snews", false);
pref("network.protocol-handler.warn-external.nntp", false);