This file is indexed.

/usr/share/iceweasel/defaults/preferences/debian-edu.js is in debian-edu-config 1.702.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Limit the disk cache, and disable it by default, to avoid users
// filling up their home directory with cache files.
pref("browser.cache.disk.enable", false);

pref("browser.cache.disk.capacity", 5120);
// This need to point to a user specific file, can't use a common file for all users
//pref("browser.cache.disk.parent_directory", "/var/tmp");

// Printer Settings
pref("print.postscript.print_size", "A4");
pref("print.postscript.print_command", "kprinter");
pref("print.print_command", "kprinter");

// Enable spell checking in both single-line and multi-line fields
pref("layout.spellcheckDefault", 2);

// Mailto settings
pref("network.protocol-handler.app.mailto", "icedove");

// Disable malware detection to avoid heavy I/O during login.
// Should be disabled when BTS #? is fixed.
// http://www.debianhelp.org/node/14453
// https://bugs.launchpad.net/firefox/+bug/215728
// https://bugs.edge.launchpad.net/ubuntu/+source/firefox-3.0/+bug/229745
pref("browser.safebrowsing.malware.enabled", false);
pref("browser.safebrowsing.enabled", false);