mirror of
https://github.com/netblue30/firejail.git
synced 2026-05-15 14:16:14 -06:00
[GH-ISSUE #124] Thunderbird and OpenPGP #84
Labels
No labels
LTS merge
LTS merge
bug
bug
converted-to-discussion
doc-todo
documentation
duplicate
enhancement
file-transfer
firecfg
firejail-in-firejail
firetools
graphics
help wanted
information_old
installation
invalid
modif
moved
needinfo
networking
notabug
notourbug
old-version
overlayfs
packaging
profile-request
pull-request
question
question_old
removal
runtime-permissions
sandbox-ipc
security
stale
wiki
wiki
wontfix
wordpress
workaround
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/firejail#84
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @0nse on GitHub (Nov 9, 2015).
Original GitHub issue: https://github.com/netblue30/firejail/issues/124
disable-secret.incdisables${HOME}/.gnupgwhich is fine for most applications. However, I would whitelist the directory for Thunderbird because mailing is probably one of the most important usecases for GPG. Otherwise, Engimail won't find any keys to sign, encrypt, decrypt and verify signatures.@nailarch commented on GitHub (Nov 9, 2015):
I had to add "whitelist ~/Загрузки" to firefox.profile to be able to save files to ~/Загрузки directory.
It's not a problem.
But what about priorities and differences between noblacklist and whitelist options ?
Or they are the same ?
@netblue30 commented on GitHub (Nov 9, 2015):
Fixed both Загрузки and .gnupg. Thanks!
Whitelist is applied first - it will mount a tmpfs on your home directory and bring in (mount-bind) only the directories whitelisted.
Then, blacklists are applied. noblacklist disables blacklist statements.
@Micha-Btz commented on GitHub (Nov 16, 2015):
hm, for me it is not working. i have the release 0.9.34 from debian tree and added
noblacklist ${HOME}/.gnupg
to the thunderbird profile, but firejail disable it anyway.
Disable /home/mdomann/.gnupg
the strange thing is, if i whitelistet it my icedove profil folder is empty, it will create new profiles fpor mail and so on.
here the log
https://gist.github.com/Micha-Btz/e6dd8f5f277e91a277e7
the strange thing is, firejail checks at start 2 times for gnupg, but i see not why.
root@sysiphus:/etc/firejail# grep -r .gnupg .
./thunderbird.profile:noblacklist ${HOME}/.gnupg
./disable-secret.inc:blacklist ${HOME}/.gnupg
@netblue30 commented on GitHub (Nov 17, 2015):
You have to add "noblacklist" before "include":
This is how it works on the latest version in git:
@Micha-Btz commented on GitHub (Nov 17, 2015):
ok, this way it works. thanks