Install monkeysphere
This commit is contained in:
parent
e106d3a181
commit
f01e792ce1
|
@ -5338,6 +5338,15 @@ function configure_backup_key {
|
||||||
echo 'configure_backup_key' >> $COMPLETION_FILE
|
echo 'configure_backup_key' >> $COMPLETION_FILE
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function install_monkeysphere {
|
||||||
|
if grep -Fxq "install_monkeysphere" $COMPLETION_FILE; then
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
apt-get -y install monkeysphere msva-perl
|
||||||
|
|
||||||
|
echo 'install_monkeysphere' >> $COMPLETION_FILE
|
||||||
|
}
|
||||||
|
|
||||||
function encrypt_incoming_email {
|
function encrypt_incoming_email {
|
||||||
# encrypts incoming mail using your GPG public key
|
# encrypts incoming mail using your GPG public key
|
||||||
# so even if an attacker gains access to the data at rest they still need
|
# so even if an attacker gains access to the data at rest they still need
|
||||||
|
@ -10663,6 +10672,7 @@ configure_imap
|
||||||
#configure_imap_client_certs
|
#configure_imap_client_certs
|
||||||
configure_gpg
|
configure_gpg
|
||||||
configure_backup_key
|
configure_backup_key
|
||||||
|
install_monkeysphere
|
||||||
encrypt_incoming_email
|
encrypt_incoming_email
|
||||||
encrypt_outgoing_email
|
encrypt_outgoing_email
|
||||||
email_client
|
email_client
|
||||||
|
|
Loading…
Reference in New Issue