summaryrefslogtreecommitdiff
path: root/nonprism-testing/icedove-hardened-preferences/icedove-hardened.sh
blob: bac60e64bc723192c7dcab960c96e8a1654d224f (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
#!/bin/sh

##############################################
# IceDove-Hardened Jail and Cleaner Script #
##############################################
echo "Closing any other instances of IceDove to avoid crashes..."
pkill -x icedove
wait
echo "Copying Hardened Prefs..."
cp /usr/lib/icedove/browser/defaults/preferences/icedove-branding.js /usr/lib/icedove/browser/defaults/preferences/thunderbird-branding.js
wait
echo "Waking the IceDove..."

# Trap cleaner function for IceDove exit cleaning
function finish {
echo "Removing hardened preferences..."
echo "" > /usr/lib/icedove/defaults/preferences/thunderbird-branding.js
    }

## Firejail IceDove startup
/usr/bin/firejail --profile=/etc/icedove.profile --noroot --nogroups --caps.drop=all --private-etc=/etc --private-bin=bash,sed,ls,cat,icedove --private-tmp /usr/bin/icedove

## Exiting IceDove triggers the trap
trap finish EXIT