source: trunk/athena/lib/firefox-extension/defaults/preferences/athena.js @ 22774

Revision 22774, 1.3 KB checked in by rbasch, 16 years ago (diff)
* athena/lib/firefox-extension/defaults/preferences/athena.js: Remove the setting of "network.negotiate-auth.gsslib", to revert to using the native GSSAPI library.
Line 
1// Home page set-up
2pref("browser.startup.homepage", "chrome://athena/content/athena.properties");
3pref("browser.startup.homepage_reset", "chrome://athena/content/athena.properties");
4pref("startup.homepage_override_url", "");
5pref("startup.homepage_welcome_url", "");
6
7// Don't prompt the user for setting the default browser.
8pref("browser.shell.checkDefaultBrowser", false);
9
10// Use evolution for mailto links.
11pref("network.protocol-handler.app.mailto", "evolution");
12pref("network.protocol-handler.external.mailto", true);
13
14// 0-Accept, 1-dontAcceptForeign, 2-dontUse, 3-p3p
15pref("network.cookie.cookieBehavior", 1);
16
17// Duplex printing set-up
18pref("print.printer_PostScript/duplex.print_command", "lpr -Zduplex ");
19pref("print.printer_PostScript/2upduplex.print_command", "psnup -q -n 2 | lpr -Zduplex ");
20pref("print.printer_list", "default duplex 2upduplex");
21
22// Font set-up for MathML
23pref("font.mathfont-family", "CMSY10, CMEX10, Math1, Math2, Math4, MT Extra, Standard Symbols L");
24
25// Trust the MIT IdP for HTTP/SPNEGO.
26pref("network.negotiate-auth.trusted-uris", "https://idp.mit.edu");
27
28// Do not delete files downloaded for helper applications upon exit,
29// to give users a chance to retrieve them if desired.
30pref("browser.helperApps.deleteTempFileOnExit", false);
Note: See TracBrowser for help on using the repository browser.