summaryrefslogtreecommitdiff
path: root/nonprism/icedove-hardened-preferences/icedove-hardened.sh
blob: 919c1c75e8929897ada434896ceb1c8f3f0b5546 (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/defaults/preferences/icedove-branding.js /usr/lib/icedove/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/firejail/icedove.profile --private-bin=bash,gpg2,icedove --private-tmp --private-etc=nsswitch.conf,resolv.conf --private-dev --nogroups /usr/bin/icedove

## Exiting IceDove triggers the trap
trap finish EXIT