summaryrefslogtreecommitdiff
path: root/nonprism-testing/iceweasel/iceweasel.install
blob: 61d3b203bac9a1186084d9f039d1a8ee7e7ced54 (plain)
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
27
post_install() {
  cat <<EOM
  == IMPORTANT NOTICE ==

  This package contains several new patches that were introduced 
  to strengthen and protect the end user from security and privacy threats.

  For users who wish to opt-out of privacy, you may override options in
  about:config using a user.js file in your ~/.mozilla's profile folder.

  Some user.js examples:
  user_pref("dom.storage.enabled", true); # Enables DOM tracking
  user_pref("network.websocket.max-connections", "5"); # Enables WebSocket IP Leak

  Further reading:
  * http://kb.mozillazine.org/About:config
  * http://kb.mozillazine.org/User.js_file
  * https://labs.parabola.nu/issues/1113
  * https://labs.parabola.nu/issues/1114
EOM
}

post_upgrade() {
  post_install
}

# vim:set ts=2 sw=2 et: