mirror of
https://github.com/netblue30/firejail.git
synced 2026-05-15 14:16:14 -06:00
[GH-ISSUE #625] Thunderbird Won't Open Full URL (Only Resource Name) #434
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#434
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 @carloabelli on GitHub (Jul 10, 2016).
Original GitHub issue: https://github.com/netblue30/firejail/issues/625
I created
/usr/local/bin/thunderbirdwith the contents:Everything works great, except that when I try to open links in thunderbird, firefox will open the correct resource name (e.g. amazon.com), but will not actually load the full URL. Running thunderbird directly (/usr/bin/thunderbird), opening links works fine. Is this expected behavior?
Note: firefox is also firejailed using an equivalent script as that for thunderbird (
/usr/local/bin/firefox)@netblue30 commented on GitHub (Jul 10, 2016):
Put symbolic links to firejail under /usr/local/bin instead of scripts:
$ sudo rm /usr/local/bin/thunderbird
$ sudo ln -s /usr/bin/firejail /usr/local/bin/thunderbird
Do the same for firefox and try it out.
@carloabelli commented on GitHub (Jul 10, 2016):
Seems to have resolved the issue. Is using symbolic links the preferred method?
@netblue30 commented on GitHub (Jul 10, 2016):
Yes. If you are running version 0.9.40 or the development one here, I have a utility, firecfg, that creates automatically the symbolic links under /usr/local/bin. Take a look at "man 1 firecfg".
@carloabelli commented on GitHub (Aug 4, 2016):
While this did make the issue better for some links I have recently found it not to work on all links. To test I created an email with the following HTML and sent it to myself.
Clicking the link resulted in this opening http://www.w3schools.com/html/action_page.php?foo=bar, which is missing a piece.
Copying the link location in thunderbird does yield the right result: http://www.w3schools.com/html/action_page.php?foo=bar&test=test.
@netblue30 commented on GitHub (Aug 5, 2016):
I'll give it a try, thanks.
@netblue30 commented on GitHub (Aug 22, 2016):
Seems to be working fine in the git version.
@carloabelli commented on GitHub (Aug 23, 2016):
I can confirm the current git version does not have the same issue found in
0.9.40. Thank you.