Closed
Bug 26526
Opened 26 years ago
Closed 26 years ago
Network related prefs
Categories
(Core :: Networking, defect, P3)
Tracking
()
VERIFIED
FIXED
M16
People
(Reporter: gagan, Assigned: gagan)
Details
Get all the networking related prefs in order. Here is the snippet from all.js-
pref("network.search.url","http://cgi.netscape.com/cgi-bin/url_search.cgi?search=");
pref("network.dnsAttempt", 0);
pref("network.tcptimeout", 0); // use default
pref("network.tcpbufsize", 0); //
pref("network.use_async_dns", true);
pref("network.dnsCacheExpiration", 900); // in seconds
pref("network.enableUrlMatch", true);
pref("network.max_connections", 4);
pref("network.speed_over_ui", true);
pref("network.file_sort_method", 0); // NAME 0, TYPE 1, SIZE 2,
DATE 3
pref("network.ftp.passive", true);
pref("network.hosts.smtp_server", "mail");
pref("network.hosts.pop_server", "mail");
pref("network.hosts.nntp_server", "news.mozilla.org");
pref("network.hosts.socks_server", "");
pref("network.hosts.socks_serverport", 1080);
pref("network.hosts.socks_conf", "");
pref("network.proxy.autoconfig_url", "");
pref("network.proxy.type", 0);
pref("network.proxy.ftp", "");
pref("network.proxy.ftp_port", 0);
pref("network.proxy.gopher", "");
pref("network.proxy.gopher_port", 0);
pref("network.proxy.news", "");
pref("network.proxy.news_port", 0);
pref("network.proxy.http", "");
pref("network.proxy.http_port", 0);
pref("network.proxy.wais", "");
pref("network.proxy.wais_port", 0);
pref("network.proxy.ssl", "");
pref("network.proxy.ssl_port", 0);
pref("network.proxy.no_proxies_on", "");
pref("network.online", true); //online/offline
pref("network.prompt_at_startup", false);//Ask me
pref("network.accept_cookies", 0); // 0 = Always, 1 = warn, 2 =
never
pref("network.foreign_cookies", 0); // 0 = Accept, 1 = Don't accept
pref("network.cookie.cookieBehavior", 0); // 0-Accept,
1-dontAcceptForeign, 2-dontUse
pref("network.cookie.warnAboutCookies", false);
pref("network.sendRefererHeader", true);
pref("network.enablePad", false); // Allow client to do proxy
autodiscovery
pref("network.padPacURL", ""); // The proxy autodiscovery url
pref("network.wfe.use_async_dns", true);
pref("network.wfe.tcp_connect_timeout",0);
pref("browser.cache.disk_cache_size", 7680);
pref("browser.cache.enable", true);
pref("browser.cache.memory_cache_size", 1024);
pref("browser.cache.disk_cache_ssl", false);
pref("browser.cache.check_doc_frequency", 0);
This might just be a meta bug for separate sections.
Status: NEW → ASSIGNED
Updated•26 years ago
|
Target Milestone: M15
This has mostly been wrapped up by individual components.
Status: ASSIGNED → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•