- 26 Jan, 2018 3 commits
-
-
anonym authored
This way any mounts made by users of this library (e.g. the Unsafe Browser) can mount targets inside the chroot and let the automatic teardown of the chroot browser deal with the umounting.
- 22 Jan, 2018 1 commit
-
-
anonym authored
-
- 20 Jan, 2018 1 commit
-
- 18 Jan, 2018 2 commits
-
- 08 Jan, 2018 1 commit
-
-
anonym authored
-
- 06 Jan, 2018 1 commit
-
-
intrigeri authored
Linux 4.14 brings new AppArmor mediation features and the policy shipped in Stretch may not be ready for it. So let's disable these new features to avoid breaking stuff: it's too hard to check if all the policy for apps we ship (and that users install themselves) has the right rules to cope with these new mediation features. This feature set file will be: - either removed: once we install an apparmor package that ships its own, maintained elsewhere, feature set (probably via Debian#879585); - or upgraded: to the Buster kernel's, when we move to Buster, iff. Debian does not ship any pinned feature set then (refs: #15149). This commit ports to our build system the changes that are in Buster/sid currently, except we include the Stretch's kernel feature set while Buster/sid is pinned to Linux 4.14's feature set (the policy in Buster/sid was updated to support it). This is exactly what will likely land in the next Debian Stretch point release. I'm using a different filename from the one used on Debian, in order to make it easier to compare the "upstream" (Debian) file with ours. And while I'm at it I'm adding a build-time sanity check that will warn us if there's some maintenance work to do on our side.
-
- 04 Jan, 2018 1 commit
-
-
intrigeri authored
-
- 02 Jan, 2018 1 commit
-
-
intrigeri authored
Whenever persistent Claws Mail setting is enabled, this creates an empty ~/.icedove/ directory, that prevents Thunderbird from starting.
-
- 15 Dec, 2017 1 commit
-
-
Alan authored
Will-fix: #6038
-
- 18 Nov, 2017 1 commit
-
-
intrigeri authored
-
- 14 Nov, 2017 4 commits
-
-
anonym authored
-
anonym authored
Me and (mostly) segfault had a late night hacking session, and implemented some pretty full-featured search functionality: * Interactive search * Wrapping search * Keyboard shortcuts: - Ctrl+f => focus find entry - Enter / Shift+Enter: search forward / backward - While find entry is focused: Escape => stop searching
-
anonym authored
We cannot connect, so an error page is shown. Links will still be opened with any configured external application. Thanks for the fix, segfault!
-
anonym authored
Thanks for the tip, segfault!
-
- 13 Nov, 2017 2 commits
-
-
anonym authored
-
- 11 Nov, 2017 1 commit
-
- 08 Nov, 2017 1 commit
-
- 22 Oct, 2017 2 commits
- 07 Oct, 2017 1 commit
-
-
intrigeri authored
-
- 01 Oct, 2017 1 commit
-
-
intrigeri authored
Force Thunderbird to enable accessibility support even if no a11y feature is enabled in GNOME yet (refs: #14752, #9260). I did not check the source, but the reasoning from commit:a3346a75 probably applies here as well. In any case, the symptoms are the same, and the same fix works.
-
- 30 Sep, 2017 1 commit
-
-
intrigeri authored
Force Tor Browser to enable accessibility support even if no a11y feature is enabled in GNOME yet (refs: #14752, #9260). My understanding of the code in accessible/atk/Platform.cpp is: if this envvar is not set, Firefox will check via D-Bus at startup if accessibility is enabled in the Desktop, and if it's not it'll permanently disable accessibility, which breaks use cases like starting the screen keyboard or screen reader *after* Tor Browser.
-
- 25 Sep, 2017 2 commits
- 24 Sep, 2017 1 commit
-
- 22 Sep, 2017 4 commits
-
-
anonym authored
- 21 Sep, 2017 2 commits
-
-
anonym authored
There was some confusion about this setting when Tor Browser 7.x was introduced into Tails, and apparently it got lost between the cracks. Details: https://trac.torproject.org/projects/tor/ticket/20683
-
anonym authored
-
- 15 Sep, 2017 2 commits
-
-
anonym authored
-
intrigeri authored
"." is a regexp special char. We mean "." literally so it ought to be escaped. Wrong: $ echo 'user_pref("extensionsXenigmailYconfiguredVersion",' \ | sed --regexp-extended \ '/^(user_)?pref\("extensions.enigmail.configuredVersion",/d' Right: $ echo 'user_pref("extensionsXenigmailYconfiguredVersion",' \ | sed --regexp-extended \ '/^(user_)?pref\("extensions\.enigmail\.configuredVersion",/d' user_pref("extensionsXenigmailYconfiguredVersion",
-
- 14 Sep, 2017 3 commits