Add build from source

This commit is contained in:
Xiaonan Shen
2020-06-01 06:51:24 -07:00
parent cc6eba9bf2
commit 55175292b0
5 changed files with 82 additions and 0 deletions

29
build/entrypoint.sh Normal file
View File

@@ -0,0 +1,29 @@
#!/bin/bash
set -ex
# Initialize
if [[ $1 == init ]]; then
# Initialize pass
gpg --generate-key --batch /protonmail/gpgparams
pass init pass-key
# Login
/protonmail/Desktop-Bridge --cli
else
# socat will make the conn appear to come from 127.0.0.1
# ProtonMail Bridge currently expects that.
# It also allows us to bind to the real ports :)
socat TCP-LISTEN:25,fork TCP:127.0.0.1:1025 &
socat TCP-LISTEN:143,fork TCP:127.0.0.1:1143 &
# Start protonmail
# Fake a terminal, so it does not quit because of EOF...
rm -f faketty
mkfifo faketty
cat faketty | /protonmail/Desktop-Bridge --cli
fi