blob: 2cf74c843dd5d7415c1753f7367f94c23815f289 (
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
28
|
post_install() {
cat <<EOM
== IMPORTANT NOTICE ==
This package contains several new patches were introduced do strengthen
and protect the end user from security and privacy threats.
For users who wish to opt-out of privacy, the following options in
about:config or a user.js file in ~/.mozilla are applicable for websites
such as City Mapper and FramaDrop:
user_pref("dom.storage.enabled", true);
user_pref("network.websocket.max-connections", "5");
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:
|