// Some useful settings for Mozilla Firefox.
// By Markus Gaugusch - http://gaugusch.at/firefox.shtml
// -
// Interesting links about mozilla config:
// http://www.mozilla.org/quality/networking/docs/netprefs.html
// http://texturizer.net/firefox/tips.html

// -------------------------------------------------------------------
// The following will probably have to be altered by you
// -------------------------------------------------------------------

// You may want to change this to your company website
// (activated when clicking on the thobber in the upper right)
pref("browser.throbber.url", "http://www.gaugusch.at/");

// Proxy settings have to be 
// -------------------------------------------------------------------
// options below should not need tweaking (you may still look at them)
// -------------------------------------------------------------------

// Strip newlines when pasting into address bar (for wrapped URLs)
pref("editor.singleLine.pasteNewlines", 3);

// annoying thing that no one will read
pref("security.warn_submit_insecure", false);
pref("security.warn_entering_secure", false);
pref("security.warn_entering_secure.show_once", false);
pref("security.warn_entering_secure.show_once", false);

// strange default - save everything to desktop - let's disable that ...
pref("browser.download.useDownloadDir", false);

// Instead of annoying error dialog messages, display error pages:
pref("browser.xul.error_pages.enabled", true);

// network tweaking - default is 4 simultaneous connections!
pref("network.http.max-connections", 128);
pref("network.http.max-connections-per-server", 48);
pref("network.http.max-persistent-connections-per-proxy", 24);
pref("network.http.max-persistent-connections-per-server", 12);

// disable annoying blink tag
pref("browser.blink_allowed", false);

// speed up rendering
pref("nglayout.initialpaint.delay", 100);

// use right mousebutton for mouse gestures!
pref("mozgest.mousebutton", 2);

